/* Alive Studio - Design System */

:root {
  /* Base - warm ivories and linens */
  --color-background: #F5F0E8;      /* Warm Ivory */
  --color-surface: #EDE5D8;         /* Soft Linen */
  --color-sand: #D8C9B0;            /* Warm Sand */
  --color-clay: #C8B49A;            /* Warm Clay */
  --color-driftwood: #A8967E;       /* Driftwood (deep warm neutral) */

  /* Blue - primary brand */
  --color-accent: #7B9BAD;          /* Dusty Ocean Blue */
  --color-accent-hover: #5D8299;    /* Deeper Coastal Blue */
  --color-accent-light: #C8DAE6;    /* Pale Blue wash */
  --color-blue-section: #E6EEF3;    /* Very light blue section bg */

  /* Earthy accents */
  --color-sage: #8A9E87;            /* Sage */
  --color-terracotta: #B87355;      /* Warm Terracotta */
  --color-terracotta-light: #F0E8DF; /* Terracotta wash */
  --color-ochre: #C4A56A;           /* Muted Ochre */

  /* Text */
  --color-text-primary: #2E2A25;    /* Warm Charcoal */
  --color-text-secondary: #635850;  /* Warm Mid Gray - slightly darkened for readability */

  /* Structure */
  --color-border: #DDD3C4;          /* Warm Sand Border */
  --color-white: #FFFFFF;
}

/* ══════════════════════════════════════════════════════════
   Design Tokens — Type Scale / Containers / Breakpoints
   Consolidated under ALI-520 Phase A (structural cleanup).
   Fixed (non-responsive) font-size declarations site-wide
   should map to the nearest step below. Fluid/clamp() headings
   (h1/h2/h3, hero and pull-quote type) are intentionally
   responsive and are not part of this fixed scale.
   Two breakpoints only: 768px (mobile) and 1024px (tablet).
   Media queries cannot consume custom properties for their
   conditions, so the breakpoints are documented here as the
   canonical values to use in @media rules, not as usable vars.
   ══════════════════════════════════════════════════════════ */
:root {
  /* Type scale */
  --fs-display-1: 3.5rem;    /* large display headings */
  --fs-display-2: 2.75rem;   /* medium display headings */
  --fs-display-3: 2.25rem;   /* small display headings */
  --fs-heading-1: 1.5rem;    /* section/card headings */
  --fs-heading-2: 1.25rem;   /* sub headings */
  --fs-lede: 1.125rem;       /* hero/intro lede paragraphs — distinct tier, not drift */
  --fs-body: 1.0625rem;      /* body copy */
  --fs-small: 0.9375rem;     /* supporting/secondary text */
  --fs-caption: 0.8125rem;   /* captions, labels, fine print */
  --fs-micro: 0.75rem;       /* letterspaced eyebrows/tags — distinct tier, not drift */

  /* Containers */
  --container-prose: 720px;  /* narrow reading measure — unified with .container-narrow (ALI-520/D1) */
  --container-grid: 1200px;  /* wide grid/section measure */
}
/* Breakpoints (reference): 768px, 1024px */

.u-hidden { display: none; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-background);
  color: var(--color-text-primary);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', Georgia, serif; }

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.15; letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; line-height: 1.2; letter-spacing: 0.02em; }
h3 { font-size: clamp(1.375rem, 3vw, 1.75rem); font-weight: 400; line-height: 1.3; }
h4 { font-size: 1.25rem; font-weight: 500; font-family: 'Inter', sans-serif; line-height: 1.4; }

.display-h1 { font-size: clamp(2.25rem, 4vw, 2.875rem); font-weight: 300; line-height: 1.15; letter-spacing: 0.02em; }

p { font-weight: 300; line-height: 1.8; color: var(--color-text-primary); }
strong { font-weight: 500; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: var(--container-prose);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Layout Utilities ──
   Shared, reusable classes for one-off spacing/position rules that were
   previously duplicated as inline styles across pages (ALI-520 Phase A).
   Selectors are self-doubled (.u-x.u-x.u-x) to give them specificity (0,2,0):
   these classes replace inline styles, which always won the cascade, so
   they need to reliably beat single-class component rules (e.g. .page-hero,
   .two-col) regardless of where in styles.css those components are
   defined — without resorting to !important. */
.u-text-center.u-text-center.u-text-center { text-align: center; }
.u-text-secondary.u-text-secondary.u-text-secondary { color: var(--color-text-secondary); }
.u-fs-small.u-fs-small.u-fs-small { font-size: 0.9375rem; }
.u-relative.u-relative.u-relative { position: relative; }
.u-relative-z1.u-relative-z1.u-relative-z1 { position: relative; z-index: 1; }
.u-absolute-inset0.u-absolute-inset0.u-absolute-inset0 { position: absolute; inset: 0; }
.u-flex-start.u-flex-start.u-flex-start { align-items: flex-start; }
.u-overflow-hidden.u-overflow-hidden.u-overflow-hidden { overflow: hidden; }
.u-nowrap.u-nowrap.u-nowrap { white-space: nowrap; }

.u-pt-3.u-pt-3.u-pt-3 { padding-top: 3rem; }
.u-pt-7.u-pt-7.u-pt-7 { padding-top: 7rem; }
.u-pb-4.u-pb-4.u-pb-4 { padding-bottom: 4rem; }
.u-py-5.u-py-5.u-py-5 { padding: 5rem 0; }
.u-py-3-5.u-py-3-5.u-py-3-5 { padding: 3rem 0 5rem; }
.u-py-4-5.u-py-4-5.u-py-4-5 { padding: 4rem 0 5rem; }
.u-py-4_5-2.u-py-4_5-2.u-py-4_5-2 { padding: 4.5rem 0 2rem; }
.u-py-3_5-2_5.u-py-3_5-2_5.u-py-3_5-2_5 { padding: 3.5rem 0 2.5rem; }
.u-py-2_25-4.u-py-2_25-4.u-py-2_25-4 { padding: 2.25rem 0 4rem; }
.u-py-5-6.u-py-5-6.u-py-5-6 { padding: 5rem 0 6rem; }
.u-py-6-7.u-py-6-7.u-py-6-7 { padding: 6rem 0 7rem; }
.u-py-6-4_5.u-py-6-4_5.u-py-6-4_5 { padding: 6rem 0 4.5rem; }

.u-text-white.u-text-white.u-text-white { color: #fff; }
.u-text-white-82.u-text-white-82.u-text-white-82 { color: rgba(255,255,255,0.82); }
.u-eyebrow-light.u-eyebrow-light.u-eyebrow-light { color: var(--color-accent-light); }
.u-eyebrow-terracotta.u-eyebrow-terracotta.u-eyebrow-terracotta { color: var(--color-terracotta); }
.u-p-card-body.u-p-card-body.u-p-card-body { padding: 2rem 2.25rem 2.5rem; }

.u-mt-0_5.u-mt-0_5.u-mt-0_5 { margin-top: 0.5rem; }
.u-mt-1.u-mt-1.u-mt-1 { margin-top: 1rem; }
.u-mt-1_25.u-mt-1_25.u-mt-1_25 { margin-top: 1.25rem; }
.u-mt-1_5.u-mt-1_5.u-mt-1_5 { margin-top: 1.5rem; }
.u-mt-1_75.u-mt-1_75.u-mt-1_75 { margin-top: 1.75rem; }
.u-mt-2.u-mt-2.u-mt-2 { margin-top: 2rem; }
.u-mt-2_75.u-mt-2_75.u-mt-2_75 { margin-top: 2.75rem; }
.u-mt-3.u-mt-3.u-mt-3 { margin-top: 3rem; }

.u-mb-0_5.u-mb-0_5.u-mb-0_5 { margin-bottom: 0.5rem; }
.u-mb-0_75.u-mb-0_75.u-mb-0_75 { margin-bottom: 0.75rem; }
.u-mb-1.u-mb-1.u-mb-1 { margin-bottom: 1rem; }
.u-mb-1_25.u-mb-1_25.u-mb-1_25 { margin-bottom: 1.25rem; }
.u-mb-1_5.u-mb-1_5.u-mb-1_5 { margin-bottom: 1.5rem; }
.u-mb-1_75.u-mb-1_75.u-mb-1_75 { margin-bottom: 1.75rem; }
.u-mb-2.u-mb-2.u-mb-2 { margin-bottom: 2rem; }
.u-mb-2_5.u-mb-2_5.u-mb-2_5 { margin-bottom: 2.5rem; }
.u-mb-3_5.u-mb-3_5.u-mb-3_5 { margin-bottom: 3.5rem; }

.u-gap-1.u-gap-1.u-gap-1 { gap: 1rem; }
.u-gap-1_5.u-gap-1_5.u-gap-1_5 { gap: 1.5rem; }
.u-gap-2.u-gap-2.u-gap-2 { gap: 2rem; }
.u-gap-6.u-gap-6.u-gap-6 { gap: 6rem; }

.u-maxw-480.u-maxw-480.u-maxw-480 { max-width: 480px; }
.u-maxw-520.u-maxw-520.u-maxw-520 { max-width: 520px; }
.u-maxw-560.u-maxw-560.u-maxw-560 { max-width: 560px; }
.u-maxw-600.u-maxw-600.u-maxw-600 { max-width: 600px; }
.u-maxw-680.u-maxw-680.u-maxw-680 { max-width: 680px; }
.u-maxw-720.u-maxw-720.u-maxw-720 { max-width: 720px; }
.u-maxw-800.u-maxw-800.u-maxw-800 { max-width: 800px; }
.u-mx-auto.u-mx-auto.u-mx-auto { margin-left: auto; margin-right: auto; }
.u-maxw-900.u-maxw-900.u-maxw-900 { max-width: 900px; }

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.bg-surface { background: var(--color-surface); }
.bg-background { background: var(--color-background); }
.bg-accent-light { background: var(--color-accent-light); }
.bg-blue-section { background: var(--color-blue-section); }
.bg-sand { background: var(--color-sand); }
.bg-clay { background: var(--color-clay); }
.bg-terracotta-wash { background: var(--color-terracotta-light); }
.bg-sage-wash { background: #E4EAE3; }
.bg-dark { background: var(--color-text-primary); color: var(--color-white); }
.bg-aliveness { background: #DFE9F5; }

/* ── Divider ── */
.ornament {
  width: 64px;
  height: 1px;
  background: var(--color-accent);
  margin: 3rem auto;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: #3F7490;
  color: var(--color-white);
  padding: 18px 52px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-primary:hover {
  background: #2E5E76;
  box-shadow: 0 8px 28px rgba(46,94,118,0.38);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-text-primary);
  padding: 16px 46px;
  border-radius: 4px;
  border: 1.5px solid var(--color-text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-secondary:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(46,42,37,0.18);
  transform: translateY(-2px);
}

.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  padding: 16px 46px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.btn-inverse {
  display: inline-block;
  background: var(--color-background);
  color: #2E5E76;
  padding: 18px 52px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-inverse:hover {
  background: var(--color-white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.text-link {
  color: var(--color-text-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
  font-weight: 400;
}
.text-link:hover { color: var(--color-accent); }

/* ── Accessibility: skip link ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: var(--color-text-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* ── Navigation ── */
nav {
  position: relative;
  z-index: 100;
  height: 80px;
  background: var(--color-background);
  border-bottom: 1px solid transparent;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s;
}
nav.scrolled { border-color: var(--color-border); }
nav.stuck { position: sticky; top: 0; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  margin-top: 6px;
}
.nav-logo-name {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  line-height: 1;
}
.nav-logo-by {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  line-height: 1;
  margin-top: -0.1rem;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-text-primary); }

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-size: var(--fs-micro) !important;
}
.nav-cta:hover { background: var(--color-accent-hover) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--color-text-primary); transition: 0.3s; }

/* ── Hero - Home ── */
.hero-home {
  position: relative;
  min-height: 100vh;
  background: var(--color-background);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-composite.jpg');
  background-size: cover;
  background-position: center center;
}
.hero-bg::after {
  /* Left gradient overlay - text legibility on left, full image visible right */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(245,240,232,0.78) 0%,
    rgba(245,240,232,0.65) 22%,
    rgba(245,240,232,0.55) 40%,
    rgba(245,240,232,0.18) 58%,
    rgba(245,240,232,0.00) 72%
  );
}

.hero-home-content {
  position: relative;
  z-index: 3;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-home-content .eyebrow { color: var(--color-accent); letter-spacing: 0.12em; }

.hero-home-content .display-h1 {
  color: var(--color-text-primary);
  max-width: 680px;
  margin-top: 0.75rem;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
}

.hero-home-content .hero-sub {
  color: var(--color-text-secondary);
  font-size: var(--fs-lede);
  font-weight: 300;
  max-width: 580px;
  margin-top: 1.5rem;
  line-height: 1.7;
}
/* First subhead - true subheadline with stronger hierarchy */
.hero-home-content .hero-sub:not(.hero-sub-2) {
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--color-text-primary);
}
.hero-home-content .hero-sub + .hero-sub { margin-top: 0.75rem; }

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ── Page Hero (interior pages) ── */
.page-hero {
  padding: 10rem 0 5rem;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 680px; }
.page-hero .page-hero-sub { margin-top: 1.5rem; max-width: 560px; font-size: var(--fs-lede); }

/* ── Intro Strip ── */
.intro-strip {
  text-align: center;
  padding: 7.5rem 0;
}
.intro-strip h2 { margin-bottom: 1.75rem; }
.intro-strip p { font-size: var(--fs-lede); line-height: 1.8; max-width: 680px; margin: 0 auto 1rem; }
.intro-strip p + p { margin-top: 1rem; }

/* ── Offering Cards ── */
.cards-section { padding: 6rem 0; }
.cards-header { text-align: center; margin-bottom: 2.25rem; }
.cards-header h2 { margin-top: 0.5rem; margin-bottom: 1.25rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(46,42,37,0.06);
}
.card .card-img {
  aspect-ratio: 4/3;
  background: var(--color-accent-light);
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  width: 100%;
  overflow: hidden;
}
.card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card .tag {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.875rem; }
.card p { font-size: 0.9375rem; color: var(--color-text-secondary); margin-bottom: 1.5rem; }
.card .text-link { font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.04em; }

/* Pin CTAs to bottom so all cards align regardless of paragraph length */
.cards-section .card { display: flex; flex-direction: column; }
.cards-section .card > div:last-child { display: flex; flex-direction: column; flex: 1; }
.cards-section .card > div:last-child p { flex: 1; }

/* ── Testimonials ── */
.testimonials-section { padding: 7.5rem 0 4.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-terracotta);
}
.testimonial cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}
.testimonials-supporting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ── About Strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 0;
}
.about-strip-img {
  aspect-ratio: 3/4;
  background: var(--color-accent-light);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-text p { margin-top: 1.25rem; max-width: 480px; font-size: 1.0625rem; }
.about-strip-text a { margin-top: 1.75rem; }

/* ── Email Capture ── */
.email-capture { text-align: center; padding: 3.5rem 0; }
.email-capture h2 { margin-bottom: 1rem; }
.email-capture > p { font-size: var(--fs-small); color: var(--color-text-secondary); max-width: 480px; margin: 0 auto 1.5rem; }
.email-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 620px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.email-form .btn-primary { padding: 18px 36px; white-space: nowrap; }
.email-form input:focus { border-color: var(--color-accent); }
.email-form input::placeholder { color: var(--color-text-secondary); }
.fine-print { font-size: 0.8125rem; color: var(--color-text-secondary); margin-top: 1rem; }
.fine-print a { color: var(--color-text-secondary); text-decoration: underline; text-decoration-color: var(--color-accent); text-underline-offset: 2px; }
.fine-print a:hover { color: var(--color-accent-hover); }

/* ── Newsletter Band (centered card on cream bg) ── */
.newsletter-band {
  background: var(--color-surface);
  padding: 3.5rem 2rem;
  margin-bottom: 0;
}
.newsletter-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 990px;
  margin: 0 auto;
  padding: 3.5rem 4rem;
}
.newsletter-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 0.625rem;
}
.newsletter-text p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}
.newsletter-form-col .email-form {
  max-width: 100%;
  margin: 0;
  justify-content: flex-start;
}
.newsletter-form-col .email-form input {
  flex: 2;
  min-width: 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  transition: border-bottom-color 0.2s;
}
.newsletter-form-col .email-form input:focus { border-bottom-color: var(--color-accent); }
.newsletter-form-col .fine-print { text-align: left; margin-top: 0.625rem; }
@media (max-width: 768px) {
  .newsletter-card { padding: 2rem 1.5rem; }
  .newsletter-cols { grid-template-columns: 1fr; gap: 1.75rem; }
  .newsletter-form-col .email-form { flex-direction: column; }
  .newsletter-form-col .email-form input { min-width: unset; }
  .newsletter-form-col .btn-primary { width: 100%; text-align: center; }
}

/* ── Let's Connect Section ── */
/* ═══ LET'S CONNECT — split composition (C9): portrait beside the form.
   No text ever sits over the photo; the panel is a solid dark ground. ═══ */
.lets-connect {
  display: grid;
  grid-template-columns: 48fr 52fr;
  background: #4A6880;
  overflow: hidden;
}

.lc-photo {
  background-image: url('lc-studio.jpg');
  background-size: cover;
  background-position: 20% 24%;
  min-height: 640px;
}

.lc-panel {
  display: flex;
  align-items: center;
  padding: 4.5rem 3rem 4.5rem 4rem;
}

.lc-panel-inner {
  width: 100%;
  max-width: 560px;
}

.lc-panel h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.lc-intro {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.lc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.lc-contact-info-inline {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.lc-contact-info p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9375rem;
  margin: 0;
}
.lc-contact-info a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.lc-contact-info a:hover { color: #fff; }
.lc-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.lc-instagram-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lc-instagram-logo {
  display: flex;
  align-items: center;
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  flex-shrink: 0;
}
.lc-instagram-logo:hover { color: #fff; }
.lc-instagram-logo svg { width: 100%; height: 100%; display: block; }

/* Form (HighLevel embed — styled in HighLevel; wrapper only sizes/positions it).
   The -17px left margin compensates for HighLevel's own internal card padding
   (16px) + border (1px) inside the cross-origin iframe, which parent CSS can't
   reach — without it the visible fields sit 17px right of the heading above
   even though the iframe's own box is aligned (same fix as .contact-form-embed).
   min-height (not a fixed height) lets the box shrink to the form_embed.js
   auto-resized content height instead of reserving dead space below it. */
.lc-form-embed {
  margin-left: -17px;
  min-height: 590px;
  border-radius: 8px;
  overflow: hidden;
}
.lc-form-embed iframe { display: block; }

@media (max-width: 900px) {
  /* C9 mobile: dedicated image block above the form — never text over photo */
  .lets-connect { display: block; }
  .lc-photo {
    min-height: 0;
    height: 400px;
    background-position: 30% 18%;
  }
  .lc-panel { padding: 3.5rem 1.5rem 4.5rem; }
  .lc-panel-inner { max-width: 560px; margin: 0 auto; }
  .email-form { flex-wrap: wrap; }
  .email-form input { min-width: 200px; }
}

/* ── Pull Quote ── */
.pull-quote-section { padding: 7.5rem 0; text-align: center; }
.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto;
  color: var(--color-text-primary);
}
.pull-quote-attr {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img {
  aspect-ratio: 4/3;
  background: var(--color-accent-light);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.two-col-img.portrait { aspect-ratio: 3/4; background-position: center top; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text h2 { margin-top: 0.5rem; }
.two-col-text .subhead { font-size: 1.0625rem; color: var(--color-text-secondary); margin-top: 0.5rem; }
.two-col-text p { margin-top: 1.25rem; font-size: 1.0625rem; line-height: 1.8; }
.two-col-text ul { margin-top: 1rem; padding-left: 1.25rem; }
.two-col-text ul li { font-size: 0.9375rem; color: var(--color-text-secondary); margin-bottom: 0.5rem; line-height: 1.6; }
.two-col-text a { margin-top: 2rem; }

/* ── Offering Block (Work With Me single) ── */
.offering-block {
  padding: 5rem 0;
  border-top: 1px solid var(--color-border);
}
.offering-block:first-of-type { border-top: none; }

/* ── Tiles (Events) ── */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.tile {
  padding: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.tile-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}
.tile h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.tile p { font-size: 0.9375rem; color: var(--color-text-secondary); }

/* ── Events email capture card ── */
.events-capture-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 3.75rem 3rem;
  max-width: 600px;
  margin: 5rem auto;
}
.events-capture-card h3 { margin-bottom: 1rem; }
.events-capture-card p { font-size: var(--fs-small); margin-bottom: 2rem; }
.events-capture-card .email-form { flex-direction: column; align-items: stretch; }
.events-capture-card .email-form input { min-width: unset; }
.events-capture-card .btn-primary { width: 100%; text-align: center; }

/* ── About Hero ── */
.about-hero-lede.about-hero-lede.about-hero-lede { font-size: var(--fs-lede); line-height: 1.8; }

/* ── About Story ── */
.about-story { padding: 6rem 0; }
.about-story p { font-size: 1.0625rem; line-height: 1.85; margin-bottom: 1.25rem; max-width: 700px; }
.about-story p:first-child { margin-top: 1.5rem; }

/* Doubled selector: beats the ".about-story p" descendant rule above (same specificity, defined later) */
.about-story-pullquote.about-story-pullquote.about-story-pullquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text-primary);
  margin: 1.75rem 0;
}

/* About Story Grid — shared by "How I got here." and "What I believe..." sections (M1) */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.about-story-sticky {
  position: sticky;
  top: 6rem;
}
@media (max-width: 767px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-story-sticky {
    position: static;
    top: auto;
  }
}

/* ── About Credentials ── */
.credentials-label {
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.credentials-list { list-style: none; padding: 0; }
.credentials-list-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-small);
  color: var(--color-text-primary);
}
.credentials-list-item:last-child { border-bottom: none; }
.credentials-list-item--muted { color: var(--color-text-secondary); }
.credentials-img { overflow: hidden; border-radius: 4px; }
.credentials-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── About Aliveness Approach intro ── */
.approach-intro.approach-intro.approach-intro { font-size: var(--fs-body); line-height: 1.85; }

/* ── About "What I Believe" copy ── */
.about-believe-p.about-believe-p.about-believe-p { font-size: var(--fs-body); line-height: 1.85; }
.about-believe-pullquote.about-believe-pullquote.about-believe-pullquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text-primary);
  margin: 2.5rem 0 2rem;
}
.about-believe-litany.about-believe-litany.about-believe-litany {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 2.2;
  color: var(--color-text-primary);
}

.inline-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  border-left: 3px solid var(--color-terracotta);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
  color: var(--color-text-primary);
}

/* ── Credentials ── */
.credentials { padding: 4rem 0; }
.credentials h4 { letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 1.5rem; }
.credentials ul { padding-left: 1.25rem; }
.credentials ul li { font-size: 0.9375rem; margin-bottom: 0.625rem; color: var(--color-text-secondary); }

/* ── CTA Band ── */
.cta-band {
  text-align: center;
  padding: 6rem 0;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { font-size: 1.0625rem; color: var(--color-text-secondary); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Photo CTA Band (full-bleed photographic closing CTA, shared across pages) ── */
.photo-cta-band {
  position: relative;
  padding: 8rem 0;
  text-align: center;
}
.photo-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,10,0.78);
}
.photo-cta-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.photo-cta-heading--lg { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.photo-cta-sub {
  color: rgba(255,255,255,0.82);
  font-size: var(--fs-body);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ── Not Sure ── */
.not-sure {
  text-align: center;
  padding: 9rem 0;
}
.not-sure h2 { margin-bottom: 1rem; }
.not-sure p { font-size: 1.0625rem; color: var(--color-text-secondary); max-width: 480px; margin: 0 auto 2rem; }

/* ── Contact Form ── */
.contact-form { max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-accent); }

/* ── Footer ── */
footer {
  background: var(--color-text-primary);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-inner .nav-logo { align-items: center; margin-top: 0; }
.footer-inner .nav-logo-name { color: rgba(255,255,255,0.9); }
.footer-inner .nav-logo-by { color: rgba(255,255,255,0.5); margin-top: 0.3rem; }
.footer-location {
  margin-top: 0.5rem;
  font-size: var(--fs-caption);
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.75rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: var(--fs-caption);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-legal { color: rgba(255,255,255,0.6); font-size: var(--fs-caption); }
.footer-legal a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.9); }
.footer-copyright {
  display: block;
  margin-top: 1.75rem;
  font-size: var(--fs-micro);
  color: rgba(255,255,255,0.3);
}

/* ── Home page full-bleed pull quote ("wow moment") ── */
.pull-quote-full {
  position: relative;
  overflow: hidden;
  background-color: #1a1714;
  background-image: url('hero-coaching-journey.jpg');
  background-size: cover;
  background-position: center 30%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.pull-quote-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.65);
}
.pull-quote-full .pq-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.pull-quote-full blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-white);
  margin: 0 auto;
  letter-spacing: 0.01em;
  position: relative;
}
.pull-quote-full blockquote::before { display: none; }
.pull-quote-full .pq-attr {
  color: rgba(255,255,255,0.50);
  margin-top: 2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Offerings Gallery (editorial, variable weights) ── */
.offerings-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2.5rem;
}

.offering-card--featured { grid-column: span 2; }
.offering-card--featured .offering-card-img { aspect-ratio: 16/9; }
.offering-card--featured .offering-card-title { font-size: clamp(1.5rem, 2.5vw, 2.125rem); }
.offering-card--featured .offering-card-desc { font-size: 1.0625rem; max-width: 560px; }

.offering-card--portrait .offering-card-img { aspect-ratio: 3/4; }

.offering-card--horizontal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--color-surface);
}
.offering-card--horizontal .offering-card-img-wrap {
  display: block;
  min-height: 320px;
  height: 100%;
}
.offering-card--horizontal .offering-card-img {
  aspect-ratio: auto;
  height: 100%;
}
.offering-card--horizontal .offering-card-body {
  padding: 3rem;
  justify-content: center;
}

/* ── Offering page pull quote ── */
.offering-pull-quote {
  text-align: center;
  padding: 5rem 2rem;
}
.offering-pull-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text-primary);
  max-width: 760px;
  margin: 0 auto;
}

/* ── Offerings Overview Grid (new Work With Me) ── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2.5rem;
}

.offering-card {
  display: flex;
  flex-direction: column;
}

.offering-card-img-wrap {
  overflow: hidden;
  display: block;
}

.offering-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--color-sand);
  width: 100%;
  display: block;
  transition: transform 0.55s ease;
}

.offering-card:hover .offering-card-img { transform: scale(1.04); }

.offering-card-body {
  padding: 1.375rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offering-card-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 0.375rem;
}

.offering-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  display: block;
}
.offering-card-title:hover { color: var(--color-accent); }

.offering-card-meta {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.offering-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  color: var(--color-text-secondary);
  flex: 1;
}

.offering-card-ideal {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.offering-card-ctas {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.offering-card-ctas .btn-primary,
.offering-card-ctas .btn-secondary {
  font-size: var(--fs-micro);
  padding: 12px 26px;
}

/* ── Offering Dedicated Page Hero ── */
.offering-page-hero {
  position: relative;
  height: 75vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

.offering-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,41,38,0.68) 0%, rgba(44,41,38,0.2) 55%, transparent 100%);
}

.offering-page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.offering-page-hero-content .eyebrow { color: var(--color-accent-light); margin-bottom: 0.75rem; }
.offering-page-hero-content h1 { color: var(--color-white); max-width: 720px; }
.offering-page-hero-content .hero-meta { color: rgba(255,255,255,0.72); font-size: 0.9375rem; margin-top: 0.875rem; letter-spacing: 0.04em; }

/* ── Back Navigation ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-bottom: 3rem;
}
.back-link:hover { color: var(--color-accent); }

/* ── Offering Detail ── */
.offering-detail p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.offering-included {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
.offering-included li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  position: relative;
  line-height: 1.5;
}
.offering-included li:first-child { border-top: 1px solid var(--color-border); }
.offering-included li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.offering-for-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
.offering-for-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  position: relative;
  line-height: 1.55;
}
.offering-for-list li::before {
  content: '·';
  position: absolute;
  left: 0.125rem;
  color: var(--color-terracotta);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  top: 0.25rem;
}

/* ── Offering page content grids ── */
.offering-sidebar-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

/* ── Mid-page Image Break ── */
.image-break {
  height: 420px;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: block;
}

/* ── BioDevelopment - Callout ("More than a dance class") ── */
.bio-callout {
  background: var(--color-background);
  padding: 6rem 0 5.5rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bio-callout h3 {
  margin-bottom: 2rem;
}
.bio-callout p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}
.bio-callout-closing {
  margin-top: 1.75rem !important;
  color: var(--color-text-primary) !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem !important;
}

/* ── BioDevelopment - Testimonials ── */
.bio-testimonials-section {
  padding: 7rem 0 7.5rem;
}
.bio-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
}
.bio-testimonial blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin: 0;
  padding-top: 2rem;
  border-top: 2px solid var(--color-terracotta);
}

/* ── BioDevelopment - Recurring Themes ── */
.bio-themes-section {
  background: var(--color-background);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bio-themes-label {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}
.bio-themes-list {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--color-text-primary);
  line-height: 2;
  margin: 0;
}

/* ── BioDevelopment - Trust Line ── */
.bio-trust-line {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  padding-top: 3.5rem;
  margin: 0;
}

/* ── BioDevelopment Photo Strips ── */
.bio-photo-strip {
  display: flex;
  gap: 5px;
  overflow: hidden;
  width: 100%;
  background: var(--color-background);
}

.bio-photo-strip img {
  flex: 1;
  min-width: 0;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.retreat-salad-img {
  object-position: center 35%;
  transform: scale(1.25);
  transform-origin: center;
}

/* ── BioDevelopment v12 Design Refinements ── */

/* Experience Cards Grid */
.bio-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.bio-experience-card,
.bio-experience-item {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  padding: 1.75rem 2rem;
}
.bio-experience-item--wide {
  grid-column: span 2;
}
.bio-experience-card p,
.bio-experience-item p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 300;
}

/* Facilitator Two-Column Split */
.bio-facilitator-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.bio-facilitator-img-wrap {
  height: 620px;
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.bio-facilitator-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.bio-facilitator-text h2,
.bio-facilitator-text h3 {
  margin-bottom: 1.75rem;
}
.bio-facilitator-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}
.bio-facilitator-text .bio-callout-closing {
  margin-top: 1.75rem !important;
  color: var(--color-text-primary) !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem !important;
}

/* Right-For-You Cards Grid */
.bio-right-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.bio-right-for-card {
  background: var(--color-background);
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--color-terracotta);
}
.bio-right-for-card p {
  font-size: var(--fs-small);
  line-height: 1.75;
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 300;
}

/* Fit Cards Grid (used in This May Be Right For You) */
.bio-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bio-fit-item {
  background: var(--color-background);
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--color-terracotta);
  font-size: var(--fs-small);
  line-height: 1.75;
  color: var(--color-text-primary);
  font-weight: 300;
}

/* Method Callout Box */
.bio-method-box,
.bio-method-callout {
  background: var(--color-blue-section);
  border: 1px solid rgba(123, 155, 173, 0.25);
  padding: 2.75rem 3.25rem;
  max-width: 720px;
}
.bio-method-box h3,
.bio-method-callout h3 { margin-bottom: 1.75rem; }
.bio-method-box p,
.bio-method-callout p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}
.bio-method-box p:last-child,
.bio-method-callout p:last-child { margin-bottom: 0; }

/* Two-Column Callout with Facilitator Image */
.bio-callout-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  text-align: left;
  max-width: 1080px;
  margin: 0 auto;
}
.bio-callout-img-col {
  height: 620px;
  overflow: hidden;
  position: relative;
}
.bio-callout-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.bio-callout-text-col h3 {
  margin-bottom: 1.75rem;
  text-align: left;
}
.bio-callout-text-col p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  text-align: left;
}
.bio-callout-text-col .bio-callout-closing {
  margin-top: 1.75rem !important;
  color: var(--color-text-primary) !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem !important;
  text-align: left;
}

/* Pull Quote */
.bio-pull-quote {
  border-left: 2px solid var(--color-terracotta);
  padding: 0.25rem 0 0.25rem 1.75rem;
  margin: 2rem 0;
}
.bio-pull-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.375rem !important;
  font-weight: 300 !important;
  font-style: italic;
  line-height: 1.6 !important;
  color: var(--color-text-primary) !important;
  margin: 0 !important;
}

/* ── Photo Strip (About) ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 380px;
  overflow: hidden;
}

.photo-strip-item {
  background-size: cover;
  background-position: center;
}

/* ── BioDevelopment Page ── */
.bio-intro-section { padding: 3.5rem 0 5rem; }
.bio-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1.25rem;
}
.bio-intro-headline.bio-intro-headline.bio-intro-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 1.75rem;
}
.bio-intro-photo-frame { overflow: hidden; border-radius: 2px; }
.bio-intro-photo.bio-intro-photo.bio-intro-photo {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.bio-facilitator-section { padding: 7rem 0; }
.bio-facilitator-split.bio-facilitator-split.bio-facilitator-split--wide {
  grid-template-columns: 50% 1fr;
  gap: 6.5rem;
}
.bio-facilitator-photo.bio-facilitator-photo.bio-facilitator-photo { width: calc(100% - 3rem); }
.bio-facilitator-meta.bio-facilitator-meta.bio-facilitator-meta {
  font-size: var(--fs-caption);
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}
.bio-themes-section.bio-themes-section.bio-themes-section--tight { padding: 3.5rem 0; }
.bio-themes-quote.bio-themes-quote.bio-themes-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-primary);
  max-width: 820px;
  margin: 0 auto;
}
.bio-cta-band-bg { background: #4A6880; }
/* C26: replaces the u-py-4-5 utility this band carried in markup — the
   utility's triple-chained selector zeroed side padding at every width,
   letting the primary button run edge-to-edge on mobile. */
.bio-cta-band-bg .cta-band { padding: 4rem 0 5rem; }
.bio-pq-tall.bio-pq-tall.bio-pq-tall { min-height: 360px; }
.bio-pq-quote.bio-pq-quote.bio-pq-quote { font-size: clamp(2rem, 4.5vw, 3.65rem); }
.pq-inner.bio-pq-wide.bio-pq-wide.bio-pq-wide { max-width: 900px; }

/* ── Signature Page ── */
.sig-opening { padding: 3rem 0 3.5rem; }
.sig-quote-wrap { position: relative; overflow: hidden; background: #1a1714; height: 280px; }
.sig-quote-img.sig-quote-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sig-quote-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sig-quote-text.sig-quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  max-width: 1100px;
  letter-spacing: 0.01em;
  margin: 0;
}
.sig-experience-section { padding: 5rem 0 5.5rem; }
.sig-experience-lede.sig-experience-lede {
  font-size: var(--fs-lede);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 1.75rem;
}
.sig-testimonial { background: #4A6880; padding: 3.5rem 0; }
.container-narrow.sig-testimonial-narrow { max-width: 820px; }
.sig-testimonial-quote.sig-testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.75vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-white);
  text-align: center;
}
.sig-testimonial-attr.sig-testimonial-attr {
  text-align: center;
  margin-top: 2.25rem;
  font-size: var(--fs-caption);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  font-style: normal;
  text-transform: uppercase;
}
.sig-testimonial-attr strong { color: rgba(255,255,255,0.85); }
.sig-includes-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 4rem;
  align-items: stretch;
}
.sig-includes-photo.sig-includes-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-break.sig-break-img { height: 360px; }
.sig-right-for-section { padding: 3rem 0 4rem; }

/* ── Retreats hero (C30) ── */
/* Base y-crop (was inline on the section; moved here so the desktop override
   below can win the cascade — the ≤768 52vh/360px composition is unchanged). */
.retreats-hero.retreats-hero { background-position: center 30%; }
/* Desktop pull-back: fixed band + fixed image width freeze the face/type
   relationship at every laptop width (the Events-hero C15/C24 pattern —
   vh sizing made the collision point drift). Face ≈ half the band with
   bougainvillea reading above her head and to the right; the headline meets
   her below the chin. max() keeps cover behavior past 1512px wide. */
@media (min-width: 769px) {
  .retreats-hero.retreats-hero {
    height: 790px;
    min-height: 0;
    background-size: max(100%, 1512px) auto;
    background-position: 50% 29%;
  }
}
@media (min-width: 1513px) {
  /* 100%-wide sizing rescales the crop; drop the window slightly so the
     headline still clears the chin at very wide viewports. */
  .retreats-hero.retreats-hero { background-position: 50% 32%; }
}

/* ── Events Page ── */
.events-hero.events-hero.events-hero {
  background-image: url('events-hero.jpg');
  /* Zoomed-out storytelling crop (C15): fixed 675px band + fixed 1483px image
     width freeze the face/type relationship at every laptop width (1280–1512):
     full head with a strip of blossom above, face ≈ half the band, and the
     title line meeting her only at the chin line — never the features.
     (75vh sizing made the collision point drift with viewport height.) */
  height: 675px;
  /* max() keeps the fixed 1483px crop through the normal desktop range, then
     switches to full-width sizing past it so the image never runs out of
     width and tiles at wider/zoomed-out viewports (same fix as retreats-hero
     above). */
  background-size: max(100%, 1483px) auto;
  background-position: 0% 34%;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  /* C15: drop the title block low in the band so the headline meets the face
     only at the mouth/chin line — the sub sits at chest level */
  .events-hero .offering-page-hero-content { padding-bottom: 2.25rem; }
}
@media (max-width: 768px) {
  /* C15 tablet: y-slack exists at this width — lift the crop and give the
     band enough height that the title starts at the chin, not the eyes */
  .events-hero.events-hero.events-hero { height: auto; min-height: 700px; background-size: cover; background-position: center 20%; }
}
@media (max-width: 480px) {
  /* C15 mobile: taller band + tightened type so the headline begins below
     the face (cover is height-constrained here, so height sets face scale).
     C22: crop preserved; body copy drops to the micro scale (was 0.9375/1.65)
     and the band gains height (was 780px) so the text block ends with air
     before the hero's bottom edge instead of running over her hands to it. */
  .events-hero.events-hero.events-hero { min-height: 840px; background-size: cover; background-position: center top; }
  .events-hero .offering-page-hero-content h1 { font-size: 1.8125rem; }
  .events-hero-sub.events-hero-sub.events-hero-sub { font-size: 0.875rem; line-height: 1.6; margin-top: 1rem; }
}
.events-hero-sub.events-hero-sub.events-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 640px;
  margin-top: 1.25rem;
}
.image-break.events-break-tall { height: 520px; }
.events-invite-heading.events-invite-heading.events-invite-heading { max-width: 600px; margin: 0.75rem auto 0; }
.events-invite-lede.events-invite-lede.events-invite-lede {
  margin: 1.5rem auto 0;
  max-width: 620px;
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.email-form.events-invite-form { margin-top: 2.25rem; }
/* ALI-533: tighten the cream band around the newsletter embed on Events
   only — section padding + the margins touching the widget, not the
   widget's own box (that stays untouched so the live form isn't clipped). */
#get-notified { padding-top: 3.5rem; padding-bottom: 3rem; }
#get-notified .fine-print { margin-top: 0.625rem; }
/* C3: four-line What-Awaits headline holds only at desktop widths;
   below 900px the hard breaks release and the line wraps naturally */
@media (max-width: 900px) {
  .ev-h2-br { display: none; }
}

/* ── Retreats Page ── */
.retreat-right-for-section { padding: 4rem 0 5rem; }

/* ── Clarity Page ── */
.journey-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}
.journey-area-desc.journey-area-desc.journey-area-desc {
  font-weight: 300;
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
  line-height: 1.65;
}

/* ── Home Testimonials ── */
.testimonial-divider { width: 48px; height: 2px; background: var(--color-terracotta); margin: 0 auto; }
/* C8: lead testimonial set as an editorial pull-quote — full quote always
   shown verbatim; the type scale carries the length, never truncation */
.home-testimonial-quote.home-testimonial-quote.home-testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--color-text-primary);
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .home-testimonial-quote.home-testimonial-quote.home-testimonial-quote {
    text-align: left;
    font-size: 1.4375rem;
    line-height: 1.65;
  }
  .home-testimonial-cite.home-testimonial-cite.home-testimonial-cite {
    display: block;
    text-align: left;
  }
}
.home-testimonial-cite.home-testimonial-cite.home-testimonial-cite {
  font-style: normal;
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-testimonial-quote-sm.home-testimonial-quote-sm.home-testimonial-quote-sm {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-small);
  font-weight: 300;
  font-style: italic;
}
.home-testimonial-cta-lede.home-testimonial-cta-lede.home-testimonial-cta-lede {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.625rem, 2.75vw, 2.125rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.btn-primary.btn-primary--wide { padding: 20px 57px; font-size: 0.9rem; }

/* ── Work With Me Page ── */
.page-hero.wwm-hero { padding-top: 6rem; padding-bottom: 2rem; }
.wwm-hero-title.wwm-hero-title.wwm-hero-title { margin: 0 auto; }
.wwm-closing-ctas { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── Contact Page ── */
.page-hero.contact-hero { padding-top: 3rem; padding-bottom: 3rem; }
.container.contact-container { max-width: 760px; }
.contact-hero-note.contact-hero-note.contact-hero-note {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  max-width: 560px;
}
.btn-primary.contact-submit-btn { width: 100%; }

/* Embedded HighLevel Contact Inquiry form (ALI-533 wake comment): replaces
   the static contact form. Height is left fluid — form_embed.js resizes the
   iframe via postMessage once it loads; min-height only prevents a
   collapsed-looking box before that resize fires. Left-aligned (not
   margin: auto) so its left edge matches the "Let's talk." heading above it.
   The -17px left margin compensates for HighLevel's own internal card
   padding (16px) + border (1px) inside the cross-origin iframe, which
   parent CSS can't reach — without it the visible field labels/inputs sit
   17px right of the heading even though the iframe's own box is aligned. */
.contact-form-embed {
  max-width: 560px;
  margin: 3rem 0 0 -17px;
  min-height: 700px;
  border-radius: 8px;
  overflow: hidden;
}
.contact-form-embed iframe { display: block; }
@media (max-width: 640px) {
  .contact-form-embed { min-height: 700px; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bio-callout-two-col-grid { gap: 3rem; }
  .bio-callout-img-col { height: 520px; }
  .bio-facilitator-split { gap: 3rem; }
  .bio-facilitator-img-wrap { height: 520px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-supporting { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .offerings-gallery { grid-template-columns: repeat(2, 1fr); }
  .offering-card--featured { grid-column: span 2; }
  .offering-card--horizontal { grid-template-columns: 1fr; }
  .offering-card--horizontal .offering-card-img-wrap { min-height: 260px; }
  .photo-strip { height: 280px; }
  .image-break { height: 320px; }
  .bio-photo-strip img { height: 260px; }
}

/* Nav switches to the hamburger layout above the general 768px breakpoint:
   the desktop nav items start wrapping (e.g. "Work With Me", "Book a Session")
   once the viewport drops below ~928px, so hamburger must kick in before that. */
@media (max-width: 960px) {
  nav { height: 60px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 60px 0 0;
    background: var(--color-background);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: var(--fs-lede); font-family: 'Inter', sans-serif; letter-spacing: 0.04em; text-transform: none; font-weight: 400; }
  .nav-cta { font-size: 1rem !important; background: transparent !important; color: var(--color-text-primary) !important; padding: 0 !important; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-home { align-items: flex-end; overflow-x: hidden; overflow-y: visible; }
  /* Mobile hero crop/scale lives in the C33 block near end of file; the
     scrims below are tuned to the lifted content block (C33) */
  .hero-bg::after {
    background: linear-gradient(to top,
      rgba(245,240,232,0.92) 0%,
      rgba(245,240,232,0.72) 36%,
      rgba(245,240,232,0.15) 60%,
      rgba(245,240,232,0.00) 74%
    );
  }
  .hero-home-content { padding: 2.5rem 1.25rem 6.5rem; position: relative; }
  /* Ivory gradient behind text block - warm readability without darkening the image */
  .hero-home-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(245, 240, 232, 0.94) 0%,
      rgba(245, 240, 232, 0.80) 58%,
      rgba(245, 240, 232, 0.30) 84%,
      rgba(245, 240, 232, 0.00) 97%
    );
    z-index: 0;
  }
  .hero-home-content > * { position: relative; z-index: 1; }
  .hero-sub-2 { display: block; color: var(--color-text-primary); font-weight: 400; }
  .hero-home-content .display-h1 { color: var(--color-text-primary); max-width: 100%; }
  .hero-home-content .hero-sub { color: var(--color-text-secondary); max-width: 100%; margin-top: 1.75rem; }
  .hero-home-content .hero-sub + .hero-sub { margin-top: 1.5rem; }
  .hero-ctas { margin-top: 2.75rem; gap: 1rem; }
  .display-h1 { font-size: 2.25rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .about-strip { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 1.25rem 1.5rem; }
  .email-form { flex-direction: column; }
  .email-form input { min-width: unset; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-inverse { width: 100%; text-align: center; }
  .cta-band .cta-group { flex-direction: column; align-items: center; gap: 1.5rem; }
  /* C29: ghost paired with a full-width primary/inverse in stacked cta-bands —
     match widths so the pair reads as one system (hierarchy = filled vs
     outline). Scoped: hero CTAs and photo-cta-band singles stay intrinsic. */
  .cta-band .cta-group .btn-ghost-white { width: 100%; text-align: center; }
  .page-hero { padding: 7rem 0 3.5rem; }

  .container { padding: 0 1.25rem; }
  .container-narrow { padding: 0 1.25rem; }
  /* C23: the .container-narrow rule above wipes .cta-band's base 6rem vertical
     padding on divs carrying both classes (same specificity, later in cascade
     → computed 0 20px). Restore intentional vertical padding after it, at
     system level for every mobile cta-band. */
  .cta-band { padding: 3.5rem 1.25rem 4rem; }
  /* C26: the biodev band keeps its 4rem/5rem rhythm but must regain the
     site-standard side inset its scoped desktop rule zeroes out. */
  .bio-cta-band-bg .cta-band { padding: 4rem 1.25rem 5rem; }
  .offerings-grid { grid-template-columns: 1fr; gap: 3rem; }
  .offerings-gallery { grid-template-columns: 1fr; }
  .offering-card--featured { grid-column: span 1; }
  .offering-card--featured .offering-card-img { aspect-ratio: 4/3; }
  .offering-card--horizontal { grid-template-columns: 1fr; }
  .offering-card--horizontal .offering-card-body { padding: 2rem; }
  .offering-page-hero { height: 52vh; min-height: 360px; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { aspect-ratio: 3/2; }
  .image-break { height: 240px; }
  .bio-photo-strip { flex-wrap: wrap; gap: 4px; margin-bottom: 1.5rem; }
  .bio-photo-strip img { flex: 1 1 45%; height: 200px; }
  .retreat-salad-img { object-position: center top; transform: none; }
  .bio-testimonials { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-testimonials-section { padding: 4.5rem 0; }
  .bio-callout { padding: 4rem 0; }
  .bio-trust-line { padding-top: 2.5rem; }
  .offering-card-ctas .btn-primary,
  .offering-card-ctas .btn-secondary { width: auto; }
  .offering-sidebar-grid { grid-template-columns: 1fr; }
  .two-col-equal { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-experience-grid { grid-template-columns: 1fr; }
  .bio-experience-item--wide { grid-column: span 1; }
  .bio-right-for-grid { grid-template-columns: 1fr; }
  .bio-fit-grid { grid-template-columns: 1fr; }
  .bio-callout-two-col-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-callout-img-col { height: 340px; }
  .bio-facilitator-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-facilitator-img-wrap { height: 360px; }
  .bio-method-box { padding: 2rem 1.5rem; }
}

/* ── Intro strip highlight - "Your career isn't the problem" ── */
.intro-strip p.intro-highlight {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-text-primary);
  text-align: center;
  max-width: 620px;
  margin: 2.5rem auto;
}

/* ── About strip - signature line (inline italic, no special treatment) ── */
.about-signature-inline {
  font-style: italic;
}

/* ── Intro strip H2 - slightly larger for emotional weight ── */
.intro-strip h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

/* ── Testimonials - slightly larger font ── */
.testimonial blockquote {
  font-size: 1.25rem;
}

/* ── Aliveness Approach ── */
.aliveness-approach { padding: 7.5rem 0; background: var(--color-blue-section); }

.aliveness-approach .container { max-width: 1360px; }

.aliveness-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 0;
}

.aliveness-intro p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.aliveness-intro .eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #B67C63;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1.1;
}

.aliveness-intro h2 { margin: 0 0 1.25rem; font-size: clamp(1.0625rem, 1.75vw, 1.25rem); font-style: italic; font-weight: 300; color: var(--color-text-secondary); }
.aliveness-intro p { font-size: 1.0625rem; line-height: 1.85; margin-bottom: 1rem; }
.aliveness-intro p:last-child { margin-bottom: 0; }

.aliveness-divider {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin: 2rem auto 0;
  opacity: 0.4;
}

/* C6: card-less centered pillars (About .approach-pillar pattern) —
   icon, pillar name, statement, outcomes; no card container */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.5rem;
  row-gap: 4.5rem;
  max-width: 1120px;
  margin: 3.5rem auto 0;
}

.pillar-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pillar-open .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1875rem, 1.6vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar-open-icon {
  height: 102px;
  width: auto;
  display: block;
  margin-bottom: 1.75rem;
}

.pillar-open h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 320px;
  color: var(--color-text-secondary);
}

.pillar-outcomes {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 2;
  letter-spacing: 0.02em;
  margin-top: 1.125rem;
  margin-bottom: 0;
  opacity: 0.8;
}

/* Legacy row layout - kept for any other pages that may reference it */
.pillars-list {
  border-top: 1px solid var(--color-border);
}

.pillar-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 5rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.pillar-row-meta {
  padding-top: 0;
}

.pillar-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-border);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.pillar-svg-icon {
  width: 52px;
  height: auto;
  color: var(--color-accent);
  display: block;
  margin-bottom: 1.25rem;
}

.pillar-row-meta .eyebrow { margin-bottom: 0; }

.pillar-row-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.pillar-emphasis-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.55;
  margin-bottom: 0.25rem;
  display: block;
}

.pillar-body {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-top: 2.25rem;
  margin-bottom: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 2.25rem;
}

.pillar-outcome-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.pillar-outcome-col ul { list-style: none; padding: 0; }

.pillar-outcome-col li {
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  padding: 0.625rem 0 0.625rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.pillar-outcome-col li:last-child { border-bottom: none; }
.pillar-outcome-col li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: var(--fs-caption);
  top: 0.7rem;
}

.aliveness-closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.0625rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 3.5rem auto 0;
  color: var(--color-text-primary);
}

.aliveness-cta {
  text-align: center;
  margin-top: 1.75rem;
}

@media (max-width: 1140px) {
  .pillars-grid { max-width: 900px; }
}
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); row-gap: 3.75rem; max-width: 640px; }

  .pillar-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
  }
  .pillar-row-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0;
  }
  .pillar-number { font-size: 2.75rem; margin-bottom: 0; }
  .pillar-svg-icon { margin-bottom: 0; width: 40px; }
}

@media (max-width: 768px) {
  .aliveness-approach { padding: 4.5rem 0; }
  .aliveness-intro { margin-bottom: 2rem; }
  .aliveness-divider { margin-bottom: 0; }
  /* C6: tighten vertical rhythm so the section is no longer ~6 screens tall */
  .pillars-grid { grid-template-columns: 1fr; row-gap: 3rem; margin-top: 2.75rem; max-width: 360px; }
  .pillar-open-icon { height: 84px; margin-bottom: 1.25rem; }
  .pillar-open .eyebrow { font-size: 1.1875rem; margin-bottom: 0.875rem; }
  .pillar-open h3 { font-size: 1.1875rem; max-width: 300px; }
  .pillar-outcomes { margin-top: 0.875rem; }
  .pillar-row { padding: 3.5rem 0; gap: 1.5rem; }
  .pillar-row-meta { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .pillar-number { font-size: 2.25rem; margin-bottom: 0; }
  .pillar-svg-icon { width: 36px; }
  .pillar-outcomes { grid-template-columns: 1fr; gap: 2rem; }
  .pillar-body { padding-top: 2rem; margin-top: 2rem; }
  .aliveness-closing { margin-top: 3rem; }
  .intro-strip p.intro-highlight { margin: 2.5rem auto; font-size: clamp(1.625rem, 6vw, 2rem); }
  p.about-signature { font-size: clamp(2.5rem, 8vw, 3.5rem); margin-top: 3rem; margin-bottom: 2rem; }
}

/* ── Print / Full-page screenshot capture fixes ── */
@media print {
  /* Disable smooth scroll - interferes with GoFullPage frame stitching */
  html { scroll-behavior: auto; }

  /* De-stick the nav - position:sticky causes it to appear at every stitched frame boundary */
  nav { position: static; }

  /* De-fix the mobile nav overlay so it doesn't ghost over content */
  .nav-links { position: static !important; }

  /* Remove 100vh constraint - viewport-dependent height causes layout shifts at capture size */
  .hero-home { min-height: 0; }

  /* Keep two-col background-image panels whole across a page break - browsers fragment
     background-image divs (unlike <img> tags) at the print page boundary by default,
     which splits modules like Clarity's "Real-world strategy" journaling photo in two. */
  .two-col-img { break-inside: avoid; page-break-inside: avoid; }
}

/* ── Nav Dropdown ── */
.nav-has-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  list-style: none;
  padding: 10px 0 0.875rem;
  min-width: 240px;
  z-index: 200;
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
.nav-has-dropdown:hover .nav-dropdown-menu,
.nav-has-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  font-size: var(--fs-micro);
  letter-spacing: 0.10em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-dropdown-menu li a:hover {
  color: var(--color-text-primary);
  background: var(--color-surface);
  cursor: pointer;
}
.nav-has-dropdown > a::after {
  content: ' ↓';
  font-size: 0.5rem;
  letter-spacing: 0;
  vertical-align: middle;
  opacity: 0.5;
  margin-left: 2px;
}

@media (max-width: 960px) {
  .nav-has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .nav-dropdown-menu {
    position: static !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: unset;
    transform: none;
  }
  .nav-dropdown-menu li a {
    font-size: 1.0625rem !important;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.04em;
    text-transform: none !important;
    font-weight: 300;
    padding: 0;
    white-space: normal;
    color: var(--color-text-secondary);
  }
  .nav-has-dropdown > a::after { display: none; }
}

/* ── Work With Me Category Hub ── */
.wwm-hub-section { scroll-margin-top: 96px; }

.wwm-section-header { margin-bottom: 6.5rem; }
.wwm-section-header .eyebrow { margin-bottom: 2rem; letter-spacing: 0.12em; }
.wwm-section-header h2 { margin-bottom: 2.75rem; }
.wwm-section-header p {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  max-width: 580px;
  line-height: 1.75;
}

.wwm-section-divider {
  border: none;
  margin: 0;
}

.offerings-gallery--two-col { grid-template-columns: repeat(2, 1fr); }

.wwm-group-events-link { margin-top: 3rem; text-align: center; }

/* Transformation Journey subsection */
.wwm-journey-subsection {
  margin-top: 5.5rem;
}
.wwm-journey-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 1.75rem;
}
.wwm-journey-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--color-surface);
  padding: 3.75rem 4rem;
}
.wwm-journey-card h3 { margin-bottom: 1rem; }
.wwm-journey-card .offering-card-meta { display: block; margin-bottom: 1.5rem; }
.wwm-journey-card p { color: var(--color-text-secondary); font-size: var(--fs-small); line-height: 1.75; }
.wwm-journey-card-cta { margin-top: 2.5rem; }

/* Events editorial callout */
.wwm-events-callout {
  margin-top: 4.5rem;
  padding: 2.75rem 3rem;
  background: var(--color-accent-light);
}
.wwm-events-callout p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.wwm-events-callout p strong { color: var(--color-text-primary); font-weight: 500; }

/* Custom Experiences examples list */
.wwm-examples-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wwm-examples-list li {
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  padding: 5px 14px;
  border-radius: 2px;
}
.wwm-examples-inline {
  margin: 1.25rem 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .offerings-gallery--two-col { grid-template-columns: 1fr; }
}

/* ── Work With Me - Ideal For annotation ── */

.wwm-ideal-for {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}

.wwm-ideal-for-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  opacity: 0.75;
  margin-bottom: 0.3rem;
}

/* Section headings feel like chapter openings */
.wwm-section-header h2 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 300; line-height: 1.25; }

/* Section spacing - generous between, not within */
.wwm-hub-section { padding: 10rem 0 9rem; }

/* First section gets extra top breathing room after the hero */
#private-experiences { padding-top: 11rem; }

/* Clarity card title matches Signature featured title size for visual parity */
#private-experiences .offering-card--portrait .offering-card-title {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
}

/* Clarity card image height equalised with Signature (2/3-width + 16/9 ≈ 1/3-width + 5/6) */
#private-experiences .offering-card--portrait .offering-card-img {
  aspect-ratio: 5/6;
}

/* Clarity card desc and ideal-for — match featured card desc font-size (1.0625rem) for typography parity */
#private-experiences .offering-card--portrait .offering-card-desc,
#private-experiences .offering-card--portrait .wwm-ideal-for {
  font-size: 1.0625rem;
}

/* Bold subheading beneath metadata on featured experience card */
.offering-card-subheading {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin-top: 0.875rem;
  margin-bottom: 0;
}

/* Metadata - de-emphasised, clearly subordinate */
.offering-card-meta {
  font-size: var(--fs-micro);
  color: var(--color-clay);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .wwm-hub-section { padding: 6.5rem 0 6rem; }
  #private-experiences { padding-top: 7rem; }
}

/* ── v20: Premium Polish Pass ── */

/* 1 + 8. Section spacing - generous vertical rhythm, subtle variation breaks grid */
.wwm-hub-section { padding: 9rem 0 8.5rem; }
#group-experiences.wwm-hub-section { padding-top: 10rem; }
#custom-experiences.wwm-hub-section { padding-top: 9.5rem; }

/* 2. Section introduction - more breathing between eyebrow / H2 / intro */
.wwm-section-header { margin-bottom: 6.5rem; }
.wwm-section-header .eyebrow { margin-bottom: 2.25rem; letter-spacing: 0.14em; }
.wwm-section-header h2 { margin-bottom: 3rem; line-height: 1.08; }
.wwm-section-header p { max-width: 500px; }

/* 3. Section transitions - softer divider */
.wwm-section-divider { border-top-color: var(--color-border); opacity: 0.5; }

/* 4. Journey card - open and editorial, no box */
.wwm-journey-subsection { margin-top: 5.5rem; padding-top: 4.5rem; border-top: 1px solid var(--color-border); }
.wwm-journey-card { background: transparent; border: none; padding: 0; }
.wwm-journey-card h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.1; margin-bottom: 1rem; }
.wwm-journey-card .offering-card-meta { margin-bottom: 1.5rem; }
.wwm-journey-card p { font-size: 1.0625rem; line-height: 1.8; max-width: 640px; }
.wwm-journey-card-cta { margin-top: 2.5rem; }

/* Events callout - quiet, no background box */
.wwm-events-callout { background: transparent; border-left: none; border-top: 1px solid var(--color-border); padding: 3rem 0; margin-top: 4.5rem; }
.wwm-events-callout p { margin-bottom: 1.75rem; max-width: 560px; }

/* 5. Card body - more space between image and text, title and description */
.offering-card-body { padding-top: 1.75rem; }
.offering-card-desc { margin-top: 1.25rem; line-height: 1.75; }

/* 7. Typography - heading line heights, label letter-spacing */
.offering-card-title { line-height: 1.15; }
.offering-card-ctas { margin-top: 1.75rem; }

/* 9. Background as chapter signal - generous section end gives colour change more breath */
.wwm-section-divider { margin: 0; }

/* 10. Coaching Journey - sense of occasion, more presence */
.wwm-journey-label { letter-spacing: 0.14em; margin-bottom: 1.75rem; }

/* 11. Final CTA - generous, aspirational, warm invitation not a footer */
.not-sure { padding: 8.5rem 0; }
.not-sure h2 { margin-bottom: 1.75rem; line-height: 1.1; }
.not-sure p { font-size: var(--fs-lede); max-width: 500px; margin: 0 auto 3rem; }

/* Mobile */
@media (max-width: 768px) {
  .wwm-hub-section { padding: 6rem 0 5.5rem; }
  #group-experiences.wwm-hub-section { padding-top: 6.5rem; }
  #custom-experiences.wwm-hub-section { padding-top: 6rem; }
  .not-sure { padding: 5.5rem 0; }
}

/* ── v22: Proportional rebalance - intentional rhythm, events elevation, button refinement ── */

/* 1. Section spacing - proportional, not over-generous; subtle variation breaks grid */
.wwm-hub-section { padding: 6.5rem 0 6rem; }
#private-experiences { padding-top: 6.5rem; }
#group-experiences.wwm-hub-section { padding-top: 7rem; }
#custom-experiences.wwm-hub-section { padding-top: 7rem; }

/* 2. Section header - bring images closer to their introductions */
.wwm-section-header { margin-bottom: 3.5rem; }
.wwm-section-header .eyebrow { margin-bottom: 1.25rem; }
.wwm-section-header h2 { margin-bottom: 1.75rem; }

/* 3. Journey subsection - connected to Signature Journey, not separated */
.wwm-journey-subsection { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--color-border); }
.wwm-journey-card { padding: 0; }
.wwm-journey-label { margin-bottom: 1.5rem; }

/* 5. Events callout - mini destination with heading and presence */
.wwm-events-callout {
  background: var(--color-surface);
  border: none;
  border-top: none;
  padding: 2.75rem 3rem;
  margin-top: 3.5rem;
}
.wwm-events-callout h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.wwm-events-callout p { margin-bottom: 1.75rem; max-width: 500px; }

/* 6. Contrast - slightly richer body copy in cards for clearer hierarchy */
.offering-card-desc { color: #5A504A; }
.wwm-journey-card p { color: #5A504A; }
.wwm-events-callout p { color: var(--color-text-secondary); }

/* Card CTAs - unified size, identical except fill vs. outline */
.offering-card-ctas .btn-primary,
.offering-card-ctas .btn-secondary {
  padding: 12px 26px;
  font-size: var(--fs-micro);
}

/* Final CTA - generous but not massive */
.not-sure { padding: 7rem 0; }

/* Mobile */
@media (max-width: 768px) {
  .wwm-hub-section { padding: 5rem 0 4.5rem; }
  #private-experiences { padding-top: 5rem; }
  #group-experiences.wwm-hub-section { padding-top: 5.5rem; }
  #custom-experiences.wwm-hub-section { padding-top: 5.5rem; }
  .wwm-events-callout { padding: 2rem 1.5rem; }
}

/* ── v23: 2-line intro, card copy bolding, events full-width image banner ── */

/* Section intro subheads - consistent treatment across all three hub sections */
#private-experiences .wwm-section-header p,
#group-experiences .wwm-section-header p,
#custom-experiences .wwm-section-header p {
  max-width: 700px;
  font-size: var(--fs-lede);
}

/* Consistent CTA spacing — desc (flex:1) absorbs free space, not empty whitespace above buttons */
.offering-card-body .offering-card-ctas { margin-top: 1.75rem; }

/* Strong in card descriptions - slightly lighter than bold to stay editorial */
.offering-card-desc strong { font-weight: 600; color: var(--color-text-primary); }

/* Events full-width image banner */
.wwm-coaching-journey-banner {
  position: relative;
  background-image: url('hero-coaching-journey.jpg');
  /* C24 (was C16: 118% auto / 0% 29% — too tight, head cropped): adopt the
     Events-hero fixed-px pattern so the face/band relationship is frozen at
     every laptop width — face ≈ half the band with air above the head and
     bougainvillea wrapping it, especially lower-right */
  background-size: 1483px auto;
  background-position: 0% 33%;
  padding: 5rem 0;
  text-align: left;
}
@media (max-width: 900px) and (min-width: 481px) {
  /* C16 tablet: face + flowers in the upper field, text below over the scrim */
  .wwm-coaching-journey-banner { background-size: cover; background-position: center 24%; padding-top: 26rem; text-align: center; }
}
@media (max-width: 480px) {
  /* C16 mobile: full face in the upper field; text begins below the chin */
  .wwm-coaching-journey-banner { background-size: cover; background-position: center 26%; padding-top: 24rem; text-align: center; }
  /* C16 cycle 3, work-with-me banner only (clarity's #coaching-journey keeps
     its own band values): text must start below the chin, like clarity.
     The portrait source is height-constrained under cover here, so bg-y is
     inert — top padding is the only lever that moves the text past the chin. */
  .wwm-coaching-journey-banner:not(#coaching-journey) { padding-top: 31rem; }
}
.wwm-coaching-journey-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Left-weighted scrim: contrast under the text column, light on the face */
  background: linear-gradient(to right, rgba(20,14,10,0.80) 0%, rgba(20,14,10,0.66) 36%, rgba(20,14,10,0.32) 62%, rgba(20,14,10,0.08) 100%);
}
@media (max-width: 900px) {
  .wwm-coaching-journey-banner::before {
    background: linear-gradient(to top, rgba(20,14,10,0.85) 0%, rgba(20,14,10,0.72) 45%, rgba(20,14,10,0.30) 76%, rgba(20,14,10,0.05) 100%);
  }
}
.wwm-coaching-journey-label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.wwm-coaching-journey-meta {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
}
.wwm-coaching-journey-banner .wwm-events-banner-content h4 { margin-bottom: 0.5rem; }

.wwm-events-banner-content {
  position: relative;
  z-index: 1;
}
.wwm-events-banner-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.125rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.wwm-events-banner-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.wwm-coaching-journey-banner .wwm-events-banner-content p {
  max-width: 680px;
  margin: 0 auto 2rem;
}
@media (min-width: 901px) {
  /* C16 Option A desktop: full-width content box, children as a left column */
  .wwm-coaching-journey-banner .wwm-events-banner-content {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .wwm-coaching-journey-banner .wwm-events-banner-content > * { max-width: 520px; }
  .wwm-coaching-journey-banner .wwm-events-banner-content p { margin-left: 0; margin-right: 0; }
}

@media (max-width: 768px) {
  .wwm-events-banner-content h4 { font-size: clamp(1.625rem, 6vw, 2rem); }
  /* C16: preserve the face-forward top padding set in the banner media rules */
  .wwm-coaching-journey-banner { padding-bottom: 5rem; }
  #private-experiences .wwm-section-header p,
  #group-experiences .wwm-section-header p,
  #custom-experiences .wwm-section-header p { max-width: 100%; font-size: 1rem; }
}

/* ── Final Polish Pass ── */

/* #8 - Tighten large gaps */
#private-experiences { padding-top: 4rem; }
.wwm-section-header { margin-bottom: 3.5rem; }

/* #9 - Strengthen events banner callout */
.wwm-events-banner-content h4 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.75rem;
}
.wwm-events-banner-content p {
  margin: 0 auto 4.5rem;
}

/* #10 - Feature labels: darken for more presence */
.wwm-section-header .eyebrow { color: var(--color-accent-hover); }
.offering-card-tag { font-size: var(--fs-micro); }

/* #12 - Final CTA: primary button gets extra horizontal weight */
.not-sure .btn-primary { padding: 16px 56px; }

/* ── BioDevelopment v3 – Revision Refinements ── */

/* Experience grid (What You'll Experience) */
.bio-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  align-items: stretch;
}
.bio-experience-item {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2.25rem;
  display: flex;
  align-items: center;
}
.bio-experience-item p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-primary);
  font-style: italic;
  margin: 0;
  text-align: left;
}

/* Facilitator two-column (More Than a Dance) */
.bio-facilitator-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 7rem;
  align-items: start;
}
.bio-facilitator-img-wrap {
  overflow: hidden;
  height: auto;
  aspect-ratio: 9/11;
}
.bio-facilitator-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.bio-facilitator-text h3 {
  margin-bottom: 2rem;
}
.bio-facilitator-text p {
  font-size: 1.0625rem;
  line-height: 1.95;
  margin-bottom: 1.375rem;
  color: var(--color-text-secondary);
}
.bio-facilitator-text .bio-callout-closing {
  margin-top: 2rem !important;
  color: var(--color-text-primary) !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem !important;
  font-weight: 300;
  line-height: 1.65;
}

/* Fit grid (This May Be Right For You If) */
.bio-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
  align-items: stretch;
}
.bio-fit-item {
  background: var(--color-background);
  border-left: 2px solid var(--color-terracotta);
  padding: 2rem 1.75rem;
  font-size: 1.0625rem;
  color: var(--color-text-primary);
  line-height: 1.85;
  font-weight: 300;
  display: flex;
  align-items: center;
}

/* Method callout (The BioDevelopment Method) */
.bio-method-callout {
  background: var(--color-blue-section);
  border: 1px solid var(--color-accent-light);
  padding: 4rem 4.5rem;
  max-width: 860px;
}
.bio-method-callout h3 { margin-bottom: 1.75rem; }
.bio-method-callout p {
  font-size: 1.0625rem;
  line-height: 2.0;
  margin-bottom: 1.25rem;
  color: var(--color-text-secondary);
}
.bio-method-callout p:last-child { margin-bottom: 0; }

/* Intro section line-height */
.bio-intro-section .offering-detail p {
  line-height: 1.95;
}

/* A Different Way to Grow – readability */
.bio-grow-section .offering-detail p {
  line-height: 2.0;
  margin-bottom: 1.625rem;
}
.bio-grow-section .bio-pull-quote {
  margin: 3rem 0;
}

/* Responsive – BioDevelopment v3 */
@media (max-width: 960px) {
  .bio-facilitator-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bio-facilitator-img-wrap {
    aspect-ratio: 4/3;
    height: auto;
    max-width: min(540px, 100%);
  }
}
@media (max-width: 768px) {
  .bio-experience-grid { grid-template-columns: 1fr; gap: 1rem; }
  .bio-fit-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .bio-method-callout { padding: 2.5rem 2rem; }
  .bio-facilitator-img-wrap { height: auto; aspect-ratio: 4/3; }
}

/* ── BioDevelopment v4 – Revision Pass (ALI-372) ── */

/* Module 3: What You'll Experience — editorial divider list */
.bio-experience-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.bio-experience-list li {
  padding: 1.625rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3125rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary);
}

/* Module 5: Pull quotes — more breathing room */
.bio-grow-section .bio-pull-quote {
  margin: 4.5rem 0;
}

/* Module 6: Facilitator — full content-width image above text */
.bio-facilitator-full-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 3.5rem;
}
.bio-facilitator-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.bio-facilitator-text-below {
  max-width: 680px;
}
.bio-facilitator-text-below p {
  font-size: 1.0625rem;
  line-height: 1.95;
  margin-bottom: 1.375rem;
  color: var(--color-text-secondary);
}
.bio-facilitator-text-below .bio-callout-closing {
  margin-top: 2rem !important;
  color: var(--color-text-primary) !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem !important;
  font-weight: 300;
  line-height: 1.65;
}

/* Module 7: This May Be Right For You — editorial divider list */
.bio-fit-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.bio-fit-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-text-primary);
}

/* Module 11: BioDevelopment Method callout — wider, more padding, left-aligned */
.bio-method-callout {
  max-width: none;
  padding: 5rem 5.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  .bio-experience-list li { padding: 1.25rem 0; font-size: var(--fs-lede); }
  .bio-fit-list li { padding: 1.125rem 0; }
  .bio-facilitator-full-img { aspect-ratio: 3/2; }
  .bio-method-callout { padding: 3rem 2.5rem; }
}

/* ── BioDevelopment v5 – Composition Revision (ALI-375) ── */

/* Module 3: Two-column editorial list */
.bio-two-col-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 2rem;
  align-items: start;
}
.bio-col-divider {
  background: rgba(0,0,0,0.1);
  align-self: stretch;
  min-height: 120px;
}
.bio-two-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bio-two-col-list li {
  padding: 0.8rem 0;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-primary);
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
}
.bio-two-col-list li::before {
  content: '—';
  font-size: 0.8125rem;
  opacity: 0.3;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.bio-two-col-list--editorial li {
  font-size: 1.25rem;
  line-height: 1.65;
}
.bio-two-col-list--editorial li::before {
  content: '✦';
  color: var(--color-terracotta);
  opacity: 1;
  font-size: 0.625rem;
}

/* Module 10: Tighter themes section — closer to photo strip */
.bio-themes-section {
  padding: 3.75rem 0;
}

/* Module 11: BioDevelopment Method — attribution note, no rule */
.bio-method-plain {
  max-width: 720px;
}
.bio-method-plain h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}
.bio-method-eyebrow {
  color: var(--color-terracotta);
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.bio-method-plain p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}
.bio-method-plain p:last-child { margin-bottom: 0; }

/* Flat two-column grid list — rows align across columns */
.bio-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 2rem;
}
.bio-col-grid li:nth-child(1) { grid-column: 1; grid-row: 1; }
.bio-col-grid li:nth-child(2) { grid-column: 2; grid-row: 1; }
.bio-col-grid li:nth-child(3) { grid-column: 1; grid-row: 2; }
.bio-col-grid li:nth-child(4) { grid-column: 2; grid-row: 2; }
.bio-col-grid li:nth-child(5) { grid-column: 1; grid-row: 3; }
.bio-col-grid li:nth-child(6) { grid-column: 2; grid-row: 3; }

@media (max-width: 900px) {
  .bio-two-col-list-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bio-col-divider { display: none; }
  .bio-two-col-list li { padding: 0.65rem 0; }
  .bio-themes-section { padding: 3.25rem 0; }
  .bio-col-grid {
    grid-template-columns: 1fr;
  }
  .bio-col-grid li {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* ═══ ALI-466: Homepage hero / intro redesign ═══ */

/* Hero — new headline with selective italic */
.hero-main-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.25rem, 6.5vw, 5.25rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.015em;
  color: var(--color-text-primary);
  max-width: 700px;
  margin: 0;
}
.hero-main-headline em {
  font-style: italic;
}

/* Hero — descriptor */
.hero-descriptor {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 460px;
  margin-top: 1.75rem;
  line-height: 1.8;
}
.hero-descriptor-em {
  display: block;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-top: 0.125rem;
}

/* Hero — desktop height: strip visible near bottom of initial viewport */
.hero-home { min-height: 75vh; }

/* Brand-promise strip — bold positioning statement */
.brand-promise-strip {
  background: #3F7490;
  padding: 1.5rem 2rem;
}
.brand-promise-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.875rem, 3.25vw, 2.625rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  line-height: 1.65;
}

/* Intro section — clear hierarchy, slightly tighter rhythm */
.intro-home-section {
  padding: 2rem 0 1.5rem;
  text-align: center;
}

.intro-home-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.125rem, 3.75vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: var(--color-text-primary);
  max-width: 680px;
  margin: 0 auto 0.875rem;
}

/* Subhead: significantly larger — clearly between headline and body */
.intro-home-subhead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto 1rem;
  line-height: 1.45;
}

.intro-home-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 0.625rem;
  color: var(--color-text-secondary);
}

/* Featured manifesto statement — pull-quote presence */
.intro-manifesto {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.875rem, 3.25vw, 2.625rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text-primary);
  max-width: 560px;
  margin: 1.75rem auto 2rem;
}

.intro-home-closing {
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 0.5rem;
  color: var(--color-text-secondary);
}

/* Mobile — ALI-466 (Round 4 feedback) */
@media (max-width: 768px) {
  /* Mobile hero: reduced height, Lisa centred in frame */
  .hero-home { min-height: 55vh; }
  .hero-bg { background-position: 60% 8%; }

  /* Mobile headline: dominant editorial scale */
  .hero-main-headline { font-size: clamp(3.5rem, 9vw, 4rem); }

  /* Hero CTA: terracotta — not full-width on mobile */
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn-primary { width: auto; padding: 16px 36px; }

  /* Brand-promise strip: keep large, allow wrap */
  .brand-promise-strip { padding: 1.375rem 1.25rem; }
  .brand-promise-inner { font-size: 1.5rem; }

  /* Intro section: compact mobile rhythm */
  .intro-home-section { padding: 1.75rem 0 1.25rem; }
  .intro-manifesto { margin: 1.5rem auto; }
}

/* ══ Community Signup Band — full-width photographic editorial ══ */
.community-band {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  background-image: url('community-signup-bg.jpg');
  background-size: cover;
  background-position: center 58%;
  overflow: hidden;
}
.community-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 20, 0.70);
  pointer-events: none;
}
.community-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
}
.community-band-eyebrow {
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
}
.community-band-heading {
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.community-band-desc {
  color: rgba(255,255,255,0.84);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}
.community-band .email-form {
  max-width: 560px;
  margin: 0 auto;
  justify-content: center;
}
.community-band .email-form input {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 2px;
  color: #fff;
}
.community-band .email-form input::placeholder {
  color: rgba(255,255,255,0.52);
}
.community-band .email-form input:focus {
  border-color: rgba(255,255,255,0.72);
  outline: none;
}
.community-band-fine-print {
  color: rgba(255,255,255,0.50);
  margin-top: 1rem;
  text-align: center;
}
.community-band-fine-print a {
  color: rgba(255,255,255,0.72);
  text-decoration: underline;
}
/* Embedded HighLevel general email signup (ALI-529). Sized to match the
   .email-form max-width so the widget sits where the static input/button
   used to, without visually replacing the photographic band around it. */
.community-band-embed {
  max-width: 480px;
  margin: 0 auto;
  height: 225px;
  overflow: hidden;
}
.community-band-embed iframe { min-height: 239px; }
#get-notified .community-band-embed { margin-top: 0.75rem; }
@media (max-width: 768px) {
  .community-band {
    background-position: center 60%;
    min-height: 460px;
  }
  .community-band .email-form {
    flex-direction: column;
  }
  .community-band .email-form .btn-primary {
    width: 100%;
    text-align: center;
  }
  .community-band-inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* ═══ ALI-471: Round 2 — Art Direction & Typographic Hierarchy ═══ */

/* ── Hero headline: primary visual event ──
   Scale and intentional line break make this the dominant compositional
   element, art-directed with Lisa's portrait on the right. */
.hero-main-headline {
  font-size: clamp(3.25rem, 6.5vw, 5.375rem);
  font-weight: 400;
  line-height: 1.06;
  max-width: 800px;
}

/* Hero descriptor: slight spacing lift to breathe under the larger headline */
.hero-descriptor {
  margin-top: 2.25rem;
  max-width: 480px;
}

/* ── Blue brand-promise strip: 1.65× taller, larger text ──
   Should read as a deliberate brand statement, not a caption. */
.brand-promise-strip {
  padding: 1.875rem 2rem;
}
.brand-promise-inner {
  font-size: clamp(1.125rem, 2.25vw, 1.375rem);
  letter-spacing: 0.04em;
}

/* ── Beige intro: tighter overall, whitespace concentrated ──
   Five visually distinct beats; equal whitespace replaced with
   contrast — generous around editorial statements, tight elsewhere. */
.intro-home-section {
  padding: 4.5rem 0 2.5rem;
}

/* A. Core Belief — elevated, commanding presence */
.intro-home-headline {
  font-size: clamp(2.125rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 auto 3.5rem;
}

/* B. Intimate Recognition — remains quieter; tighten before body */
.intro-home-subhead {
  margin: 0 auto 1rem;
}

/* C. Body paragraphs — tighter between them */
.intro-home-body {
  margin: 0 auto 0.5rem;
}

/* D. Manifesto — the primary editorial moment:
   generous whitespace above and below; large italic serif creates
   a genuine typographic break from everything around it. */
.intro-manifesto {
  font-size: clamp(2.25rem, 4.5vw, 3.375rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: none;
  margin: 4.5rem auto;
}

/* E. Closing — tight, draws section to close without excess space */
.intro-home-closing {
  margin: 0 auto 0.5rem;
}

/* Tighten ornament — reduce bottom before "Ways to Begin" */
.intro-home-section .ornament {
  margin: 1.75rem auto;
}

/* ── Mobile overrides ── */
@media (max-width: 768px) {
  /* Brand-promise: meaningfully taller than current; text stays on natural
     two-line wrap rather than shrinking to force one line */
  .brand-promise-strip { padding: 1.25rem 1.25rem; }
  .brand-promise-inner { font-size: 1.0625rem; letter-spacing: 0.02em; }

  /* Hero: intentionally art-directed mobile crop —
     shift left to reveal more beach/sky/environment; Lisa remains visible
     but no longer dominates the entire first screen */
  .hero-bg { background-position: 55% 10%; }

  /* Mobile hero headline: sized for a clean two-line break at ~390px */
  .hero-main-headline { font-size: clamp(2.5rem, 8vw, 3.25rem); }

  /* Intro section: proportional tightening on mobile */
  .intro-home-section { padding: 3.25rem 0 2rem; }
  .intro-home-headline {
    font-size: clamp(2rem, 5.5vw, 2.5rem);
    margin: 0 auto 2.5rem;
  }
  .intro-manifesto {
    font-size: clamp(1.875rem, 5.5vw, 2.5rem);
    margin: 3.25rem auto;
  }
}

@media (max-width: 400px) {
  .hero-main-headline { font-size: 2.625rem; }
  .brand-promise-inner { font-size: var(--fs-small); }
  .intro-manifesto { font-size: 1.75rem; }
}

/* ═══ ALI-473: Round 2 — Art Director Refinements ═══ */

/* 1. Hero headline: push to visual event (≈92px at 1440px wide) */
.hero-main-headline {
  font-size: clamp(3.25rem, 7vw, 5.75rem);
}

/* 2. Hero composition: headline upper-left, portrait anchors right */
.hero-home {
  align-items: flex-start;
}
.hero-home-content {
  padding-top: clamp(9rem, 15vh, 14rem);
}

/* 3. Brand-promise strip: full 2rem padding, target font per AD */
.brand-promise-strip {
  padding: 2rem 2rem;
}
.brand-promise-inner {
  font-size: clamp(1.125rem, 2vw, 1.4375rem);
}

/* 4. Intro section: primary lever for shorter section */
.intro-home-section {
  padding: 4rem 0 3.5rem;
}

/* 5. Beat A — Core Belief: elevated, commanding scale */
.intro-home-headline {
  font-size: clamp(2.375rem, 4.5vw, 3.5rem);
  margin: 0 auto 0.875rem;
}

/* 6. Beat B — Subhead: elongated pause before body copy */
.intro-home-subhead {
  margin: 0 auto 2.5rem;
}

/* 7. Beat C — Body copy: tighter column, compressed gap between paragraphs */
.intro-home-body {
  max-width: 600px;
  margin: 0 auto 0.625rem;
}

/* 8. Beat D — Manifesto: clearly below headline scale, generous whitespace */
.intro-manifesto {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 400;
  margin: 4rem auto;
}

/* ── Mobile: magazine editorial cover composition ── */
@media (max-width: 768px) {
  /* Text anchors at bottom; photo breathes above */
  .hero-home {
    min-height: 80vh;
    align-items: flex-end;
  }
  .hero-home-content {
    padding-top: 2.5rem;
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }
  /* Pull back to reveal more sky/environment */
  .hero-bg {
    background-position: 55% 15%;
  }
  /* Bottom gradient: subtle, preserves airy natural quality */
  .hero-bg::after {
    background: linear-gradient(to top,
      rgba(245,240,232,0.85) 0%,
      rgba(245,240,232,0.4) 35%,
      rgba(245,240,232,0.0) 60%
    );
  }
  /* Strip: natural wrap at 390px; slightly more vertical room */
  .brand-promise-strip {
    padding: 2rem 1.25rem;
  }
  /* Beat A mobile: preserve tight margin to subhead */
  .intro-home-headline {
    margin: 0 auto 0.875rem;
  }
  /* Beat B mobile: slightly reduced pause, still breathes */
  .intro-home-subhead {
    margin: 0 auto 1.75rem;
  }
  /* Beat D mobile: proportional reduction */
  .intro-manifesto {
    margin: 3rem auto;
  }
}

@media (max-width: 400px) {
  .hero-main-headline { font-size: 2.75rem; }
}

/* ═══ ALI-466 Round 4 — Lisa client specification (final) ═══ */

/* Brand-promise strip: Alive Studio blue, substantially larger type */
.brand-promise-strip {
  background: #3F7490;
  padding: 1.5rem 2rem;
}
.brand-promise-inner {
  font-size: clamp(1.875rem, 3.25vw, 2.625rem);
}

/* Intro: tighter rhythm, modest headline strengthening */
.intro-home-section { padding: 2rem 0 1.5rem; }
.intro-home-headline {
  font-size: clamp(2.5rem, 4.75vw, 3.625rem);
  margin: 0 auto 0.875rem;
}
.intro-home-subhead { margin: 0 auto 1rem; }
.intro-manifesto { margin: 1.75rem auto 2rem; }

/* Mobile: 55vh hero, Lisa centred in frame, dominant headline */
@media (max-width: 768px) {
  .hero-home { min-height: 55vh; }
  .hero-bg { background-position: 60% 8%; }
  .hero-main-headline { font-size: clamp(3.5rem, 9vw, 4rem); }
  .brand-promise-strip { padding: 1.375rem 1.25rem; }
  .brand-promise-inner { font-size: 1.5rem; }
  .intro-home-section { padding: 1.75rem 0 1.25rem; }
  .intro-home-subhead { margin: 0 auto 0.875rem; }
  .intro-manifesto { margin: 1.5rem auto; }
}

@media (max-width: 400px) {
  .hero-main-headline { font-size: 3.5rem; }
}

/* ═══ Round 5 — Art Director Final Polish ═══ */

/* Brand-promise strip: reduced to fit all three phrases on one desktop line
   while remaining substantially larger than the original "caption" size.
   26px max (vs 22px "too small" and 42px "wrapping") — calibrated midpoint. */
.brand-promise-inner {
  font-size: clamp(1.375rem, 2.25vw, 1.625rem);
  letter-spacing: 0.015em;
}

/* Intro section: restore strategic whitespace.
   The Round 4 compressed values (2rem top, 1.75rem manifesto margin) are
   too tight — the manifesto loses its editorial presence at this density.
   Concentrate generous whitespace around the two major editorial beats:
   the primary headline and the manifesto statement. */
.intro-home-section  { padding: 3rem 0 2.5rem; }
.intro-home-headline { margin: 0 auto 1.5rem; }
.intro-home-subhead  { margin: 0 auto 1.25rem; }
.intro-manifesto     { margin: 2.75rem auto 3rem; }

@media (max-width: 768px) {
  /* Hero: pull Lisa left in the viewport by shifting the visible window right —
     shows more dune/environment to her right, giving her breathing room
     from the right edge while maintaining asymmetric editorial composition. */
  .hero-bg { background-position: 65% 8%; }

  /* Brand-promise: mobile wrap is intentional; keep generous type */
  .brand-promise-inner { font-size: 1.375rem; letter-spacing: 0.01em; }

  /* Intro: proportional mobile spacing */
  .intro-home-section { padding: 2.5rem 0 2rem; }
  .intro-manifesto    { margin: 2.25rem auto; }
}

@media (max-width: 400px) {
  .brand-promise-inner { font-size: 1.25rem; }
}

/* Intro body/closing: left-aligned reading column at all viewports —
   headlines and the serif pull-line stay centered. */
.intro-home-body,
.intro-home-closing {
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── WAYS TO BEGIN ───────────────────────────────────── */

.wtb-section {
  padding: 3.5rem 0 3.5rem;
  background: var(--color-surface);
}

/* Events-only: What Awaits sits on ivory so the two linen bands
   (email form, closing CTA) frame it — C11 */
.wtb-section--ivory {
  background: var(--color-background);
}

.wtb-section .container {
  max-width: 1360px;
}

.wtb-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.wtb-header h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.wtb-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  column-gap: 3rem;
  align-items: start;
}

.wtb-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.wtb-item:nth-child(2) { grid-column: 2; grid-row: 1; }

.wtb-item--landscape {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 55fr 45fr;
  column-gap: 3rem;
  align-items: center;
  margin-top: 2.125rem;
  padding-top: 0;
}

.wtb-img-wrap {
  position: relative;
  overflow: hidden;
}

.wtb-item:nth-child(1) .wtb-img {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center center;
  width: 100%;
  transition: transform 0.6s ease;
}

.wtb-item:nth-child(2) .wtb-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center 15%;
  width: 100%;
  transition: transform 0.6s ease;
}

.wtb-item--landscape .wtb-img {
  aspect-ratio: 21/9;
  background-size: cover;
  background-position: center 55%;
  width: 100%;
  transition: transform 0.6s ease;
}

.wtb-img-wrap:hover .wtb-img { transform: scale(1.025); }


.wtb-text { padding-top: 1rem; }

.wtb-item--landscape .wtb-text {
  padding-top: 0;
  padding-left: 1rem;
}

.wtb-service {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.625rem;
  border-bottom: none;
  padding-bottom: 0;
}

.wtb-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 2.2vw, 2.375rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.wtb-item:nth-child(1) .wtb-headline {
  font-size: clamp(2rem, 2.6vw, 2.75rem);
}

.wtb-item--landscape .wtb-headline {
  font-size: clamp(2.125rem, 2.8vw, 3rem);
  margin-bottom: 1.25rem;
}

.wtb-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .wtb-grid { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
  .wtb-item--landscape { grid-template-columns: 1fr; column-gap: 0; }
  .wtb-item--landscape .wtb-img { aspect-ratio: 16/9; }
  .wtb-item--landscape .wtb-text { padding-top: 1.25rem; padding-left: 0; }
}

@media (max-width: 768px) {
  .wtb-section { padding: 3.5rem 0 3rem; }
  .wtb-section .container { max-width: none; }
  .wtb-grid { grid-template-columns: 1fr; column-gap: 0; align-items: stretch; }
  .wtb-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .wtb-item:nth-child(2) { grid-column: 1; grid-row: 2; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
  .wtb-item--landscape { grid-column: 1; grid-row: 3; grid-template-columns: 1fr; margin-top: 2rem; padding-top: 2rem; }
  .wtb-item--landscape .wtb-img { aspect-ratio: 3/2; }
  .wtb-item--landscape .wtb-text { padding-top: 1.25rem; padding-left: 0; }
  .wtb-item:nth-child(1) .wtb-img,
  .wtb-item:nth-child(2) .wtb-img { aspect-ratio: 3/2; }
  .wtb-item:nth-child(1) .wtb-headline,
  .wtb-item--landscape .wtb-headline { font-size: clamp(1.75rem, 5.5vw, 2.125rem); }
  .wtb-header { margin-bottom: 2.5rem; }
  .wtb-text { padding-top: 1rem; }
}

/* ── Clarity & Alignment Session — Hero → CTA Revision (ALI-491/492) ── */

/* Hero: warm editorial photography with a left-side gradient for text legibility,
   restrained shallow height instead of a flat dark overlay */
.clarity-hero {
  position: relative;
  height: 68vh;
  min-height: 600px;
  max-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
/* C4: faces sit in the clear upper field at 1280–1512; title block anchors
   bottom-left over the couch with a bottom scrim (offering-hero language) */
.clarity-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('clarity-hero.jpg');
  background-size: cover;
  background-position: center 45%;
}
.clarity-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,14,10,0.66) 0%,
    rgba(20,14,10,0.46) 34%,
    rgba(20,14,10,0.12) 68%,
    rgba(20,14,10,0) 100%
  );
}
.clarity-hero-content {
  position: relative;
  z-index: 2;
  padding: 3.75rem 3rem 3rem 6.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.clarity-hero-content .eyebrow { color: rgba(255,255,255,0.88); }
.clarity-hero-content h1 { color: var(--color-white); max-width: 560px; text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.clarity-hero-content .hero-descriptor { color: rgba(255,255,255,0.92); max-width: 500px; }
.clarity-hero-content .hero-meta { color: rgba(255,255,255,0.78); margin-top: 1rem; font-size: 0.9375rem; letter-spacing: 0.04em; }
.clarity-hero-content .clarity-hero-cta { display: inline-block; margin-top: 1.875rem; }
/* C21 (replaces the C4 1281–1511 padding band): one composition at every
   desktop width. Cover scales this image by width, so both figures' positions
   are a fixed fraction of vw — the text channel is therefore defined in vw
   too and tracks the figures at 1280/1366/1440/1512 alike. The 115% zoom
   spreads the figures slightly outward to widen the channel; the headline is
   tuned so it keeps ≥1.5 cap-heights of air to both faces. */
@media (min-width: 1025px) {
  .clarity-hero-bg { background-size: 115% auto; background-position: 46% 34%; }
  .clarity-hero-content {
    max-width: none;
    margin: 0;
    padding: 3.75rem 3rem 3rem 30.5vw;
  }
  /* 10em holds the two-line break ("Clarity & Alignment" / "Session") at every
     width — a single line at 1280 would run the tail into Lisa's hair */
  .clarity-hero-content h1 { font-size: clamp(2.625rem, 3.4vw, 3.375rem); max-width: 10em; }
}

/* Wide container variant for the Clarity page modules — text columns get more
   horizontal room so copy wraps less and sections read shorter. */
.container.container.container--wide { max-width: 1360px; }

/* Module 1 "slow down" + Module 3 "Real-world strategy" — reuse .two-col split, no color-block backgrounds */
.clarity-module { padding: 3.5rem 0; }
.clarity-module h2 { margin-top: 0.5rem; font-family: 'Cormorant Garamond', Georgia, serif; }
.clarity-module .two-col-text p { margin-top: 1.25rem; font-size: 1.0625rem; line-height: 1.8; max-width: 560px; }
.clarity-module .two-col-text .btn-primary { margin-top: 2rem; }
/* Module 1: portrait ~10% narrower than before, text column widened to ~60%
   of the row so the copy runs across more of the section and it reads shorter. */
.clarity-slowdown { grid-template-columns: 0.62fr 1fr; gap: 3.5rem; }
.clarity-slowdown .two-col-img.portrait { aspect-ratio: 4/5; }

/* Module 2 "What we work on": single headline, existing two-column bullet
   treatment used elsewhere on the site (bio-two-col-list-wrap) — no image,
   no panel background, no cards. */
.clarity-work-list-wrap { margin-top: 2.5rem; }

/* Module 3 "Real-world strategy": copy left / journaling photo right, copy
   given more width than the photo, compact vertical padding since it now
   sits directly beneath "What we work on" with no banner between them. */
.clarity-strategy { grid-template-columns: 3fr 2fr; gap: 4rem; align-items: center; }
.clarity-strategy-img { aspect-ratio: 4/5; margin-top: 0; }
.clarity-strategy .two-col-text p { max-width: 640px; }
.clarity-strategy-section { padding: 2rem 0 3.5rem; }

/* CTA rebuild: compact full-bleed dark blue banner (same token as the final
   BioDevelopment CTA, #4A6880), no photo. Light/cream type for contrast. */
.clarity-invite {
  background: #4A6880;
  padding: 3rem 0 3.75rem;
  text-align: center;
}
.clarity-invite-content { max-width: 560px; margin: 0 auto; }
.clarity-invite-content h2 { margin-top: 0; color: var(--color-white); }
.clarity-invite-content p { margin-top: 1.25rem; font-size: 1.0625rem; line-height: 1.8; color: rgba(255,255,255,0.85); max-width: 480px; margin-left: auto; margin-right: auto; }
.clarity-invite-content .btn-inverse { margin-top: 2rem; }

/* Embedded HighLevel Clarity & Alignment booking calendar (ALI-529).
   Height is left fluid — the HighLevel embed script (form_embed.js) resizes
   the iframe via postMessage once the calendar loads; min-height only
   prevents a collapsed/empty-looking box before that resize fires. */
.clarity-booking { text-align: center; }
.clarity-booking-embed {
  margin-top: 1.25rem;
  min-height: 560px;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(46, 42, 37, 0.10);
}
.clarity-booking-embed iframe { display: block; }
.clarity-booking-privacy { margin-top: 1.25rem; font-size: var(--fs-caption); }
.clarity-booking-privacy a { color: var(--color-text-secondary); text-decoration: underline; }
@media (max-width: 768px) {
  .clarity-booking-embed { min-height: 640px; }
}

/* Dedicated Clarity & Alignment booking subpage (ALI-529 correction):
   the embed now lives on its own page instead of the main Clarity page,
   so it needs its own top padding + a way back to the main page. */
.clarity-booking-page { padding-top: 3rem; padding-bottom: 5rem; }
.clarity-booking-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  text-decoration: none;
}
.clarity-booking-back:hover { color: var(--color-accent); }
/* No <h1> on this page (ALI-533 wake comment): the embed's default
   margin-top would double up with the back link's margin-bottom, so
   collapse it here — the back link's margin is the sole spacer. */
.clarity-booking-page .clarity-booking-embed { margin-top: 0; }
@media (max-width: 640px) {
  .clarity-booking-page { padding-top: 2.5rem; }
}

/* Aliveness Coaching Journey closing CTA (ALI-511): bespoke full-bleed
   cream editorial closing module (board direction, Aug 26 — supersedes the
   earlier full-bleed coastal-photo treatment). No photo, no overlay: same
   --color-surface token as the Real-World Strategy module above, centered
   restrained-width copy transitioning straight into the dark footer.
   Aug 26 hierarchy fix: the italic question is the module's real headline
   (h2-level, matches .clarity-invite h2's pattern) placed before the body
   copy; the body copy is demoted to supporting scale, matching
   .clarity-invite-content p's size/max-width so the two closing CTAs on
   this page read consistently. */
.clarity-journey-closing-cta {
  padding: 5rem 0;
}
.clarity-journey-closing-cta-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.clarity-journey-closing-cta-content .clarity-journey-closing-cta-question {
  margin-top: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--color-text-primary);
}
.clarity-journey-closing-cta-content .clarity-journey-closing-cta-body {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.clarity-journey-closing-cta-content .btn-primary { margin-top: 2rem; }

/* Clarity page only, desktop: taller than the shared .wwm-coaching-journey-banner
   default so it reads as the opening of a new chapter, not a thin transition
   strip. Content stays vertically centered via flex. Extra top padding
   (vs. the shared 5rem/3rem defaults) replaces the beige spacer formerly
   sitting between this banner and the dark blue CTA above it, so the section
   still reads as spacious with the spacer gone. */
@media (min-width: 901px) {
  #coaching-journey.wwm-coaching-journey-banner {
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem 0 3.5rem;
    /* C24 (was C16: 0% 27% at 118% size): taller band, own y — same fixed-px
       window as the Events-hero reference */
    background-position: 0% 34%;
  }
  #coaching-journey .wwm-events-banner-content {
    padding: 0 2rem;
  }
}

@media (max-width: 900px) {
  .clarity-strategy { grid-template-columns: 1fr; }
  .clarity-strategy-img { aspect-ratio: 16/10; margin-top: 2.5rem; }
  /* C16 cycle 3: this content div has no .container (unlike wwm), so give it
     its own side inset — the headline must never set edge-to-edge */
  #coaching-journey .wwm-events-banner-content { padding: 0 1.5rem; }
}

@media (max-width: 768px) {
  .clarity-hero { height: auto; min-height: 480px; padding: 7.5rem 0 3.5rem; align-items: flex-end; }
  .clarity-hero-bg::after {
    background: linear-gradient(to top,
      rgba(20,14,10,0.72) 0%,
      rgba(20,14,10,0.55) 40%,
      rgba(20,14,10,0.15) 75%,
      rgba(20,14,10,0) 100%
    );
  }
  .clarity-hero-content { padding: 0 1.5rem; }
  .clarity-module { padding: 2.5rem 0; }
  .clarity-slowdown { grid-template-columns: 1fr; }
  .clarity-invite { padding: 3rem 0 3.5rem; }
  .clarity-journey-closing-cta { padding: 3.5rem 0; }
  /* C16: face-forward mobile pattern — image field above, text below the chin
     (this also keeps the breathing room the removed beige spacer provided). */
  #coaching-journey.wwm-coaching-journey-banner { padding-top: 24rem; min-height: 480px; }
}

/* ── Legal / Policy Content (Privacy Policy, etc.) ── */
.legal-content { padding: 2rem 0 7rem; }
.legal-content .legal-updated {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}
.legal-content h2 {
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  font-weight: 500;
  margin: 3.25rem 0 1.25rem;
  padding-top: 0.5rem;
  scroll-margin-top: 6rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: var(--fs-heading-2);
  font-weight: 500;
  margin: 2rem 0 1rem;
  scroll-margin-top: 6rem;
}
.legal-content p { margin-bottom: 1.25rem; font-size: 1rem; color: var(--color-text-secondary); }
.legal-content p strong, .legal-content li strong { color: var(--color-text-primary); font-weight: 500; }
.legal-content ul, .legal-content ol { margin: 0 0 1.5rem 1.5rem; }
.legal-content li { margin-bottom: 0.75rem; color: var(--color-text-secondary); line-height: 1.75; }
.legal-content a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--color-accent-hover); }
.legal-content hr { border: none; border-top: 1px solid var(--color-border); margin: 2.5rem 0; }
.legal-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin-bottom: 3rem;
}
.legal-content .legal-quicknav a.text-link {
  color: var(--color-text-primary);
  font-size: 0.9375rem;
}
.legal-toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  margin-bottom: 3.5rem;
}
.legal-toc p { font-family: 'Inter', sans-serif; font-weight: 500; color: var(--color-text-primary); margin-bottom: 1rem; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.08em; }
.legal-toc ol { margin: 0; padding-left: 1.25rem; columns: 1; }
.legal-toc li { margin-bottom: 0.6rem; font-size: 0.9375rem; }
.legal-table-wrap { overflow-x: auto; margin: 0 0 1.75rem; border: 1px solid var(--color-border); border-radius: 8px; }
.legal-content table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.9375rem; }
.legal-content th, .legal-content td { text-align: left; padding: 0.875rem 1rem; border-bottom: 1px solid var(--color-border); vertical-align: top; color: var(--color-text-secondary); }
.legal-content th { font-family: 'Inter', sans-serif; font-weight: 600; color: var(--color-text-primary); background: var(--color-surface); }
.legal-content tr:last-child td { border-bottom: none; }
.legal-attribution { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border); font-size: var(--fs-caption); color: var(--color-text-secondary); }

@media (max-width: 640px) {
  .legal-content { padding: 1rem 0 4.5rem; }
  .legal-toc { padding: 1.5rem 1.5rem; }
}

/* ── Phase C cycle 2 (ALI-523 C12/C14) ───────────────────────────────── */
/* C12 candidate B: taller mobile hero + tightened two-line type lockup —
   face reads forehead→chin; the headline begins below the shoulders */
@media (max-width: 768px) {
  /* C33 candidate B (cycle 8; was C31-b: 62% center / 2.9375rem / 4.5rem
     bottom pad): Lisa's centered-subject refinement. Cover on a portrait
     window crops only horizontally (image height fills exactly, so
     y-position is inert and the sky-to-sand vertical story is preserved);
     70% x re-centers her figure with dune air on both sides. Fluid headline
     grows 47px→53px across 360→414 — 47px is the two-line ceiling at 360,
     so a fixed step would break the lockup there. Block lifted via 6.5rem
     bottom pad (:2041 area) with both ivory scrims re-tuned to follow.
     Cand A: 68% x / cap 3.25rem / 6rem. Cand C: 72% x / cap 3.3125rem / 6.75rem. */
  .hero-home { min-height: 93svh; }
  .hero-bg { background-size: cover; background-position: 70% center; }
  .hero-main-headline { font-size: clamp(2.9375rem, 11.1vw + 7px, 3.3125rem); line-height: 1.06; }
  .hero-descriptor { margin-top: 1rem; }
  .hero-ctas { margin-top: 1.5rem; }
}

/* C32 candidate B (cycle 7, replaces the C27 pans — was ≤768: 680px band /
   cover / 8% 50%; ≤480: 780px band / auto 120% / 6% 38%): stacked
   story-format hero. clarity-hero.jpg is 1600×1042 landscape with both
   figures spanning ≈ x 3–82%, so no tall portrait window can hold Lisa AND
   the client. On phones/tablets the photograph gets its own full-width 3:2
   landscape band (effectively the full frame: both figures, couch, mirror,
   lamp glow) at the top of the viewport, and the type block sits below on a
   solid field — #4A4241 is the current rendered overlay bottom
   (rgba(20,14,10,.72) over the photo), so the deep-hero language carries
   across breakpoints. Type hierarchy/scale unchanged; overlay hidden — no
   type sits on the photo at any width ≤768. Desktop ≥1025 (C21) untouched. */
@media (max-width: 768px) {
  .clarity-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .clarity-hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: 45% 45%;
  }
  .clarity-hero-bg::after { display: none; }
  .clarity-hero-content {
    position: relative;
    padding: 2.75rem 1.5rem 3rem;
    background: #4A4241;
  }
}
