/* BookedPractice — VSL Funnel styles
   Brand: Direction A "Olive & Sienna" (LOCKED 2026-07-05 rev 2)
   Rules honored: cream bg (never white), one sienna accent moment per surface,
   Fraunces display / Inter body (never inverted), 65ch measure, never justified,
   no gradients-as-decor, body ink never pure black. */

:root {
  --color-primary: #5F6B3D;
  --color-secondary: #8A7E5A;
  --color-accent: #B85C38;
  --color-neutral-dark: #1C1B18;
  --color-neutral-light: #F5F0E6;
  --color-ink: #2A2925;

  --color-neutral-100: #dfdbd1;
  --color-neutral-200: #cac5bd;
  --color-neutral-600: #73706a;
  --color-neutral-700: #5d5b56;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --leading-tight: 1.1;
  --leading-relaxed: 1.65;

  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;

  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);

  --space-section: clamp(4rem, 9vw, 7.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-neutral-light);
  font-size: 1.0625rem;
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--color-neutral-dark);
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.55rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

p { max-width: 65ch; }

em { font-style: italic; }

a { color: inherit; }

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

.container {
  width: min(1080px, 100% - 3rem);
  margin-inline: auto;
}

.narrow { width: min(720px, 100% - 3rem); margin-inline: auto; }

/* ── Header ─────────────────────────────── */
.site-header {
  padding: 1.4rem 0 1.2rem;
  border-bottom: 1px solid var(--color-neutral-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header img { height: 42px; width: auto; }
.site-header .eyebrow-tag {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
  font-weight: 500;
}

/* ── Hero ───────────────────────────────── */
.hero { padding: var(--space-section) 0 calc(var(--space-section) * 0.8); text-align: center; }
.hero .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.4rem;
}
.hero h1 { max-width: 21ch; margin-inline: auto; }
.hero .sub {
  margin: 1.6rem auto 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-ink);
  max-width: 52ch;
}
.hero .sub .sub-watch {
  display: block;
  margin-top: 0.85rem;
  color: var(--color-accent);
  font-weight: 650;
}

/* ── Video ──────────────────────────────── */
.video-wrap {
  margin: 2.8rem auto 0;
  max-width: 860px;
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-neutral-dark);
}

/* ── Buttons — the ONE sienna accent moment per surface ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-neutral-light);
  background: var(--color-accent);
  padding: 1.05rem 2.4rem;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1);
}
.btn:hover { background: #a04e2e; transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

.cta-block { margin-top: 2.6rem; }
.cta-note {
  margin: 0.9rem auto 0;
  font-size: 0.92rem;
  color: var(--color-neutral-600);
}

/* ── Sections ───────────────────────────── */
section { padding: var(--space-section) 0; }

.rule {
  width: 64px;
  height: 2px;
  background: var(--color-accent);
  border: none;
  margin: 0 0 1.6rem;
}
.centered .rule { margin-inline: auto; }

.section-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.9rem;
}

/* Problem band — dark olive surface (used once per page) */
.band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
/* Charcoal variant — keeps band typography, drops the green */
.band--dark { background: var(--color-neutral-dark); }
/* Soft warm tint for light sections that need separation */
.section-tint { background: rgba(138, 126, 90, 0.13); }
.band h2, .band h3 { color: var(--color-neutral-light); }
.band p { color: rgba(245, 240, 230, 0.88); }
.band .section-kicker { color: rgba(245, 240, 230, 0.65); }
.band .rule { background: rgba(245, 240, 230, 0.4); }
.band--dark .rule { background: var(--color-accent); }

/* Steps */
.steps { display: grid; gap: 2.2rem; margin-top: 2.8rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step h3 { margin-bottom: 0.55rem; }
.step p { font-size: 0.99rem; color: var(--color-neutral-700); }
.band .step p { color: rgba(245, 240, 230, 0.85); }
.band .step .num { color: rgba(245, 240, 230, 0.55); }

/* For / not for */
.fit-grid { display: grid; gap: 1.6rem; margin-top: 2.6rem; }
@media (min-width: 760px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
.fit-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.1rem;
}
.fit-card h3 { margin-bottom: 1.1rem; }
.fit-card ul { list-style: none; }
.fit-card li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.99rem;
}
.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 2px;
  background: var(--color-accent);
}
.fit-card.not li::before { background: var(--color-neutral-200); }
.fit-card.not { opacity: 0.92; }

/* Founder */
.founder { border-top: 1px solid var(--color-neutral-100); }
.founder-inner { display: grid; gap: 2.4rem; align-items: start; }
@media (min-width: 820px) { .founder-inner { grid-template-columns: 200px 1fr; } }
.founder-mark {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--color-neutral-100);
  display: flex; align-items: center; justify-content: center;
}
.founder-mark img { width: 58px; height: auto; }
.founder blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.35;
  color: var(--color-neutral-dark);
  max-width: 26ch;
  margin-bottom: 1.4rem;
}
.founder .attribution { font-size: 0.95rem; color: var(--color-neutral-600); }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--color-neutral-100);
  padding: 1.15rem 0;
}
.faq details:first-of-type { border-top: 1px solid var(--color-neutral-100); }
.faq summary {
  font-weight: 600;
  font-size: 1.04rem;
  cursor: pointer;
  color: var(--color-neutral-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.3rem; color: var(--color-secondary); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin-top: 0.8rem; font-size: 0.99rem; color: var(--color-neutral-700); }

/* Booking */
.booking-shell {
  margin-top: 2.6rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  min-height: 620px;
}
.booking-shell iframe { width: 100%; min-height: 640px; border: none; border-radius: var(--radius-md); }
.booking-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 580px; text-align: center; gap: 0.7rem;
  color: var(--color-neutral-600); font-size: 0.98rem;
}
.booking-fallback strong { color: var(--color-neutral-dark); font-size: 1.1rem; }

/* Final CTA band */
.final-cta { text-align: center; }
.final-cta img { height: 34px; width: auto; margin: 0 auto 2rem; }
.final-cta h2 { max-width: 24ch; margin-inline: auto; }
.final-cta p { margin: 1.3rem auto 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-neutral-100);
  padding: 2.6rem 0 3rem;
}
.site-footer .container {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.site-footer img { height: 30px; width: auto; }
.site-footer .foot-right { text-align: right; font-size: 0.88rem; color: var(--color-neutral-600); }
.site-footer .meta-disclaimer { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--color-neutral-200, #e5dfd2); font-size: 0.78rem; line-height: 1.6; color: var(--color-neutral-600); max-width: 72ch; }
.site-footer .legal-links { margin-top: 0.5rem; font-size: 0.85rem; }
.site-footer .legal-links a { color: var(--color-neutral-700); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .legal-links a:hover { color: var(--color-accent); }
.site-footer .value-line { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--color-neutral-dark); }

/* ── Testimonials ──────────────────── */
.t-featured { max-width: 780px; margin: 2.6rem auto 0; }
.t-featured .video-wrap { margin: 0; max-width: none; }
.t-grid {
  display: grid; gap: 1.8rem;
  max-width: 980px; margin: 1.8rem auto 0;
}
@media (min-width: 760px) { .t-grid { grid-template-columns: 1fr 1fr; } }
.t-card .video-wrap { margin: 0; max-width: none; }
.t-caption {
  font-size: 0.9rem; color: var(--color-neutral-700);
  margin-top: 0.65rem; text-align: center;
}

/* ── Thank-you page ─────────────────────── */
.confirm-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.6rem;
}
.confirm-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); }

.watch-note { color: var(--color-accent); font-weight: 600; }

.ty-steps { counter-reset: ty; display: grid; gap: 1.4rem; margin-top: 2.4rem; }
.ty-step {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-neutral-100);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.9rem;
}
.ty-step h3 { margin-bottom: 0.5rem; }
.ty-step p { font-size: 0.99rem; color: var(--color-neutral-700); }
.ty-step .step-label {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--color-accent); margin-bottom: 0.6rem;
}

.expect-list { list-style: none; margin-top: 1.6rem; }
.expect-list li {
  padding-left: 1.6rem; position: relative; margin-bottom: 0.85rem; font-size: 1rem;
}
.expect-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 2px; background: var(--color-accent);
}

@media (max-width: 600px) {
  .site-header img { height: 34px; }
  .site-header .eyebrow-tag { display: none; }
  .hero { padding-top: calc(var(--space-section) * 0.45); }
  .hero h1 { font-size: 1.72rem; line-height: 1.16; }
  .hero .sub { font-size: 1.02rem; margin-top: 1.1rem; }
  .hero .eyebrow { margin-bottom: 1rem; }
  .hero .video-wrap { margin-top: 1.6rem; }
}

/* ── Application form ────────────────── */
.apply-form {
  max-width: 720px; margin: 2.6rem auto 0; text-align: left;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-neutral-200);
  border-radius: 10px;
  padding: 2rem 2rem 1.8rem;
}
.f-row { display: grid; gap: 1.2rem; margin-bottom: 1.2rem; }
@media (min-width: 700px) { .f-row { grid-template-columns: 1fr 1fr; } }
.f-field label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-neutral-700); margin-bottom: 0.45rem;
}
.f-field input, .f-field select {
  width: 100%; font: inherit; color: var(--color-neutral-900);
  background: var(--color-neutral-light);
  border: 1px solid var(--color-neutral-200);
  border-radius: 6px; padding: 0.7rem 0.85rem;
}
.f-field input:focus-visible, .f-field select:focus-visible {
  outline: 2px solid var(--color-accent); outline-offset: 1px; border-color: var(--color-accent);
}
.apply-form .btn { width: 100%; margin-top: 0.4rem; }
.f-note { font-size: 0.9rem; color: var(--color-neutral-700); margin-top: 0.9rem; text-align: center; }
.f-fallback { margin-top: 1rem; text-align: center; font-weight: 600; color: var(--color-primary); }

.f-opt {
  font-weight: 400;
  color: var(--color-neutral-500, #8a857c);
  font-size: 0.85em;
}

.calendar-slot {
  margin-top: 2rem;
}
.hero-booking {
  margin-top: 2.6rem;
  scroll-margin-top: 1.5rem;
}
.hero-booking .calendar-slot { margin-top: 0; }
.calendar-slot iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  overflow: hidden;
  border-radius: 8px;
}
