/* ─── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --ink:    #1A1F2A;
  --ink-2:  #2A2F3A;
  --bone:   #F4EFE3;
  --bone-2: #FBF9F3;
  --gold:   #B8956A;
  --gold-2: #D4B58A;
  --stone:  #6E7280;
  --white:  #FFFFFF;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, Menlo, monospace;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-rise:   900ms;
  --t-hold:   1100ms;
  --t-tilt:   700ms;
  --t-pause:  450ms;
  --t-open:   1600ms;
  --t-mark:   900ms;
  --ease:     cubic-bezier(.76, 0, .24, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-tilt: cubic-bezier(.65, 0, .35, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--ink); }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.intro-locked { overflow: hidden; height: 100vh; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 104px); }
h2 { font-size: clamp(32px, 4.6vw, 60px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.18; }
p  { margin: 0; }

.lede { font-size: clamp(17px, 1.45vw, 20px); line-height: 1.55; color: var(--ink-2); max-width: 60ch; }

.italic { font-style: italic; color: var(--gold); }

/* ─── HEADER ─────────────────────────────────────────────────────── */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled,
header.nav.solid {
  background: rgba(244, 239, 227, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,31,42,0.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 36px; height: 36px; }
.brand-name { font-family: var(--sans); font-weight: 800; letter-spacing: 0.18em; font-size: 14px; color: var(--ink); }

nav.primary { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  font-size: 13px; letter-spacing: 0.02em; color: var(--ink); position: relative;
  padding: 6px 0; background: transparent; border: 0; display: inline-flex; align-items: center; gap: 6px;
}
.nav-item > a::after, .nav-item > button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-item:hover > a::after, .nav-item:hover > button::after { transform: scaleX(1); }
.nav-item > button .chev { width: 9px; height: 9px; transition: transform .25s ease; }
.nav-item:hover > button .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 12px); left: -16px; min-width: 260px;
  background: var(--bone-2); border: 1px solid rgba(26,31,42,0.1);
  padding: 14px; opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 24px 60px -20px rgba(26,31,42,0.25);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: none; }
.dropdown a {
  display: block; padding: 10px 12px; font-size: 13px;
  color: var(--ink); transition: background .2s ease, color .2s ease;
  letter-spacing: 0.02em;
}
.dropdown a:hover { background: var(--ink); color: var(--bone); }
.dropdown .group-label {
  display: block; padding: 8px 12px 4px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em;
  color: var(--gold); text-transform: uppercase;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; background: var(--ink); color: var(--bone);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.nav-cta svg { width: 12px; height: 12px; }

.nav-toggle {
  display: none; background: transparent; border: 0; color: var(--ink);
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1040px) {
  nav.primary { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  header.nav.open { background: var(--bone); }
}

.mobile-nav {
  position: fixed; inset: 64px 0 0 0; z-index: 55;
  background: var(--bone); padding: 30px var(--gutter) 60px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease), opacity .3s ease;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav > a, .mobile-nav details > summary {
  font-family: var(--serif); font-size: 26px; color: var(--ink);
  border-bottom: 1px solid rgba(26,31,42,0.1); padding: 16px 0;
  cursor: pointer; list-style: none;
}
.mobile-nav details summary::-webkit-details-marker { display: none; }
.mobile-nav details[open] summary { color: var(--gold); }
.mobile-nav details .sub { padding: 6px 0 14px 16px; display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid rgba(26,31,42,0.08); }
.mobile-nav details .sub a {
  font-family: var(--sans); font-size: 14.5px; padding: 8px 0;
  color: var(--ink-2);
}
.mobile-nav details .sub a:hover { color: var(--gold); }
.mobile-nav .cta {
  margin-top: 20px; padding: 16px 24px; background: var(--ink); color: var(--bone);
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  text-align: center; border: 1px solid var(--ink);
}

/* ─── HERO (HOME) ────────────────────────────────────────────────── */
section.hero {
  position: relative; min-height: 100vh; padding: 140px var(--gutter) 80px;
  background: var(--bone);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center;
  max-width: var(--maxw); margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 980px) {
  section.hero { grid-template-columns: 1fr; padding-top: 120px; gap: 30px; min-height: auto; }
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin-top: 22px; font-feature-settings: "ss01" on; }
.hero .lede { margin-top: 28px; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--ink); background: var(--ink); color: var(--bone);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(26,31,42,0.25); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn .arrow {
  width: 16px; height: 1px; background: currentColor; position: relative;
  transition: width .25s ease;
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 24px; }

.hero-stage {
  position: relative; aspect-ratio: 1 / 1.05;
  max-width: 560px; width: 100%; justify-self: end;
}
@media (max-width: 980px) { .hero-stage { justify-self: center; max-width: 380px; } }
.hero-stage canvas { width: 100% !important; height: 100% !important; display: block; }
.hero-stage svg.hero-mark { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }
.hero-stage::before {
  content: ""; position: absolute; inset: -10% -8% -10% -8%;
  background: radial-gradient(ellipse at 50% 55%, rgba(184,149,106,0.16) 0%, transparent 60%);
  filter: blur(20px); z-index: 0;
}

/* ── Hero brand-mark composition (animated SVG) ─────────────── */
.hero-mark .hm-glow {
  transform-origin: 200px 200px;
  animation: hm-pulse 5.5s ease-in-out infinite;
}
@keyframes hm-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}

.hero-mark .hm-ring-rotate {
  transform-origin: 200px 200px;
  animation: hm-spin 72s linear infinite;
}
.hero-mark .hm-ring-rotate-rev {
  transform-origin: 200px 200px;
  animation: hm-spin 110s linear infinite reverse;
}
.hero-mark .hm-orbit {
  transform-origin: 200px 200px;
  animation: hm-spin 90s linear infinite;
}
@keyframes hm-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* fade-ins on initial paint */
.hero-mark .hm-corners,
.hero-mark .hm-ticks,
.hero-mark .hm-orbit { opacity: 0; animation-fill-mode: forwards; }
.hero-mark .hm-corners { animation: hm-fade-in 1.2s ease-out 0.2s forwards; }
.hero-mark .hm-ticks   { animation: hm-fade-in 1.2s ease-out 0.4s forwards; }
.hero-mark .hm-orbit   {
  animation: hm-fade-in 1.5s ease-out 0.7s forwards, hm-spin 90s linear 0.7s infinite;
}
@keyframes hm-fade-in { to { opacity: 1; } }

/* brand-mark stroke draw-in (mirrors the brand-pack SVG dash pattern) */
.hero-mark .hm-arc {
  stroke-dasharray: 0 5000;
  stroke-dashoffset: -78;
  animation: hm-arc-draw 1.5s cubic-bezier(.7,.05,.3,1) forwards;
}
.hero-mark .hm-arc-ink  { animation-delay: 0.5s; }
.hero-mark .hm-arc-gold { animation-delay: 0.9s; }
@keyframes hm-arc-draw { to { stroke-dasharray: 190 5000; } }

.hero-mark .hm-bar-wrap {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transform: scaleX(0);
  animation: hm-bar-in 0.55s ease-out 1.7s forwards;
}
@keyframes hm-bar-in { to { transform: scaleX(1); } }

/* parallax target — the whole brand mark group */
.hero-mark .hm-brand {
  transition: transform 0.18s ease-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-mark .hm-glow,
  .hero-mark .hm-ring-rotate,
  .hero-mark .hm-ring-rotate-rev,
  .hero-mark .hm-orbit { animation: none !important; opacity: 1 !important; }
  .hero-mark .hm-corners,
  .hero-mark .hm-ticks { opacity: 1 !important; animation: none !important; }
  .hero-mark .hm-arc { stroke-dasharray: 190 5000 !important; animation: none !important; }
  .hero-mark .hm-bar-wrap { transform: scaleX(1) !important; animation: none !important; }
}
.hero-stage-label {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--stone);
  display: inline-flex; align-items: center; gap: 8px;
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
}
.hero-stage-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.4; transform: scale(0.7); } 50% { opacity: 1; transform: scale(1.1); } }

.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 30px; padding: 0 var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); pointer-events: none;
}
.hero-meta .sep { width: 1px; height: 28px; background: var(--gold); margin: 0 16px; }
@media (max-width: 700px) { .hero-meta { position: static; padding: 30px 0 0; margin-top: 40px; flex-wrap: wrap; gap: 14px; } }

/* ─── PAGE HERO (sub-pages) ──────────────────────────────────────── */
section.page-hero {
  position: relative; padding: 180px var(--gutter) 90px;
  background: var(--ink); color: var(--bone);
  overflow: hidden;
}
section.page-hero .wrap { position: relative; z-index: 2; }
section.page-hero h1 {
  margin-top: 22px; font-size: clamp(40px, 6vw, 84px); max-width: 18ch;
}
section.page-hero .eyebrow { color: var(--gold); }
section.page-hero .lede { color: rgba(244,239,227,0.7); margin-top: 24px; }
section.page-hero::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 60vw; height: 120vh;
  background: radial-gradient(circle at 50% 50%, rgba(184,149,106,0.18) 0%, transparent 60%);
  filter: blur(20px);
}
section.page-hero::after {
  content: ""; position: absolute; right: 8%; top: 50%;
  width: 360px; height: 360px;
  border: 1px solid rgba(184,149,106,0.3);
  border-radius: 50%;
  transform: translateY(-50%) rotate(0);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
@media (max-width: 880px) { section.page-hero::after { display: none; } }

/* breadcrumb */
.breadcrumbs {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(244,239,227,0.55);
  display: flex; align-items: center; gap: 10px; margin-bottom: 30px;
}
.breadcrumbs a { color: rgba(244,239,227,0.7); transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { width: 18px; height: 1px; background: rgba(244,239,227,0.3); }

/* ─── MARQUEE ────────────────────────────────────────────────────── */
.marquee {
  background: var(--ink); color: var(--bone);
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid rgba(184,149,106,0.2);
  border-bottom: 1px solid rgba(184,149,106,0.2);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: scroll-x 38s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif); font-size: clamp(22px, 2.6vw, 34px); font-style: italic;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-item::after { content: "✦"; color: var(--gold); font-size: 0.7em; font-style: normal; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ──────────────────────────────────────────────────── */
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
section .wrap { position: relative; }

.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; } }

/* ─── SERVICES GRID ─────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(26,31,42,0.1);
  border: 1px solid rgba(26,31,42,0.1);
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--bone-2); padding: 40px 32px 36px;
  position: relative; min-height: 340px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), background .35s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  text-decoration: none; color: inherit;
}
.service:hover { background: var(--ink); color: var(--bone); }
.service:hover .service-num { color: var(--gold); }
.service:hover .service-icon { transform: translateZ(30px) rotateY(8deg); }
.service:hover .service-arrow { opacity: 1; transform: translate(0, 0); }
.service-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--gold); margin-bottom: 24px;
  transition: color .35s ease;
}
.service-icon {
  width: 56px; height: 56px; margin-bottom: 24px;
  transition: transform .5s var(--ease-out);
  transform-style: preserve-3d;
}
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; }
.service h3 { margin-bottom: 16px; }
.service p { font-size: 14.5px; line-height: 1.6; color: inherit; opacity: 0.78; }
.service-arrow {
  position: absolute; top: 32px; right: 32px;
  width: 26px; height: 26px; opacity: 0; transform: translate(-6px, 6px);
  transition: opacity .35s ease, transform .35s var(--ease-out);
  color: var(--gold);
}
.service-arrow svg { width: 100%; height: 100%; }

/* ─── INK SECTION ───────────────────────────────────────────────── */
.ink-section { background: var(--ink); color: var(--bone); }
.ink-section .lede { color: rgba(244,239,227,0.7); }
.ink-section .eyebrow { color: var(--gold); }
.ink-section h2 .italic { font-style: italic; color: var(--gold); }

.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.pillars { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 30px; }
.pillar {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid rgba(244,239,227,0.12);
  align-items: start;
}
.pillar:last-child { border-bottom: 0; }
.pillar-num { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.22em; padding-top: 4px; }
.pillar h3 { margin-bottom: 8px; color: var(--bone); }
.pillar p { font-size: 15px; color: rgba(244,239,227,0.7); }

/* ─── STATS ─────────────────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(244,239,227,0.12);
  border-top: 1px solid rgba(244,239,227,0.12);
  border-bottom: 1px solid rgba(244,239,227,0.12);
  margin-top: 80px;
}
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--ink); padding: 36px 28px; display: flex; flex-direction: column; gap: 8px; }
.stat .num {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 64px);
  color: var(--bone); line-height: 1; letter-spacing: -0.02em;
}
.stat .num .unit { color: var(--gold); font-size: 0.55em; vertical-align: baseline; margin-left: 4px; }
.stat .label {
  font-family: var(--mono); font-size: 11px; color: rgba(244,239,227,0.55);
  letter-spacing: 0.2em; text-transform: uppercase; margin-top: 10px;
}

/* ─── APPROACH (numbered steps) ─────────────────────────────────── */
.approach {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  counter-reset: step;
}
@media (max-width: 880px) { .approach { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .approach { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  padding-top: 30px; border-top: 1px solid rgba(26,31,42,0.18);
  position: relative;
  transition: transform .4s var(--ease-out);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold); position: absolute; top: -1px;
  padding-top: 14px;
}
.step h4 { font-family: var(--serif); font-size: 22px; margin: 36px 0 10px; line-height: 1.2; }
.step p { font-size: 14px; color: var(--ink-2); opacity: 0.85; }

.ink-section .step { border-top-color: rgba(244,239,227,0.14); }
.ink-section .step h4 { color: var(--bone); }
.ink-section .step p { color: rgba(244,239,227,0.7); }

/* ─── SECTORS — 3D FLIP CARDS ───────────────────────────────────── */
.sectors {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 980px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sectors { grid-template-columns: 1fr; } }
.sector { position: relative; height: 280px; perspective: 1400px; }
.sector-inner {
  position: absolute; inset: 0;
  transition: transform .8s var(--ease);
  transform-style: preserve-3d;
}
.sector:hover .sector-inner,
.sector.flipped .sector-inner { transform: rotateY(180deg); }
.sector-face {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.sector-front { background: var(--ink); color: var(--bone); overflow: hidden; }
.sector-front::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(184,149,106,0.18) 0%, transparent 60%);
}
.sector-front .sector-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.2em;
}
.sector-front h3 { font-family: var(--serif); position: relative; }
.sector-front .label {
  font-family: var(--mono); font-size: 10px; color: var(--gold);
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 14px;
  position: relative;
}
.sector-back {
  background: var(--gold); color: var(--ink);
  transform: rotateY(180deg);
  justify-content: center; align-items: flex-start;
}
.sector-back h3 { font-family: var(--serif); margin-bottom: 14px; }
.sector-back p { font-size: 14px; line-height: 1.55; }
.sector-back .flip-hint {
  position: absolute; bottom: 24px; left: 28px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ─── ACCREDITATIONS ────────────────────────────────────────────── */
.accred-band {
  background: var(--bone-2); padding: 60px var(--gutter);
  border-top: 1px solid rgba(26,31,42,0.08);
  border-bottom: 1px solid rgba(26,31,42,0.08);
}
.accred-band .wrap {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center;
}
@media (max-width: 880px) { .accred-band .wrap { grid-template-columns: 1fr; } }
.accred-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 760px) { .accred-list { grid-template-columns: repeat(2, 1fr); } }
.accred {
  padding: 18px 14px; text-align: center;
  border: 1px solid rgba(26,31,42,0.12);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-2);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.accred:hover { border-color: var(--gold); color: var(--ink); background: rgba(184,149,106,0.08); }
.accred .num {
  font-family: var(--serif); font-size: 28px; color: var(--ink); display: block; margin-bottom: 6px;
  letter-spacing: -0.01em;
}

/* ─── CONTACT ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-meta { display: flex; flex-direction: column; gap: 36px; }
.contact-card { border-top: 1px solid rgba(244,239,227,0.14); padding-top: 22px; }
.contact-card .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.contact-card .v {
  font-family: var(--serif); font-size: clamp(20px, 1.8vw, 26px); color: var(--bone); line-height: 1.3;
}
.contact-card .v a:hover { color: var(--gold); }

form.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
form.contact .field-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(244,239,227,0.55);
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--bone);
  background: transparent; border: 0; border-bottom: 1px solid rgba(244,239,227,0.2);
  padding: 12px 0; outline: none;
  transition: border-color .25s ease;
  width: 100%;
  font-family: var(--sans);
}
.field select option { color: var(--ink); background: var(--bone); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,239,227,0.35); }
.field textarea { resize: vertical; min-height: 110px; }
.form-actions {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 14px;
}
.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; background: var(--gold); color: var(--ink);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background .25s ease, color .25s ease;
}
.submit-btn:hover { background: transparent; color: var(--bone); border-color: var(--gold); }
.submit-btn[disabled] { opacity: 0.55; cursor: progress; }
.form-note {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(244,239,227,0.5); text-transform: uppercase;
}
.form-status { grid-column: 1 / -1; min-height: 24px; font-size: 14px; }
.form-status.success { color: var(--gold); }
.form-status.error { color: #E6927A; }

/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: #11141C; color: rgba(244,239,227,0.7);
  padding: 80px var(--gutter) 36px;
  border-top: 1px solid rgba(184,149,106,0.18);
}
footer .wrap { padding: 0; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(244,239,227,0.1);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 30px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-col h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--gold); text-transform: uppercase; margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a, .footer-col li, .footer-col p {
  font-size: 14px; color: rgba(244,239,227,0.7); line-height: 1.7;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a:hover { color: var(--gold); }
.footer-brand .brand-name { color: var(--bone); }
.footer-brand p { margin-top: 18px; max-width: 36ch; }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244,239,227,0.5);
}
.footer-bottom .links { display: flex; gap: 28px; flex-wrap: wrap; }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ─── 3D INTRO OVERLAY ─────────────────────────────────────────── */
#reveal-intro {
  position: fixed; inset: 0; z-index: 9999; perspective: 2400px;
  pointer-events: none;
}
.panel {
  position: absolute; top: 0; bottom: 0;
  width: 50%; background: var(--bone);
  overflow: hidden; will-change: transform;
  transition: transform var(--t-open) var(--ease), box-shadow var(--t-open) var(--ease);
}
.panel-left  { left: 0;  transform-origin: left  center; }
.panel-right { right: 0; transform-origin: right center; }
body.intro-opening .panel { box-shadow: 0 0 80px rgba(0,0,0,0.25); }

.panel .mark-wrap {
  position: absolute; top: 50%; width: 240px; height: 240px;
  transform-origin: center center;
  transition: transform var(--t-tilt) var(--ease-tilt),
              opacity var(--t-mark) var(--ease-out),
              filter var(--t-mark) var(--ease-out);
}
.panel-left  .mark-wrap { left: 100%;  transform: translate(-50%, -50%) rotate(0deg); }
.panel-right .mark-wrap { right: 100%; transform: translate( 50%, -50%) rotate(0deg); }
body.intro-tilted .panel-left  .mark-wrap { transform: translate(-50%, -50%) rotate(90deg); }
body.intro-tilted .panel-right .mark-wrap { transform: translate( 50%, -50%) rotate(90deg); }
.panel .mark-half { position: absolute; inset: 0; width: 100%; height: 100%; }

.panel .word-half {
  position: absolute; top: 50%; margin-top: 110px;
  font-family: var(--sans); font-weight: 800; font-size: 42px;
  letter-spacing: 0.14em; color: var(--ink); white-space: nowrap;
}
.panel-left  .word-half { left: 100%; transform: translateX(-50%); }
.panel-right .word-half { right: 100%; transform: translate(50%, 0); }

.panel .tag-half {
  position: absolute; top: 50%; margin-top: 170px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.42em;
  color: var(--gold); text-transform: uppercase; white-space: nowrap;
}
.panel-left  .tag-half { left: 100%; transform: translateX(-50%); }
.panel-right .tag-half { right: 100%; transform: translate(50%, 0); }

#reveal-intro::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 50vw 70vh at center, transparent 0%, rgba(26,31,42,0.06) 100%),
    var(--bone);
}

body.intro-opening .panel-left  { transform: translateX(-100%) rotateY(-12deg); }
body.intro-opening .panel-right { transform: translateX( 100%) rotateY( 12deg); }
body.intro-opening .panel .mark-wrap { opacity: 0; filter: blur(2px); }
body.intro-opening .panel .word-half,
body.intro-opening .panel .tag-half  { opacity: 0; }
body.intro-opened #reveal-intro { display: none; }

.panel .mark-wrap, .panel .word-half, .panel .tag-half {
  opacity: 0; animation: panel-fade-in var(--t-rise) var(--ease-out) forwards;
}
.panel .mark-wrap { animation-delay: 200ms; }
.panel .word-half { animation-delay: 500ms; }
.panel .tag-half  { animation-delay: 720ms; }
@keyframes panel-fade-in { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 600px) {
  .panel .mark-wrap { width: 160px; height: 160px; }
  .panel .word-half { font-size: 28px; margin-top: 76px; }
  .panel .tag-half  { font-size: 9px; margin-top: 122px; letter-spacing: 0.32em; }
}

@media (prefers-reduced-motion: reduce) {
  .panel, .panel .mark-wrap, .panel .word-half, .panel .tag-half,
  .reveal { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

.intro-skip {
  position: fixed; bottom: 28px; right: 28px; z-index: 10000;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-2);
  background: transparent; border: 1px solid rgba(26,31,42,0.3);
  padding: 10px 14px; cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.intro-skip:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
body.intro-opened .intro-skip { display: none; }

/* ─── DETAIL / FEATURE LISTS ────────────────────────────────────── */
.feature-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(26,31,42,0.1);
  border: 1px solid rgba(26,31,42,0.1);
}
@media (max-width: 760px) { .feature-list { grid-template-columns: 1fr; } }
.feature {
  background: var(--bone-2); padding: 32px 28px;
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  transition: background .3s ease;
}
.feature:hover { background: var(--ink); color: var(--bone); }
.feature:hover .feature-icon { color: var(--gold); border-color: var(--gold); }
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(26,31,42,0.2); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: color .25s ease, border-color .25s ease;
}
.feature-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.feature h4 {
  font-family: var(--serif); font-size: 18px; margin: 0 0 6px;
  line-height: 1.3;
}
.feature p { font-size: 14px; opacity: 0.78; }

/* ─── SPLIT IMAGE-TEXT BLOCK ────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  aspect-ratio: 4/5; background: var(--ink);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.split-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(184,149,106,0.25) 0%, transparent 60%);
}
.split-visual .badge {
  position: relative; z-index: 2;
  width: 60%; aspect-ratio: 1/1;
  border: 1px solid rgba(184,149,106,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: spin 30s linear infinite;
}
.split-visual .badge svg {
  width: 50%; height: 50%; color: var(--gold);
  animation: spin 30s linear infinite reverse;
}

/* ─── CTA STRIP ──────────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold); color: var(--ink);
  padding: 80px var(--gutter);
}
.cta-strip .wrap {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 880px) { .cta-strip .wrap { grid-template-columns: 1fr; } }
.cta-strip h2 { font-size: clamp(28px, 4vw, 48px); }
.cta-strip .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 880px) { .cta-strip .actions { justify-self: start; } }
.cta-strip .btn { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.cta-strip .btn:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-strip .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-strip .btn-ghost:hover { background: var(--ink); color: var(--bone); }

/* ─── ARTICLE PROSE ──────────────────────────────────────────────── */
.prose { max-width: 70ch; }
.prose p { font-size: 16.5px; line-height: 1.7; color: var(--ink-2); margin-bottom: 24px; }
.prose h3 { font-family: var(--serif); font-size: 28px; margin: 50px 0 18px; }
.prose ul { padding-left: 22px; margin: 18px 0 28px; }
.prose ul li { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 22px; margin: 32px 0;
  font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.45;
  color: var(--ink);
}
.ink-section .prose p { color: rgba(244,239,227,0.78); }
.ink-section .prose ul li { color: rgba(244,239,227,0.78); }
.ink-section .prose strong { color: var(--bone); }
.ink-section .prose blockquote { color: var(--bone); border-color: var(--gold); }
