/* ============================================================
   Empact — Shared Stylesheet
   Version 1.0 · April 2026
   Import: <link rel="stylesheet" href="/style.css">
   ============================================================ */

/* ── Google Fonts are loaded in each HTML file's <head> ── */

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --pink:            #C4335A;
  --pink-dark:       #a82a4d;
  --terracotta:      #D97757;
  --teal:            #1A7A65;
  --ivory:           #F5EDE4;
  --white:           #FFFFFF;
  --asphalt:         #2E2E2E;

  /* On-dark variants */
  --blush-emphasis:  #F0C4CE;
  --teal-secondary:  #A8CFC8;
  --terracotta-bg:   #FFF0E8;

  /* Text */
  --body-warm:       #5C4A3D;
  --body-std:        #444444;
  --caption:         #888888;

  /* Borders */
  --border-card:           rgba(0,0,0,0.08);
  --border-card-hover:     rgba(196,51,90,0.30);
  --border-phase:          rgba(196,51,90,0.12);
  --shadow-card-hover:     0 4px 20px rgba(196,51,90,0.08);
  --shadow-nav:            0 2px 12px rgba(0,0,0,0.06);

  /* Layout */
  --container-max:    1080px;
  --container-pad:    32px;
  --section-pad:      88px;

  /* Radius */
  --radius-btn:       6px;
  --radius-card:      10px;
  --radius-phase:     8px;
  --radius-callout:   4px;
  --radius-badge:     20px;
  --radius-input:     5px;

  /* Type */
  --font-heading:     'Space Grotesk', sans-serif;
  --font-body:        'DM Sans', sans-serif;
  --fw-light:         300;
  --fw-regular:       400;
  --fw-medium:        500;
  --fw-semibold:      600;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

body {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-std);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--asphalt);
  line-height: 1.15;
}
h1 { font-size: 44px; font-weight: var(--fw-semibold); letter-spacing: -0.028em; text-wrap: balance; }
h2 { font-size: 32px; font-weight: var(--fw-semibold); letter-spacing: -0.022em; text-wrap: balance; }
h3 { font-size: 20px; font-weight: var(--fw-semibold); letter-spacing: -0.01em; text-wrap: balance; }
h4 { font-size: 17px; font-weight: var(--fw-medium); text-wrap: balance; }

p {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-std);
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { text-decoration: underline; }

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow-dark {
  color: var(--blush-emphasis);
}

/* ── Layout ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

/* ── Background helpers ── */
.bg-ivory   { background: var(--ivory); }
.bg-white   { background: var(--white); }
.bg-teal    { background: var(--teal); }
.bg-asphalt { background: var(--asphalt); }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.nav-wrap.scrolled {
  border-bottom-color: rgba(0,0,0,0.07);
  box-shadow: var(--shadow-nav);
}

.nav-wrap nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  color: var(--asphalt);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; color: var(--asphalt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--body-std);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a.active { color: var(--pink); }

.nav-cta a {
  background: var(--pink);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 13px;
  transition: background 0.2s !important;
}
.nav-cta a:hover { background: var(--pink-dark); text-decoration: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--asphalt);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 20px var(--container-pad);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--body-std);
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-mobile a:last-child { color: var(--pink); border-bottom: none; }
.nav-mobile a:hover { color: var(--pink); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink-dark);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.offer-card {
  background: var(--white);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.offer-card:hover {
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.phase-card {
  background: var(--white);
  border: 1px solid var(--border-phase);
  border-radius: var(--radius-phase);
  padding: 32px 28px;
}

/* ─────────────────────────────────────────
   CALLOUT (pink left-border)
───────────────────────────────────────── */
.callout {
  background: var(--ivory);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius-callout);
  padding: 20px 24px;
  font-style: italic;
  color: var(--body-warm);
  font-size: 15px;
  font-weight: var(--fw-regular);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   BADGE
───────────────────────────────────────── */
.badge-timeline {
  display: inline-block;
  background: var(--terracotta-bg);
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: var(--radius-badge);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: var(--fw-medium);
  padding: 3px 12px;
}

/* ─────────────────────────────────────────
   DOT LIST (pink bullets)
───────────────────────────────────────── */
.dot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: var(--fw-regular);
  line-height: 1.55;
  color: var(--body-std);
}
.dot-list li::before {
  content: '';
  display: block;
  min-width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Check list (pink check circles) */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--body-std);
  line-height: 1.45;
}
.check-icon {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--pink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* ─────────────────────────────────────────
   FORMS (dark background)
───────────────────────────────────────── */
.form-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}

.form-dark label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240,237,228,0.5);
  margin-bottom: 7px;
}

.form-dark input,
.form-dark select,
.form-dark textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-input);
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-light);
  color: var(--ivory);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-dark input:focus,
.form-dark select:focus,
.form-dark textarea:focus {
  border-color: rgba(196,51,90,0.55);
}

.form-dark input::placeholder,
.form-dark textarea::placeholder {
  color: rgba(240,237,228,0.3);
}

.form-dark select option {
  background: var(--asphalt);
  color: var(--ivory);
}

.form-dark textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { margin-bottom: 16px; }
.form-field:last-of-type { margin-bottom: 0; }

.form-note {
  font-size: 11px;
  font-weight: var(--fw-light);
  color: rgba(240,237,228,0.3);
  text-align: center;
  margin-top: 10px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--asphalt);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--ivory);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-logo:hover { text-decoration: none; color: var(--ivory); }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: rgba(240,237,228,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(240,237,228,0.75); text-decoration: none; }

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--fw-light);
  color: rgba(240,237,228,0.25);
}

/* ─────────────────────────────────────────
   HEADLINE ACCENT (H1 pink italic emphasis)
───────────────────────────────────────── */
.headline-accent {
  color: var(--pink);
  font-style: italic;
}

/* ─────────────────────────────────────────
   PHASE GHOST NUMBERS
───────────────────────────────────────── */
.phase-card {
  position: relative;
  overflow: hidden;
}

.phase-ghost-num {
  position: absolute;
  bottom: -18px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(196, 51, 90, 0.055);
  pointer-events: none;
  user-select: none;
  aria-hidden: true;
}

/* ─────────────────────────────────────────
   METRICS STRIP
───────────────────────────────────────── */
.section-metrics {
  padding: 44px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.metric-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  gap: 4px;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--asphalt);
  line-height: 1;
}

.metric-num-pink { color: var(--pink); }

.metric-unit {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 2px;
}

.metric-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--caption);
  margin-top: 2px;
}

.metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SERVICE CARD LAYER ACCENTS
───────────────────────────────────────── */
.offer-card {
  border-top-width: 3px;
}

.offer-card--foundation {
  border-top-color: var(--pink);
}

.offer-card--scoring {
  border-top-color: rgba(196, 51, 90, 0.42);
}

.offer-card--activation {
  border-top-color: var(--teal);
}

/* Preserve accent on hover */
.offer-card--foundation:hover  { border-top-color: var(--pink); }
.offer-card--scoring:hover     { border-top-color: rgba(196, 51, 90, 0.42); }
.offer-card--activation:hover  { border-top-color: var(--teal); }

/* ─────────────────────────────────────────
   CTA DOT-GRID TEXTURE
───────────────────────────────────────── */
.section-cta {
  background-color: var(--asphalt);
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ─────────────────────────────────────────
   DARK BACKGROUND TEXT
───────────────────────────────────────── */
.bg-asphalt h1,
.bg-asphalt h2,
.bg-asphalt h3,
.bg-asphalt h4 { color: var(--ivory); }

.bg-asphalt p { color: rgba(240,237,228,0.72); }

.bg-teal h1,
.bg-teal h2,
.bg-teal h3 { color: var(--white); }

.bg-teal p { color: rgba(255,255,255,0.85); }

.bg-teal .dot-list li { color: rgba(255,255,255,0.85); }
.bg-teal .dot-list li::before { background: var(--blush-emphasis); }

/* ─────────────────────────────────────────
   HERO LAYOUT
───────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-text { max-width: 520px; }

.hero-text h1 { margin-bottom: 22px; }

.hero-text p {
  font-size: 17px;
  color: var(--body-warm);
  line-height: 1.72;
  margin-bottom: 14px;
  max-width: 430px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.hero-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--fw-light);
  color: var(--body-warm);
  opacity: 0.65;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────────────────────────────
   OPPORTUNITY SECTION
───────────────────────────────────────── */
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.opp-left h2 { margin-bottom: 18px; }

.opp-left p {
  margin-bottom: 16px;
}
.opp-left p:last-of-type { margin-bottom: 0; }

.opp-right { padding-top: 6px; }

.sound-familiar-header {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────
   HOW IT WORKS SECTION
───────────────────────────────────────── */
.section-intro {
  max-width: 560px;
  margin-bottom: 52px;
}

.section-intro h2 { margin-bottom: 14px; }

.section-intro p {
  color: var(--body-warm);
  margin-bottom: 8px;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}

.phase-card-num {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

.phase-card h3 { margin-bottom: 12px; }

.phase-card p {
  font-size: 14px;
  color: var(--body-warm);
  line-height: 1.68;
}

/* Outputs box */
.outputs-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-card);
  padding: 30px 36px;
}

.outputs-box-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.outputs-main { flex: 1; min-width: 280px; }

.outputs-header {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-bottom: 20px;
}

.outputs-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-left: 24px;
  border-left: 1px solid rgba(0,0,0,0.07);
  min-width: 120px;
}

.outputs-timeline-note {
  font-size: 12px;
  font-weight: var(--fw-light);
  color: var(--caption);
  max-width: 110px;
  line-height: 1.45;
}

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
.services-header {
  margin-bottom: 44px;
}

.services-header .eyebrow { margin-bottom: 10px; }
.services-header h2 { margin-bottom: 12px; }

.services-intro {
  font-size: 16px;
  color: var(--body-std);
  max-width: 520px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.offer-card-num {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.offer-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--fw-semibold);
  color: var(--asphalt);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 14px;
}

.offer-card-body {
  font-size: 14px;
  font-weight: var(--fw-light);
  line-height: 1.65;
  color: var(--body-std);
  flex: 1;
  margin-bottom: 24px;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.offer-card-days {
  font-size: 12px;
  color: var(--caption);
}

.offer-card-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--pink);
}

.offer-card-link:hover { text-decoration: underline; }

/* Standalone note */
.standalone-note {
  background: var(--ivory);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.standalone-note-text { flex: 1; min-width: 260px; }

.standalone-note-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}

.standalone-note-body {
  font-size: 14px;
  font-weight: var(--fw-light);
  line-height: 1.6;
  color: var(--body-warm);
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.cta-text h2 { margin-bottom: 16px; }

.cta-text p {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(240,237,228,0.7);
  margin-bottom: 12px;
}

.cta-divider {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-divider-note {
  font-size: 12px;
  color: rgba(240,237,228,0.32);
  letter-spacing: 0.02em;
}

.form-intro {
  font-size: 13px;
  font-weight: var(--fw-light);
  color: rgba(240,237,228,0.4);
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}

.about-headshot {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
}

.body-prose {
  max-width: 660px;
}

.body-prose p {
  margin-bottom: 18px;
}

.body-prose p:last-child { margin-bottom: 0; }

.prose-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 28px 0;
}

.standout-line {
  font-size: 17px;
  font-weight: var(--fw-medium);
  color: var(--asphalt);
  line-height: 1.55;
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.service-block {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.service-block:last-child { border-bottom: none; }

.service-block h3 { margin-bottom: 12px; }

.service-block-intro {
  font-size: 16px;
  color: var(--body-std);
  margin-bottom: 20px;
  max-width: 600px;
}

.service-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.service-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.55;
  color: var(--body-std);
}

.service-block ul li::before {
  content: '';
  display: block;
  min-width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 8px;
  flex-shrink: 0;
}

.service-handoff {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--asphalt);
  margin-top: 4px;
}

.standalone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}

.standalone-item h4 { margin-bottom: 6px; color: var(--asphalt); }

.standalone-item p {
  font-size: 14px;
  color: var(--body-warm);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   START HERE PAGE
───────────────────────────────────────── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.split-hero-left {
  background: var(--ivory);
  padding: 88px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-hero-left h1 { margin-bottom: 20px; }

.split-hero-left p {
  color: var(--body-warm);
  font-size: 16px;
  max-width: 400px;
}

.split-hero-right {
  background: var(--asphalt);
  padding: 56px 64px;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0; }

details.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

details.faq-item summary {
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--asphalt);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details.faq-item[open] summary::after {
  content: '–';
}

.faq-answer {
  padding: 0 0 20px 0;
  font-size: 15px;
  font-weight: var(--fw-light);
  color: var(--body-std);
  line-height: 1.7;
  max-width: 600px;
}

/* ─────────────────────────────────────────
   THANK YOU PAGE
───────────────────────────────────────── */
.thankyou-section {
  min-height: calc(100vh - 68px - 109px);
  display: flex;
  align-items: center;
}

.thankyou-content {
  max-width: 560px;
}

.thankyou-content h1 { margin-bottom: 20px; }

.thankyou-content p {
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-pad: 64px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }
  .hero-text p { max-width: 100%; }

  /* Opportunity */
  .opp-grid { grid-template-columns: 1fr; gap: 48px; }

  /* How it works */
  .phase-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .outputs-box-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .outputs-timeline {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding-top: 16px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: flex-start;
  }

  /* Services */
  .offer-grid { grid-template-columns: 1fr; }
  .standalone-note { flex-direction: column; }
  .standalone-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; gap: 44px; }

  /* About */
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-headshot { width: 160px; height: 200px; }

  /* Start Here */
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero-left,
  .split-hero-right { padding: 52px 32px; }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 52px;
    --container-pad: 20px;
  }
  h1 { font-size: 28px; }
  h2 { font-size: 23px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .split-hero-left,
  .split-hero-right { padding: 44px 20px; }
}
