/* ============================================================
   SHARLENE CASSEL — Design System v3 (editorial ivory/terracotta)
   sharlenecassel.com
   WCAG 2.2 AA · prefers-reduced-motion safe · No flashing
   Governed by .claude/skills/design-system/SKILL.md
   ============================================================ */

/* ---- Self-hosted variable fonts (latin subset) ----
   The woff2 files are variable fonts; one file per style covers the
   whole 400–600 weight range (true weights, no faux-bold). */
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400 600; font-display: swap; src: url('/fonts/fraunces-normal-400.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: italic; font-weight: 400 600; font-display: swap; src: url('/fonts/fraunces-italic-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400 600; font-display: swap; src: url('/fonts/inter-normal-400.woff2') format('woff2'); }

/* ---- Design Tokens ---- */
:root {
  /* Colour — light, warm, editorial. No dark theme. */
  --ink:        #211D1A;
  --ink-soft:   #4C443E;
  --ground:     #FAF7F2;
  --ground-alt: #F1EBE2;
  --accent:     #C1502E;  /* CTAs, rules, quote marks ONLY */
  --accent-ink: #9C3F22;  /* accent as text on ivory (AA) */
  --line:       #E2D9CC;

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", "Source Sans 3", system-ui, sans-serif;
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.94rem);
  --step-0:  clamp(1.00rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.50vw, 1.50rem);
  --step-2:  clamp(1.56rem, 1.35rem + 1.00vw, 2.25rem);
  --step-3:  clamp(1.95rem, 1.55rem + 2.00vw, 3.16rem);
  --step-4:  clamp(2.44rem, 1.75rem + 3.50vw, 4.50rem);

  /* Rhythm */
  --space-section: clamp(4rem, 3rem + 5vw, 8rem);
  --measure: 68ch;
  --radius: 6px;

  /* ---- Legacy aliases (inline styles across pages reference these) ---- */
  --c-forest:        var(--accent-ink);
  --c-forest-light:  var(--accent);
  --c-forest-deep:   var(--ink);
  --c-sage:          var(--ink-soft);
  --c-sage-text:     var(--accent-ink);
  --c-sage-light:    var(--line);
  --c-sage-bg:       var(--ground-alt);
  --c-cream:         var(--ground-alt);
  --c-off-white:     var(--ground);
  --c-white:         var(--ground);
  --c-charcoal:      var(--ink);
  --c-text-body:     var(--ink);
  --c-text-secondary:var(--ink-soft);
  --c-text-muted:    var(--ink-soft);
  --c-border:        var(--line);
  --c-border-light:  var(--line);
  --c-amber:         #B98A2E;
  --c-amber-bg:      #F7EED9;

  --text-xs:   var(--step--1);
  --text-sm:   var(--step--1);
  --text-base: var(--step-0);
  --text-lg:   var(--step-1);
  --text-xl:   var(--step-1);
  --text-2xl:  var(--step-2);
  --text-3xl:  var(--step-2);
  --text-4xl:  var(--step-3);
  --text-5xl:  var(--step-3);
  --text-6xl:  var(--step-4);

  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem;
  --sp-4: 1rem;    --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;    --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-14: 3.5rem; --sp-16: 4rem;   --sp-20: 5rem;
  --sp-24: 6rem;   --sp-32: 8rem;

  /* rem-based so layout scales with the fluid root size below */
  --container-max:     75rem;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --nav-height:        4.25rem;

  --radius-sm:  4px;  --radius-md:  var(--radius);
  --radius-lg:  8px;  --radius-xl:  10px;
  --radius-2xl: 14px; --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(33,29,26,.05);
  --shadow-md: 0 6px 18px rgba(33,29,26,.08);
  --shadow-lg: 0 12px 32px rgba(33,29,26,.10);
  --shadow-xl: 0 18px 44px rgba(33,29,26,.12);

  --transition: 200ms ease-out;
  --transition-fast: 140ms ease-out;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Fluid root: everything is rem-based, so the whole layout scales
   with the browser's resolution — up on large/4K displays. The type
   steps handle 320–1440px; these bumps carry 1800px+ gracefully. */
@media (min-width: 1800px) { html { font-size: 112.5%; } }
@media (min-width: 2400px) { html { font-size: 125%; } }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ground);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p { text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ---- Focus Styles ---- */
:focus-visible {
  outline: 3px solid var(--accent-ink);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: var(--sp-4);
  padding: var(--sp-3) var(--sp-6);
  background: var(--ink); color: var(--ground);
  font-weight: 600; border-radius: var(--radius);
  z-index: 9999; transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--sp-4); }

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

/* ============================================================
   NAVIGATION — sticky, slim, ivory with hairline border
   ============================================================ */
.site-nav {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
  height: var(--nav-height);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding: 0 var(--container-padding);
  gap: var(--sp-6);
}
.nav-brand { flex-shrink: 0; display: block; }
.nav-links {
  display: flex; align-items: center;
  gap: clamp(var(--sp-3), 1.6vw, var(--sp-5));
  flex: 1; justify-content: center;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: var(--step--1); font-weight: 500;
  letter-spacing: .02em;
  padding: var(--sp-2) 2px;
  text-decoration: underline transparent;
  text-underline-offset: 6px;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast), text-underline-offset var(--transition-fast);
}
.nav-links a:hover { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 4px; }
.nav-links a.active { color: var(--ink); text-decoration: underline var(--accent); text-underline-offset: 4px; text-decoration-thickness: 2px; }
/* The one solid-accent element in the header */
.nav-cta-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  min-height: 44px;
  padding: .55rem 1.35rem;
  background: var(--accent);
  color: #FFFFFF !important; /* 4.71:1 on accent (AA); ivory was 4.41 */
  border-radius: var(--radius-full);
  font-size: var(--step--1) !important; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--accent-ink); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: var(--sp-3); flex-shrink: 0;
  min-width: 44px; min-height: 44px; align-items: center;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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 drawer */
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--ground);
  padding: var(--sp-4) var(--container-padding) var(--sp-10);
  z-index: 199; border-bottom: 1px solid var(--line);
  overflow-y: auto; max-height: calc(100vh - var(--nav-height));
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { flex-direction: column; }
.nav-mobile li { border-bottom: 1px solid var(--line); }
.nav-mobile a {
  display: block; color: var(--ink);
  padding: var(--sp-4) 0; font-size: var(--step-1); font-weight: 500;
  transition: color var(--transition-fast);
}
.nav-mobile a:hover { color: var(--accent-ink); }
.nav-mobile .mobile-cta {
  display: inline-flex; margin-top: var(--sp-6);
  padding: .8rem 2rem; background: var(--accent);
  color: #FFFFFF; border-radius: var(--radius-full);
  font-weight: 600; font-size: var(--step-0);
  border-bottom: none;
  transition: background var(--transition-fast);
}
.nav-mobile .mobile-cta:hover { background: var(--accent-ink); color: #FFFFFF; }

/* sticky nav sits in flow — no offset needed */
.page-content { padding-top: 0; }

@media (max-width: 900px) {
  .nav-links, .nav-cta-btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600; line-height: 1.12;
  color: var(--ink); letter-spacing: -.01em;
  text-wrap: balance;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
h5 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 600; }
p  { line-height: 1.65; color: var(--ink-soft); max-width: var(--measure); }

/* Eyebrow — the site's one graphic device: thin accent rule */
.section-label {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink);
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.lead { font-size: var(--step-1); line-height: 1.6; color: var(--ink-soft); }
.text-white p, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--ink); }

/* ============================================================
   BUTTONS — primary solid accent; secondary ink outline
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: .9rem 2rem;
  min-height: 44px;
  font-family: var(--font-body); font-size: var(--step--1);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap; cursor: pointer; text-decoration: none;
  touch-action: manipulation;
}
.btn-primary { background: var(--accent); color: #FFFFFF; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--ground); }
/* legacy names used in CTA bands (band is light now) */
.btn-white { background: var(--accent); color: #FFFFFF; border-color: var(--accent); }
.btn-white:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn-outline-white { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-white:hover { background: var(--ink); color: var(--ground); }
.btn-sm { padding: .6rem 1.4rem; }
.btn-lg { padding: 1.05rem 2.6rem; font-size: var(--step-0); }
.btn-group { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }

/* ============================================================
   SECTIONS — alternate ground / ground-alt
   ============================================================ */
.section    { padding: var(--space-section) 0; }
.section-sm { padding: calc(var(--space-section) * .6) 0; }
.section-lg { padding: calc(var(--space-section) * 1.2) 0; }
.section-cream     { background: var(--ground-alt); }
.section-forest    { background: var(--ground-alt); }
.section-sage      { background: var(--ground-alt); }
.section-off-white { background: var(--ground); }
.section-white     { background: var(--ground); }

.section-header { text-align: center; margin-bottom: var(--sp-12); }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p  { max-width: 640px; margin: 0 auto; font-size: var(--step-1); }
.section-header .section-label::after {
  content: ''; width: 28px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}

/* ============================================================
   HERO — asymmetric split: headline left, portrait right
   ============================================================ */
.hero { background: var(--ground); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr;
  align-items: stretch; gap: clamp(var(--sp-8), 4vw, var(--sp-16));
  width: 100%; padding: var(--sp-16) var(--container-padding) 0;
  max-width: var(--container-max); margin: 0 auto;
  min-height: calc(88vh - var(--nav-height));
}
.hero-content { align-self: center; padding-bottom: var(--sp-16); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.hero-heading {
  font-size: var(--step-4);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink); margin-bottom: var(--sp-8);
  font-family: var(--font-display);
  text-wrap: balance;
}
.hero-heading em { font-style: italic; color: var(--accent-ink); }
.hero-subtext {
  font-size: var(--step-1); line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34ch; margin-bottom: var(--sp-10);
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.hero-image-col { display: flex; align-items: center; justify-content: center; }
/* framed portrait: ground-alt mat + hairline border */
.hero-photo-wrap {
  width: 100%; max-width: 440px;
  background: var(--ground-alt);
  border-radius: var(--radius-xl);
  padding: clamp(var(--sp-4), 2.5vw, var(--sp-6));
  align-self: center;
}
.hero-photo-wrap img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: saturate(.88) sepia(.05);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr; min-height: auto;
    padding: var(--sp-10) var(--container-padding) 0;
    gap: var(--sp-8);
  }
  .hero-content { padding-bottom: var(--sp-10); }
  .hero-image-col { order: -1; }
  .hero-photo-wrap { max-width: 380px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--ground);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-8) 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(var(--sp-8), 6vw, var(--sp-20)); flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: var(--font-display); font-size: var(--step-2);
  font-weight: 600; color: var(--ink); line-height: 1; display: block;
}
.trust-label { font-size: var(--step--1); color: var(--ink-soft); margin-top: var(--sp-1); display: block; }
.trust-divider { width: 1px; height: 48px; background: var(--line); }
@media (max-width: 480px) { .trust-divider { display: none; } }

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  align-items: center;
}
.intro-headshot-wrap { position: relative; }
.intro-headshot-circle {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 3px solid var(--ground);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--sp-6);
}
.intro-image-full {
  width: 100%; border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  object-fit: cover; aspect-ratio: 3/4;
  filter: saturate(.88) sepia(.05);
}
.intro-content h2 { margin-bottom: var(--sp-5); }
.intro-content p { margin-bottom: var(--sp-4); font-size: var(--step-0); }
.link-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--accent-ink); font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: var(--sp-3);
}
.link-arrow:hover { color: var(--ink); gap: var(--sp-3); }

.mission-card {
  background: var(--ground-alt);
  border-radius: var(--radius-lg); padding: var(--sp-8);
  border-left: 2px solid var(--accent);
  margin-top: var(--sp-8);
}
.mission-icon { display: none; }
.mission-card h3 { font-size: var(--step-1); margin-bottom: var(--sp-3); }
.mission-card p  { font-size: var(--step-0); line-height: 1.65; }

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}

/* ============================================================
   TOPIC CARDS — numbered 01–04, 2×2 grid
   ============================================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  counter-reset: topic;
}
@media (max-width: 768px) { .topics-grid { grid-template-columns: 1fr; } }
.topic-card {
  background: var(--ground); border-radius: var(--radius);
  padding: var(--sp-8); text-align: left;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
  counter-increment: topic;
  display: flex; flex-direction: column;
}
.topic-card::before {
  content: counter(topic, decimal-leading-zero);
  font-family: var(--font-display); font-style: italic;
  font-size: var(--step-1); font-weight: 600;
  color: var(--accent-ink); line-height: 1;
  margin-bottom: var(--sp-5);
}
.topic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.topic-icon { display: none; }
.topic-card h3 {
  font-size: var(--step-2); font-family: var(--font-display);
  font-weight: 600; margin-bottom: var(--sp-3); color: var(--ink);
  line-height: 1.15;
}
.topic-card p { font-size: var(--step-0); color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   QUALIFICATIONS STRIP
   ============================================================ */
.quals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-8); }
.qual-card { display: flex; gap: var(--sp-4); align-items: flex-start; }
.qual-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--ground-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-ink);
}
.qual-icon svg { width: 20px; height: 20px; }
.qual-body h4 {
  font-size: var(--step-0); font-weight: 600;
  font-family: var(--font-body); margin-bottom: var(--sp-2); color: var(--ink);
}
.qual-body p { font-size: var(--step--1); line-height: 1.6; }
@media (max-width: 900px) { .quals-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .quals-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS (component gated until real quotes exist)
   ============================================================ */
.testimonials-section { background: var(--ground-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.testimonial-card { padding: var(--sp-8); position: relative; border-top: 2px solid var(--accent); background: var(--ground); border-radius: var(--radius); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: .8;
  color: var(--accent);
  position: absolute; top: var(--sp-4); left: var(--sp-6);
  opacity: .18; pointer-events: none; user-select: none;
}
.testimonial-text {
  font-size: var(--step-1); line-height: 1.6;
  color: var(--ink); font-style: italic; font-family: var(--font-display);
  margin-bottom: var(--sp-6); position: relative; z-index: 1;
}
.testimonial-attr { font-size: var(--step--1); color: var(--ink-soft); font-weight: 600; letter-spacing: .05em; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  align-items: start;
}
.booking-intro h2 { margin-bottom: var(--sp-4); }
.booking-intro p { font-size: var(--step-0); line-height: 1.65; margin-bottom: var(--sp-6); }
.booking-form-card {
  background: var(--ground); border-radius: var(--radius-lg);
  padding: clamp(var(--sp-8), 4vw, var(--sp-12));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

/* ---- Forms ---- */
.form-group { margin-bottom: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-label {
  display: block; font-size: var(--step--1); font-weight: 600;
  color: var(--ink); margin-bottom: var(--sp-2);
}
.form-label .req { color: var(--accent-ink); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .8rem 1rem;
  min-height: 44px;
  font-size: var(--step-0); font-family: var(--font-body);
  color: var(--ink); background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(193,80,46,.14);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234C443E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 2.5rem;
}
.form-check { display: flex; align-items: flex-start; gap: var(--sp-3); cursor: pointer; }
.form-check input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.form-check-label { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.6; }
.form-note { font-size: var(--step--1); color: var(--ink-soft); margin-top: var(--sp-2); }
.honeypot { display: none !important; visibility: hidden; position: absolute; left: -9999px; }
.form-success {
  display: none; background: #EAF3E6; border: 1px solid #7BA86F;
  color: #2F5426; padding: var(--sp-6); border-radius: var(--radius);
  margin-bottom: var(--sp-5); font-weight: 600; font-size: var(--step-0);
  line-height: 1.6;
}
.form-error {
  display: none; background: #F9E8E2; border: 1px solid var(--accent);
  color: var(--accent-ink); padding: var(--sp-5); border-radius: var(--radius);
  margin-bottom: var(--sp-5); font-weight: 500;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resources-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-6);
}
.resource-card {
  background: var(--ground); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.resource-img {
  height: 160px; background: var(--ground-alt);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.resource-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) sepia(.05); }
.resource-img-placeholder { color: var(--ink-soft); opacity: .4; }
.resource-body { padding: var(--sp-6); }
.resource-tag {
  font-size: var(--step--1); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: var(--sp-2); display: block;
}
.resource-card h3 {
  font-size: var(--step-1); font-family: var(--font-display);
  font-weight: 600; margin-bottom: var(--sp-3); color: var(--ink);
  line-height: 1.25;
}
.resource-card p { font-size: var(--step--1); line-height: 1.6; margin-bottom: var(--sp-4); }
.read-more {
  font-size: var(--step--1); font-weight: 600; color: var(--accent-ink);
  display: inline-flex; align-items: center; gap: 4px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.read-more:hover { color: var(--ink); gap: 8px; }

/* ============================================================
   CTA BAND — light, editorial
   ============================================================ */
.cta-band {
  background: var(--ground-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-section) 0; text-align: center;
}
.cta-band h2 {
  color: var(--ink); margin-bottom: var(--sp-8);
  max-width: 22ch; margin-left: auto; margin-right: auto;
  font-size: var(--step-3);
}
.cta-band p {
  color: var(--ink-soft); font-size: var(--step-1);
  max-width: 560px; margin: 0 auto var(--sp-10);
}

/* ============================================================
   PAGE HEADER (inner pages) — light editorial
   ============================================================ */
.page-header {
  background: var(--ground-alt);
  border-bottom: 1px solid var(--line);
  padding: calc(var(--space-section) * .75) 0 calc(var(--space-section) * .6);
  text-align: center;
}
.page-header h1 { color: var(--ink); margin-bottom: var(--sp-4); font-size: var(--step-4); }
.page-header .lead { color: var(--ink-soft); max-width: 680px; margin: 0 auto; }
.page-header h1::after {
  content: ''; display: block;
  width: 48px; height: 2px;
  background: var(--accent);
  margin: var(--sp-5) auto 0;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-2); font-size: var(--step--1);
  color: var(--ink-soft); margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--line); }

/* ============================================================
   DISCLAIMER / MEDICAL
   ============================================================ */
.disclaimer-banner {
  background: var(--c-amber-bg); border: 1px solid var(--c-amber);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6); display: flex;
  gap: var(--sp-4); align-items: flex-start; margin-bottom: var(--sp-8);
}
.disclaimer-banner svg { flex-shrink: 0; color: var(--c-amber); margin-top: 2px; }
.disclaimer-banner p { font-size: var(--step--1); color: #6B4F17; line-height: 1.6; max-width: none; }
.disclaimer-banner a { color: #6B4F17; font-weight: 600; text-decoration: underline; }

.medical-strip {
  background: var(--ground-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-4) 0; text-align: center;
}
.medical-strip p { font-size: var(--step--1); color: var(--ink-soft); font-weight: 500; margin: 0 auto; }
.medical-strip a { font-weight: 600; text-decoration: underline; color: var(--accent-ink); }

/* ============================================================
   CARDS (general)
   ============================================================ */
.card {
  background: var(--ground); border-radius: var(--radius);
  padding: var(--sp-8); border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
@media (max-width: 900px) { .card-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; } }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: var(--sp-12); }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 0;
  width: 1px; background: var(--line);
}
.timeline-item { position: relative; padding-bottom: var(--sp-10); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: calc(-1 * var(--sp-12));
  top: 8px; width: 12px; height: 12px;
  background: var(--accent); border: 2px solid var(--ground);
  border-radius: 50%; box-shadow: 0 0 0 1px var(--line);
  transform: translateX(calc(50% - 1px));
}
.timeline-year {
  font-size: var(--step--1); font-weight: 600;
  color: var(--accent-ink); letter-spacing: .05em; margin-bottom: var(--sp-2); display: block;
}
.timeline-title {
  font-size: var(--step-1); font-weight: 600;
  font-family: var(--font-display); margin-bottom: var(--sp-2); color: var(--ink);
}
.timeline-desc { color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-6) 0; width: 100%; text-align: left;
  min-height: 44px;
  font-size: var(--step-1); font-weight: 600; color: var(--ink);
  font-family: var(--font-display); gap: var(--sp-4);
  background: none; border: none; cursor: pointer;
  transition: color var(--transition-fast);
}
.faq-btn:hover { color: var(--accent-ink); }
.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--ground-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-ink); font-size: 1.2rem; line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #FFFFFF; }
.faq-answer {
  display: none; padding: 0 0 var(--sp-6);
  font-size: var(--step-0); line-height: 1.75;
  color: var(--ink-soft); max-width: var(--measure);
}
.faq-answer a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   PROSE (long-form pages)
   ============================================================ */
.prose { max-width: var(--measure); margin: 0 auto; }
.prose h2 { font-size: var(--step-2); margin: var(--sp-10) 0 var(--sp-5); }
.prose h3 { font-size: var(--step-1); margin: var(--sp-8) 0 var(--sp-4); }
.prose p  { font-size: var(--step-0); line-height: 1.75; margin-bottom: var(--sp-6); color: var(--ink); }
.prose ul, .prose ol { padding-left: var(--sp-6); margin-bottom: var(--sp-6); }
.prose li { font-size: var(--step-0); line-height: 1.65; margin-bottom: var(--sp-2); color: var(--ink); }
.prose blockquote {
  border-left: 2px solid var(--accent);
  padding: var(--sp-2) var(--sp-8);
  margin: var(--sp-8) 0;
}
.prose blockquote p {
  font-size: var(--step-2); font-style: italic;
  font-family: var(--font-display);
  color: var(--ink); margin: 0; line-height: 1.35;
}

/* ============================================================
   COMPLIANCE PAGES
   ============================================================ */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: var(--step-2); margin: var(--sp-10) 0 var(--sp-4); }
.legal-content h3 { font-size: var(--step-1); margin: var(--sp-6) 0 var(--sp-3); font-family: var(--font-body); font-weight: 600; }
.legal-content p  { margin-bottom: var(--sp-4); font-size: var(--step-0); line-height: 1.75; }
.legal-content ul { padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-content li { line-height: 1.65; margin-bottom: var(--sp-2); font-size: var(--step-0); color: var(--ink-soft); }
.legal-notice {
  background: var(--c-amber-bg); border: 1px solid var(--c-amber);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  margin-bottom: var(--sp-8); font-size: var(--step--1);
  color: #6B4F17; line-height: 1.65; font-weight: 500;
}

/* ============================================================
   ICON ROWS / BADGE
   ============================================================ */
.icon-row { display: flex; align-items: flex-start; gap: var(--sp-4); margin-bottom: var(--sp-5); }
.icon-row-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--ground-alt); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.icon-row-icon svg { width: 20px; height: 20px; color: var(--accent-ink); }
.icon-row h4 { font-size: var(--step-0); font-weight: 600; font-family: var(--font-body); margin-bottom: var(--sp-1); color: var(--ink); }
.icon-row p  { font-size: var(--step--1); color: var(--ink-soft); }

.badge {
  display: inline-block; padding: var(--sp-1) var(--sp-3);
  background: var(--ground-alt); color: var(--accent-ink);
  border-radius: var(--radius-full);
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ============================================================
   FOOTER — light editorial
   ============================================================ */
.site-footer {
  background: var(--ground-alt);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: var(--sp-12); margin-bottom: var(--sp-12);
}
.footer-brand-name {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--step-1); color: var(--ink); margin-bottom: var(--sp-3); display: block;
}
.footer-tagline {
  font-size: var(--step--1); color: var(--ink-soft);
  line-height: 1.7; max-width: 280px;
}
.footer-col-title {
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: var(--sp-5); display: block;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  color: var(--ink-soft); font-size: var(--step--1);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact-row {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--step--1); color: var(--ink-soft);
  margin-bottom: var(--sp-3);
}
.footer-contact-row a { color: var(--ink-soft); }
.footer-contact-row a:hover { color: var(--ink); text-decoration: underline; }
.footer-contact-row svg { flex-shrink: 0; width: 16px; height: 16px; opacity: .6; }
.newsletter-text { font-size: var(--step--1); color: var(--ink-soft); margin-bottom: var(--sp-4); }
.newsletter-form { display: flex; gap: var(--sp-2); }
.newsletter-form input {
  flex: 1; padding: .65rem 1rem; min-height: 44px;
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--ink);
  font-size: var(--step--1); font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: var(--ink-soft); opacity: .6; }
.newsletter-form input:focus { outline: none; border-color: var(--accent-ink); }
.newsletter-form button {
  padding: .65rem 1.1rem; min-height: 44px;
  background: transparent;
  border: 1px solid var(--ink); border-radius: var(--radius);
  color: var(--ink); font-size: var(--step--1); font-weight: 600;
  cursor: pointer; transition: background var(--transition-fast), color var(--transition-fast); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--ink); color: var(--ground); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-8);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-copyright { font-size: var(--step--1); color: var(--ink-soft); }
.footer-legal { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer-legal a {
  font-size: var(--step--1); color: var(--ink-soft);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--ink); text-decoration: underline; }
/* independence disclaimer: small and muted */
.footer-disclaimer {
  font-size: var(--step--1); color: var(--ink-soft); opacity: .8;
  max-width: 420px; margin-top: var(--sp-4);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); } }
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ============================================================
   EDITORIAL LAYER — statement, pull quotes, audiences
   ============================================================ */
/* Statement (Home intro) = the page's pull-quote device */
.statement {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-style: italic; font-weight: 400;
  line-height: 1.35; letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
  position: relative;
  padding-top: var(--sp-6);
  max-width: none;
}
.statement::before {
  content: ''; display: block;
  width: 40px; height: 2px;
  background: var(--accent);
  margin: 0 auto var(--sp-6);
}
.statement-lead {
  color: var(--ink-soft);
  font-size: var(--step-0); line-height: 1.7;
  margin: 0 auto var(--sp-6);
}

/* Pull quote — accent quote mark + thin accent left rule */
.pull-quote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-style: italic; font-weight: 400;
  line-height: 1.35; color: var(--ink);
  text-align: left; max-width: 640px;
  margin: var(--sp-12) auto;
  padding-left: var(--sp-8);
  border-left: 2px solid var(--accent);
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.2em; line-height: 0;
  color: var(--accent);
  position: absolute; left: var(--sp-4); top: .45em;
  transform: translateX(-100%);
  opacity: .9;
}
.pull-quote::after { content: none; }
@media (max-width: 600px) {
  .pull-quote::before { position: static; transform: none; display: block; height: .5em; }
}

/* Audience badge list */
.audience-list { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }
.audience-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: .55rem 1.3rem;
  font-size: var(--step--1); font-weight: 500;
  color: var(--ink-soft); background: var(--ground);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.audience-list li:hover { border-color: var(--accent-ink); color: var(--ink); }

/* Booking steps strip (Contact) */
.steps-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); counter-reset: step; text-align: left; }
.steps-strip li { counter-increment: step; padding: var(--sp-6); background: var(--ground); border: 1px solid var(--line); border-radius: var(--radius); }
.steps-strip li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: var(--step-1); color: var(--accent-ink);
  margin-bottom: var(--sp-3);
}
.steps-strip h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.steps-strip p { font-size: var(--step--1); color: var(--ink-soft); }
@media (max-width: 768px) { .steps-strip { grid-template-columns: 1fr; } }

/* Scroll reveal — progressive enhancement only (double-gated with JS) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(12px);
    transition: opacity 200ms ease-out, transform 200ms ease-out;
    transition-delay: var(--reveal-delay, 0ms);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ============================================================
   VIDEO EMBED (speaker showreel)
   ============================================================ */
.video-embed {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); border: 1px solid var(--line);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   ENGAGEMENTS STRIP (as-seen-at, gated)
   ============================================================ */
.engagements-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4) var(--sp-10); }
.engagements-strip li { font-size: var(--step--1); font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); }

/* ============================================================
   UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
}
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mb-2  { margin-bottom: var(--sp-2); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-prose { max-width: var(--measure); margin: 0 auto; }
.w-full { width: 100%; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-4 { gap: var(--sp-4); }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.font-display { font-family: var(--font-display); }
.italic { font-style: italic; }
