/* ============================================================
   Stan Advisors — Premium Advisory CSS  v3
   Dark Navy · Warm Gold · Fraunces + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:       #0B1221;
  --navy-mid:   #16202F;
  --navy-light: #1A2740;
  --navy-card:  #141e2e;
  --gold:       #C9A96E;
  --gold-light: #DFC08A;
  --gold-muted: #D8AE6C;
  --gold-num:   rgba(201,169,110,0.85); /* number markers — all pillar/step/card numbers */
  --white:      #F7F5F0;
  --off-white:  #EDE9E0;
  --text-muted: #CDD6E0;
  --text-body:  #EBF0F5;
  --border:     rgba(201,169,110,0.15);
  --border-sub: rgba(255,255,255,0.06);
  --radius:     2px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:      1180px;
  --section-v:  60px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 40px; }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.italic      { font-style: italic; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--white); line-height: 1.15; letter-spacing: -0.01em; }
.eyebrow { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 20px; }
.display-1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.025em; }
.display-2 { font-size: clamp(1.7rem, 3vw, 2.75rem);  font-weight: 300; line-height: 1.14; letter-spacing: -0.02em; }
.display-3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 400; line-height: 1.22; }
p.lead      { font-size: 1.0625rem; line-height: 1.8; color: var(--text-body); font-weight: 300; }
p.body-copy { font-size: 1rem; line-height: 1.85; color: var(--text-body); }
.gold-rule { width: 40px; height: 1px; background: var(--gold); opacity: 0.6; margin: 20px 0; }
.gold-rule--center { margin: 20px auto; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px 34px; border-radius: var(--radius); transition: all var(--transition); position: relative; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 12px 40px rgba(201,169,110,0.25); }
.btn-outline { border: 1px solid rgba(201,169,110,0.45); color: var(--gold-light); background: transparent; }
.btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.06); transform: translateY(-1px); }
.btn-ghost { color: var(--text-muted); padding: 16px 0; letter-spacing: 0.12em; font-size: 0.7rem; border-bottom: 1px solid transparent; }
.btn-ghost:hover { color: var(--gold); border-bottom-color: rgba(201,169,110,0.4); }
.btn svg { width: 14px; height: 14px; }

/* ─── HEADER / NAV ───────────────────────────────────────── */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition); border-bottom: 1px solid transparent; }
#site-header.scrolled { background: rgba(11,18,33,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom-color: var(--border-sub); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.site-logo { display: flex; flex-direction: column; gap: 3px; text-decoration: none; }
.site-logo__wordmark { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--white); letter-spacing: 0.06em; line-height: 1; }
.site-logo__image { display: block; height: 52px; width: auto; max-width: 260px; object-fit: contain; }
.site-logo__image--footer { height: 38px; opacity: 0.85; }
.site-logo__image:hover, .site-logo__image--footer:hover { opacity: 1; }
.site-logo__tagline { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-muted); line-height: 1; }
.footer-brand .site-logo__tagline { display: none; }
.site-nav { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; padding: 10px 22px; border: 1px solid rgba(201,169,110,0.4); color: var(--gold); border-radius: var(--radius); transition: all var(--transition); }
.nav-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 100; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
/* Mobile nav drawer — slides in from right */
.mobile-menu {
  display: block;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy-card);
  border-left: 1px solid var(--border-sub);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
/* Backdrop */
.mobile-menu::before {
  content: '';
  position: fixed;
  inset: 0;
  right: min(320px, 85vw);
  background: rgba(11,18,33,0.7);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.mobile-menu.open::before { opacity: 1; pointer-events: auto; }
.mobile-menu-inner { padding: 24px; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 32px;
}
.mobile-menu-header span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid var(--border-sub);
  border-radius: 2px;
  background: none;
  font-size: 1.2rem;
  transition: color var(--transition), border-color var(--transition);
}
.mobile-menu-close:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.mobile-nav-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-list li { display: block; width: 100%; }
.mobile-nav-list li a {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-body);
  padding: 13px 16px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-list li a:hover { background: rgba(201,169,110,0.07); color: var(--white); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border-sub); }
.mobile-menu-cta .btn { justify-content: center; width: 100%; }


/* ─── HERO wrapper — full-width navy bg, content contained ── */
/* ─── HERO — single column, centered within nav width ───── */
.hero {
  margin-top: 80px;
  padding-top: 24px;
  background:
    radial-gradient(ellipse 80% 70% at 10% 50%, rgba(201,169,110,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 30%, rgba(201,169,110,0.03) 0%, transparent 60%),
    var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 80% at 15% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 40px;
}

.hero-overline { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-overline::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-overline span { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead { font-size: 1.0625rem; line-height: 1.8; color: var(--text-body); max-width: 520px; margin-bottom: 40px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

/* Stats bar */
.hero-stats { display: flex; align-items: center; gap: 32px; padding-top: 32px; border-top: 1px solid var(--border-sub); flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat__num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; color: var(--white); line-height: 1; }
.hero-stat__label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.hero-stat-divider { width: 1px; height: 28px; background: var(--border-sub); }

/* ─── SECTION BASE ───────────────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section--dark { background: var(--navy-mid); }
.section--card { background: var(--navy-card); }
.section-header { max-width: 640px; margin-bottom: 48px; }
.section-header--center { text-align: center; margin: 0 auto 48px; }

/* ─── OUTCOMES STRIP ─────────────────────────────────────── */
.outcomes-strip { background: var(--navy-card); border-top: 1px solid var(--border-sub); border-bottom: 1px solid var(--border-sub); }
.outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.outcome-item { padding: 36px 44px; border-right: 1px solid var(--border-sub); }
.outcome-item:last-child { border-right: none; }
.outcome-item__num { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.outcome-item__label { font-size: 0.875rem; color: var(--text-body); line-height: 1.5; font-weight: 400; }
.outcome-item__sub { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; display: block; }

/* ─── POSITIONING ────────────────────────────────────────── */
.positioning { padding: var(--section-v) 0; position: relative; }
.positioning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.positioning-text h2 { margin-bottom: 28px; }
.positioning-text p { margin-bottom: 20px; }
.positioning-accent { position: relative; padding: 40px 36px; border: 1px solid var(--border); background: rgba(201,169,110,0.03); }
.positioning-accent::before { content: '\201C'; position: absolute; top: -16px; left: 32px; font-family: var(--font-display); font-size: 4.5rem; color: var(--gold); opacity: 0.2; line-height: 1; }
.positioning-quote { font-family: var(--font-display); font-size: clamp(1rem,1.6vw,1.2rem); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 20px; }
.positioning-attr { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-muted); }

/* ─── CLIENT FIT GRID ────────────────────────────────────── */
.client-fit { padding: var(--section-v) 0; }
.fit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.fit-card { padding: 32px 28px; background: var(--navy-card); border: 1px solid var(--border-sub); transition: border-color var(--transition), background var(--transition); }
.fit-card:hover { border-color: rgba(201,169,110,0.25); background: rgba(201,169,110,0.02); }
.fit-card__marker { font-family: var(--font-display); font-size: 0.75rem; font-weight: 300; color: var(--gold-num); letter-spacing: 0.08em; margin-bottom: 10px; }
.fit-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 8px; }
.fit-card p { font-size: 0.8125rem; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* ─── SERVICES ───────────────────────────────────────────── */
.services { padding: var(--section-v) 0; background: var(--navy-mid); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 64px; }
.service-card { background: var(--navy-card); padding: 36px 32px; position: relative; transition: background var(--transition); border: 1px solid var(--border-sub); }
.service-card:hover { background: rgba(201,169,110,0.04); border-color: rgba(201,169,110,0.2); }
.service-card__num { font-family: var(--font-display); font-size: 1rem; font-weight: 300; color: var(--gold-num); letter-spacing: 0.08em; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }
.service-card__link { font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); opacity: 0.7; display: flex; align-items: center; gap: 8px; transition: all var(--transition); }
.service-card__link:hover { opacity: 1; gap: 12px; }

/* ─── STAN PULL QUOTE ────────────────────────────────────── */
.stan-quote-section { padding: var(--section-v) 0; background: var(--navy-mid); }
.stan-quote-grid { display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: center; }
.stan-quote-image { width: 200px; height: 200px; border-radius: 1px; overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; }
.stan-quote-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.stan-quote-image .stan-image-placeholder { width: 100%; height: 100%; }
.stan-pullquote { font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.4rem); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 24px; border: none; padding: 0; }
.stan-quote-byline { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.stan-quote-name { display: block; font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }
.stan-quote-title { display: block; font-size: 0.875rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 3px; }
/* Text-only quote — no portrait, centered, wider */
.stan-quote-text-only { max-width: 760px; padding: 48px 0; border-left: 2px solid rgba(201,169,110,0.3); padding-left: 40px; }
.stan-quote-text-only .stan-pullquote { font-size: clamp(1.15rem,2vw,1.5rem); }

/* ─── OUTCOMES PAGE ──────────────────────────────────────── */
.outcomes-hero { padding: 120px 0 60px; background: var(--navy-mid); border-bottom: 1px solid var(--border-sub); position: relative; overflow: hidden; }
.outcomes-hero::after { content:''; position:absolute; top:0; right:0; width:45%; height:100%; background: radial-gradient(ellipse 80% 60% at 80% 40%, rgba(201,169,110,0.05) 0%, transparent 70%); pointer-events:none; }
.outcomes-hero__content { position: relative; z-index:1; max-width: 680px; }
.outcomes-hero h1 { margin-bottom: 20px; }
.case-study { padding: 80px 0; border-bottom: 1px solid var(--border-sub); }
.case-study:nth-child(even) { background: var(--navy-mid); }
.case-study-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; }
.case-study-label { position: sticky; top: 100px; }
.case-study-num { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: var(--gold-num); line-height: 1; margin-bottom: 8px; }
.case-study-label h3 { font-size: 1.5rem; margin-bottom: 12px; }
.case-study-label .eyebrow { margin-bottom: 12px; }
.case-study-label p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; }
.case-study-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 40px; }
.case-metric { background: var(--navy-card); border: 1px solid var(--border-sub); padding: 24px 20px; text-align: center; }
.case-metric__num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.case-metric__label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.case-study-body h4 { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 10px; margin-top: 28px; }
.case-study-body h4:first-child { margin-top: 0; }
.case-study-body p { font-size: 1rem; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.case-study-body ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.case-study-body li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; color: var(--text-body); line-height: 1.7; }
.case-study-body li::before { content:''; display:block; width:16px; height:1px; background:var(--gold); opacity:0.5; flex-shrink:0; margin-top:10px; }

/* ─── PRICING SIGNAL ─────────────────────────────────────── */
.pricing-signal { background: rgba(201,169,110,0.04); border: 1px solid rgba(201,169,110,0.2); padding: 24px 32px; margin-bottom: 32px; display: flex; align-items: center; gap: 20px; }
.pricing-signal__icon { color: var(--gold); opacity: 0.6; flex-shrink: 0; }
.pricing-signal__text { font-size: 0.9375rem; color: var(--text-body); line-height: 1.6; }
.pricing-signal__text strong { color: var(--white); font-weight: 500; }

/* ─── CTA FUNNEL ─────────────────────────────────────────── */
.cta-funnel { padding: var(--section-v) 0; position: relative; overflow: hidden; }
.cta-funnel::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,169,110,0.07) 0%, transparent 70%); pointer-events:none; }
.funnel-inner { position:relative; z-index:1; text-align:center; max-width:720px; margin:0 auto; }
.funnel-inner h2 { margin-bottom: 16px; }
.funnel-inner .lead { margin-bottom: 40px; }
.funnel-cards { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-bottom:32px; text-align:left; }
.funnel-card { padding:32px; border:1px solid var(--border-sub); background:var(--navy-mid); position:relative; transition: border-color var(--transition), background var(--transition); }
.funnel-card:hover { border-color:rgba(201,169,110,0.2); background:rgba(201,169,110,0.03); }
.funnel-card--featured { border-color:rgba(201,169,110,0.3); background:rgba(201,169,110,0.04); }
.funnel-card__badge { position:absolute; top:-1px; right:24px; font-size:0.625rem; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; background:var(--gold); color:var(--navy); padding:5px 12px; }
.funnel-card__type { font-size:0.6875rem; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold-muted); margin-bottom:16px; display:block; }
.funnel-card h3 { font-size:1.3rem; margin-bottom:12px; }
.funnel-card p { font-size:1rem; color:var(--text-muted); line-height:1.8; margin-bottom:32px; }
.funnel-card .btn { width:100%; justify-content:center; }
.funnel-note { font-size:0.8125rem; color:var(--text-muted); letter-spacing:0.04em; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:5fr 4fr; gap:80px; align-items:start; }
.form-group { margin-bottom: 24px; }
.form-group-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group-row .form-group { margin-bottom:24px; }

.form-income-box {
  border: 1px solid var(--border);
  background: rgba(201,169,110,0.02);
  border-radius: var(--radius);
  margin-bottom: 28px;
  overflow: hidden;
}
.form-income-section { padding: 24px 24px 4px; }
.form-income-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 18px;
  display: block;
}
.form-income-divider { height: 1px; background: var(--border); margin: 0 24px; }

.form-section-label { font-size:0.6875rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold-muted); display:block; margin:4px 0 18px; padding-bottom:8px; border-bottom:1px solid rgba(201,169,110,0.15); }
.form-label { display:block; font-size:0.6875rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.form-input, .form-select, .form-textarea { width:100%; background:rgba(255,255,255,0.04); border:1px solid var(--border-sub); border-radius:var(--radius); padding:14px 18px; color:var(--white); font-family:var(--font-body); font-size:1rem; font-weight:300; outline:none; transition:border-color var(--transition); appearance:none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:rgba(201,169,110,0.4); background:rgba(201,169,110,0.04); }
.form-textarea { min-height:140px; resize:vertical; }
.form-select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6E45' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 18px center; cursor:pointer; }
.form-select option { background:var(--navy); color:var(--white); }
.form-note { font-size:0.6875rem; color:var(--text-muted); margin-top:16px; line-height:1.75; }
.contact-info-card { padding:44px; border:1px solid var(--border); background:rgba(201,169,110,0.03); margin-bottom:2px; }
.contact-info-card h4 { font-family:var(--font-body); font-size:0.6875rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.contact-info-card p, .contact-info-card a { font-size:1rem; color:var(--text-body); line-height:1.7; }
.contact-info-card a:hover { color:var(--gold); }
.contact-process { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border-sub); }
.contact-process h4 { font-family:var(--font-body); font-size:0.6875rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.process-steps { display:flex; flex-direction:column; gap:0; }
.process-step { display:flex; gap:16px; padding:16px 0; border-bottom:1px solid var(--border-sub); }
.process-step:last-child { border-bottom:none; }
.process-step__num { font-family:var(--font-display); font-size:0.875rem; font-weight:300; color:var(--gold-num); flex-shrink:0; width:44px; margin-top:3px; letter-spacing:0.04em; }
.process-step__text { font-size:0.9375rem; color:var(--text-body); line-height:1.6; }
.process-step__text strong { color:var(--white); font-weight:500; }

/* ─── INNER PAGE HERO ────────────────────────────────────── */
.page-hero { padding:104px 0 56px; background:var(--navy-mid); border-bottom:1px solid var(--border-sub); position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; top:0; right:0; width:45%; height:100%; background:radial-gradient(ellipse 80% 60% at 80% 40%, rgba(201,169,110,0.05) 0%, transparent 70%); pointer-events:none; }
.page-hero__content { position:relative; z-index:1; max-width:680px; }
.page-hero h1 { margin-bottom:20px; }
.page-hero .lead { max-width:540px; }

/* ─── SERVICES PAGE ──────────────────────────────────────── */
.service-detail { padding:var(--section-v) 0; border-bottom:1px solid var(--border-sub); }
.service-detail-grid { display:grid; grid-template-columns:2fr 3fr; gap:80px; align-items:start; }
.service-detail-label { position:sticky; top:100px; }
.service-detail-label .eyebrow { margin-bottom:12px; }
.service-detail-label h2 { margin-bottom:20px; }
.service-detail-label p { font-size:1rem; color:var(--text-muted); line-height:1.85; margin-bottom:32px; }
.deliverable-list { display:flex; flex-direction:column; gap:16px; }
.deliverable-item { display:flex; gap:16px; align-items:flex-start; font-size:1rem; color:var(--text-body); line-height:1.7; }
.deliverable-item::before { content:''; display:block; width:16px; height:1px; background:var(--gold); opacity:0.5; flex-shrink:0; margin-top:10px; }
.service-outcome { background: rgba(201,169,110,0.04); border-left: 2px solid var(--gold); padding: 20px 24px; margin-bottom: 32px; }
.service-outcome p { font-size: 1rem; color: var(--white); line-height: 1.7; margin: 0; font-style: italic; font-family: var(--font-display); }
.service-outcome cite { display: block; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-muted); margin-top: 8px; font-style: normal; }

/* ─── ADVISORY PAGE ──────────────────────────────────────── */
.advisory-pillars { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; }
.pillar-card { padding:36px; background:var(--navy-card); border:1px solid var(--border-sub); transition:border-color var(--transition); }
.pillar-card:hover { border-color:rgba(201,169,110,0.2); }
.pillar-card__num { font-family:var(--font-display); font-size:1.75rem; font-weight:300; color:var(--gold-num); line-height:1; margin-bottom:16px; letter-spacing:0.06em; }
.pillar-card h3 { font-size:1.05rem; margin-bottom:10px; }
.pillar-card p { font-size:0.9375rem; color:var(--text-muted); line-height:1.8; }

/* ─── MEET STAN PAGE ─────────────────────────────────────── */

.meet-stan { padding:var(--section-v) 0; background:var(--navy-mid); position:relative; overflow:hidden; }
.meet-stan::before { content:''; position:absolute; top:0; right:0; width:50%; height:100%; background:radial-gradient(ellipse 80% 60% at 80% 40%, rgba(201,169,110,0.04) 0%, transparent 70%); pointer-events:none; }
.meet-stan-grid { display:grid; grid-template-columns:160px 1fr; gap:40px; align-items:start; }
.stan-image-wrap { position:relative; }
.stan-image { width:160px; height:200px; background:var(--navy-light); position:relative; overflow:hidden; flex-shrink:0; }
.stan-image img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.stan-image-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:var(--navy-light); color:var(--text-muted); font-size:1rem; letter-spacing:0.1em; text-transform:uppercase; flex-direction:column; gap:8px; }
.stan-image::after { display:none; }
.stan-image-frame { position:absolute; bottom:-10px; right:-10px; width:calc(100% - 8px); height:calc(100% - 8px); border:1px solid var(--border); pointer-events:none; z-index:-1; }
.stan-credentials { display:none; }
.credential-tag { font-size:0.6875rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold-muted); border:1px solid rgba(201,169,110,0.35); padding:6px 14px; border-radius:var(--radius); }
.stan-text h2 { margin-bottom:24px; }
.stan-text .lead { margin-bottom:24px; }
.stan-text .body-copy { margin-bottom:20px; }

/* ─── SLIM CTA ───────────────────────────────────────────── */
.section-slim-cta { padding:36px 0; border-top:1px solid var(--border-sub); background:var(--navy-card); }
.slim-cta-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; }
.slim-cta-inner .eyebrow { margin-bottom:8px; }
.slim-cta-badge { font-size:0.6875rem; font-weight:500; letter-spacing:0.12em; color:var(--gold); margin:6px 0 10px; }
.slim-cta-text { font-size:0.9375rem; color:var(--text-muted); line-height:1.75; max-width:520px; margin:0; }
.slim-cta-actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }

/* ─── WHO WE SERVE ───────────────────────────────────────── */
.who-serve { padding:var(--section-v) 0; }
.who-serve-grid { display:grid; grid-template-columns:5fr 4fr; gap:100px; align-items:start; }
.who-list { margin-top:40px; display:flex; flex-direction:column; gap:0; }
.who-item { display:flex; align-items:flex-start; gap:24px; padding:28px 0; border-bottom:1px solid var(--border-sub); }
.who-item:first-child { border-top:1px solid var(--border-sub); }
.who-item__marker { width:4px; height:4px; border-radius:50%; background:var(--gold); opacity:0.6; flex-shrink:0; margin-top:9px; }
.who-item__text { font-size:1rem; color:var(--text-body); line-height:1.7; }
.who-aside { padding:48px; border:1px solid var(--border); background:rgba(201,169,110,0.03); position:sticky; top:100px; }
.who-aside h4 { font-size:1rem; margin-bottom:16px; }
.who-aside p { font-size:1rem; color:var(--text-muted); line-height:1.85; margin-bottom:32px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
#site-footer { background:var(--navy-card); border-top:1px solid var(--border-sub); padding:56px 0 32px; }
.footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1.2fr; gap:48px; margin-bottom:48px; }
.footer-brand .site-logo { display:inline-flex; margin-bottom:16px; }
.footer-desc { font-size:0.9375rem; color:var(--text-muted); line-height:1.8; font-weight:300; max-width:240px; margin-bottom:20px; }
.footer-linkedin { display:inline-flex; align-items:center; gap:7px; font-size:0.875rem; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:var(--text-muted); transition:color var(--transition); }
.footer-linkedin:hover { color:var(--gold); }
.footer-col h5 { font-family:var(--font-body); font-size:0.6875rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold-muted); margin-bottom:16px; }
.footer-col ul { display:flex; flex-direction:column; gap:11px; }
.footer-col ul a { font-size:0.9375rem; color:var(--text-muted); transition:color var(--transition); font-weight:300; }
.footer-col ul a:hover { color:var(--white); }
.footer-address { font-size:1rem; color:var(--text-muted); line-height:1.7; font-weight:300; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:28px; border-top:1px solid var(--border-sub); }
.footer-bottom p { font-size:0.8125rem; color:var(--text-muted); letter-spacing:0.04em; }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:0.8125rem; color:var(--text-muted); transition:color var(--transition); }
.footer-legal a:hover { color:var(--white); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { opacity:0; animation:fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards; }
.fade-up.delay-1 { animation-delay:0.15s; }
.fade-up.delay-2 { animation-delay:0.3s; }
.fade-up.delay-3 { animation-delay:0.45s; }
.fade-up.delay-4 { animation-delay:0.6s; }
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* ─── SCHEDULE PAGE ──────────────────────────────────────── */
.schedule-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}
.schedule-option {
  padding: 40px 36px;
  background: var(--navy-card);
  border: 1px solid var(--border-sub);
  position: relative;
}
.schedule-option--featured {
  border-color: rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.03);
}
.schedule-option__badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-sub);
  padding: 5px 12px;
  margin-bottom: 20px;
}
.schedule-option__badge--gold {
  color: var(--gold);
  border-color: rgba(201,169,110,0.3);
}
.schedule-option h2 { margin-bottom: 6px; }
.schedule-option__duration {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.schedule-option .gold-rule { margin-bottom: 20px; }
.schedule-option .body-copy { margin-bottom: 24px; }
.schedule-option__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schedule-option__list li {
  font-size: 0.9375rem;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.schedule-option__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* Calendar section */
.schedule-calendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.schedule-calendar-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border-sub);
  overflow: hidden;
}
.schedule-calendar-wrap--featured {
  border-color: rgba(201,169,110,0.2);
  background: var(--navy-mid);
}
.schedule-calendar-label {
  padding: 24px 28px 0;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 0;
}
.schedule-calendar-label .eyebrow { margin-bottom: 8px; }
.schedule-calendar-label h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.schedule-fallback {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.schedule-fallback a { color: var(--gold); }

/* Single-embed schedule pages (discovery / paid) */
.schedule-single-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.schedule-single-info { position: sticky; top: 100px; }
.schedule-single-calendar {
  background: var(--navy-card);
  border: 1px solid var(--border-sub);
  overflow: hidden;
  min-height: 600px;
}
.schedule-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  padding: 48px 32px;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (max-width: 900px) {
  .schedule-option-grid { grid-template-columns: 1fr; }
  .schedule-calendar-grid { grid-template-columns: 1fr; }
  .schedule-single-grid { grid-template-columns: 1fr; }
  .schedule-single-info { position: static; }
}


/* ─── MEET STAN PAGE ──────────────────────────────────────── */

/* Portrait mode class sits on .ms-page wrapper div */

/* ── Hero ───────────────────────────────────────────────── */
.ms-hero {
  margin-top: 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-sub);
}
.ms-hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 380px;
}
.ms-hero__text {
  padding: 56px 48px 36px 40px;
  position: relative;
  z-index: 1;
}
.ms-hero__photo {
  position: relative;
  overflow: hidden;
}
.ms-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  margin-top: 80px;
}
.ms-hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(11,18,33,0.1) 25%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.ms-hero__photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20%;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Bio section ─────────────────────────────────────────── */
.ms-bio {
  background: var(--navy);
  padding-bottom: var(--section-v);
}
.ms-bio__inner {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
}
/* LEFT column — starts at top independently of right column */
.ms-bio__text {
  display: table-cell;
  vertical-align: top;
  padding-top: 36px;      /* eyebrow starts 36px under hero, always */
  padding-right: 64px;
  padding-bottom: 60px;
}
/* RIGHT column — height never affects left column start position */
.ms-bio__aside {
  display: table-cell;
  vertical-align: top;
  width: 380px;
  padding-top: 36px;
  padding-bottom: 60px;
}

/* ── Aside blocks ────────────────────────────────────────── */
.ms-aside-block {
  padding: 28px 32px;
  background: var(--navy-card);
  border: 1px solid var(--border-sub);
  margin-bottom: 2px;
}
.ms-aside-block:first-child { border-top: 2px solid var(--gold); }
.ms-aside-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.ms-aside-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Full body portrait mode ─────────────────────────────── */
/* Set portrait_display = 'fullbody' in admin to activate    */
.ms-page.portrait-fullbody .ms-hero {
  max-height: 480px;
  overflow: hidden;
}
.ms-page.portrait-fullbody .ms-hero__inner {
  height: 480px;
  align-items: stretch;
}
.ms-page.portrait-fullbody .ms-hero__photo img {
  object-position: top center;
  margin-top: 0;
}
/* Tighter gap in fullbody mode */
.ms-page.portrait-fullbody .ms-bio__text {
  padding-top: 20px;
}
.ms-page.portrait-fullbody .ms-bio__aside {
  padding-top: 20px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .ms-hero__inner { grid-template-columns: 1fr 280px; }
  .ms-hero__text { padding: 48px 32px 40px; }
  .ms-bio__inner { display: block; }
  .ms-bio__text  { display: block; padding-right: 0; padding-top: 36px; }
  .ms-bio__aside { display: block; width: 100%; padding-top: 32px; }
}
@media (max-width: 640px) {
  .ms-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .ms-hero__text { padding: 44px 20px 36px; order: 1; }
  .ms-hero__photo { order: 2; height: 420px; }
  .ms-hero__photo img { margin-top: 0; object-position: center 5%; }
  .ms-hero__photo::before { background: linear-gradient(to bottom, var(--navy) 0%, transparent 10%); }
  .ms-hero__photo::after { height: 10%; }

  .ms-bio__text { padding-top: 24px; }
  .ms-page.portrait-fullbody .ms-hero { max-height: none; }
  .ms-page.portrait-fullbody .ms-hero__inner { height: auto; }
}
@media (max-width: 812px) and (orientation: landscape) {
  .ms-hero__inner { grid-template-columns: 1fr 240px; min-height: 280px; }
  .ms-hero__photo img { margin-top: 60px; object-position: center 10%; }
  .ms-hero__photo::before { background: linear-gradient(to right, rgba(11,18,33,0.3) 0%, transparent 6%); }
}

/* ─── SCHEDULE PAGE ──────────────────────────────────────── */
.schedule-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}
.schedule-option {
  padding: 40px 36px;
  background: var(--navy-card);
  border: 1px solid var(--border-sub);
  position: relative;
}
.schedule-option--featured {
  border-color: rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.03);
}
.schedule-option__badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-sub);
  padding: 5px 12px;
  margin-bottom: 20px;
}
.schedule-option__badge--gold {
  color: var(--gold);
  border-color: rgba(201,169,110,0.3);
}
.schedule-option h2 { margin-bottom: 6px; }
.schedule-option__duration {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.schedule-option .gold-rule { margin-bottom: 20px; }
.schedule-option .body-copy { margin-bottom: 24px; }
.schedule-option__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schedule-option__list li {
  font-size: 0.9375rem;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.schedule-option__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* Calendar section */
.schedule-calendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.schedule-calendar-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border-sub);
  overflow: hidden;
}
.schedule-calendar-wrap--featured {
  border-color: rgba(201,169,110,0.2);
  background: var(--navy-mid);
}
.schedule-calendar-label {
  padding: 24px 28px 0;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 0;
}
.schedule-calendar-label .eyebrow { margin-bottom: 8px; }
.schedule-calendar-label h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.schedule-fallback {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.schedule-fallback a { color: var(--gold); }

/* Single-embed schedule pages (discovery / paid) */
.schedule-single-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.schedule-single-info { position: sticky; top: 100px; }
.schedule-single-calendar {
  background: var(--navy-card);
  border: 1px solid var(--border-sub);
  overflow: hidden;
  min-height: 600px;
}
.schedule-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  padding: 48px 32px;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (max-width: 900px) {
  .schedule-option-grid { grid-template-columns: 1fr; }
  .schedule-calendar-grid { grid-template-columns: 1fr; }
  .schedule-single-grid { grid-template-columns: 1fr; }
  .schedule-single-info { position: static; }

@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .hero-grid { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .meet-stan-grid { gap: 28px; }
  .who-serve-grid { gap: 60px; }
  .positioning-grid { gap: 60px; }
  .case-study-grid { gap: 60px; }
}
@media (max-width: 900px) {
  :root { --section-v: 48px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .positioning-grid { grid-template-columns: 1fr; gap: 40px; }
  .advisory-pillars { grid-template-columns: 1fr; }
  .meet-stan-grid { grid-template-columns: 1fr; }
  .stan-image { width:120px; height:150px; }
  .who-serve-grid { grid-template-columns: 1fr; }
  .funnel-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-group-row { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-label { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-study-label { position: static; }
  .case-study-metrics { grid-template-columns: repeat(3,1fr); }
  .positioning-accent { margin-top: 0; }
  .stan-quote-text-only { padding-left: 24px; }
  .slim-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .slim-cta-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 640px) {
  :root { --section-v: 36px; }
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
  /* Hero */
  .hero-content { padding: 44px 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-lead { font-size: 1rem; }
  /* Grids */
  .fit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .who-aside { display: none; }
  /* Typography */
  .display-1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .display-2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  /* Spacing */
  .section-header { margin-bottom: 32px; }
  .section { padding: var(--section-v) 0; }
  /* Cards */
  .btn { padding: 13px 24px; }
  .service-card { padding: 24px 20px; }
  .pillar-card { padding: 24px 20px; }
  .fit-card { padding: 24px 20px; }
  .funnel-card { padding: 24px 20px; }
  .stan-image-frame { display: none; }
  /* CTA */
  .slim-cta-actions { flex-direction: column; width: 100%; }
  .slim-cta-actions .btn { width: 100%; justify-content: center; }
  /* Outcomes */
  .outcome-item { padding: 28px 20px; border-right: none; border-bottom: 1px solid var(--border-sub); }
  .outcome-item:last-child { border-bottom: none; }
  .case-study-metrics { grid-template-columns: 1fr; }
  /* Stan quote */
  .stan-quote-text-only { padding-left: 20px; padding-top: 32px; padding-bottom: 32px; }
  .stan-quote-byline { flex-direction: column; align-items: flex-start; gap: 16px; }
  /* Positioning */
  .positioning-accent { padding: 28px 24px; }
  .positioning-quote { font-size: 1rem; }
  /* Contact */
  .contact-info-card { padding: 28px 24px; }
  .process-step { padding: 14px 0; }
}
