/* ============================================================
   Analytica Validation — Phase 7 Master Stylesheet
   Brand: Cormorant Garamond · DM Sans · Jost · DM Mono
   Palette: Ink/Slate/Gold/Cream from brand identity system
   ============================================================ */

/* Fonts loaded via <link> tags in HTML head — no @import needed */

/* ── TOKENS ── */
:root {
  --ink:         #0d0f12;
  --ink-soft:    #1c2028;
  --slate:       #2e3440;
  --mid:         #5c6370;
  --rule:        #2a2d35;
  --rule-light:  #e8e4de;
  --cream:       #f5f2ed;
  --paper:       #faf9f7;
  --white:       #ffffff;
  --gold:        #c8a96e;
  --gold-light:  #d4ba8a;
  --gold-dark:   #b8903a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-sub:     'Jost', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

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

/* ── LAYOUT ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,15,18,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: #9aa0b0;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: var(--font-sub);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 9px 22px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #2e3440;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #6a7080;
  transition: all 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── SECTION LABELS ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label-line { width: 28px; height: 1px; background: var(--gold); }
.section-label-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── SECTION HEADINGS ── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-heading-light { color: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  color: #6a7080;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #2e3440;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-sub);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  display: inline-block;
}
.btn-dark:hover { background: var(--slate); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 88px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--ink-soft) 0%, #141720 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-left {
  position: relative;
  z-index: 2;
  padding: 88px 64px 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: #9aa5b8;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.hero-sub strong { color: #d0d5de; font-weight: 400; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-right {
  position: relative;
  z-index: 2;
  padding: 88px 72px 88px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-stat-block { display: flex; flex-direction: column; gap: 36px; }
.hero-stat {
  border-left: 2px solid var(--rule);
  padding-left: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-stat:nth-child(1) { animation-delay: 0.1s; border-left-color: var(--gold); }
.hero-stat:nth-child(2) { animation-delay: 0.2s; }
.hero-stat:nth-child(3) { animation-delay: 0.3s; }
.hero-stat:nth-child(4) { animation-delay: 0.4s; }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #8a939f;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
}
.hero-stat-value em { font-style: italic; color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 128px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.page-hero-line { width: 28px; height: 1px; background: var(--gold); }
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: #9aa5b8;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* ── URGENCY BAND ── */
.urgency-band {
  background: var(--ink-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 72px;
  display: flex;
  align-items: center;
  gap: 44px;
  overflow-x: auto;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.urgency-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.urgency-item span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #8a939f;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.urgency-divider { width: 1px; height: 18px; background: var(--rule); flex-shrink: 0; }

/* ── PAIN SECTION ── */
.pain-section { background: var(--paper); padding: 104px 0; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.pain-intro {
  font-size: 18px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 480px;
}
.pain-intro strong { color: var(--ink); font-weight: 500; }
.pain-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-light);
}
.pain-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  transition: background 0.2s;
}
.pain-item:hover { background: rgba(200,169,110,0.03); margin: 0 -16px; padding: 20px 16px; }
.pain-item-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  padding-top: 3px;
}
.pain-item-text { font-size: 14px; color: var(--slate); line-height: 1.65; }
.pain-item-text strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
  font-size: 15px;
}

/* ── WHO SECTION ── */
.who-section {
  background: var(--ink);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.who-section::before {
  content: 'AV';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 700;
  color: rgba(255,255,255,0.018);
  line-height: 1;
  pointer-events: none;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.who-portrait-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--ink-soft);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.who-portrait-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.4s ease;
}
.who-portrait-box:hover img {
  filter: grayscale(80%) contrast(1.05);
}
.who-portrait-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.who-portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.who-portrait-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-portrait-icon svg { width: 40px; height: 40px; fill: var(--mid); }
.who-portrait-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #8a939f;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.who-portrait-accent {
  position: absolute;
  bottom: -1px; left: -1px;
  width: 60%; height: 3px;
  background: var(--gold);
}
.who-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  margin-top: 16px;
}
.who-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.who-bio {
  font-size: 16px;
  font-weight: 300;
  color: #9aa5b8;
  line-height: 1.8;
  margin-bottom: 28px;
}
.who-bio strong { color: #d0d5de; font-weight: 400; }
.who-credentials { display: flex; flex-wrap: wrap; gap: 8px; }
.credential-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 6px 12px;
}

/* ── SERVICES SECTION ── */
.services-section { background: var(--cream); padding: 104px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  margin-top: 56px;
}
.service-card {
  background: var(--paper);
  padding: 40px 36px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.service-card:hover { background: var(--white); }
.service-card:hover .service-arrow { transform: translate(3px,-3px); color: var(--gold); }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  display: block;
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-arrow {
  font-size: 18px;
  color: var(--rule-light);
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
}

/* ── OUTCOMES SECTION ── */
.outcomes-section { background: var(--ink); padding: 104px 0; }
.outcomes-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.outcomes-sub {
  font-size: 16px;
  font-weight: 300;
  color: #8a939f;
  line-height: 1.8;
}
.outcomes-sub strong { color: #b8bdc8; font-weight: 400; }
.outcome-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.outcome-card {
  background: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.outcome-card:hover { border-color: var(--gold); }
.outcome-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(200,169,110,0.28);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.outcome-text {
  font-size: 14px;
  font-weight: 400;
  color: #cdd5e0;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.outcome-context {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #a8b4c6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── PROCESS SECTION ── */
.process-section { background: var(--paper); padding: 104px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 2px solid var(--ink);
}
.process-step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule-light);
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step:not(:first-child) { padding-left: 32px; }
.process-step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: rgba(13,15,18,0.06);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(0,0,0,0.025) 40px, rgba(0,0,0,0.025) 41px);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}
.cta-heading em { font-style: italic; }
.cta-sub {
  font-size: 15px;
  color: rgba(13,15,18,0.55);
  margin-top: 10px;
  font-weight: 300;
}

/* ── ABOUT / TIMELINE ── */
.timeline-section { background: var(--paper); padding: 104px 0; }
.timeline-section-dark { background: var(--ink); padding: 104px 0; }
.timeline { display: flex; flex-direction: column; border-top: 1px solid var(--rule-light); margin-top: 48px; }
.timeline-dark { border-top-color: var(--rule); }
.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-light);
}
.timeline-item-dark { border-bottom-color: var(--rule); }
.timeline-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 4px;
  text-align: right;
}
.timeline-role {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}
.timeline-role-light { color: var(--white); }
.timeline-org {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.timeline-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}
.timeline-desc-light { color: #8a939f; }

/* Profile stats grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 48px 0;
}
.stat-box {
  background: var(--ink-soft);
  padding: 32px 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Earlier career grid */
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  margin-top: 48px;
}
.career-card {
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.2s;
}
.career-card:hover { background: var(--white); }
.career-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.career-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.career-card-org {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.career-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* Education */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  margin-top: 48px;
  max-width: 860px;
}
.edu-card {
  background: var(--paper);
  padding: 40px 36px;
}
.edu-degree {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.edu-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.edu-inst {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 10px;
}
.edu-note {
  font-size: 12px;
  font-weight: 300;
  color: #8a9099;
  line-height: 1.65;
  font-style: italic;
}

/* Credential tags (dark bg version) */
.credential-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cred-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 6px 12px;
  transition: border-color 0.2s, color 0.2s;
}
.cred-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #080a0d;
  padding: 72px 0 44px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: #8a9299;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 28px;
  margin-top: 20px;
}
.footer-reg {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #7a8290;
  letter-spacing: 0.1em;
  line-height: 2;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #c8a96e;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: #7a8494;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #141820;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; color: #7a8290; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px;
  color: #7a8290;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .section-inner { padding: 0 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-left { padding: 72px 40px; }
  .hero-right { display: none; }
  .pain-grid, .who-grid, .outcomes-intro { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .outcome-cards { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .urgency-band { padding: 20px 40px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .career-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-date { text-align: left; }
  .edu-grid { grid-template-columns: 1fr; max-width: 100%; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(13,15,18,0.98); padding: 24px 32px; gap: 16px; border-bottom: 1px solid var(--rule); }
  .nav-toggle { display: flex; }
  .section-inner { padding: 0 24px; }
  .hero-left { padding: 64px 24px; }
  .services-grid, .process-steps, .footer-grid, .career-grid, .outcome-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .urgency-band { padding: 20px 24px; gap: 28px; }
  .pain-section, .who-section, .services-section, .outcomes-section, .process-section { padding: 72px 0; }
}

/* ── MOBILE FIXES ─────────────────────────────────────────────────────────── */

/* Nav logo — scale down on small phones so it doesn't crowd the hamburger */
@media (max-width: 480px) {
  .nav-logo svg { width: 220px !important; height: 30px !important; }
  nav { padding: 0 20px; }
}

/* Legal pages — full width on mobile */
@media (max-width: 640px) {
  .legal-wrap { padding: 48px 20px 72px; }
}

/* Contact form name/email row — stack on mobile */
@media (max-width: 640px) {
  .contact-form-row { grid-template-columns: 1fr !important; }
}

/* Service detail page inline grids — collapse on mobile */
@media (max-width: 640px) {
  /* Earlier career inline grids on about page */
  div[style*="grid-template-columns:1fr 160px"] {
    display: block !important;
  }
  div[style*="grid-template-columns:1fr 160px"] > div:last-child {
    margin-top: 4px;
    text-align: left !important;
  }

  /* Page hero sub text size */
  .page-hero-sub { font-size: 15px; }

  /* Stat numbers */
  .stat-number { font-size: clamp(36px, 10vw, 52px); }

  /* CTA section padding */
  .cta-section { padding: 64px 0; }

  /* Section headings */
  .section-heading { font-size: clamp(28px, 7vw, 40px); }
}

/* Tablet — 641px to 1024px */
@media (min-width: 641px) and (max-width: 1024px) {
  .page-hero-sub { font-size: 16px; }
  .legal-wrap { padding: 64px 40px 88px; }
}
