/* ========================================================================
   AKIKO ADVISORY — ULTIMATE FRONTEND
   Editorial luxury + product precision. Progressive enhancement by design.
   ======================================================================== */

:root {
  --navy-950: #061630;
  --navy-900: #081d3a;
  --navy-800: #0b2247;
  --navy-700: #17345f;
  --navy-100: #e9edf4;
  --gold-700: #8e6d35;
  --gold-600: #a98547;
  --gold-500: #b9975a;
  --gold-400: #c9aa70;
  --gold-200: #e8d8b6;
  --gold-100: #f4ead4;
  --ivory: #f7f3e9;
  --paper: #fcfbf7;
  --white: #ffffff;
  --ink: #101820;
  --muted: #5e6570;
  --line: rgba(8, 29, 58, .13);
  --line-light: rgba(255, 255, 255, .16);
  --shadow-xs: 0 1px 2px rgba(6, 22, 48, .05);
  --shadow-sm: 0 12px 32px -22px rgba(6, 22, 48, .35);
  --shadow-md: 0 28px 70px -40px rgba(6, 22, 48, .45);
  --shadow-lg: 0 48px 120px -52px rgba(6, 22, 48, .62);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: min(1240px, calc(100vw - 48px));
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.2, .9, .24, 1.28);
  --mx: 50vw;
  --my: 25vh;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--navy-800); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.shell { width: var(--shell); margin-inline: auto; }
.section-light { background: var(--paper); }
.section-sand { background: var(--ivory); }
.section-dark { color: var(--white); background: var(--navy-950); }

.grain {
  position: fixed;
  z-index: 50;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-5%,-10%); }
  20% { transform: translate(-15%,5%); }
  30% { transform: translate(7%,-20%); }
  40% { transform: translate(-5%,20%); }
  50% { transform: translate(-15%,10%); }
  60% { transform: translate(15%,0); }
  70% { transform: translate(0,15%); }
  80% { transform: translate(3%,20%); }
  90% { transform: translate(-10%,10%); }
}

.ambient-light {
  position: fixed;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(520px circle at var(--mx) var(--my), rgba(185,151,90,.10), transparent 68%);
  transition: opacity .5s ease;
}
@media (hover:hover) and (pointer:fine) { .ambient-light { opacity: 1; } }

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-200));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Header ----------------------------------------------------------------- */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled {
  background: rgba(252, 251, 247, .82);
  border-bottom-color: rgba(8,29,58,.08);
  box-shadow: 0 12px 40px -35px rgba(6,22,48,.55);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; height: 94px; transition: height .4s var(--ease-out); }
.site-header.is-scrolled .nav-shell { height: 72px; }
.brand { position: relative; z-index: 2; width: 78px; height: 72px; display: grid; place-items: center; }
.brand img { width: 74px; height: auto; object-fit: contain; transition: width .4s var(--ease-out); }
.site-header.is-scrolled .brand img { width: 62px; }
.nav-menu { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 34px); }
.nav-menu > a:not(.nav-cta) {
  position: relative;
  color: rgba(8,29,58,.75);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .25s ease;
}
.nav-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-600);
  transition: right .35s var(--ease-out);
}
.nav-menu > a:not(.nav-cta):hover,
.nav-menu > a:not(.nav-cta).is-active { color: var(--navy-900); }
.nav-menu > a:not(.nav-cta):hover::after,
.nav-menu > a:not(.nav-cta).is-active::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px 0 22px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: background .3s ease, transform .3s var(--ease-out), box-shadow .3s ease;
}
.nav-cta i { font-style: normal; transition: transform .3s var(--ease-out); }
.nav-cta:hover { background: var(--navy-700); box-shadow: 0 18px 40px -22px rgba(6,22,48,.6); }
.nav-cta:hover i { transform: translate(2px,-2px); }
.nav-toggle { display: none; border: 0; background: transparent; width: 48px; height: 48px; padding: 0; }
.nav-toggle span { display: block; width: 23px; height: 1.5px; margin: 6px auto; background: var(--navy-900); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* Shared typography ------------------------------------------------------ */
.kicker,
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-700);
  font-size: .73rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-index span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--navy-800);
  border: 1px solid rgba(185,151,90,.48);
  border-radius: 50%;
  font-size: .66rem;
  letter-spacing: 0;
}
.section-dark .section-index span { color: var(--gold-200); border-color: rgba(201,170,112,.42); }
.section-heading { margin-bottom: clamp(42px, 7vw, 88px); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .62fr); gap: clamp(40px, 8vw, 120px); align-items: end; }
.section-heading--center { max-width: 820px; margin-inline: auto; text-align: center; }
.section-heading--center .section-index { justify-content: center; }
.section-heading h2,
.method-intro h2,
.faq-intro h2,
.founder-copy h2,
.contact-copy h2 {
  margin: 22px 0 0;
  color: var(--navy-950);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading h2 em,
.method-intro h2 em { color: var(--gold-700); font-weight: 500; }
.section-heading > p,
.method-intro > p,
.faq-intro > p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}
.section-heading.inverse h2,
.section-dark .method-intro h2,
.section-dark .faq-intro h2,
.section-dark .contact-copy h2 { color: var(--white); }
.section-heading.inverse > p { color: rgba(255,255,255,.62); }

/* Buttons ---------------------------------------------------------------- */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 650;
  letter-spacing: -.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .35s var(--ease-out), box-shadow .35s ease;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -100%;
  left: -38%;
  width: 34%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: rotate(22deg);
  transition: left .7s var(--ease-out);
}
.button:hover::before { left: 112%; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease-out); }
.button:hover svg { transform: translateX(4px); }
.button--gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); box-shadow: 0 19px 45px -24px rgba(142,109,53,.85); }
.button--gold:hover { box-shadow: 0 26px 58px -25px rgba(142,109,53,.9); }
.button--ghost { color: var(--navy-800); background: rgba(255,255,255,.38); border-color: rgba(8,29,58,.17); backdrop-filter: blur(12px); }
.button--ghost:hover { background: rgba(255,255,255,.78); border-color: rgba(8,29,58,.3); }
.button--outline { width: 100%; color: var(--navy-900); background: transparent; border-color: rgba(8,29,58,.22); }
.button--outline:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.button--light { width: 100%; color: var(--navy-950); background: var(--white); }
.button:focus-visible, .nav-menu a:focus-visible, .text-link:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(185,151,90,.65); outline-offset: 4px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: inherit; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { transition: transform .3s var(--ease-out); }
.text-link:hover span { transform: translate(3px,-3px); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(142px, 15vh, 190px) 0 clamp(84px, 9vh, 120px);
  background:
    radial-gradient(70% 72% at 82% 48%, rgba(185,151,90,.18), transparent 62%),
    radial-gradient(42% 48% at 18% 22%, rgba(11,34,71,.07), transparent 70%),
    linear-gradient(180deg, #faf7ef 0%, #f8f5ec 60%, #fcfbf7 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .33;
  background-image: radial-gradient(rgba(8,29,58,.22) .7px, transparent .7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1240px, 90vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(185,151,90,.55), transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(390px, .84fr); gap: clamp(48px, 7vw, 112px); align-items: center; }
.hero-copy { max-width: 760px; }
.hero-title {
  margin: 25px 0 26px;
  color: var(--navy-950);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.25rem, 6.15vw, 6.2rem);
  line-height: .94;
  font-weight: 500;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.hero-title em { display: inline; color: var(--gold-700); font-weight: 500; }
.hero-lead { max-width: 64ch; margin-bottom: 0; color: #4f5963; font-size: clamp(1.05rem, 1.45vw, 1.24rem); line-height: 1.72; letter-spacing: -.012em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px 23px; padding: 0; margin: 30px 0 0; list-style: none; color: rgba(8,29,58,.7); font-size: .83rem; font-weight: 600; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof li span { color: var(--gold-500); font-size: .58rem; }
.hero-stage { position: relative; width: min(100%, 510px); justify-self: end; perspective: 1000px; transform-style: preserve-3d; }
.stage-aura { position: absolute; inset: 8% -8% -10%; background: radial-gradient(circle, rgba(185,151,90,.28), transparent 68%); filter: blur(35px); }
.decision-card {
  position: relative;
  z-index: 2;
  min-height: 516px;
  padding: 30px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(8,29,58,.12);
  border-radius: 30px;
  box-shadow: 0 48px 95px -50px rgba(6,22,48,.66), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(24px) saturate(140%);
  overflow: hidden;
  transform: none;
  transition: transform .15s linear;
}
.decision-card::before,
.decision-card::after { content: ""; position: absolute; border: 1px solid rgba(185,151,90,.22); border-radius: 50%; }
.decision-card::before { width: 210px; height: 210px; right: -86px; top: -95px; }
.decision-card::after { width: 150px; height: 150px; right: -55px; top: -66px; }
.decision-card__header { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.profile-lockup { display: flex; align-items: center; gap: 13px; }
.profile-lockup picture { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(185,151,90,.5); padding: 3px; background: var(--white); overflow: hidden; }
.profile-lockup img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; border-radius: 50%; }
.profile-lockup strong { display: block; color: var(--navy-950); font-family: Fraunces, Georgia, serif; font-size: 1.16rem; font-weight: 600; }
.profile-lockup span { display: block; margin-top: 2px; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; color: var(--navy-700); font-size: .68rem; font-weight: 650; }
.live-badge i { width: 7px; height: 7px; background: #48c878; border-radius: 50%; box-shadow: 0 0 0 5px rgba(72,200,120,.12); animation: pulse 2.1s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(72,200,120,0); } }
.decision-map { position: relative; display: grid; gap: 32px; padding: 45px 0 38px 8px; }
.decision-line { position: absolute; top: 57px; bottom: 51px; left: 21px; width: 1px; background: rgba(8,29,58,.12); overflow: hidden; }
.decision-line span { display: block; width: 100%; height: 58%; background: linear-gradient(var(--gold-400), var(--gold-600)); animation: mapLine 3.4s var(--ease-out) infinite alternate; }
@keyframes mapLine { from { transform: translateY(-25%); } to { transform: translateY(70%); } }
.decision-step { position: relative; z-index: 1; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center; }
.decision-dot { display: grid; place-items: center; width: 28px; height: 28px; color: var(--navy-700); background: var(--paper); border: 1px solid rgba(8,29,58,.18); border-radius: 50%; font-size: .61rem; font-weight: 700; }
.decision-step.is-done .decision-dot { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.decision-step.is-active .decision-dot { color: var(--navy-950); background: var(--gold-400); border-color: var(--gold-400); box-shadow: 0 0 0 8px rgba(185,151,90,.12); }
.decision-step strong { display: block; color: var(--navy-950); font-size: .94rem; }
.decision-step small { display: block; margin-top: 3px; color: var(--muted); font-size: .76rem; }
.decision-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--line); color: var(--navy-700); font-size: .81rem; font-weight: 650; }
.decision-card__footer strong { color: var(--gold-600); font-size: 1.4rem; font-weight: 400; }
.floating-note { position: absolute; z-index: 3; min-width: 170px; padding: 13px 15px; color: var(--navy-900); background: rgba(255,255,255,.86); border: 1px solid rgba(185,151,90,.22); border-radius: 14px; box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
.floating-note span { display: block; color: var(--gold-700); font-size: .61rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.floating-note strong { display: block; margin-top: 2px; font-size: .77rem; }
.floating-note--top { top: 22%; right: -18px; }
.floating-note--bottom { left: -32px; bottom: 17%; animation-delay: -2.1s; }
@keyframes float { 50% { transform: translateY(-9px); } }
.hero-orbit { position: absolute; border: 1px solid rgba(185,151,90,.18); border-radius: 50%; pointer-events: none; }
.hero-orbit::before { content: ""; position: absolute; width: 7px; height: 7px; background: var(--gold-500); border-radius: 50%; box-shadow: 0 0 20px rgba(185,151,90,.75); }
.hero-orbit--one { width: 680px; height: 680px; right: -330px; top: 10%; animation: orbitSpin 34s linear infinite; }
.hero-orbit--one::before { top: 48%; left: -4px; }
.hero-orbit--two { width: 380px; height: 380px; left: -220px; bottom: -160px; animation: orbitSpin 24s linear infinite reverse; }
.hero-orbit--two::before { top: -4px; left: 50%; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.hero-scroll { position: absolute; z-index: 3; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(8,29,58,.55); font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll i { position: relative; width: 1px; height: 34px; background: rgba(8,29,58,.16); overflow: hidden; }
.hero-scroll i::after { content: ""; position: absolute; inset: 0; background: var(--gold-600); transform: translateY(-100%); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 50%,100% { transform: translateY(100%); } }

/* Trust rail ------------------------------------------------------------- */
.trust-rail { position: relative; z-index: 2; background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 34px; width: max-content; min-width: 200%; padding: 21px 0; color: var(--navy-700); font-size: .74rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; animation: marquee 32s linear infinite; }
.marquee-track i { color: var(--gold-500); font-size: .48rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Manifesto -------------------------------------------------------------- */
.manifesto { position: relative; padding: clamp(100px, 13vw, 180px) 0; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; width: 800px; height: 800px; left: -390px; top: 15%; border: 1px solid rgba(185,151,90,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(185,151,90,.025), 0 0 0 180px rgba(185,151,90,.018); }
.manifesto-grid { position: relative; display: grid; grid-template-columns: 250px 1fr; gap: 60px; }
.manifesto-grid .section-index { color: var(--gold-400); align-self: start; }
.manifesto-line { margin-bottom: 20px; color: rgba(255,255,255,.58); font-size: clamp(1rem, 1.5vw, 1.25rem); }
.manifesto-title { max-width: 16ch; margin-bottom: 52px; color: var(--white); font-family: Fraunces, Georgia, serif; font-size: clamp(3rem, 6vw, 6.4rem); line-height: .98; font-weight: 450; letter-spacing: -.052em; }
.manifesto-title em { color: var(--gold-400); font-weight: 450; }
.manifesto-bottom { display: flex; justify-content: space-between; align-items: end; gap: 48px; border-top: 1px solid var(--line-light); padding-top: 30px; }
.manifesto-bottom p { max-width: 60ch; margin: 0; color: rgba(255,255,255,.62); font-size: 1.02rem; }
.risk-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 90px; }
.risk-card { min-height: 280px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.035); backdrop-filter: blur(10px); transition: background .35s ease, border-color .35s ease, transform .15s linear; }
.risk-card:hover { background: rgba(255,255,255,.065); border-color: rgba(185,151,90,.35); }
.risk-card__number { color: var(--gold-400); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.risk-card h3 { margin: 42px 0 12px; font-family: Fraunces, Georgia, serif; font-size: 1.9rem; font-weight: 500; }
.risk-card p { max-width: 34ch; margin-bottom: 36px; color: rgba(255,255,255,.56); font-size: .91rem; }
.risk-meter { height: 2px; background: rgba(255,255,255,.09); overflow: hidden; }
.risk-meter span { display: block; width: var(--value); height: 100%; background: linear-gradient(90deg, var(--gold-600), var(--gold-200)); transform-origin: left; }

/* Analysis ticket -------------------------------------------------------- */
.analysis-ticket { padding: clamp(90px, 11vw, 150px) 0; }
.ticket { position: relative; display: grid; grid-template-columns: 1.15fr .75fr; gap: clamp(42px, 8vw, 110px); align-items: center; padding: clamp(38px, 6vw, 74px); color: var(--white); background: var(--navy-900); border: 1px solid rgba(185,151,90,.44); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; isolation: isolate; }
.ticket::before { content: ""; position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle at 80% 50%, black, transparent 70%); }
.ticket-glow { position: absolute; z-index: -1; width: 480px; height: 480px; right: -180px; top: -150px; background: radial-gradient(circle, rgba(185,151,90,.28), transparent 67%); }
.ticket h2 { max-width: 14ch; margin: 18px 0 22px; font-family: Fraunces, Georgia, serif; font-size: clamp(2.55rem, 4.7vw, 4.85rem); line-height: 1; font-weight: 500; letter-spacing: -.045em; }
.ticket-copy > p:not(.kicker) { max-width: 59ch; color: rgba(255,255,255,.64); }
.ticket-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.ticket-actions > span { color: rgba(255,255,255,.48); font-size: .72rem; line-height: 1.6; }
.ticket-steps { position: relative; display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
.ticket-steps::before { content: ""; position: absolute; left: 23px; top: 25px; bottom: 25px; width: 1px; background: linear-gradient(var(--gold-500), rgba(185,151,90,.08)); }
.ticket-steps li { position: relative; z-index: 1; display: grid; grid-template-columns: 47px 1fr; gap: 16px; align-items: center; padding: 19px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: 16px; }
.ticket-steps li > span { display: grid; place-items: center; width: 47px; height: 47px; color: var(--navy-950); background: var(--gold-400); border-radius: 50%; font-size: .69rem; font-weight: 750; }
.ticket-steps strong, .ticket-steps small { display: block; }
.ticket-steps strong { font-size: .92rem; }
.ticket-steps small { margin-top: 2px; color: rgba(255,255,255,.53); font-size: .72rem; }

/* Audience --------------------------------------------------------------- */
.audience { padding: clamp(100px, 13vw, 180px) 0; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.audience-card { position: relative; min-height: 360px; display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); overflow: hidden; transition: box-shadow .35s ease, border-color .35s ease, transform .15s linear; }
.audience-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -150px; top: -140px; border: 1px solid rgba(185,151,90,.24); border-radius: 50%; box-shadow: 0 0 0 35px rgba(185,151,90,.035); transition: transform .6s var(--ease-out); }
.audience-card:hover { border-color: rgba(185,151,90,.44); box-shadow: var(--shadow-md); }
.audience-card:hover::before { transform: scale(1.18) translate(-10px, 12px); }
.audience-card__icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--gold-700); background: var(--gold-100); border-radius: 50%; font-size: 1.1rem; }
.audience-card__count { position: absolute; right: 27px; top: 31px; color: rgba(8,29,58,.32); font-size: .67rem; font-weight: 700; }
.audience-card h3 { max-width: 14ch; margin: 74px 0 15px; color: var(--navy-950); font-family: Fraunces, Georgia, serif; font-size: clamp(1.65rem, 2.5vw, 2.25rem); line-height: 1.06; font-weight: 500; }
.audience-card p { color: var(--muted); font-size: .92rem; }
.audience-card a { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); color: var(--navy-900); font-size: .82rem; font-weight: 650; }
.audience-card a span { color: var(--gold-700); font-size: 1rem; transition: transform .3s ease; }
.audience-card:hover a span { transform: translate(3px,-3px); }

/* Method ----------------------------------------------------------------- */
.method { padding: clamp(110px, 14vw, 190px) 0; }
.method-layout { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(500px, 1.2fr); gap: clamp(60px, 9vw, 140px); align-items: start; }
.method-intro { position: sticky; top: 132px; }
.method-intro h2 { max-width: 11ch; }
.method-intro > p { margin-top: 25px; }
.method-indicator { width: 100%; height: 2px; margin-top: 42px; background: rgba(8,29,58,.1); overflow: hidden; }
.method-indicator span { display: block; width: 25%; height: 100%; background: var(--gold-600); transition: transform .45s var(--ease-out); }
.method-list { display: grid; }
.method-step { position: relative; display: grid; grid-template-columns: 82px 1fr 28px; gap: 26px; align-items: start; min-height: 260px; padding: 45px 0; border-top: 1px solid var(--line); transition: opacity .35s ease; }
.method-step:last-child { border-bottom: 1px solid var(--line); }
.method-step__number { display: grid; place-items: center; width: 57px; height: 57px; color: var(--navy-800); background: rgba(255,255,255,.45); border: 1px solid rgba(185,151,90,.4); border-radius: 50%; font-size: .72rem; font-weight: 750; }
.method-step p { margin: 2px 0 10px; color: var(--gold-700); font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.method-step h3 { max-width: 19ch; margin-bottom: 14px; color: var(--navy-950); font-family: Fraunces, Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.03; font-weight: 500; letter-spacing: -.03em; }
.method-step div > span { display: block; max-width: 52ch; color: var(--muted); font-size: .93rem; }
.method-step > i { color: var(--gold-700); font-size: 1.2rem; font-style: normal; opacity: .4; transition: transform .3s ease, opacity .3s ease; }
.method-step.is-active > i, .method-step:hover > i { opacity: 1; transform: translate(4px,-4px); }

/* Execution constellation ------------------------------------------------ */
.execution { position: relative; padding: clamp(110px, 14vw, 190px) 0; overflow: hidden; }
.execution::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 60%, rgba(185,151,90,.11), transparent 70%); }
.execution-orbit, .execution-orbit span { position: absolute; border: 1px solid rgba(185,151,90,.1); border-radius: 50%; }
.execution-orbit { width: 940px; height: 940px; left: 50%; top: 58%; transform: translate(-50%,-50%); }
.execution-orbit span:nth-child(1) { inset: 100px; }
.execution-orbit span:nth-child(2) { inset: 220px; }
.execution-orbit span:nth-child(3) { inset: 350px; }
.constellation { position: relative; width: min(100%, 1040px); min-height: 680px; margin: 45px auto 0; }
.constellation::before, .constellation::after { content: ""; position: absolute; left: 50%; top: 50%; background: linear-gradient(90deg, transparent, rgba(185,151,90,.24), transparent); transform: translate(-50%,-50%); }
.constellation::before { width: 84%; height: 1px; }
.constellation::after { width: 1px; height: 76%; background: linear-gradient(transparent, rgba(185,151,90,.24), transparent); }
.constellation-core { position: absolute; z-index: 3; left: 50%; top: 50%; width: 260px; height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; text-align: center; color: var(--navy-950); background: radial-gradient(circle at 30% 20%, #dfc590, var(--gold-500)); border-radius: 50%; box-shadow: 0 0 0 20px rgba(185,151,90,.07), 0 35px 80px -40px rgba(185,151,90,.75); transform: translate(-50%,-50%); }
.constellation-core::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; }
.constellation-core span { font-size: .64rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.constellation-core strong { margin: 10px 0 8px; font-family: Fraunces, Georgia, serif; font-size: 1.85rem; line-height: 1; font-weight: 600; }
.constellation-core small { max-width: 22ch; font-size: .7rem; line-height: 1.5; }
.constellation-node { position: absolute; z-index: 2; width: 280px; min-height: 190px; padding: 25px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 22px; backdrop-filter: blur(12px); transition: background .35s ease, border-color .35s ease, transform .15s linear; }
.constellation-node:hover { background: rgba(255,255,255,.08); border-color: rgba(185,151,90,.45); }
.constellation-node > span { color: var(--gold-400); font-size: .67rem; font-weight: 750; }
.constellation-node h3 { margin: 35px 0 8px; font-family: Fraunces, Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.constellation-node p { margin-bottom: 0; color: rgba(255,255,255,.55); font-size: .84rem; }
.constellation-node--one { left: 3%; top: 6%; }
.constellation-node--two { right: 3%; top: 6%; }
.constellation-node--three { left: 3%; bottom: 5%; }
.constellation-node--four { right: 3%; bottom: 5%; }

/* Services --------------------------------------------------------------- */
.services { padding: clamp(110px, 14vw, 190px) 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; align-items: stretch; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 650px; padding: 32px; color: var(--navy-950); background: var(--white); border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow-xs); overflow: hidden; transition: box-shadow .35s ease, border-color .35s ease, transform .15s linear; }
.service-card::before { content: ""; position: absolute; width: 230px; height: 230px; right: -150px; top: -150px; border: 1px solid rgba(185,151,90,.23); border-radius: 50%; box-shadow: 0 0 0 32px rgba(185,151,90,.028); }
.service-card:hover { border-color: rgba(185,151,90,.44); box-shadow: var(--shadow-md); }
.service-card--featured { color: var(--white); background: var(--navy-900); border-color: rgba(185,151,90,.48); box-shadow: var(--shadow-lg); transform: translateY(-22px); }
.service-card--featured::after { content: ""; position: absolute; inset: 0; background: radial-gradient(340px circle at 90% 0%, rgba(185,151,90,.22), transparent 70%); pointer-events: none; }
.featured-label { position: absolute; top: 22px; right: -35px; width: 150px; padding: 7px 0; color: var(--navy-950); background: var(--gold-400); font-size: .61rem; font-weight: 750; letter-spacing: .09em; text-align: center; text-transform: uppercase; transform: rotate(40deg); }
.service-card header { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; color: var(--gold-700); font-size: .67rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.service-card--featured header { color: var(--gold-300, #ddc490); }
.service-card header small { color: var(--muted); font-size: .62rem; letter-spacing: .03em; }
.service-card--featured header small { color: rgba(255,255,255,.5); }
.service-card h3 { position: relative; z-index: 1; max-width: 14ch; margin: 62px 0 15px; font-family: Fraunces, Georgia, serif; font-size: clamp(1.75rem, 2.7vw, 2.55rem); line-height: 1.05; font-weight: 500; }
.service-card > p { position: relative; z-index: 1; min-height: 80px; color: var(--muted); font-size: .9rem; }
.service-card--featured > p { color: rgba(255,255,255,.58); }
.service-card ul { position: relative; z-index: 1; display: grid; gap: 11px; padding: 22px 0 0; margin: 8px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card--featured ul { border-color: rgba(255,255,255,.12); }
.service-card li { position: relative; padding-left: 20px; color: #46505a; font-size: .84rem; }
.service-card--featured li { color: rgba(255,255,255,.64); }
.service-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%; box-shadow: 0 0 0 4px rgba(185,151,90,.1); }
.service-price { position: relative; z-index: 1; margin: auto 0 23px; padding-top: 30px; }
.service-price span, .service-price small { display: block; color: var(--muted); font-size: .68rem; }
.service-card--featured .service-price span, .service-card--featured .service-price small { color: rgba(255,255,255,.5); }
.service-price strong { display: block; margin: 2px 0; font-family: Fraunces, Georgia, serif; font-size: clamp(2rem, 3.3vw, 2.8rem); line-height: 1; font-weight: 550; letter-spacing: -.035em; }
.service-card--featured .button--gold { width: 100%; }
.service-card--featured .button--outline { color: var(--white); border-color: rgba(255,255,255,.22); }
.service-entry { display: grid; grid-template-columns: .5fr 1fr auto; gap: 30px; align-items: center; margin-top: 48px; padding: 25px 28px; border: 1px solid var(--line); border-radius: 18px; }
.service-entry > span { color: var(--gold-700); font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.service-entry p { margin: 0; color: var(--muted); font-size: .85rem; }
.service-entry a { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-900); font-size: .82rem; font-weight: 650; white-space: nowrap; }

/* Projects --------------------------------------------------------------- */
.projects { padding: clamp(110px, 14vw, 190px) 0; }
.project-stack { display: grid; gap: 22px; }
.project-card { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; min-height: 430px; background: var(--white); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .35s ease, transform .15s linear; }
.project-card:hover { box-shadow: var(--shadow-lg); }
.project-card:nth-child(even) .project-visual { order: 2; }
.project-visual { position: relative; display: grid; place-items: center; padding: 60px; background: linear-gradient(145deg, #f0ece4, #e7dfce); overflow: hidden; }
.project-visual::before { content: ""; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(11,34,71,.07); border-radius: 50%; box-shadow: 0 0 0 55px rgba(11,34,71,.025), 0 0 0 110px rgba(11,34,71,.015); }
.project-card--mascote .project-visual { background: linear-gradient(145deg, #f5f0e8, #ebe3d5); }
.project-card--starmed .project-visual { background: linear-gradient(145deg, #eae6de, #dfd8c8); }
.project-visual img { position: relative; z-index: 2; max-width: min(75%, 250px); max-height: 125px; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(11,34,71,.1)); transition: transform .6s var(--ease-out); }
.project-card:hover .project-visual img { transform: scale(1.06) translateY(-5px); }
.project-radar { position: absolute; width: 76%; aspect-ratio: 1; border: 1px solid rgba(185,151,90,.2); border-radius: 50%; animation: radar 5s ease-out infinite; }
@keyframes radar { from { transform: scale(.2); opacity: .8; } to { transform: scale(1.35); opacity: 0; } }
.project-content { padding: clamp(38px, 6vw, 72px); }
.project-content > span { color: var(--gold-700); font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.project-content h3 { margin: 30px 0 16px; color: var(--navy-950); font-family: Fraunces, Georgia, serif; font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: .95; font-weight: 500; }
.project-content > p { max-width: 57ch; color: var(--muted); }
.project-content dl { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 35px 0; }
.project-content dl div { padding: 15px; background: var(--ivory); border-radius: 12px; }
.project-content dt { color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-content dd { margin: 4px 0 0; color: var(--navy-900); font-size: .82rem; font-weight: 650; }
.project-content a { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-900); font-size: .84rem; font-weight: 650; border-bottom: 1px solid var(--navy-900); padding-bottom: 3px; }
.project-content a i { color: var(--gold-700); font-style: normal; transition: transform .3s ease; }
.project-content a:hover i { transform: translate(3px,-3px); }

/* Founder ---------------------------------------------------------------- */
.founder { padding: clamp(110px, 14vw, 190px) 0; }
.founder-grid { display: grid; grid-template-columns: minmax(340px, .8fr) minmax(430px, 1fr); gap: clamp(60px, 10vw, 150px); align-items: center; }
.founder-portrait { position: relative; max-width: 530px; padding: 14px; background: var(--ivory); border: 1px solid rgba(185,151,90,.3); border-radius: 280px 280px 24px 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.founder-portrait::before { content: ""; position: absolute; z-index: 2; inset: 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 270px 270px 16px 16px; pointer-events: none; }
.founder-portrait picture { display: block; aspect-ratio: .78; border-radius: 260px 260px 14px 14px; overflow: hidden; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; filter: saturate(.82) contrast(1.02); }
.portrait-caption { position: absolute; z-index: 3; left: 32px; right: 32px; bottom: 28px; padding: 20px; color: var(--white); background: rgba(6,22,48,.72); border: 1px solid rgba(255,255,255,.15); border-radius: 14px; backdrop-filter: blur(12px); }
.portrait-caption span, .portrait-caption small { display: block; }
.portrait-caption span { font-family: Fraunces, Georgia, serif; font-size: 1.45rem; }
.portrait-caption small { margin-top: 3px; color: rgba(255,255,255,.58); font-size: .68rem; }
.founder-copy h2 { max-width: 12ch; }
.founder-quote { max-width: 25ch; margin: 35px 0; color: var(--gold-700); font-family: Fraunces, Georgia, serif; font-size: clamp(1.55rem, 2.4vw, 2.2rem); line-height: 1.18; font-style: italic; }
.founder-copy > p:not(.section-index):not(.founder-quote) { max-width: 62ch; color: var(--muted); }
.founder-credentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0; margin: 34px 0; list-style: none; }
.founder-credentials li { padding: 16px; background: var(--ivory); border-radius: 12px; }
.founder-credentials strong, .founder-credentials span { display: block; }
.founder-credentials strong { color: var(--navy-900); font-family: Fraunces, Georgia, serif; font-size: 1.5rem; }
.founder-credentials span { margin-top: 3px; color: var(--muted); font-size: .65rem; line-height: 1.45; }

/* FAQ -------------------------------------------------------------------- */
.faq-section { padding: clamp(110px, 14vw, 190px) 0; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.15fr; gap: clamp(60px, 9vw, 135px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { max-width: 10ch; }
.faq-intro > p { margin-top: 25px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: grid; grid-template-columns: 1fr 34px; gap: 24px; align-items: center; min-height: 102px; padding: 16px 4px; color: var(--navy-950); font-family: Fraunces, Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.17; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; display: block; width: 31px; height: 31px; border: 1px solid rgba(8,29,58,.22); border-radius: 50%; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1px; background: var(--navy-900); transform: translate(-50%,-50%); transition: transform .3s ease; }
.faq summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq details[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
.faq details > div { overflow: hidden; }
.faq details p { max-width: 65ch; padding: 0 52px 30px 4px; margin: 0; color: var(--muted); }

/* Contact ---------------------------------------------------------------- */
.contact { position: relative; padding: clamp(110px, 14vw, 190px) 0; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(rgba(255,255,255,.7) .7px, transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(90deg, transparent, black, transparent); }
.contact-orb { position: absolute; width: 720px; height: 720px; left: -300px; bottom: -390px; border: 1px solid rgba(185,151,90,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(185,151,90,.025), 0 0 0 180px rgba(185,151,90,.018); }
.contact-grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, .8fr); gap: clamp(60px, 10vw, 150px); align-items: center; }
.contact-copy h2 { max-width: 11ch; }
.contact-copy > p:not(.section-index) { max-width: 55ch; margin: 30px 0; color: rgba(255,255,255,.62); font-size: 1.04rem; }
.contact-proof { display: grid; gap: 9px; margin-top: 32px; color: rgba(255,255,255,.58); font-size: .76rem; }
.contact-proof span { display: flex; align-items: center; gap: 10px; }
.contact-proof i { width: 7px; height: 7px; background: var(--gold-400); border-radius: 50%; box-shadow: 0 0 0 4px rgba(185,151,90,.1); }
.contact-form { padding: clamp(28px, 4vw, 44px); color: var(--navy-950); background: rgba(255,255,255,.98); border: 1px solid rgba(185,151,90,.32); border-radius: 28px; box-shadow: var(--shadow-lg); }
.form-header { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding-bottom: 22px; margin-bottom: 23px; border-bottom: 1px solid var(--line); }
.form-header span { font-family: Fraunces, Georgia, serif; font-size: 1.55rem; }
.form-header small { color: var(--muted); font-size: .63rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; }
.contact-form label > span { color: var(--navy-700); font-size: .7rem; font-weight: 650; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: var(--navy-950); background: var(--ivory); border: 1px solid transparent; border-radius: 11px; outline: 0; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.contact-form input, .contact-form select { min-height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 116px; padding: 13px 14px; resize: vertical; }
.contact-form input:hover, .contact-form select:hover, .contact-form textarea:hover { background: #f4efe4; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { background: var(--white); border-color: rgba(185,151,90,.75); box-shadow: 0 0 0 4px rgba(185,151,90,.11); }
.contact-form .consent { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; margin: 18px 0; }
.contact-form .consent input { width: 17px; height: 17px; min-height: 0; margin: 2px 0 0; accent-color: var(--navy-900); }
.contact-form .consent span { color: var(--muted); font-size: .66rem; line-height: 1.55; }
.contact-form .consent a { color: var(--navy-900); text-decoration: underline; }
.form-feedback { min-height: 1.4em; margin: 12px 0 0; color: #8b2f2f; font-size: .72rem; }
.form-feedback.is-ok { color: #207844; }

/* Footer ----------------------------------------------------------------- */
.site-footer { padding: 80px 0 25px; color: rgba(255,255,255,.68); background: #041127; border-top: 1px solid rgba(185,151,90,.25); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: clamp(35px, 7vw, 95px); }
.footer-brand img { width: 96px; height: auto; filter: brightness(0) invert(1); opacity: .88; }
.footer-brand p { max-width: 38ch; margin-top: 24px; font-size: .82rem; }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-grid > div > p { display: block; margin: 0 0 9px; font-size: .75rem; line-height: 1.7; }
.footer-grid a { transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { color: var(--gold-300, #ddc490); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.1); font-size: .66rem; }

/* Floating CTA ----------------------------------------------------------- */
.floating-wa { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 18px; color: var(--white); background: var(--navy-900); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; box-shadow: 0 20px 42px -22px rgba(6,22,48,.7); font-size: .75rem; font-weight: 650; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .35s ease, transform .35s var(--ease-out), background .3s ease; }
body.is-past-hero .floating-wa { opacity: 1; pointer-events: auto; transform: none; }
.floating-wa:hover { background: var(--gold-600); }
.floating-wa i { font-style: normal; }
.mobile-cta { display: none; }

/* Motion & interactive states ------------------------------------------- */
.reveal { opacity: 1; transform: none; }
.js.motion-ready .reveal:not(.is-in) { opacity: 0; transform: translateY(24px); }
.js.motion-ready .reveal { transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); transition-delay: calc(var(--stagger, 0) * 85ms); }
.reveal[data-stagger="1"] { --stagger: 1; }
.reveal[data-stagger="2"] { --stagger: 2; }
.reveal[data-stagger="3"] { --stagger: 3; }
.reveal[data-stagger="4"] { --stagger: 4; }
@media (hover:hover) and (pointer:fine) {
  [data-tilt] { transform-style: preserve-3d; will-change: transform; }
  .magnetic { will-change: transform; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --shell: min(100% - 36px, 1040px); }
  .nav-menu { gap: 18px; }
  .nav-menu > a:not(.nav-cta) { font-size: .82rem; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
  .floating-note--top { right: -20px; }
  .floating-note--bottom { left: -20px; }
  .manifesto-grid { grid-template-columns: 180px 1fr; }
  .service-card { padding: 26px; }
  .service-card h3 { font-size: 2rem; }
}

@media (max-width: 920px) {
  :root { --shell: min(100% - 32px, 820px); }
  html { scroll-padding-top: 80px; }
  .nav-shell { height: 78px; }
  .brand { width: 68px; height: 62px; }
  .brand img { width: 64px; }
  .nav-toggle { position: relative; z-index: 103; display: block; }
  .nav-menu {
    position: fixed;
    z-index: 102;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
    padding: 90px 32px 40px;
    color: var(--white);
    background: rgba(6,22,48,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease-out);
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu > a:not(.nav-cta) { width: 100%; color: rgba(255,255,255,.85); font-family: Fraunces, Georgia, serif; font-size: clamp(1.8rem, 7vw, 2.7rem); font-weight: 500; }
  .nav-menu > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 22px; color: var(--navy-950); background: var(--gold-400); border-color: var(--gold-400); }
  .site-header:has(.nav-menu.is-open) .brand img { filter: brightness(0) invert(1); }
  .site-header:has(.nav-menu.is-open) .nav-toggle span { background: var(--white); }

  .hero { min-height: auto; padding: 128px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-title { max-width: 12ch; font-size: clamp(3.1rem, 10vw, 5.3rem); }
  .hero-lead { max-width: 59ch; }
  .hero-stage { width: min(100%, 540px); justify-self: center; margin-top: 25px; }
  .hero-scroll { display: none; }

  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-title { max-width: 13ch; }
  .risk-grid { grid-template-columns: 1fr; }
  .risk-card { min-height: 230px; }
  .risk-card h3 { margin-top: 28px; }

  .ticket { grid-template-columns: 1fr; }
  .ticket h2 { max-width: 15ch; }
  .ticket-steps { grid-template-columns: repeat(3, 1fr); }
  .ticket-steps::before { left: 10%; right: 10%; top: 42px; bottom: auto; width: auto; height: 1px; }
  .ticket-steps li { grid-template-columns: 1fr; justify-items: center; text-align: center; }

  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .section-heading--split > p { max-width: 62ch; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 310px; }

  .method-layout { grid-template-columns: 1fr; }
  .method-intro { position: static; }
  .method-intro h2 { max-width: 13ch; }
  .method-indicator { display: none; }

  .constellation { min-height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .constellation::before, .constellation::after, .execution-orbit { display: none; }
  .constellation-core, .constellation-node { position: relative; inset: auto; width: auto; min-height: 220px; transform: none; }
  .constellation-core { grid-column: 1 / -1; height: auto; border-radius: 24px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card--featured { transform: none; }
  .service-card > p { min-height: 0; }
  .service-price { margin-top: 34px; }
  .service-entry { grid-template-columns: 1fr; }

  .project-card { grid-template-columns: 1fr; }
  .project-card:nth-child(even) .project-visual { order: 0; }
  .project-visual { min-height: 300px; }

  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait { width: min(100%, 520px); margin-inline: auto; }
  .founder-copy h2 { max-width: 14ch; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .faq-intro h2 { max-width: 13ch; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy h2 { max-width: 14ch; }
  .contact-form { max-width: 680px; }

  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 24px; }
  body { font-size: 15px; }
  .site-header.is-scrolled .nav-shell { height: 66px; }
  .brand img, .site-header.is-scrolled .brand img { width: 58px; }
  .hero { padding-top: 112px; padding-bottom: 70px; }
  .hero-title { margin-top: 20px; font-size: clamp(2.82rem, 14vw, 4.2rem); line-height: .96; }
  .hero-lead { font-size: 1rem; line-height: 1.64; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 54px; padding-inline: 20px; }
  .hero-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stage { margin-top: 12px; }
  .decision-card { min-height: 455px; padding: 21px; border-radius: 23px; transform: none; }
  .decision-card__header { align-items: flex-start; }
  .profile-lockup picture { width: 44px; height: 44px; }
  .profile-lockup strong { font-size: 1rem; }
  .profile-lockup span { font-size: .55rem; }
  .live-badge { display: none; }
  .decision-map { padding-top: 34px; gap: 26px; }
  .floating-note { display: none; }
  .hero-orbit { opacity: .5; }
  .grain { display: none; }
  .trust-rail { margin-top: -1px; }

  .manifesto, .analysis-ticket, .audience, .method, .execution, .services, .projects, .founder, .faq-section, .contact { padding: 88px 0; }
  .manifesto-title { font-size: clamp(2.65rem, 12vw, 4rem); }
  .manifesto-bottom { display: grid; gap: 26px; }
  .risk-grid { margin-top: 55px; }
  .risk-card { padding: 24px; }

  .ticket { padding: 28px 22px; }
  .ticket h2 { font-size: clamp(2.25rem, 10vw, 3.4rem); }
  .ticket-actions { display: grid; }
  .ticket-actions > span { text-align: center; }
  .ticket-steps { grid-template-columns: 1fr; }
  .ticket-steps::before { left: 22px; right: auto; top: 28px; bottom: 28px; width: 1px; height: auto; }
  .ticket-steps li { grid-template-columns: 47px 1fr; justify-items: initial; text-align: left; padding: 14px; }

  .section-heading h2, .method-intro h2, .faq-intro h2, .founder-copy h2, .contact-copy h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .audience-card { min-height: 295px; padding: 25px; }
  .audience-card h3 { margin-top: 58px; }

  .method-step { grid-template-columns: 54px 1fr; gap: 15px; min-height: 0; padding: 34px 0; }
  .method-step__number { width: 45px; height: 45px; }
  .method-step > i { display: none; }
  .method-step h3 { font-size: 1.85rem; }

  .constellation { grid-template-columns: 1fr; }
  .constellation-core { grid-column: auto; min-height: 230px; }
  .constellation-node { min-height: 185px; }

  .service-card { padding: 25px; }
  .service-card h3 { margin-top: 45px; }
  .service-price strong { font-size: 2.2rem; }

  .project-card { min-height: 0; border-radius: 22px; }
  .project-visual { min-height: 240px; padding: 35px; }
  .project-content { padding: 30px 24px 34px; }
  .project-content h3 { font-size: 2.75rem; }
  .project-content dl { grid-template-columns: 1fr; }

  .founder-portrait { border-radius: 180px 180px 20px 20px; }
  .founder-portrait picture { border-radius: 170px 170px 12px 12px; }
  .portrait-caption { left: 22px; right: 22px; bottom: 20px; }
  .founder-credentials { grid-template-columns: 1fr; }

  .faq summary { min-height: 88px; font-size: 1.25rem; }
  .faq details p { padding-right: 10px; }

  .contact-form { padding: 24px 18px; border-radius: 22px; }
  .form-header { display: grid; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 6px; }

  .floating-wa { display: none; }
  .mobile-cta { position: fixed; z-index: 85; left: 10px; right: 10px; bottom: 10px; display: block; padding-bottom: env(safe-area-inset-bottom, 0); opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .35s ease, transform .35s var(--ease-out); }
  body.is-past-hero .mobile-cta { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-cta a { display: flex; justify-content: space-between; align-items: center; min-height: 54px; padding: 0 20px; color: var(--navy-950); background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); border: 1px solid rgba(255,255,255,.5); border-radius: 999px; box-shadow: 0 18px 45px -20px rgba(6,22,48,.75); font-size: .83rem; font-weight: 700; }
  .site-footer { padding-bottom: 100px; }
}

@media (max-width: 360px) {
  :root { --shell: calc(100% - 22px); }
  .hero-proof { grid-template-columns: 1fr; }
  .decision-card { padding: 18px; }
  .ticket { padding-inline: 17px; }
  .service-card, .audience-card { padding-inline: 21px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee-track { transform: none !important; }
  .ambient-light, .grain { display: none; }
  .js.motion-ready .reveal:not(.is-in) { opacity: 1; transform: none; }
}

@media print {
  .site-header, .floating-wa, .mobile-cta, .scroll-progress, .ambient-light, .grain, .hero-scroll { display: none !important; }
  body { background: white; color: black; }
  .section-dark { color: black; background: white; }
  .hero { min-height: 0; padding-top: 30px; }
}
