/* ============================================================
   THE THIRD TRUTH — "Emerald Vault"
   Deep forest green · glass gold · luminous curves
   ============================================================ */

:root {
  /* ground */
  --bg-0: #040f09;        /* page night-forest */
  --bg-1: #071a10;        /* section deep */
  --bg-2: #0a2015;        /* panel */
  --bg-3: #0d2a1b;        /* raised panel */

  /* bronze gold */
  --gold: #ad8339;
  --gold-bright: #d2ab61;
  --gold-deep: #74551f;
  --gold-line: rgba(173, 131, 57, 0.22);
  --gold-line-soft: rgba(173, 131, 57, 0.12);
  --gold-glow: rgba(173, 131, 57, 0.32);

  /* greens */
  --green-mid: #16402a;
  --green-soft: #9db8a6;

  /* text */
  --ink: #ece7d3;
  --ink-soft: #b9c4b6;
  --ink-faint: #7e937f;

  /* type */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --wrap: 1200px;
  --radius: 14px;
  --ease: cubic-bezier(.22,.9,.28,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: rgba(173,131,57,.28); color: #fffbe9; }

body {
  background-image:
    radial-gradient(1200px 700px at 85% -10%, rgba(22, 64, 42, .45), transparent 60%),
    radial-gradient(1000px 600px at -10% 30%, rgba(13, 42, 27, .5), transparent 55%);
  background-attachment: fixed;
}

/* faint grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

/* skip link */
.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 200;
  background: var(--gold);
  color: #10130a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- typography helpers ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: .2px; }
h2 { font-size: clamp(30px, 4.4vw, 52px); color: var(--ink); }
h2 em, h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
h3 { font-size: clamp(21px, 2.4vw, 28px); }

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.label::before {
  content: "";
  display: inline-block;
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  vertical-align: middle;
  margin-right: 12px;
}
.lede { color: var(--ink-soft); max-width: 56ch; margin-top: 18px; }
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 8px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn-gold {
  color: #0e1008;
  background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  border: 1px solid rgba(234, 214, 170, .4);
  box-shadow:
    0 1px 0 rgba(240,224,184,.45) inset,
    0 -8px 18px rgba(84, 60, 16, .5) inset,
    0 10px 34px rgba(0,0,0,.45),
    0 0 26px rgba(173,131,57,.22);
  font-weight: 500;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(240,224,184,.45) inset, 0 -8px 18px rgba(84,60,16,.5) inset, 0 16px 40px rgba(0,0,0,.5), 0 0 44px rgba(173,131,57,.4); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--gold-line);
  background: rgba(10, 32, 21, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-block { width: 100%; }

.text-link, .inline-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.inline-link { text-transform: none; letter-spacing: .04em; font-family: inherit; font-size: inherit; }
.text-link:hover, .inline-link:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 14px 30px;
  transition: background .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(4, 15, 9, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--gold-line-soft);
  padding: 10px 30px;
}
.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand-mark { width: 40px; height: 34px; filter: drop-shadow(0 0 10px rgba(173,131,57,.35)); }
.brand-name { font-family: var(--serif); font-size: 19px; letter-spacing: .04em; display: block; line-height: 1.1; }
.brand-sub { font-family: var(--mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-top: 3px; }
.site-nav { display: flex; gap: 26px; }
.site-nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  transition: color .3s;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.site-nav a:hover { color: var(--gold-bright); }
.site-nav a:hover::after { right: 0; }
.header-cta { padding: 11px 20px; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--gold); transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(4, 15, 9, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  overflow-y: auto;
  padding: 92px 0 40px;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 8px; width: min(85vw, 380px); margin: auto; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 27px;
  padding: 12px 6px;
  border-bottom: 1px solid var(--gold-line-soft);
  display: flex; align-items: baseline; gap: 16px;
}
.mobile-nav a span { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: .2em; }
.mobile-nav .mobile-cta { border: none; color: var(--gold-bright); margin-top: 18px; font-style: italic; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-aurora { position: absolute; inset: 0; z-index: -1; }
.aurora-svg { width: 100%; height: 100%; }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 42%, transparent 30%, rgba(4,15,9,.55) 75%, rgba(4,15,9,.92) 100%),
    linear-gradient(180deg, rgba(4,15,9,.5) 0%, transparent 22%, transparent 72%, var(--bg-0) 100%);
}

/* flowing waves — each path repeats every 800 user units; sliding one wavelength loops seamlessly */
.wave { will-change: transform; }
.wave-a { animation: waveShift 15s linear infinite; }
.wave-b { animation: waveShiftBack 28s linear infinite; }
.wave-c { animation: waveShift 38s linear infinite; }
@keyframes waveShift { from { transform: translateX(0); } to { transform: translateX(800px); } }
@keyframes waveShiftBack { from { transform: translateX(0); } to { transform: translateX(-800px); } }

.hero-inner { max-width: 900px; display: flex; flex-direction: column; align-items: center; }
.hero-monogram {
  width: clamp(190px, 22vw, 290px);
  height: auto;
  aspect-ratio: 800 / 677;
  filter:
    drop-shadow(0 0 22px rgba(173,131,57,.4))
    drop-shadow(0 14px 48px rgba(0,0,0,.6));
  margin-bottom: 30px;
}
.hero-title {
  font-size: clamp(40px, 6.4vw, 78px);
  margin: 22px 0 26px;
  text-shadow: 0 4px 40px rgba(0,0,0,.55);
}
.hero-title em { position: relative; white-space: nowrap; }
.hero-title em::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: .04em;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-sub { color: var(--ink-soft); max-width: 62ch; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero-foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 30px;
  border-top: 1px solid var(--gold-line-soft);
  background: linear-gradient(180deg, transparent, rgba(4,15,9,.5));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-note, .hero-tags, .hero-scroll {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-tags i { color: var(--gold); font-style: normal; padding: 0 6px; }
.hero-scroll { color: var(--gold); transition: color .3s; }
.hero-scroll:hover { color: var(--gold-bright); }
.pulse-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: 1px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(173,131,57,.5); } 50% { box-shadow: 0 0 0 6px rgba(173,131,57,0); } }

/* ---------- marquee ---------- */
.marquee-band {
  border-top: 1px solid var(--gold-line-soft);
  border-bottom: 1px solid var(--gold-line-soft);
  background: rgba(7, 26, 16, .55);
  overflow: hidden;
  padding: 22px 0;
}
.marquee { display: flex; overflow: hidden; user-select: none; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-shrink: 0;
  animation: marquee 42s linear infinite;
  padding-right: 34px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee-track span {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color .3s;
}
.marquee-track span:hover { color: var(--gold-bright); }
.marquee-track i { color: var(--gold); font-style: normal; }

/* ---------- sections ---------- */
.section { padding: 110px 0; position: relative; scroll-margin-top: 64px; }
.section-deep {
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(22,64,42,.3), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border-top: 1px solid var(--gold-line-soft);
  border-bottom: 1px solid var(--gold-line-soft);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}
.section-aside {
  font-size: 14.5px;
  color: var(--ink-faint);
  max-width: 34ch;
  text-align: right;
  border-right: 1px solid var(--gold-line);
  padding-right: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

/* ---------- house ---------- */
.house-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  padding: 30px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease);
}
.stat-card::after {
  content: "";
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.stat-card:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  color: var(--gold-bright);
  line-height: 1;
}
.stat-arrow { font-size: .6em; vertical-align: .25em; color: var(--gold); }
.stat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 12px;
}

/* ---------- disciplines ---------- */
.disciplines {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 40px;
  align-items: start;
}
.disc-list { display: flex; flex-direction: column; }
.disc-tab {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 23px);
  color: var(--ink-soft);
  padding: 18px 20px;
  border-bottom: 1px solid var(--gold-line-soft);
  border-left: 2px solid transparent;
  transition: color .3s, background .3s, border-color .3s, padding-left .3s var(--ease);
}
.disc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gold-deep);
  min-width: 30px;
  transition: color .3s;
}
.disc-tab:hover { color: var(--ink); background: rgba(13,42,27,.35); }
.disc-tab.is-active {
  color: var(--gold-bright);
  background: linear-gradient(90deg, rgba(173,131,57,.1), transparent 70%);
  border-left-color: var(--gold);
  padding-left: 26px;
}
.disc-tab.is-active .disc-num { color: var(--gold); }

.disc-panels { position: relative; }
.disc-panel {
  background: linear-gradient(170deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  padding: 44px 46px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  animation: panelIn .5s var(--ease);
}
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.disc-kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.disc-panel h3 { color: var(--ink); margin-bottom: 14px; font-size: clamp(24px, 2.6vw, 32px); }
.disc-panel > p { color: var(--ink-soft); max-width: 60ch; }
.disc-caps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 26px;
  margin: 26px 0 8px;
}
.disc-caps li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.disc-caps li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.disc-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.spec-chip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line);
  background: rgba(173,131,57,.06);
  padding: 8px 14px;
  border-radius: 100px;
}

/* ---------- process ---------- */
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.process-step {
  border-top: 1px solid var(--gold-line);
  padding-top: 26px;
  position: relative;
}
.process-step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 46px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.process-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 14px;
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- work / the rack ---------- */
.work-index {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7,26,16,.4);
}
.work-row {
  display: grid;
  grid-template-columns: 70px 1.2fr 1.3fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gold-line-soft);
  transition: background .3s, color .3s, padding-left .3s var(--ease);
}
.work-row:last-child { border-bottom: none; }
.work-row-head { color: var(--gold); font-size: 10px; letter-spacing: .3em; background: rgba(13,42,27,.5); }
a.work-row:hover { background: rgba(173,131,57,.07); color: var(--gold-bright); padding-left: 34px; }
.work-row span:first-child { color: var(--gold); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

/* intro block shared by the Web Design & Content showcase sections */
.showcase-intro {
  align-items: start;
  gap: 50px;
  margin-bottom: 56px;
  padding: 34px 38px;
  background: linear-gradient(170deg, rgba(13,42,27,.5), rgba(10,32,21,.35));
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
}
.showcase-lede { color: var(--ink-soft); max-width: 58ch; }
.showcase-caps { margin: 6px 0 0; }

/* creator preview windows — 3-up media rows inside the browser frame */
.crew-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bg-0);
}
.crew-media img,
.crew-media video {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(.96);
  transition: filter .7s;
}
.crew-grid .shot img { aspect-ratio: 3 / 4; }
.crew-grid .work-card:hover .shot img { transform: none; filter: saturate(1.06); }
.work-card {
  background: linear-gradient(170deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: 84px;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 34px 80px rgba(0,0,0,.5), 0 0 40px rgba(173,131,57,.08);
}
.shot { display: block; position: relative; border-bottom: 1px solid var(--gold-line-soft); overflow: hidden; }
.shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  object-position: top;
  transition: transform .8s var(--ease), filter .8s;
  filter: saturate(.92);
}
.work-card:hover .shot img { transform: scale(1.035); filter: saturate(1.05); }
.shot-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(4,15,9,.92);
  padding: 10px 16px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.shot-chrome i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(173,131,57,.25);
  border: 1px solid var(--gold-line);
}
.shot-chrome b {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink-faint);
  margin-left: 10px;
}
.work-meta { padding: 30px 32px 34px; }
.work-no {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.work-meta h3 { margin-bottom: 12px; }
.work-meta p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 20px; }

/* ---------- network / hubs ---------- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hub-card {
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  transition: transform .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}
.hub-card::after {
  content: "";
  position: absolute;
  bottom: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px solid var(--gold-line-soft);
  opacity: .7;
}
.hub-card:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.hub-num { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--gold); margin-bottom: 16px; }
.hub-card h3 { font-size: 22px; margin-bottom: 8px; }
.hub-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.hub-note { font-size: 13.5px; color: var(--ink-faint); }

/* ---------- faq ---------- */
.faq-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.faq-group-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-line);
}
.faq-group details { border-bottom: 1px solid var(--gold-line-soft); }
.faq-group summary {
  font-family: var(--serif);
  font-size: 17.5px;
  color: var(--ink);
  padding: 18px 30px 18px 2px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .3s;
}
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  color: var(--gold);
  transition: transform .3s var(--ease);
}
.faq-group details[open] summary { color: var(--gold-bright); }
.faq-group details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-group summary:hover { color: var(--gold-bright); }
.faq-group details p {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 0 8px 20px 2px;
}

/* ---------- connect ---------- */
.connect { overflow: hidden; }
.connect-aurora {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 420px at 18% 30%, rgba(22,64,42,.55), transparent 65%),
    radial-gradient(560px 380px at 88% 75%, rgba(173,131,57,.08), transparent 60%);
}
.connect .grid-2 { align-items: start; position: relative; }
.assurances { list-style: none; margin-top: 26px; }
.assurances li {
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--gold-line-soft);
  color: var(--ink-soft);
  font-size: 15px;
  position: relative;
}
.assurances li::before {
  content: "";
  position: absolute;
  left: 4px; top: 50%;
  width: 14px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}
.form-card {
  background: linear-gradient(170deg, rgba(13,42,27,.85), rgba(10,32,21,.9));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 40px 40px 34px;
  box-shadow: 0 40px 90px rgba(0,0,0,.45), 0 0 60px rgba(173,131,57,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.form-card .opt { color: var(--green-soft); letter-spacing: .1em; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  margin-top: 8px;
  background: rgba(4,15,9,.55);
  border: 1px solid var(--gold-line-soft);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px; /* ≥16px prevents iOS Safari auto-zoom */
  padding: 13px 14px;
  transition: border-color .3s, box-shadow .3s;
}
.form-card select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ad8339' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(173,131,57,.12);
}
.form-card textarea { resize: vertical; min-height: 96px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { font-size: 14px; margin-top: 14px; text-align: center; color: var(--gold-bright); min-height: 20px; }
.form-status.is-error { color: #e0a196; }
.form-fine {
  font-size: 11.5px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 10px;
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--gold-line-soft);
  background: linear-gradient(180deg, var(--bg-0), #020805);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-mark { width: 47px; height: 40px; margin-bottom: 16px; filter: drop-shadow(0 0 10px rgba(173,131,57,.3)); }
.footer-name { font-family: var(--serif); font-size: 21px; margin-bottom: 10px; }
.footer-sub { font-size: 13.5px; color: var(--ink-faint); max-width: 36ch; }
.footer-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col span { font-size: 14px; color: var(--ink-soft); transition: color .3s; width: fit-content; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--gold-line-soft);
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.footer-motto em { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 14px; letter-spacing: .05em; text-transform: none; }

/* ---------- reveal (scoped to .js so content survives without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 46px; }
  .disciplines { grid-template-columns: 1fr; }
  .disc-list { flex-direction: row; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--gold-line-soft); }
  .disc-list::-webkit-scrollbar { display: none; }
  .disc-tab { border-bottom: none; border-left: none; border-top: 2px solid transparent; white-space: nowrap; font-size: 16px; padding: 14px 18px; }
  .disc-tab.is-active { border-left: none; border-top-color: var(--gold); padding-left: 18px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 26px; }
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .faq-cols { grid-template-columns: 1fr; gap: 46px; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-aside { text-align: left; border-right: none; border-left: 1px solid var(--gold-line); padding: 0 0 0 18px; }
}
@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .wrap { padding: 0 20px; }
  .hero { padding-top: 104px; }
  .hero-foot { flex-direction: column; gap: 8px; padding: 14px 20px; }
  .hero-tags { display: none; }
  .brand-sub { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .work-row { grid-template-columns: 44px 1fr; grid-auto-rows: auto; row-gap: 4px; }
  .work-row span:nth-child(3), .work-row span:nth-child(4) { grid-column: 2; font-size: 10px; color: var(--ink-faint); }
  .work-row-head span:nth-child(3), .work-row-head span:nth-child(4) { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .disc-panel { padding: 30px 24px; }
  .disc-caps { grid-template-columns: 1fr; }
  .showcase-intro { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wave, .hero-monogram, .pulse-dot, .disc-panel { animation: none; }
  .marquee-track { animation-duration: 160s; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { transition-duration: .01ms !important; }
}

/* ---------- mobile: fixed backgrounds unsupported on iOS ---------- */
@media (max-width: 1060px) {
  body { background-attachment: scroll; }
}

/* ---------- backdrop-filter fallback ---------- */
@supports not (backdrop-filter: blur(1px)) {
  .site-header.is-scrolled { background: rgba(4, 15, 9, .97); }
  .mobile-nav { background: rgba(4, 15, 9, .99); }
}

/* ---------- print ---------- */
@media print {
  body { background: #fff; color: #111; }
  body::before, .hero-aurora, .marquee-band, .site-header, .mobile-nav,
  .hero-foot, .form-card, .skip-link { display: none !important; }
  h1, h2, h3, .stat-num { color: #111; }
  h2 em, h1 em { color: #6b5410; }
  .lede, p, .disc-caps li, .hub-note { color: #333; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
