/* ============================================================
   NKOSUO ADVISORY — Homepage (redesign)
   Navy #0D1B2A · Gold #C9A84C · Cormorant Garamond + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --navy:        #0D1B2A;
  --navy-deep:   #081320;
  --navy-mid:    #14293d;
  --navy-soft:   #1d3349;
  --gold:        #C9A84C;
  --gold-light:  #ddc079;
  --gold-dim:    #a8893a;

  --off-white:   #FDFDFD;
  --cream:       #FBF9F3;
  --cream-deep:  #F6F2E8;
  --white:       #FFFFFF;

  --slate:       #5A6B7B;
  --slate-light: #93a0ad;
  --ink:         #2a3845;

  --border:      #E8E3D7;     /* warm hairline */
  --border-cool: #E2E8F0;
  --gold-border: rgba(201,168,76,0.28);
  --navy-border: rgba(13,27,42,0.09);

  /* state colors */
  --safe:   #1f7a44;  --safe-bg:#F1FAF3;  --safe-bd:#C3E6CE;
  --review: #9a6512;  --review-bg:#FCF8EC; --review-bd:#EBD7A6;
  --block:  #a23131;  --block-bg:#FCF1F1;  --block-bd:#E9C7C7;

  --shadow-1: 0 2px 18px rgba(13,27,42,0.05);
  --shadow-2: 0 18px 50px rgba(13,27,42,0.08);
  --shadow-3: 0 34px 80px rgba(13,27,42,0.12);
  --shadow-gold: 0 22px 50px rgba(201,168,76,0.16);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ---------- type primitives ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate);
}
.eyebrow--gold { color: var(--gold-dim); }
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
  display: inline-block; opacity: 0.7;
}
.eyebrow--center { justify-content: center; }

.serif { font-family: var(--serif); }
.gold-italic { font-style: italic; color: var(--gold-dim); font-weight: 600; }

h1, h2, h3 { font-family: var(--serif); color: var(--navy); font-weight: 600; letter-spacing: -0.01em; }

.display {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.98; letter-spacing: -0.018em; color: var(--navy);
}
.h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.06; letter-spacing: -0.012em; color: var(--navy);
}
.h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.12; letter-spacing: -0.01em; color: var(--navy);
}
.lede {
  font-family: var(--sans); font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.72; color: var(--slate); font-weight: 400;
}
.gold-rule { width: 46px; height: 1px; background: var(--gold); opacity: 0.6; border: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  min-height: 50px; padding: 0 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 16px 36px rgba(13,27,42,0.16); }
.btn--navy:hover { background: var(--navy-mid); box-shadow: 0 20px 44px rgba(13,27,42,0.22); }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-gold); font-weight: 700; }
.btn--gold:hover { background: var(--gold-light); }
.btn--ghost { background: rgba(255,255,255,0.6); color: var(--navy); border-color: var(--navy-border); }
.btn--ghost:hover { background: #fff; border-color: rgba(13,27,42,0.18); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.22); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn--sm { min-height: 42px; padding: 0 22px; font-size: 13px; }
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- sections ---------- */
.section { padding: 116px 0; }
.section--tight { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--white { background: #fff; }
.section--navy { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; }
.sec-head { max-width: 720px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head .h2 { margin: 16px 0 0; }
.sec-head .lede { margin-top: 18px; }

/* logos */
.brand-logo { width: auto; object-fit: contain; }
.nav-logo { height: 52px; }
.hero-logo { height: 92px; margin: 0 auto 30px; }
.final-logo { height: 112px; margin: 0 auto 44px; }
.footer-logo { height: 64px; }

/* fade-up entrance — visible by default; only hidden once JS confirms it will animate them in */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
html.reveal-ready .reveal { opacity: 0; transform: translateY(18px); }
html.reveal-ready .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.reveal-ready .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all .28s ease;
  background: rgba(253,253,253,0.66); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { padding: 12px 0; background: rgba(253,253,253,0.92); border-bottom-color: var(--navy-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 13.5px; font-weight: 500; color: var(--slate); letter-spacing: 0.01em; transition: color .18s ease; }
.nav-link:hover { color: var(--navy); }
.nav-link--studio { display: inline-flex; align-items: center; gap: 6px; }
.nav-link--studio::after { content: "↗"; font-size: 11px; color: var(--gold-dim); }

/* mobile nav */
.nav-toggle { display: none; }
.mobile-only { display: none; }
.nav-toggle {
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 1.6px; background: var(--navy); border-radius: 2px; transition: transform .28s ease, opacity .2s ease; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
.mobile-menu {
  overflow: hidden; max-height: 0; transition: max-height .34s ease;
  background: rgba(253,253,253,0.98); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.mobile-menu-inner { display: flex; flex-direction: column; gap: 4px; padding: 8px 0 22px; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--navy); padding: 13px 4px; border-bottom: 1px solid var(--border); }
.mobile-menu a.btn { border-bottom: none; margin-top: 14px; }
.mobile-menu a:not(.btn):active { color: var(--gold-dim); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh; display: flex; align-items: center; text-align: center;
  padding: 150px 0 110px; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 600px at 50% -4%, rgba(201,168,76,0.12) 0%, rgba(253,253,253,0) 60%),
    linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(201,168,76,0.08); border: 1px solid var(--gold-border);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim);
  margin-bottom: 30px;
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { margin-bottom: 26px; }
.hero .lede { max-width: 640px; margin: 0 auto; }
.hero-context {
  font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.7vw, 22px);
  color: var(--slate); max-width: 560px; margin: 30px auto 0; line-height: 1.5;
}
.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* ============================================================
   WHERE TO START — three paths
   ============================================================ */
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.path-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: 18px; padding: 38px 32px 32px;
  box-shadow: var(--shadow-1); transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.path-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); opacity: 0; transition: opacity .25s ease;
}
.path-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); border-color: var(--gold-border); }
.path-card:hover::before { opacity: 1; }
.path-index { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--gold-dim); letter-spacing: 0.14em; margin-bottom: 22px; }
.path-state { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--slate); margin-bottom: 6px; }
.path-card h3 { font-size: 27px; margin-bottom: 14px; }
.path-card p { font-size: 14.5px; color: var(--slate); line-height: 1.66; flex: 1; margin-bottom: 26px; }
.path-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--navy); letter-spacing: 0.01em; align-self: flex-start;
}
.path-link .arrow { color: var(--gold-dim); transition: transform .2s ease; }
.path-link:hover .arrow { transform: translateX(4px); }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.svc-card {
  display: flex; flex-direction: column; border-radius: 20px; padding: 38px 32px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-1);
  transition: box-shadow .25s ease, transform .25s ease;
}
.svc-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.svc-card--feature { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); border-color: var(--gold-border); box-shadow: var(--shadow-gold), var(--shadow-1); }
.svc-eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 16px; }
.svc-card--feature .svc-eyebrow { color: var(--gold-dim); }
.svc-card h3 { font-size: 29px; margin-bottom: 8px; }
.svc-price { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 18px; }
.svc-price .num { color: var(--gold-dim); }
.svc-card p { font-size: 14.5px; color: var(--slate); line-height: 1.68; margin-bottom: 22px; }
.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.svc-bullets li { display: flex; gap: 11px; font-size: 13.5px; color: var(--slate); line-height: 1.55; }
.svc-bullets li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.svc-card .btn { align-self: flex-start; }
.svc-foot { margin-top: 22px; font-size: 13.5px; color: var(--slate); }

/* ============================================================
   DECISION ENGINE
   ============================================================ */
.engine-grid { display: grid; grid-template-columns: 0.96fr 1.04fr; gap: 78px; align-items: center; }
.engine-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.engine-point { padding: 16px 18px; border: 1px solid var(--navy-border); border-radius: 14px; background: var(--off-white); }
.engine-point .t { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.01em; }
.engine-point .s { font-size: 12.5px; color: var(--slate-light); margin-top: 6px; line-height: 1.5; }

.flow-card {
  background: linear-gradient(180deg, #fff 0%, #FAFAF6 100%);
  border: 1px solid var(--navy-border); border-radius: 26px; padding: 34px 30px; box-shadow: var(--shadow-3);
}
.flow-card .label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 20px; }
.flow { display: flex; flex-direction: column; gap: 12px; }
.flow-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.flow-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.flow-item .fl { font-size: 14px; font-weight: 700; color: var(--navy); flex: 1; }
.flow-item .fs { font-size: 12px; color: var(--slate-light); }
.flow-arrow { text-align: center; color: #CBD5E1; font-size: 16px; line-height: 1; }

/* ============================================================
   DECISION STATES
   ============================================================ */
.states { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.state-card { border: 1px solid; border-radius: 20px; padding: 32px 28px; }
.state-label { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 16px; }
.state-label .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.state-card h3 { font-size: 25px; margin-bottom: 10px; }
.state-card p { font-size: 14px; line-height: 1.7; }

/* ============================================================
   GOVERNANCE FINDINGS
   ============================================================ */
.find-card { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); border: 1px solid var(--gold-border); border-radius: 26px; padding: 34px 30px; box-shadow: var(--shadow-2); }
.find-card .ce { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; }
.find-card .ct { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.find-rows { display: flex; flex-direction: column; }
.find-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--navy-border); }
.find-row:last-child { border-bottom: none; }
.find-row .rl { font-size: 14px; font-weight: 600; color: var(--navy); }
.badge { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.find-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--navy-border); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.find-foot .fl { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-light); }
.find-foot .fv { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--gold-dim); }

/* ============================================================
   STUDIO
   ============================================================ */
.studio { position: relative; overflow: hidden; }
.studio .container { position: relative; z-index: 1; }
.studio-glow { position: absolute; inset: 0; background: radial-gradient(720px 420px at 50% -10%, rgba(201,168,76,0.16), transparent 62%); }
.studio-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.studio .h2 { color: #fff; }
.studio .lede { color: #A9B6C4; }
.studio-eyebrow { color: var(--gold); }
.studio-eyebrow::before { background: var(--gold); }
.studio-feats { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 32px 0 36px; }
.studio-feats li { display: flex; gap: 13px; font-size: 15px; color: #C3CDD8; line-height: 1.5; }
.studio-feats li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.studio-window { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,0.34); }
.studio-bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.studio-bar .tl { display: flex; gap: 7px; }
.studio-bar .tl span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.studio-bar .url { font-family: var(--sans); font-size: 12px; color: #8b9aa8; letter-spacing: 0.01em; }
.studio-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.studio-step { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
.studio-step .n { font-family: var(--serif); font-size: 16px; color: var(--gold); width: 22px; flex-shrink: 0; }
.studio-step .sl { font-size: 13.5px; font-weight: 600; color: #E6EBF0; flex: 1; }
.studio-step .verdict { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; }
.founder-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 76px; align-items: center; max-width: 980px; margin: 0 auto; }
.founder .h2 { color: #fff; font-size: clamp(32px, 3.6vw, 44px); }
.founder .eyebrow { color: var(--gold); }
.founder .eyebrow::before { background: var(--gold); }
.founder p { font-size: 16px; color: #A9B6C4; line-height: 1.78; margin-top: 20px; }
.founder-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 40px 34px; }
.cred-row { display: flex; align-items: center; gap: 13px; padding: 12px 0; }
.cred-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.cred-row span:last-child { font-size: 14.5px; color: #C3CDD8; }
.founder-rule { height: 1px; background: rgba(255,255,255,0.1); margin: 22px 0; border: none; }
.founder-loc { font-size: 13px; color: var(--slate-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 26px 4px; font-family: var(--sans);
  font-size: 17px; font-weight: 500; color: var(--navy); }
.faq-q .ic { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .3s ease; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--gold-dim); transition: opacity .3s ease; }
.faq-q .ic::before { top: 10px; left: 3px; right: 3px; height: 1.5px; }
.faq-q .ic::after { left: 10px; top: 3px; bottom: 3px; width: 1.5px; }
.faq-item.open .faq-q .ic::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 4px 26px; font-size: 15px; color: var(--slate); line-height: 1.72; max-width: 640px; }
.faq-item.open .faq-q { color: var(--gold-dim); }

/* ============================================================
   FINAL CTA + CONTACT
   ============================================================ */
.final { text-align: center; }
.final h2 { margin-bottom: 22px; }
.final .lede { max-width: 540px; margin: 0 auto 38px; }

.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.field input, .field select, .field textarea {
  padding: 13px 16px; font-size: 15px; font-family: var(--sans); color: var(--navy);
  border: 1px solid var(--border-cool); border-radius: 12px; background: #fff; outline: none; transition: border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); }
.field textarea { resize: vertical; min-height: 120px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-confirm { padding: 22px 24px; background: var(--safe-bg); border: 1px solid var(--safe-bd); border-radius: 14px; color: var(--safe); font-size: 15px; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); padding: 54px 0 46px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #9AA8B8; font-weight: 500; transition: color .18s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 12px; color: var(--slate); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .container { padding: 0 24px; }
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }
  .paths, .svc-grid, .states { grid-template-columns: 1fr; }
  .engine-grid, .studio-grid, .founder-grid { grid-template-columns: 1fr; gap: 44px; }
  .section { padding: 84px 0; }
  .hero { min-height: auto; padding: 130px 0 90px; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 560px) {
  .engine-points { grid-template-columns: 1fr; }
  .nav-logo { height: 44px; }
}
