/* ═══════════════════════════════════════════════════════════════════
   EMG ADVISORY · Shared stylesheet
   Risk · Compliance · AI · Governance · Ethics
   ═══════════════════════════════════════════════════════════════════ */

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

:root {
  --navy: #1B2A4A;
  --navy-dark: #111D33;
  --navy-mid: #243352;
  --gold: #B8962E;
  --gold-light: #D4AF5A;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --text-mid: #4A5568;
  --text-light: #8A9AB5;
  --rule: rgba(184, 150, 46, 0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

/* ── NAV ───────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 29, 51, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(184, 150, 46, 0.2);
}
.logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-main span { color: var(--gold); }
.logo-sub {
  font-size: 9px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy-dark);
  text-decoration: none;
  background: var(--gold);
  padding: 10px 24px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gold);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px 0;
  transition: .2s;
}

/* ── HERO (homepage) ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(184, 150, 46, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 150, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 46, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 1.03;
  color: var(--white);
  margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
}
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}
.hero-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin-bottom: 52px;
}
.hero-body strong { color: rgba(255, 255, 255, 0.9); font-weight: 400; }
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--gold); }

/* HERO PHOTO */
.hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2840, #243352);
  overflow: hidden;
}
.photo-frame {
  text-align: center;
  padding: 60px 40px;
  position: relative;
  width: 100%;
  max-width: 560px;
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(184, 150, 46, 0.3);
  border-left: 1px solid rgba(184, 150, 46, 0.3);
}
.photo-frame::after {
  content: '';
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-bottom: 1px solid rgba(184, 150, 46, 0.3);
  border-right: 1px solid rgba(184, 150, 46, 0.3);
}
.photo-inner {
  border: 1px solid rgba(184, 150, 46, 0.18);
  padding: 32px 32px 36px;
  position: relative;
}
.photo-inner img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 24px;
  filter: brightness(0.96);
}
.photo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.photo-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cred-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.cred-badge {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 10px;
}

/* ── PAGE HEADER (interior pages) ──────────────────────────────── */
.page-header {
  background: var(--navy-dark);
  padding: 120px 80px 100px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 25% 50%, rgba(184, 150, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 150, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 46, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  max-width: 720px;
}

/* ── STATS BAND ────────────────────────────────────────────────── */
.stats-band {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.stats-div { background: var(--rule); margin: 0 48px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── SHARED TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow-section {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow-section::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.h2-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 32px;
}
.h2-display em { font-style: italic; color: var(--gold); }
.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ── THE GAP / WHAT WE DO ──────────────────────────────────────── */
.the-gap {
  background: var(--off-white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pullquote {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--white);
  padding: 48px 80px;
  margin-top: 16px;
  border-top: 1px solid rgba(184, 150, 46, 0.35);
  border-bottom: 1px solid rgba(184, 150, 46, 0.35);
}
.pq-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 16px;
}
.pq-attr {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.pq-link {
  color: var(--gold);
  text-decoration: none;
}
.pq-link:hover { text-decoration: underline; }
.quote-bridge {
  background: var(--off-white);
  padding: 72px 120px;
  text-align: center;
  border-top: 1px solid rgba(184, 150, 46, 0.2);
  border-bottom: 1px solid rgba(184, 150, 46, 0.2);
}

/* ── GOVERNANCE OS ─────────────────────────────────────────────── */
.os-layers { display: flex; flex-direction: column; gap: 2px; }
.layer-card {
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.08);
  padding: 28px 32px;
  position: relative;
  transition: border-color .25s, background .25s;
}
.layer-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.layer-tag {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65;
}
.layer-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.layer-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
}
.layer-bar {
  background: var(--navy);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.layer-bar-alt {
  background: var(--navy-mid);
  border-top: 1px solid rgba(184, 150, 46, 0.1);
}
.bar-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
}

/* ── ABOUT (homepage section + about page) ─────────────────────── */
.about {
  background: var(--white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-block {
  background: var(--off-white);
  border: 1px solid rgba(27, 42, 74, 0.08);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.about-photo-block img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.cred-card { background: var(--off-white); padding: 16px 20px; }
.cc-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cc-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}

/* ── ABOUT PAGE specific ───────────────────────────────────────── */
.about-extended {
  background: var(--white);
  padding: 100px 80px;
}
.about-extended-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.about-extended .about-photo-block { min-height: 600px; }
.about-extended .about-photo-block img { min-height: 600px; }
.philosophy {
  background: var(--off-white);
  padding: 100px 80px;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.philosophy-block {
  background: var(--white);
  padding: 40px 36px;
  border-left: 2px solid var(--gold);
}
.philosophy-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.philosophy-block h3 em { font-style: italic; color: var(--gold); }
.philosophy-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ── DIFFERENTIATORS ───────────────────────────────────────────── */
.diff { background: var(--off-white); padding: 100px 80px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(27, 42, 74, 0.08);
  margin-top: 56px;
}
.diff-card { background: var(--white); padding: 40px 36px; }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.diff-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.diff-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── URGENCY ───────────────────────────────────────────────────── */
.urgency {
  background: var(--navy);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 150, 46, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 46, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.urgency-inner { position: relative; z-index: 2; }
.urgency-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.1;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 64px;
}
.urgency-h2 em { font-style: italic; color: var(--gold-light); }
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 150, 46, 0.15);
}
.u-card { background: var(--navy-mid); padding: 40px 36px; }
.u-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.u-unit {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.u-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}
.u-detail {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── SERVICES ──────────────────────────────────────────────────── */
.services { background: var(--white); padding: 100px 80px; }
.svc-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 760px;
  margin-bottom: 56px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(27, 42, 74, 0.08);
}
.svc-card {
  background: var(--off-white);
  padding: 36px 32px;
  transition: background .2s;
}
.svc-card:hover { background: var(--white); }
.svc-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}
.svc-footer {
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
}
.svc-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

/* ── ENGAGEMENT MODEL (services page) ──────────────────────────── */
.engagement-model {
  background: var(--off-white);
  padding: 100px 80px;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(27, 42, 74, 0.08);
  margin-top: 48px;
}
.engagement-card {
  background: var(--white);
  padding: 32px 24px;
}
.eng-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.eng-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.eng-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ── VIEWPOINT (homepage preview + page listing) ───────────────── */
.viewpoint { background: var(--off-white); padding: 100px 80px; }
.vp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  gap: 24px;
  flex-wrap: wrap;
}
.vp-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 48px;
  color: var(--navy);
}
.link-gold {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.link-gold:hover { color: var(--gold-light); }
.vp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.vp-meta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.vp-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}
.vp-excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.read-more {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, border-color .2s;
}
.read-more:hover { color: var(--gold); border-color: var(--gold); }
.vp-img {
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.08);
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}
.vp-img-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.vp-img-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.3;
}
.vp-img-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* ── VIEWPOINT PAGE: article list and full article ─────────────── */
.vp-list {
  background: var(--off-white);
  padding: 80px 80px 0;
}
.vp-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(27, 42, 74, 0.08);
  border: 1px solid rgba(27, 42, 74, 0.08);
}
.vp-list-item {
  background: var(--white);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.vp-list-item:hover { background: var(--off-white); }
.vp-list-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.vp-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.3;
}
.vp-list-arrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
}
.vp-list-item:hover .vp-list-arrow { color: var(--gold); }
.vp-list-title-wrap { display: flex; flex-direction: column; gap: 10px; }
.vp-list-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 680px;
}
.article-back {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 40px;
}
.article-back:hover { color: var(--gold-light); }

.article {
  background: var(--white);
  padding: 100px 80px;
}
.article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-meta::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.article-byline {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  font-style: italic;
}
.article-body { font-family: 'Jost', sans-serif; }
.article-body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 24px;
}
.article-body p.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 36px;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  color: var(--navy);
  margin: 56px 0 24px;
}
.article-body h2 em { font-style: italic; color: var(--gold); }
.article-body h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 16px;
}
.article-body ul {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}
.article-body ul li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--navy);
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.article-body strong { font-weight: 500; color: var(--navy); }
.article-pullquote {
  border-left: 2px solid var(--gold);
  padding: 28px 36px;
  margin: 40px 0;
  background: var(--off-white);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
}
.article-end {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.article-end-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.article-end-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  font-style: italic;
}

/* ── CTA ───────────────────────────────────────────────────────── */
.cta {
  background: var(--gold-pale);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid rgba(184, 150, 46, 0.3);
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}
.cta h2 em { font-style: italic; color: var(--gold); }
.cta-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 18px 40px;
  text-decoration: none;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { background: var(--navy-mid); }
.cta-steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.step-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── CONTACT FORM ──────────────────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 100px 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.contact-side {
  border-left: 2px solid var(--gold);
  padding-left: 36px;
}
.contact-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-side h2 em { font-style: italic; color: var(--gold); }
.contact-side p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.contact-direct {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.contact-direct-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-direct a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
}
.contact-direct a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.contact-form {
  background: var(--off-white);
  padding: 48px 44px;
  border: 1px solid rgba(27, 42, 74, 0.08);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.12);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Jost', sans-serif;
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover { background: var(--navy-mid); }
.form-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* Hidden honeypot for Netlify */
.hp { display: none; }

/* ── INTAKE FORM (full pre-conversation form) ──────────────────── */
.intake-band {
  background: var(--off-white);
  padding: 64px 80px;
  border-bottom: 1px solid var(--rule);
}
.intake-band-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.intake-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.intake-band h2 em { font-style: italic; color: var(--gold); }
.intake-band p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.intake-direct {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
}
.intake-direct-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.intake-direct a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
  display: inline-block;
  margin-bottom: 12px;
}
.intake-direct a:hover { color: var(--gold); border-color: var(--gold); }
.intake-direct-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.intake-section {
  background: var(--white);
  padding: 80px 40px 100px;
}
.intake-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.intake-form { display: flex; flex-direction: column; }

.form-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}
.form-section:first-of-type { padding-top: 0; }
.form-section:last-of-type { border-bottom: none; }

.form-section-header {
  margin-bottom: 28px;
}
.form-section-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-section-title em { font-style: italic; color: var(--gold); }
.form-section-help {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}
.optional-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--rule);
  padding: 3px 10px;
  margin-left: 12px;
  vertical-align: middle;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row .form-group { margin-bottom: 24px; }

.form-q { margin-bottom: 28px; }
.form-q:last-child { margin-bottom: 0; }
.form-q-label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 6px;
}
.form-q-label .req {
  color: var(--gold);
  font-weight: 500;
  margin-left: 4px;
}
.form-q-help {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  font-style: italic;
}

/* ── INPUTS, SELECTS, TEXTAREAS ────────────────────────────────── */
.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form select,
.intake-form textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.18);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.intake-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%23B8962E' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.12);
}
.intake-form textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

/* ── RADIO + CHECKBOX ──────────────────────────────────────────── */
.choice-group { display: flex; flex-direction: column; gap: 10px; }
.choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid rgba(27, 42, 74, 0.1);
  background: var(--white);
  transition: border-color .15s, background .15s;
}
.choice:hover { border-color: var(--gold); background: var(--off-white); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-mark {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(27, 42, 74, 0.3);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color .15s, background .15s;
}
.choice-radio .choice-mark { border-radius: 50%; }
.choice input:checked + .choice-mark {
  border-color: var(--gold);
  background: var(--gold);
}
.choice-radio input:checked + .choice-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--white);
  border-radius: 50%;
}
.choice-checkbox input:checked + .choice-mark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.choice-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--navy);
}
.choice input:focus + .choice-mark {
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.18);
}

/* ── MATURITY GRID ─────────────────────────────────────────────── */
.maturity-grid {
  border: 1px solid rgba(27, 42, 74, 0.1);
  background: var(--white);
}
.maturity-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}
.maturity-row:last-child { border-bottom: none; }
.maturity-row.head { background: var(--off-white); }
.maturity-cell {
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-mid);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(27, 42, 74, 0.06);
}
.maturity-cell:last-child { border-right: none; }
.maturity-row.head .maturity-cell {
  font-weight: 500;
  color: var(--navy);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.maturity-row .row-label {
  text-align: left;
  justify-content: flex-start;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}
.maturity-radio {
  position: relative;
  cursor: pointer;
}
.maturity-radio input { position: absolute; opacity: 0; pointer-events: none; }
.maturity-dot {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(27, 42, 74, 0.3);
  border-radius: 50%;
  transition: border-color .15s, background .15s;
}
.maturity-radio input:checked + .maturity-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--white);
}

/* ── DISCLAIMER + SUBMIT ───────────────────────────────────────── */
.disclaimer {
  background: var(--off-white);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.disclaimer p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 8px;
}
.disclaimer-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.disclaimer-consent .choice-mark { margin-top: 1px; }
.disclaimer-consent .choice-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
}

.intake-submit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 18px 40px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Jost', sans-serif;
  width: 100%;
  margin-top: 8px;
}
.intake-submit:hover { background: var(--navy-mid); }
.intake-submit:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  opacity: 0.7;
}
.intake-footnote {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* Conditional field shows when its trigger is set */
.conditional {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.conditional.active {
  max-height: 400px;
  opacity: 1;
  margin-top: 28px;
}

/* ── CHIP MULTI-SELECT ─────────────────────────────────────────── */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(27, 42, 74, 0.18);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  transition: all 0.15s ease;
  user-select: none;
  line-height: 1.3;
}
.chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.chip:hover {
  border-color: var(--gold);
  background: var(--off-white);
}
.chip:has(input:checked) {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 500;
}
.chip:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.25);
}
.chip.is-checked {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 500;
}

/* ── PILL RADIO (single-select compact) ────────────────────────── */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border: 1px solid rgba(27, 42, 74, 0.18);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  transition: all 0.15s ease;
  user-select: none;
  line-height: 1.3;
}
.pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.pill:hover {
  border-color: var(--gold);
  background: var(--off-white);
}
.pill:has(input:checked),
.pill.is-checked {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-weight: 500;
}
.pill:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.25);
}

/* ── MULTI-STEP QUESTIONNAIRE ──────────────────────────────────── */
.q-shell {
  background: var(--white);
  padding: 64px 40px 100px;
}
.q-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.q-progress {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.q-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.q-progress-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.q-progress-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
}
.q-progress-track {
  height: 2px;
  background: rgba(184, 150, 46, 0.15);
  position: relative;
  overflow: hidden;
}
.q-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--gold);
  width: 0;
  transition: width 0.5s ease;
}

.q-step {
  display: none;
  animation: stepIn 0.4s ease both;
}
.q-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.q-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  gap: 16px;
}
.q-prev,
.q-next,
.q-submit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: 'Jost', sans-serif;
}
.q-prev {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid rgba(27, 42, 74, 0.18);
}
.q-prev:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.q-prev[hidden] { visibility: hidden; }
.q-next,
.q-submit {
  background: var(--navy);
  color: var(--white);
}
.q-next:hover,
.q-submit:hover { background: var(--navy-mid); }
.q-step:not(:last-of-type) ~ .q-nav .q-submit { display: none; }
.q-error {
  color: #B33;
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
  display: none;
}
.q-error.active { display: block; }

/* ── ARTICLE READING PROGRESS ──────────────────────────────────── */
.read-progress {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(184, 150, 46, 0.12);
  z-index: 99;
  pointer-events: none;
}
.read-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 0.05s linear;
}
@media (max-width: 900px) {
  .read-progress { top: 64px; }
}

/* ── SCROLL FADE-AND-RISE ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .q-step { animation: none; }
}

/* ── STATS COUNT-UP TRIGGER ────────────────────────────────────── */
.stat-number[data-target] {
  font-variant-numeric: tabular-nums;
}

/* ── STICKY OS HEADER (block pinning) ──────────────────────────── */
.os-sticky-wrap {
  position: relative;
}
.os-sticky-header {
  position: sticky;
  top: 88px;
  background: var(--off-white);
  padding: 16px 0 18px;
  z-index: 5;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(184, 150, 46, 0.15);
}
@media (max-width: 900px) {
  .os-sticky-header { top: 72px; }
}

/* ── HERO PHOTO SUBTLE ZOOM ────────────────────────────────────── */
.photo-inner img {
  transition: transform 8s ease-out;
}
.hero.in-view .photo-inner img,
.photo-inner img.zoom-active {
  transform: scale(1.04);
}

/* ── FOOTER QUESTIONNAIRE LINK ─────────────────────────────────── */
.f-aux {
  display: flex;
  gap: 24px;
  align-items: center;
}
.f-aux a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: .05em;
  text-decoration: none;
  transition: color 0.2s;
}
.f-aux a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .f-aux { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 48px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(184, 150, 46, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--white);
  text-decoration: none;
}
.f-logo span { color: var(--gold); }
.f-email a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: .05em;
  text-decoration: none;
}
.f-email a:hover { color: var(--gold); }
.f-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: .08em;
}

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp .7s ease both; }
.eyebrow { animation-delay: .1s; }
.hero h1 { animation-delay: .2s; }
.hero-subhead { animation-delay: .3s; }
.gold-rule { animation-delay: .35s; }
.hero-body { animation-delay: .4s; }
.hero-actions { animation-delay: .5s; }
.hero-photo { animation: fadeUp 1s ease .3s both; }

/* ── GOLD RULE DRAW ─────────────────────────────────────────────── */
@keyframes drawRule {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
.rule-draw {
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  transition: none;
}
.rule-draw.in-view {
  animation: drawRule 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.article-end-rule {
  transform-origin: center center;
}
.article-end-rule.rule-draw.in-view {
  animation: drawRule 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

/* ── PULL QUOTE FADE-SLIDE ──────────────────────────────────────── */
.pullquote.reveal,
.quote-bridge.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.pullquote.reveal.in-view,
.quote-bridge.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  .hero-content { padding: 60px 40px; }
  .hero h1 { font-size: 60px; }
  .stats-band, .the-gap, .about, .diff, .urgency, .services, .viewpoint, .cta,
  .page-header, .about-extended, .philosophy, .engagement-model, .contact-section,
  .article, .vp-list { padding-left: 40px; padding-right: 40px; }
  .pullquote { padding: 40px 40px; }
  .quote-bridge { padding: 56px 40px; }
  footer { padding-left: 40px; padding-right: 40px; }
  .stats-band { padding-top: 56px; padding-bottom: 56px; }
  .stats-div { margin: 0 28px; }
  .h2-display, .urgency-h2, .cta h2 { font-size: 44px; }
  .page-header h1 { font-size: 52px; }
  .engagement-grid { grid-template-columns: repeat(3, 1fr); }
  .engagement-grid > .engagement-card:nth-child(4),
  .engagement-grid > .engagement-card:nth-child(5) { grid-column: span 1.5; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 24px 24px 32px;
    gap: 18px;
    border-bottom: 1px solid rgba(184, 150, 46, 0.2);
  }
  .logo-sub { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 80px 32px 64px; }
  .hero h1 { font-size: 48px; }
  .hero-subhead { font-size: 22px; margin-bottom: 36px; }
  .hero-photo { padding: 40px 32px 64px; }
  .photo-frame { padding: 32px 16px; }
  .stats-band {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 32px;
  }
  .stats-div { display: none; }
  .stat-number { font-size: 48px; }
  .the-gap, .about, .cta, .vp-grid, .contact-grid,
  .about-extended-grid, .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-band, .the-gap, .about, .diff, .urgency, .services, .viewpoint, .cta,
  .page-header, .about-extended, .philosophy, .engagement-model, .contact-section,
  .article, .vp-list { padding-left: 32px; padding-right: 32px; }
  .pullquote { padding: 36px 32px; }
  .quote-bridge { padding: 48px 32px; }
  .page-header { padding-top: 80px; padding-bottom: 64px; }
  .page-header h1 { font-size: 40px; }
  .page-header-lede { font-size: 18px; }
  .h2-display, .urgency-h2, .cta h2, .vp-header h2 { font-size: 36px; }
  .article-title { font-size: 36px; }
  .article-body p, .article-body p.lede { font-size: 15px; }
  .article-body p.lede { font-size: 19px; }
  .article-body h2 { font-size: 26px; }
  .diff-grid, .svc-grid, .urgency-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .engagement-grid > .engagement-card:nth-child(4),
  .engagement-grid > .engagement-card:nth-child(5) { grid-column: span 1; }
  .vp-list-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .cred-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 32px; gap: 12px; }
  .contact-side { padding-left: 24px; }
  .contact-form { padding: 32px 24px; }
  .intake-band { padding: 48px 32px; }
  .intake-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .intake-band h2 { font-size: 28px; }
  .intake-section { padding: 56px 24px 80px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-section-title { font-size: 22px; }
  .maturity-row { grid-template-columns: 1fr; }
  .maturity-row.head { display: none; }
  .maturity-cell {
    border-right: none;
    border-bottom: 1px solid rgba(27, 42, 74, 0.06);
    padding: 10px;
    justify-content: flex-start;
    text-align: left;
  }
  .maturity-cell:last-child { border-bottom: none; }
  .maturity-row .row-label {
    background: var(--off-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 10px;
    padding: 12px 18px;
  }
  .maturity-cell::before {
    content: attr(data-level);
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-right: 12px;
    min-width: 36px;
  }
  .maturity-row .maturity-cell:not(.row-label) {
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* ── Mobile touch targets (44pt minimum) ── */
  .chip { padding: 12px 18px; font-size: 14px; }
  .pill { padding: 14px 22px; font-size: 14px; }
  .choice { padding: 14px 16px; }

  /* ── Multi-step nav: tighter so buttons fit on narrow screens ── */
  .q-prev, .q-next, .q-submit {
    padding: 14px 22px;
    font-size: 11px;
  }
  .q-shell { padding: 48px 24px 80px; }
  .q-progress { margin-bottom: 32px; }

  /* ── Page header: more breathing room below mobile nav ── */
  .page-header { padding-top: 96px; }

  /* ── About photo: shorter on mobile ── */
  .about-photo-block,
  .about-photo-block img,
  .about-extended .about-photo-block,
  .about-extended .about-photo-block img {
    min-height: 360px;
  }

  /* ── Hero photo frame: tighter inner padding so photo isn't tiny ── */
  .photo-inner { padding: 20px 20px 28px; }

  /* ── Form select dropdown chevron: a bit smaller on mobile ── */
  .intake-form select { padding-right: 40px; }

  /* ── Disclaimer: a touch more padding on mobile ── */
  .disclaimer { padding: 20px 22px; }

  /* ── Optional tag: doesn't push to a new line awkwardly ── */
  .optional-tag { display: inline-block; margin-left: 8px; margin-top: 4px; }
}

@media (max-width: 420px) {
  /* ── Very narrow phones: the smallest sensible breakpoint ── */
  .q-nav { flex-wrap: wrap; }
  .q-prev, .q-next, .q-submit { flex: 1; min-width: 100%; padding: 14px 16px; }
  .q-prev { order: 2; }
  .q-next, .q-submit { order: 1; }
  .q-prev[hidden] { display: none; }
  .form-section-title { font-size: 20px; }
  .page-header h1 { font-size: 32px; }
  .h2-display, .urgency-h2, .cta h2 { font-size: 26px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 38px; }
  .h2-display, .urgency-h2, .cta h2, .vp-header h2 { font-size: 30px; }
  .article-title { font-size: 30px; }
  .stat-number { font-size: 40px; }
  .diff-num { font-size: 36px; }
  .u-big { font-size: 38px; }
  .engagement-grid { grid-template-columns: 1fr; }
}
