/* Practice Peace — Home Page Styles
   Palette (locked):
   Deep Indigo #1B2C49 | Warm Paper #FAF6EF | Coral #E96A55
   Bone #F2EFE8 | Indigo Ink #14182A | Stone #6B5F50
*/

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

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

:root {
  --indigo: #1B2C49;
  --paper: #FAF6EF;
  --coral: #E96A55;
  --coral-hover: #d45840;
  --bone: #F2EFE8;
  --ink: #14182A;
  --stone: #6B5F50;
  --glass-bg: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
input, textarea, select { font-family: inherit; }

/* ─── Utility ──────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-dark { background: var(--indigo); color: var(--bone); }
.section-light { background: var(--paper); color: var(--ink); }

/* ─── Buttons ──────────────────────────── */
.btn-coral {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--coral); color: #fff; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px; letter-spacing: .01em;
  transition: background .25s var(--ease), transform .2s var(--ease);
}
.btn-coral:hover { background: var(--coral-hover); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--bone); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px; border: 1.5px solid rgba(242,239,232,.35);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(255,255,255,.06); }

/* ─── 1. NAV ───────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 72px; display: flex; align-items: center;
  background: rgba(27,44,73,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s var(--ease);
}
.site-nav.scrolled { background: rgba(27,44,73,.97); }
.nav-inner { display: flex; align-items: center; width: 100%; max-width: var(--max-w); margin: 0 auto; }
.nav-wordmark { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--bone); letter-spacing: .02em; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; margin-right: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(242,239,232,.7);
  transition: color .2s; position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--bone); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown .dropdown {
  display: none; position: absolute; top: calc(100% + 12px); left: -12px;
  background: var(--indigo); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 8px 0; min-width: 180px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.nav-links .has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 20px; font-size: 14px; color: rgba(242,239,232,.7); }
.dropdown a:hover { color: var(--bone); background: rgba(255,255,255,.05); }
.nav-cta { font-size: 14px; padding: 10px 22px; border-radius: 7px; white-space: nowrap; }

/* ─── 2. HERO (split-screen) ───────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--indigo); overflow: hidden;
}
.hero-split {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr;
}
.hero-panel {
  position: relative; overflow: hidden;
}
.hero-panel img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-panel--before::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,24,42,.78) 0%, rgba(27,44,73,.65) 100%);
}
.hero-panel--after::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,44,73,.35) 0%, rgba(20,24,42,.18) 100%);
}
.hero-panel-label {
  position: absolute; bottom: 32px; z-index: 3;
  font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(242,239,232,.5); padding: 6px 16px;
  background: rgba(0,0,0,.25); backdrop-filter: blur(8px);
  border-radius: 20px;
}
.hero-panel--before .hero-panel-label { left: 32px; }
.hero-panel--after .hero-panel-label { right: 32px; }
/* Divider line */
.hero-split::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(242,239,232,.15); z-index: 2;
}

.hero-content {
  position: relative; z-index: 4; text-align: center; max-width: 800px;
  padding: 120px 40px 80px;
}
.hero-headline {
  font-family: var(--serif); font-size: clamp(40px, 5.5vw, 68px); font-weight: 500;
  line-height: 1.1; color: #fff; letter-spacing: -.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
  min-height: 1.2em; position: relative;
}
.hero-headline span {
  display: block; position: absolute; inset: 0;
  opacity: 0; transition: opacity .8s var(--ease);
}
.hero-headline span.active { opacity: 1; position: relative; }
.hero-wordmark {
  font-family: var(--serif); font-size: clamp(16px, 2vw, 20px); font-weight: 400;
  color: rgba(242,239,232,.5); letter-spacing: .15em; text-transform: uppercase;
  margin-top: 24px; text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-ctas .btn-coral { min-width: 230px; justify-content: center; }

/* ─── 3. PROBLEM ───────────────────────── */
.problem { padding: 120px 40px; }
.problem h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; line-height: 1.2; color: var(--ink); max-width: 700px; margin: 0 auto 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--max-w); margin: 0 auto 48px; }
.stat-card {
  background: #fff; border-radius: 14px; padding: 36px 28px; text-align: center;
  border: 1px solid rgba(107,95,80,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(27,44,73,.07); }
.stat-card .stat-num { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--coral); line-height: 1.1; margin-bottom: 8px; }
.stat-card .stat-label { font-size: 15px; color: var(--stone); line-height: 1.45; }
.problem-sub { text-align: center; max-width: 600px; margin: 0 auto; font-size: 17px; color: var(--stone); line-height: 1.6; font-style: italic; }

/* ─── 4. OUTCOME TILES ─────────────────── */
.outcomes { padding: 0 40px 120px; }
.outcomes h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,42px); font-weight: 500; text-align: center; line-height: 1.2; color: var(--ink); max-width: 700px; margin: 0 auto 56px; }
.outcome-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: var(--max-w); margin: 0 auto; }
.outcome-tile {
  background: #fff; border-radius: 14px; padding: 40px 32px;
  border: 1px solid rgba(107,95,80,.08); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.outcome-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(27,44,73,.06); }
.outcome-tile::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--coral); border-radius: 0 2px 2px 0; opacity: 0;
  transition: opacity .3s;
}
.outcome-tile:hover::before { opacity: 1; }
.outcome-tile p { font-family: var(--serif); font-size: clamp(20px,2.5vw,26px); font-weight: 500; line-height: 1.35; color: var(--ink); }

/* ─── 5. PEACE RESPONSE ────────────────── */
.peace-response { padding: 120px 40px; }
.peace-response h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; color: var(--bone); margin-bottom: 72px; }
.peace-letters { display: flex; gap: 12px; max-width: var(--max-w); margin: 0 auto; justify-content: center; }
.peace-letter {
  flex: 1; max-width: 220px; text-align: center; padding: 40px 20px;
  border-radius: 16px; border: 1px solid var(--glass-border);
  background: var(--glass-bg); backdrop-filter: blur(12px);
  opacity: .4; transition: opacity .4s, background .4s;
}
.peace-letter.highlighted { opacity: 1; background: rgba(233,106,85,.12); border-color: rgba(233,106,85,.3); }
.peace-letter .letter { font-family: var(--serif); font-size: 64px; font-weight: 600; color: var(--bone); line-height: 1; margin-bottom: 12px; }
.peace-letter.highlighted .letter { color: var(--coral); }
.peace-letter .word { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(242,239,232,.6); margin-bottom: 12px; }
.peace-letter.highlighted .word { color: var(--bone); }
.peace-letter .desc { font-size: 14px; color: rgba(242,239,232,.5); line-height: 1.5; }
.peace-letter.highlighted .desc { color: rgba(242,239,232,.75); }

/* ─── 6. WHY THIS WORKS ───────────────── */
.why-works { padding: 120px 40px; }
.why-works h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; line-height: 1.2; color: var(--ink); margin-bottom: 56px; }
.why-works blockquote {
  max-width: 800px; margin: 0 auto 20px; text-align: center;
  font-family: var(--serif); font-size: clamp(22px,3vw,32px); font-weight: 400;
  font-style: italic; line-height: 1.45; color: var(--ink);
}
.why-works .bq-source { text-align: center; font-size: 14px; color: var(--stone); margin-bottom: 36px; }
.why-works .sub-copy { text-align: center; font-size: 17px; color: var(--stone); max-width: 560px; margin: 0 auto 28px; line-height: 1.6; }
.why-works .evidence-link { display: block; text-align: center; color: var(--coral); font-weight: 600; font-size: 15px; transition: color .2s; }
.why-works .evidence-link:hover { color: var(--coral-hover); }

/* ─── 7. SOCIAL PROOF ──────────────────── */
.social-proof { padding: 120px 40px; }
.social-proof h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; color: var(--bone); margin-bottom: 60px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto 64px; }
.testimonial-card {
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 16px; padding: 36px 28px;
}
.testimonial-card .quote-mark { font-family: var(--serif); font-size: 48px; color: var(--coral); line-height: 1; margin-bottom: 8px; }
.testimonial-card .quote-text { font-size: 15px; color: rgba(242,239,232,.75); line-height: 1.6; margin-bottom: 24px; }
.testimonial-card .quote-attr { font-size: 13px; font-weight: 600; color: var(--bone); }
.testimonial-card .quote-role { font-size: 13px; color: rgba(242,239,232,.5); margin-top: 2px; }
.logo-bar { display: flex; gap: 40px; justify-content: center; align-items: center; flex-wrap: wrap; padding-top: 48px; border-top: 1px solid var(--glass-border); max-width: var(--max-w); margin: 0 auto; }
/* The element's own display:flex beats the UA [hidden] rule on specificity, so the
   hidden attribute alone won't hide it. Explicit rule required (see Martha web-build pitfalls). */
.logo-bar[hidden] { display: none; }
.logo-placeholder {
  font-size: 13px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(242,239,232,.3); padding: 12px 24px; border: 1px solid rgba(242,239,232,.08);
  border-radius: 8px;
}

/* ─── 8. BUYER JOURNEY ─────────────────── */
.journey { padding: 120px 40px; }
.journey h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; color: var(--ink); margin-bottom: 64px; }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.journey-step { text-align: center; position: relative; }
.journey-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: #fff; font-weight: 700; font-size: 18px;
  margin-bottom: 20px;
}
.journey-step h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.journey-step p { font-size: 15px; color: var(--stone); line-height: 1.55; }
.journey-step::after {
  content: '→'; position: absolute; top: 22px; right: -18px;
  font-size: 20px; color: rgba(107,95,80,.25);
}
.journey-step:last-child::after { display: none; }

/* ─── 9. PRICING ───────────────────────── */
.pricing { padding: 0 40px 120px; }
.pricing h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; color: var(--ink); margin-bottom: 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.price-card {
  background: #fff; border-radius: 16px; padding: 44px 32px; text-align: center;
  border: 1px solid rgba(107,95,80,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(27,44,73,.08); }
.price-card.featured { border: 2px solid var(--coral); position: relative; }
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.price-card .price { font-family: var(--serif); font-size: 42px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.price-card .tier-name { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.price-card .tier-desc { font-size: 14px; color: var(--stone); margin-bottom: 28px; }
.price-card .tier-details { font-size: 14px; color: var(--stone); line-height: 1.8; margin-bottom: 8px; text-align: left; flex: 1; }
.price-card .tier-details li { list-style: none; padding-left: 20px; position: relative; }
.price-card .tier-details li::before { content: '✓'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }
.price-card .scarcity { font-size: 13px; color: var(--coral); font-weight: 600; margin: 16px 0; font-style: italic; }
.price-card .btn-coral { width: 100%; justify-content: center; margin-top: auto; }

/* ─── 10. ROI MATH ─────────────────────── */
.roi { padding: 120px 40px; }
.roi h2 { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 500; text-align: center; color: var(--bone); margin-bottom: 60px; }
.roi-visual { display: flex; align-items: center; justify-content: center; gap: 40px; max-width: 800px; margin: 0 auto 48px; flex-wrap: wrap; }
.roi-box {
  text-align: center; padding: 40px 36px; border-radius: 16px; flex: 1; min-width: 200px;
}
.roi-box.invest { background: rgba(255,255,255,.06); border: 1px solid var(--glass-border); }
.roi-box.cost { background: rgba(233,106,85,.08); border: 1px solid rgba(233,106,85,.2); }
.roi-box.savings { background: rgba(100,200,120,.08); border: 1px solid rgba(100,200,120,.2); }
.roi-box .roi-label { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: rgba(242,239,232,.5); margin-bottom: 8px; }
.roi-box .roi-amount { font-family: var(--serif); font-size: 48px; font-weight: 600; color: var(--bone); }
.roi-box.savings .roi-amount { color: #7dd89a; }
.roi-operator { font-family: var(--serif); font-size: 36px; color: rgba(242,239,232,.3); }
.roi .cta-row { text-align: center; }

/* ─── 11. FAQ ──────────────────────────── */
.faq { padding: 120px 40px; }
.faq h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; color: var(--ink); margin-bottom: 56px; }
.faq-list { max-width: 720px; margin: 0 auto 40px; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: #fff; border-radius: 14px; padding: 28px 32px; border: 1px solid rgba(107,95,80,.08); }
.faq-item h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.faq-item p { font-size: 15px; color: var(--stone); line-height: 1.6; }
.faq .see-all { display: block; text-align: center; color: var(--coral); font-weight: 600; font-size: 15px; }
.faq .see-all:hover { color: var(--coral-hover); }

/* ─── 12. CONTACT / CTA ───────────────── */
.contact { padding: 120px 40px; }
.contact h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; text-align: center; color: var(--bone); margin-bottom: 56px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: var(--max-w); margin: 0 auto; align-items: start; }
.contact-text p { font-size: 17px; color: rgba(242,239,232,.65); line-height: 1.65; margin-bottom: 20px; }
.contact-text .reply-note { font-size: 14px; color: rgba(242,239,232,.4); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 14px 18px; font-size: 15px; border-radius: 10px;
  border: 1px solid rgba(242,239,232,.15); background: rgba(255,255,255,.06);
  color: var(--bone); outline: none; transition: border-color .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(242,239,232,.35); }
.contact-form select { color: rgba(242,239,232,.35); appearance: none; }
.contact-form select option { background: var(--indigo); color: var(--bone); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--coral); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-coral { grid-column: 1 / -1; justify-content: center; padding: 16px; }

/* ─── FOOTER ───────────────────────────── */
.footer {
  padding: 48px 40px 32px; border-top: 1px solid rgba(242,239,232,.08);
  max-width: var(--max-w); margin: 0 auto;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(242,239,232,.4); transition: color .2s; }
.footer-links a:hover { color: var(--bone); }
.footer-copy { font-size: 13px; color: rgba(242,239,232,.3); }

/* ─── RESPONSIVE ───────────────────────── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid { grid-template-columns: 1fr; }
  .peace-letters { flex-wrap: wrap; }
  .peace-letter { max-width: 160px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-step::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .roi-visual { flex-direction: column; }
  .roi-operator { transform: rotate(90deg); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-panel--after { display: none; }
  .hero-split::after { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .peace-letters { gap: 8px; }
  .peace-letter { min-width: 120px; padding: 24px 12px; }
  .peace-letter .letter { font-size: 42px; }
  /* Hide header CTA on phones — it crowds the logo; hero has its own Schedule button */
  .nav-cta { display: none; }
}

/* ─── Language guide hooks ─────────────── */
.problem-hook {
  font-family: var(--serif); font-size: 26px; font-style: italic;
  color: var(--coral); margin-bottom: 16px; font-weight: 500;
}
.outcomes-hook {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--stone); margin-bottom: 12px; font-weight: 400;
}
.contact-sub {
  font-size: 15px; color: rgba(242,239,232,.65); margin-top: 12px; line-height: 1.7;
}

/* ════════ v2 REVISION ADDITIONS (Christina feedback) ════════ */

/* ─── Nav logo (replaces text wordmark) ── */
.nav-wordmark { display: flex; align-items: center; }
.nav-wordmark img { height: 26px; width: auto; display: block; }

/* ─── Hero explainer line ──────────────── */
.hero-explainer {
  font-size: clamp(16px, 2vw, 19px); color: rgba(242,239,232,.85);
  max-width: 600px; margin: 28px auto 0; line-height: 1.6;
  text-shadow: 0 1px 16px rgba(0,0,0,.5);
}

/* ─── Explainer video band ─────────────── */
.video-band { padding: 96px 0; text-align: center; }
.video-eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 18px;
}
.video-band h2 {
  font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500;
  line-height: 1.2; color: var(--bone); max-width: 720px; margin: 0 auto 18px;
}
.video-sub {
  max-width: 620px; margin: 0 auto 44px; font-size: 18px;
  color: rgba(242,239,232,.78); line-height: 1.6;
}
.video-frame {
  max-width: 880px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  background: #000; line-height: 0;
}
.video-frame video { width: 100%; height: auto; aspect-ratio: 16 / 9; display: block; }
@media (max-width: 640px) { .video-band { padding: 64px 0; } }

/* ─── Problem intro + sources ──────────── */
.problem-intro {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
  font-size: 18px; color: var(--stone); line-height: 1.7;
}
.stats-grid--three { grid-template-columns: repeat(3, 1fr); }
.stats-source {
  text-align: center; max-width: 720px; margin: 24px auto 48px;
  font-size: 13px; color: rgba(107,95,80,.7); line-height: 1.5;
}

/* ─── Outcomes (restructured) ──────────── */
.outcome-grid--three { grid-template-columns: repeat(3, 1fr); }
.outcome-tile .outcome-stat {
  font-family: var(--serif); font-size: 40px; font-weight: 600;
  color: var(--coral); line-height: 1.1; margin-bottom: 10px;
}
.outcome-tile p { font-family: var(--serif); font-size: clamp(18px,2vw,22px); font-weight: 500; line-height: 1.35; color: var(--ink); }
.outcomes-tagline {
  text-align: center; font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 3vw, 30px); color: var(--ink); margin: 56px auto 0; font-weight: 500;
}

/* ─── Scarcity banner (big + bold) ─────── */
.scarcity-banner {
  text-align: center; margin: 48px auto 0; max-width: 720px;
  font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); font-weight: 700;
  color: var(--coral); letter-spacing: -.01em;
  padding: 24px 32px; border: 2px solid rgba(233,106,85,.35);
  border-radius: 16px; background: rgba(233,106,85,.06);
}

/* ─── ROI Calculator ───────────────────── */
.calculator {
  max-width: 880px; margin: 56px auto 0; padding: 40px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 20px; backdrop-filter: blur(12px);
}
.calculator h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--bone); text-align: center; }
.calc-intro { text-align: center; font-size: 14px; color: rgba(242,239,232,.55); margin: 8px 0 32px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field > span { font-size: 14px; font-weight: 600; color: rgba(242,239,232,.75); display: flex; justify-content: space-between; align-items: baseline; }
.calc-field > span em { color: var(--coral); font-style: normal; font-size: 16px; }
.calc-field input[type="number"] {
  padding: 12px 16px; font-size: 16px; border-radius: 10px;
  border: 1px solid rgba(242,239,232,.15); background: rgba(255,255,255,.06);
  color: var(--bone); outline: none;
}
.calc-field input[type="number"]:focus { border-color: var(--coral); }
.calc-field input[type="range"] { accent-color: var(--coral); width: 100%; }
.calc-range-hint { font-size: 12px; color: rgba(242,239,232,.4); }
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.calc-result { text-align: center; padding: 24px 16px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--glass-border); }
.calc-result-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(242,239,232,.5); margin-bottom: 10px; line-height: 1.4; }
.calc-result-num { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--bone); }
.calc-result--big { background: rgba(233,106,85,.1); border-color: rgba(233,106,85,.3); }
.calc-result--big .calc-result-num { color: var(--coral); font-size: 36px; }
.calc-result--save { background: rgba(100,200,120,.08); border-color: rgba(100,200,120,.2); }
.calc-result--save .calc-result-num { color: #7dd89a; }
.calc-footnote { font-size: 12px; color: rgba(242,239,232,.4); text-align: center; max-width: 600px; margin: 0 auto 24px; line-height: 1.5; }
.calculator .cta-row { text-align: center; }

/* ─── FAQ accordion ────────────────────── */
.faq-item { padding: 0; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; padding: 24px 32px;
  font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-toggle { color: var(--coral); font-size: 24px; font-weight: 400; flex-shrink: 0; transition: transform .25s var(--ease); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { font-size: 15px; color: var(--stone); line-height: 1.6; padding: 0 32px 26px; }

/* ─── Lead magnet ──────────────────────── */
.lead-magnet { padding: 0 40px 120px; }
.lead-magnet-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 48px 56px;
  background: #fff; border-radius: 20px; border: 1px solid rgba(107,95,80,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  box-shadow: 0 12px 48px rgba(27,44,73,.06);
}
.lead-magnet-text { flex: 1; min-width: 280px; }
.lead-magnet-text h2 { font-family: var(--serif); font-size: clamp(26px,3vw,34px); font-weight: 600; color: var(--ink); margin-bottom: 12px; text-align: left; }
.lead-magnet-text p { font-size: 16px; color: var(--stone); line-height: 1.6; }
.lead-form { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.lead-form input {
  padding: 14px 18px; font-size: 15px; border-radius: 10px;
  border: 1px solid rgba(107,95,80,.2); background: var(--bone); color: var(--ink); outline: none;
}
.lead-form input:focus { border-color: var(--coral); }
.lead-form .btn-coral { justify-content: center; }

/* ─── Footer brand logo ────────────────── */
.footer-brand { display: flex; align-items: center; }
.footer-logo { height: 22px; width: auto; opacity: .85; }

/* ─── Cookie consent ───────────────────── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 200;
  max-width: 720px; margin: 0 auto;
  background: var(--indigo); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 14px; color: rgba(242,239,232,.75); line-height: 1.5; flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--coral); }
.cookie-actions { display: flex; gap: 12px; }
.cookie-btn { padding: 10px 22px; font-size: 14px; }

/* ─── v2 responsive ────────────────────── */
@media (max-width: 900px) {
  .stats-grid--three { grid-template-columns: 1fr; }
  .outcome-grid--three { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
  .lead-magnet-inner { flex-direction: column; align-items: stretch; }
}

/* ════════ SUB-PAGES (About / Who We Serve / Legal) ════════ */
.subpage-hero {
  padding: 160px 40px 80px; text-align: center;
}
.subpage-hero .eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 16px;
}
.subpage-hero h1 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 60px); font-weight: 500;
  line-height: 1.1; color: var(--bone); max-width: 820px; margin: 0 auto 20px; letter-spacing: -.02em;
}
.subpage-hero p {
  font-size: clamp(17px, 2vw, 20px); color: rgba(242,239,232,.7);
  max-width: 640px; margin: 0 auto; line-height: 1.6;
}

/* Voice-of-customer strip */
.voc { padding: 100px 40px; }
.voc h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,42px); font-weight: 500; text-align: center; color: var(--ink); max-width: 740px; margin: 0 auto 56px; line-height: 1.25; }
.voc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: var(--max-w); margin: 0 auto; }
.voc-card {
  background: #fff; border-radius: 14px; padding: 36px 32px;
  border: 1px solid rgba(107,95,80,.08); position: relative; overflow: hidden;
}
.voc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--coral); }
.voc-card p { font-family: var(--serif); font-size: clamp(19px,2.2vw,24px); font-weight: 500; line-height: 1.4; color: var(--ink); }

/* Benefit list */
.benefits { padding: 100px 40px; }
.benefits h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,42px); font-weight: 500; text-align: center; color: var(--bone); margin-bottom: 56px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.benefit-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 36px 28px; }
.benefit-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--bone); margin-bottom: 12px; }
.benefit-card p { font-size: 15px; color: rgba(242,239,232,.7); line-height: 1.6; }

/* CTA band */
.cta-band { padding: 90px 40px; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(28px,4vw,44px); font-weight: 500; color: var(--ink); margin-bottom: 28px; }
.cta-band .btn-coral { font-size: 16px; padding: 16px 36px; }

/* About layout */
.about-body { padding: 90px 40px; }
.about-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.about-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden;
  background: var(--bone);
  border: 1px solid rgba(107,95,80,.12);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-text h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,40px); font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.about-text .about-role { font-size: 15px; font-weight: 600; color: var(--coral); margin-bottom: 24px; letter-spacing: .02em; }
.about-text p { font-size: 17px; color: var(--stone); line-height: 1.7; margin-bottom: 20px; }

/* Legal prose */
.legal { padding: 150px 40px 90px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.legal-inner .legal-updated { font-size: 14px; color: var(--stone); margin-bottom: 40px; }
.legal-inner h2 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); margin: 36px 0 12px; }
.legal-inner p, .legal-inner li { font-size: 16px; color: var(--stone); line-height: 1.7; }
.legal-inner ul { margin: 12px 0 12px 24px; }
.legal-inner li { margin-bottom: 8px; }
.legal-note { background: var(--bone); border-radius: 12px; padding: 20px 24px; font-size: 14px; color: var(--stone); margin: 24px 0; border: 1px solid rgba(107,95,80,.1); }

@media (max-width: 900px) {
  .voc-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
}

/* ── Form accessibility + status ─────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot — visually and physically removed from the layout,
   but still present in the DOM for bots to fill. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.form-status.is-success { color: #2f7d52; }
.form-status.is-error { color: #c0392b; }
.contact-form .form-status { grid-column: 1 / -1; }
button[type="submit"]:disabled { opacity: 0.6; cursor: default; }
