/* =====================================================================
   Private Coaching with Brittini Burton — landing page styles
   Self-contained. No build step, no framework. Fonts in assets/fonts/.
   Palette: warm neutrals (cream → taupe → espresso) + one clay CTA accent.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream:    #f4efdd;
  --paper:    #fbf8f1;
  --ivory:    #f1ebdb;
  --sand:     #e4dac9;
  --taupe:    #9c8e7c;
  --muted:    #6c5f50;
  --cocoa:    #3e3228;
  --espresso: #221a14;
  --clay:     #8a6a4c;
  --clay-dark:#6e5238;

  --font-display: 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 1160px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 4px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--cocoa);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
/* Marcellus ships a single 400 weight — keep all display text at 400 (no synthetic bolding) */
.sec-num, .brand-name, .footer-name, .big-quote, .invest-amount, .cost-card-num { font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Film-grain overlay (pure SVG, no image asset) ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow-light { color: var(--cream); opacity: .85; }
.sec-num {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: 0;
  color: inherit;
  opacity: .55;
}

h1, .hero-title { font-family: var(--font-display); }
h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: .015em;
  color: var(--espresso);
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 1.25rem 0 0;
}
.lede-light { color: rgba(244,239,221,.8); }

.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-top: .3rem; }

.section { padding-block: var(--section-y); position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95em 1.9em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: var(--clay);
  color: var(--cream);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 6px 22px -10px rgba(110,82,56,.7);
}
.btn:hover, .btn:focus-visible {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(110,82,56,.85);
}
.btn-cta { /* primary action — single reserved color, used everywhere */ }
.btn-lg { font-size: 1.02rem; padding: 1.1em 2.4em; }
.btn-sm { padding: .7em 1.3em; font-size: .82rem; }
.btn-block { display: flex; width: 100%; }

.cta-microcopy {
  display: block;
  margin-top: .9rem;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(244,239,221,.75);
}
.cta-microcopy-dark { color: var(--muted); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10000;
  background: var(--espresso);
  color: var(--cream);
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 1.1rem;
  background: linear-gradient(180deg, rgba(34,26,20,.6) 0%, rgba(34,26,20,0) 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { text-decoration: none; line-height: 1.1; display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--cream);
  transition: color .35s var(--ease);
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .7;
  transition: color .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(34,26,20,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(244,239,221,.08);
  padding-block: .7rem;
}
.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .85;
  transition: opacity .2s;
}
.nav-desktop a:hover { opacity: 1; }
.nav-desktop .btn { color: var(--cream); opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem var(--gutter) 1.5rem;
  background: rgba(34,26,20,.97);
  backdrop-filter: blur(10px);
}
.mobile-menu:not([hidden]) { display: flex; }
@media (min-width: 941px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  text-decoration: none;
  color: var(--cream);
  padding: .85rem 0;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244,239,221,.1);
}
.mobile-menu .btn { margin-top: 1rem; border-bottom: none; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,15,11,.95) 0%, rgba(20,15,11,.82) 38%, rgba(20,15,11,.55) 68%, rgba(20,15,11,.42) 100%),
    linear-gradient(0deg, rgba(20,15,11,.72) 0%, rgba(20,15,11,.1) 45%, rgba(20,15,11,.42) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  padding-block: 7rem 4rem;
  color: var(--cream);
}
.hero-title {
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.2vw, 4.7rem);
  line-height: 1.06;
  letter-spacing: .02em;
  color: var(--cream);
  max-width: 16ch;
  margin: 0 0 1.5rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 38ch;
  color: rgba(244,239,221,.9);
  margin: 0 0 2.25rem;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; }

.scroll-hint {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--cream);
  font-size: 1.4rem;
  text-decoration: none;
  opacity: .7;
  animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust-strip {
  background: var(--espresso);
  color: var(--cream);
  padding-block: 1.6rem;
  border-top: 1px solid rgba(244,239,221,.08);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.trust-item { display: flex; flex-direction: column; gap: .15rem; flex: 1 1 auto; min-width: 150px; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--cream);
}
.trust-item span { font-size: .82rem; letter-spacing: .06em; color: rgba(244,239,221,.6); text-transform: uppercase; }

/* =====================================================================
   SPLIT SECTIONS (problem / transformation)
   ===================================================================== */
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-text p { margin: 0 0 1.15rem; max-width: 52ch; }
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(.92) contrast(1.02);
  box-shadow: 0 30px 60px -30px rgba(34,26,20,.5);
}
.section-split { background: var(--paper); }
.pull-quote {
  margin: 2rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--clay);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--espresso);
}
.pull-quote strong { font-weight: 500; color: var(--clay); }

.section-transformation { background: var(--ivory); }
.transform-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  display: grid;
  gap: 1rem;
}
.transform-list li {
  position: relative;
  padding-left: 1.9rem;
  max-width: 50ch;
}
.transform-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--clay);
}
.transform-close { margin-top: 1.75rem; font-size: 1.2rem; color: var(--espresso); }

/* =====================================================================
   THE HIDDEN COST (dark, image bg)
   ===================================================================== */
.section-cost { background: var(--espresso); color: var(--cream); overflow: hidden; }
.cost-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  opacity: .5;
}
.cost-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,26,20,.85), rgba(34,26,20,.6) 50%, rgba(34,26,20,.92));
}
.cost-content { position: relative; z-index: 2; }
.cost-title { color: var(--cream); max-width: 18ch; }
.cost-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.cost-card {
  background: rgba(244,239,221,.06);
  border: 1px solid rgba(244,239,221,.14);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(3px);
}
.cost-card-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--clay);
  display: block;
  line-height: 1;
  margin-bottom: .85rem;
}
.cost-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.02rem;
  color: var(--cream);
  margin-bottom: .75rem;
}
.cost-card p { font-size: .98rem; color: rgba(244,239,221,.82); margin: 0; }

/* =====================================================================
   EMPATHY / QUOTE BAND
   ===================================================================== */
.quote-band {
  position: relative;
  overflow: hidden;
  background: var(--cocoa);
  padding-block: clamp(6rem, 12vw, 10rem);
  min-height: 82vh;
  display: flex;
  align-items: center;
}
.quote-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  opacity: .55;
}
.quote-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,15,11,.85), rgba(20,15,11,.6)); }
.quote-inner { position: relative; z-index: 2; max-width: 62rem; }
.big-quote {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.9vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: .015em;
  color: var(--cream);
  margin: 0;
  max-width: none;
}

/* =====================================================================
   THE PHILOSOPHY (pillars)
   ===================================================================== */
.section-philosophy { background: var(--paper); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.pillar {
  border-top: 2px solid var(--clay);
  padding-top: 1.5rem;
}
.pillar h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--espresso);
  margin-bottom: 1rem;
}
.pillar p { font-size: 1rem; color: var(--muted); margin: 0 0 1rem; }
.pillar-tag { color: var(--cocoa) !important; font-weight: 400; }
.pillar-tag em { color: var(--clay); font-style: italic; }

.center-cta { text-align: center; margin-top: clamp(3rem, 6vw, 5rem); }

/* =====================================================================
   PROOF / TESTIMONIALS
   ===================================================================== */
.section-proof { background: var(--ivory); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cocoa);
}
.testimonial figcaption { display: flex; flex-direction: column; margin-top: auto; }
.t-name { font-weight: 600; color: var(--espresso); letter-spacing: .02em; }
.t-role { font-size: .85rem; color: var(--taupe); }
/* placeholder styling — visually flags cards that still need real content */
.testimonial.is-placeholder {
  border-style: dashed;
  border-color: var(--taupe);
  background: repeating-linear-gradient(45deg, rgba(156,142,124,.05), rgba(156,142,124,.05) 12px, transparent 12px, transparent 24px);
}
.testimonial.is-placeholder blockquote, .testimonial.is-placeholder .t-name, .testimonial.is-placeholder .t-role { color: var(--taupe); font-style: italic; }
.proof-authority {
  text-align: center;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 48ch;
  font-size: 1.15rem;
  color: var(--muted);
}
.proof-authority strong { color: var(--clay); font-weight: 500; }

/* =====================================================================
   THE CONTAINER (offer)
   ===================================================================== */
.section-container { background: var(--espresso); color: var(--cream); }
.section-container h2 { color: var(--cream); }
.offer-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  border: 1px solid rgba(244,239,221,.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.offer-includes { padding: clamp(2rem, 4vw, 3rem); }
.offer-includes h3, .offer-invest .invest-label {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  color: var(--clay);
  margin: 0 0 1.5rem;
}
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: rgba(244,239,221,.92);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 1.05rem; height: 1.05rem;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a4c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.offer-invest {
  background: rgba(244,239,221,.05);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(244,239,221,.14);
}
.invest-amount { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--cream); margin: 0; }
.invest-amount span { font-family: var(--font-body); font-size: 1rem; font-weight: 300; color: rgba(244,239,221,.6); }
.invest-note { font-size: .95rem; color: rgba(244,239,221,.7); margin: .75rem 0 1.75rem; }
.offer-invest .btn { margin-top: auto; }

/* =====================================================================
   WHO IT'S FOR
   ===================================================================== */
.section-fit { background: var(--paper); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fit-col { padding: clamp(1.75rem, 3vw, 2.5rem); border-radius: var(--radius); }
.fit-col h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.fit-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.fit-col li { position: relative; padding-left: 1.9rem; color: var(--cocoa); }
.fit-yes { background: var(--ivory); border: 1px solid var(--sand); }
.fit-yes h3 { color: var(--clay); }
.fit-yes li::before {
  content: "";
  position: absolute; left: 0; top: .35em;
  width: 1.1rem; height: 1.1rem;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a4c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.fit-no { background: transparent; border: 1px solid var(--sand); }
.fit-no h3 { color: var(--taupe); }
.fit-no li { color: var(--muted); }
.fit-no li::before {
  content: "";
  position: absolute; left: 0; top: .42em;
  width: .95rem; height: .95rem;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c8e7c' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* =====================================================================
   FAQ
   ===================================================================== */
.section-faq { background: var(--ivory); }
.faq-list { max-width: 46rem; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--espresso);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: .25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--clay);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 2.5rem 1.5rem 0; }
.faq-body p { margin: 0; color: var(--muted); max-width: 60ch; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.section-about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.about-grid:last-child { margin-bottom: 0; }
.about-grid-reverse { grid-template-columns: 1.15fr .85fr; }
.about-grid-reverse .about-media { order: 2; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(.92);
  box-shadow: 0 30px 60px -30px rgba(34,26,20,.55);
}
.about-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1.25rem; }
.about-text p { color: var(--muted); margin: 0 0 1.1rem; max-width: 54ch; }
.about-signoff { color: var(--cocoa) !important; font-size: 1.1rem; line-height: 1.6; }
.about-signoff strong { color: var(--clay); }

/* =====================================================================
   FINAL CTA + BOOKING
   ===================================================================== */
.section-book {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.book-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  opacity: .35;
}
.book-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,26,20,.85), rgba(34,26,20,.78)); }
.book-content { position: relative; z-index: 2; }
.book-head { text-align: center; max-width: 40rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.book-head .eyebrow { justify-content: center; }
.book-title { color: var(--cream); }
.book-sub { color: rgba(244,239,221,.82); margin: 1.25rem auto 0; max-width: 50ch; font-size: 1.1rem; }

.booking-card {
  max-width: 44rem;
  margin-inline: auto;
}
.scheduler-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  min-height: 700px;
  box-shadow: 0 36px 80px -36px rgba(34,26,20,.65);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #15100b; color: rgba(244,239,221,.7); padding-block: 3rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-name { font-family: var(--font-display); text-transform: uppercase; color: var(--cream); font-size: 1.1rem; display: block; }
.footer-tag { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; opacity: .6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a, .footer-meta a { color: rgba(244,239,221,.7); text-decoration: none; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.footer-nav a:hover, .footer-meta a:hover { color: var(--cream); }
.footer-meta { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.footer-meta a { display: inline-block; }
.footer-copy { font-size: .78rem; opacity: .55; margin: .5rem 0 0; text-transform: none; letter-spacing: .02em; }

/* =====================================================================
   MOBILE STICKY CTA BAR
   ===================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  background: var(--clay);
  color: var(--cream);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .92rem;
  padding: 1rem;
  box-shadow: 0 -6px 24px -10px rgba(34,26,20,.5);
}

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .scroll-hint { animation: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .cost-cards { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }
  .pillar { border-top: none; border-left: 2px solid var(--clay); padding: .25rem 0 .25rem 1.5rem; }
  .testimonials { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-invest { border-left: none; border-top: 1px solid rgba(244,239,221,.14); }
  .fit-grid { grid-template-columns: 1fr; }
  .split-grid, .about-grid, .about-grid-reverse { grid-template-columns: 1fr; }
  .split-grid-reverse .split-media, .about-grid-reverse .about-media { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .hero { min-height: 92svh; }
  .hero-content { padding-block: 6rem 5rem; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(34,26,20,.55) 0%, rgba(34,26,20,.45) 40%, rgba(34,26,20,.9) 100%),
      linear-gradient(90deg, rgba(34,26,20,.7), rgba(34,26,20,.3));
  }
  .trust-inner { flex-direction: column; gap: 1rem; }
  .trust-item { flex-direction: row; align-items: baseline; gap: .6rem; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 3.5rem; } /* room for sticky bar */
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .scroll-hint { display: none; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 420px) {
  .invest-amount { font-size: 2.5rem; }
}
