/* ============================================================
   Yema Retreats — shared stylesheet
   Warm, earthy, organic. One intentional palette, no frameworks.
   ============================================================ */

/* -------------------- 1. Design tokens -------------------- */
:root {
  /* Warm earthy palette */
  --ivory:        #F5EFE4;   /* page background — soft warm ivory */
  --cream:        #EFE7D6;   /* section alt background */
  --sand:         #D9C8A7;   /* subtle fill / dividers */
  --clay:         #7F8471;   /* primary accent — muted sage */
  --clay-deep:    #C1BEAB;   /* hover state — soft oat */
  --sage:         #7C8A6F;   /* secondary accent — muted sage */
  --sage-deep:    #5F6D56;
  --ink:          #2B2420;   /* body text — warm near-black */
  --ink-soft:     #5C4F45;   /* secondary text */
  --ink-mute:     #8A7A6D;   /* tertiary / captions */
  --line:         #D9CDB7;   /* hairlines */
  --paper:        #FBF7EE;   /* card background */
  --mist:         #E6E2D3;   /* pale moss companion — ties sections to the moss one */

  /* Typography */
  --font-serif:   'Antic Didone', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-nav:     'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing & layout */
  --max:          1180px;
  --narrow:       760px;
  --gutter:       24px;

  /* Shadows & transitions */
  --shadow-soft:  0 10px 40px rgba(43, 36, 32, 0.08);
  --shadow-hover: 0 14px 50px rgba(43, 36, 32, 0.14);
  --ease:         cubic-bezier(.2,.7,.3,1);
}

/* -------------------- 2. Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--clay); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--clay-deep); }
ul { padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* -------------------- 3. Typography -------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem); line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 2.4vw + 1rem, 2.8rem); }
h3 { font-size: clamp(1.35rem, 1.2vw + 1rem, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
p  { margin: 0 0 1.1em; max-width: 65ch; }
.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1vw + 1rem, 1.75rem);
  line-height: 1.45;
  color: var(--ink-soft);
}
.eyebrow {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  display: inline-block;
}
blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink-soft);
  border-left: 2px solid var(--clay);
  padding: .4rem 0 .4rem 1.4rem;
  margin: 2rem 0;
}

/* -------------------- 4. Layout -------------------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--mist  { background: var(--mist); }
/* Stone / moss texture background — pulled from YEMA VISUAL, rotated
   horizontal and warm-toned. A soft cream wash keeps body text legible
   while letting the texture breathe through. */
.section--stone {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(241, 236, 224, 0.42), rgba(241, 236, 224, 0.42)),
    url('media/textures/stone-moss.jpg') center / cover no-repeat;
  background-attachment: scroll;
}
.section--stone .eyebrow { color: var(--ink); }
.section--stone h2 { color: var(--ink); }
.section--stone .process-step__title { color: var(--ink); }
.section--stone .process-step__desc  { color: var(--ink-soft); }
/* Keep the step markers punching out cleanly against the textured background —
   a slightly stronger shadow lifts them off the stone. */
.section--stone .process-step__marker {
  background: var(--paper);
  box-shadow: 0 1px 3px rgba(40, 38, 32, 0.15);
}
/* Texture3 background for the Safety section — a warm paper-tinted wash
   over the photographed texture keeps the long list legible while the
   organic surface gives the section its own atmosphere. */
.section--texture {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(251, 247, 238, 0.78), rgba(251, 247, 238, 0.82)),
    url('media/about/texture3.jpg') center / cover no-repeat;
}
.section--texture h2,
.section--texture .eyebrow { color: var(--ink); }
.section--texture .values-list strong { color: var(--ink); }
.section--texture .callout--draft { background: rgba(251, 247, 238, 0.92); }

/* Reduced vertical padding for sections that feel airy with short content. */
.section--tight { padding: clamp(2rem, 4.5vw, 4rem) 0; }
.section--moss  {
  background: #969481;
  color: var(--paper);
  /* Tighter top padding — the hero already provides breathing room above,
     so the moss intro shouldn't open with a big empty band. Generous bottom
     padding gives the ornament room to sit between text and section end. */
  padding-top: clamp(2.25rem, 4.5vw, 3.75rem);
  padding-bottom: clamp(4.5rem, 7.5vw, 6.25rem);
}
.section--moss .lead {
  color: var(--paper);
  /* Middle ground between the previous (too big) and last (too small) sizes. */
  font-size: clamp(1.1rem, 0.7vw + 0.95rem, 1.35rem);
  line-height: 1.55;
}
.section--moss p { color: rgba(251, 247, 238, 0.92); }
.section--moss h2, .section--moss h3 { color: var(--paper); }
.section--moss .eyebrow { color: var(--sand); }

/* Deeper moss — same family as .section--moss but a few shades darker. Used
   for blocks that should sit heavier on the page (e.g. the Retreats invite).
   Moderate padding — shorter than default but not as tight as --tight. */
.section--moss-deep {
  background: #76745D;
  color: var(--paper);
  /* Slightly extra bottom padding so the small closing ornament has room
     to sit between the waitlist content and the section edge. */
  padding: clamp(2.75rem, 5.5vw, 4.75rem) 0 clamp(3rem, 6vw, 4.75rem);
}
.section--moss-deep .lead,
.section--moss-deep p { color: rgba(251, 247, 238, 0.92); }
.section--moss-deep h2,
.section--moss-deep h3 { color: var(--paper); }
.section--moss-deep .eyebrow { color: var(--sand); }

/* Waiting list — an elongated horizontal invitation bar sitting below the
   section header. Message on the left, CTA button on the right. */
.waitlist-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 2.5vw, 1.9rem) clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(251, 247, 238, 0.28);
  border-radius: 14px;
  background: rgba(251, 247, 238, 0.05);
  max-width: 960px;
  margin: 2rem auto 0;
}
.waitlist-bar p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.55vw + 0.85rem, 1.18rem);
  line-height: 1.5;
  color: var(--paper);
}
.waitlist-bar .btn { flex: 0 0 auto; }
@media (max-width: 720px) {
  .waitlist-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    border-radius: 12px;
  }
  .waitlist-bar .btn { justify-self: center; }
}

/* Tree-&-roots background — used under the testimonials. A moderate dark
   wash sits over the photo so white copy reads clearly while the texture
   stays visible behind the semi-transparent testimonial cards. */
.section--roots {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(22, 24, 20, 0.38), rgba(22, 24, 20, 0.38)),
    url('media/textures/tree-roots.jpg') center / cover no-repeat;
  padding: clamp(3rem, 6vw, 5.25rem) 0;
}
.section--roots .eyebrow { color: var(--paper); opacity: .92; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.section--roots h2       { color: var(--paper); text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.section--roots .lead    { color: rgba(251, 247, 238, 0.95); text-shadow: 0 1px 3px rgba(0,0,0,.4); }
/* Semi-transparent testimonial cards — photo reads through, copy stays legible. */
.section--roots .testimonial {
  background: rgba(20, 22, 18, 0.42);
  border: 1px solid rgba(251, 247, 238, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.section--roots .testimonial blockquote { color: var(--paper); }
.section--roots .testimonial .attribution { color: rgba(251, 247, 238, 0.78); }

/* ----- Policy teaser — IMG_4047 background + justice portrait on the right ----- */
/* A soft warm-paper wash lifts the background so text stays readable while the
   texture still reads through. The layout is a two-column split: copy left,
   portrait right. On narrow screens it stacks naturally. */
.section--policy {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(251, 247, 238, 0.65), rgba(251, 247, 238, 0.65)),
    url('media/textures/policy-bg.jpg') center / cover no-repeat;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
.policy-split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.75rem, 3.5vw, 3.25rem);
  align-items: center;
}
.policy-split__text {
  max-width: 560px;
}
.policy-split__text .eyebrow { color: var(--clay); }
.policy-split__text h1,
.policy-split__text h2 {
  font-size: clamp(1.55rem, 1.9vw + 0.6rem, 2.35rem);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
/* Hero variant — used as the top section of the policy page */
.section--policy--hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}
.section--policy--hero .policy-split__text h1 {
  font-size: clamp(1.85rem, 2.4vw + 0.7rem, 2.9rem);
}
.policy-split__text .lead {
  font-size: clamp(0.98rem, 0.5vw + 0.86rem, 1.1rem);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.policy-split__image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 28, 23, 0.18);
  max-height: clamp(300px, 32vw, 400px);
  margin-left: auto;
  width: 100%;
}
.policy-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Hover darker than rest state — override the global .btn--text which goes lighter */
.policy-split__text .btn--text:hover {
  color: #4E5444;
  border-color: #4E5444;
}
@media (max-width: 760px) {
  .policy-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .policy-split__image { aspect-ratio: 4 / 3; max-width: 520px; max-height: none; margin-left: 0; }
}

/* Decorative ornament — a small motif placed at the bottom of text blocks.
   The PNG is pre-tinted to var(--paper) so it matches the moss-section text.
   The ornament is absolutely positioned inside the moss section so it sits
   vertically centered within the section's bottom padding — without adding
   any height to the section itself. */
.section--moss { position: relative; }
.ornament {
  display: block;
  width: clamp(64px, 7vw, 92px);
  height: auto;
  opacity: .9;
  user-select: none;
  pointer-events: none;
}
.section--moss > .ornament {
  position: absolute;
  left: 50%;
  /* Ornament sits a touch above the midpoint of the section's bottom padding,
     for equal visual breathing room from the last line of text and the
     section's bottom edge. */
  bottom: calc(clamp(4.5rem, 7.5vw, 6.25rem) / 2 + 0.75rem);
  transform: translate(-50%, 50%);
}
/* Working-with-us ornament — ink-tinted motif placed at the bottom of the
   cream section. Sized to match the moss-section ornament for visual rhythm
   across the page. */
.section--cream {
  position: relative;
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}
.section--cream > .ornament {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 2.5vw, 2rem);
  transform: translateX(-50%);
  width: clamp(64px, 7vw, 92px);
  height: auto;
  opacity: .82;
}

/* Retreats (moss-deep) ornament — paper-tinted motif at the bottom of the
   closing Retreats section. Width matches the moss-section ornament so all
   three page motifs read at the same scale. */
.section--moss-deep { position: relative; }
.section--moss-deep > .ornament {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 2vw, 1.75rem);
  transform: translateX(-50%);
  width: clamp(64px, 7vw, 92px);
  height: auto;
  opacity: .85;
}

/* -------------------- 5. Header / nav -------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: flex-start;
  /* Span the full viewport so the menu reaches the right edge,
     but keep the brand (Yema) anchored at the left edge of the
     old max-width container. On viewports narrower than --max,
     both sides fall back to the standard gutter. */
  max-width: none;
  margin: 0;
  padding: 18px var(--gutter) 18px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  gap: 28px;
}
/* Push everything after the brand (nav links + language toggle + CTA)
   to the far right of the header. */
.nav-wrap .nav-links { margin-left: auto; }
.brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  /* Letter-spacing adds trailing space after the final glyph; pull it
     back so the whole word sits flush on the left gutter. */
  margin-right: -0.35em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.nav-links {
  display: flex; gap: 28px; list-style: none; padding: 0; margin: 0;
  font-family: var(--font-nav);
  font-size: 0.92rem;
  letter-spacing: .04em;
}
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { color: var(--clay); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  letter-spacing: .12em;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.lang-toggle:hover { border-color: var(--clay); color: var(--clay); }

/* Nav CTA — small pill-ish button sitting in the header, next to the lang toggle. */
.nav-cta {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  letter-spacing: .08em;
  color: var(--paper);
  background: var(--clay);
  border: 1px solid var(--clay);
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--clay-deep); border-color: var(--clay-deep); color: var(--paper); }

/* Mobile menu */
.menu-toggle { display: none; padding: 6px; }
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0;
  transition: transform .3s var(--ease);
}
@media (max-width: 820px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  }
  .nav-links.open { max-height: 500px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 18px var(--gutter); }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; } /* hide on mobile; Contact link already in the mobile menu */
  /* Push the FR/EN toggle (inside .nav-right) all the way to the right edge,
     after the hamburger. The hamburger gets margin-left: auto above which
     creates the gap; nav-right then sits flush right at the end of the row. */
  .nav-right { gap: 12px; }
}

/* -------------------- 6. Hero -------------------- */
.hero {
  padding: clamp(4rem, 10vw, 9rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(184, 109, 79, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 60% at 15% 80%, rgba(124, 138, 111, 0.08), transparent 60%),
    var(--ivory);
}
.hero-content { max-width: 880px; }
/* Compact hero variant — minimal vertical padding for utility pages
   like Contact where the form is the focus. */
.hero--compact { padding: clamp(1rem, 2.5vw, 2.25rem) 0 clamp(0.5rem, 1.25vw, 1.25rem); }
.hero--compact h1 { font-size: clamp(1.45rem, 2vw + 0.55rem, 2.25rem); }
.hero--compact .lead { margin-top: 0.85rem; }

/* Contact hero — dark marbled background with light text overlay. */
.hero--contact {
  position: relative;
  isolation: isolate;
  background:
    /* darken slightly for consistent text legibility regardless of marble area */
    linear-gradient(rgba(30, 35, 25, 0.42), rgba(30, 35, 25, 0.42)),
    url('media/contact/hero-marble.jpg') center / cover no-repeat;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
}
.hero--contact .eyebrow {
  color: var(--sand);
}
.hero--contact h1 {
  color: var(--paper);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.hero--contact .lead {
  color: rgba(251, 247, 238, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.hero h1 {
  font-size: clamp(1.75rem, 3vw + 0.6rem, 3.1rem);
  line-height: 1.1;
}
.hero .lead { margin-top: 1.5rem; max-width: 660px; }
.hero-ctas { margin-top: 2.5rem; display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Video hero variant --- */
.hero--video {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  isolation: isolate;
}
.hero--video .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero--video::after {
  /* Warm dark overlay so text stays legible over any footage */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 36, 32, 0.25) 0%, rgba(43, 36, 32, 0.7) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(184, 109, 79, 0.25), transparent 60%);
  z-index: -1;
}
.hero--video .eyebrow { color: var(--sand); }
.hero--video h1 { color: var(--paper); }
.hero--video .lead { color: rgba(251, 247, 238, 0.88); }
/* Force the .container inside the flex hero to stretch to its max-width.
   Without width:100%, flex items with max-width shrink to content size,
   which makes `margin: 0 auto` center a narrower box — pushing the hero
   text visibly to the right of the header brand. */
.hero--video > .container { width: 100%; }
.hero--video .btn--ghost {
  color: var(--paper);
  border-color: rgba(251, 247, 238, 0.75);
}
.hero--video .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* Respect users who prefer reduced motion — pause video, show poster */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* --- Photo hero variant (about page) ---
   Full-bleed vintage-toned photograph with title text overlaid. The image
   itself is positioned absolutely beneath a light scrim so the title
   remains legible without dimming the photo. */
.hero--photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  /* The hero now mirrors the source banner aspect (~3.4:1). Height scales
     with viewport width so the cloud framing stays consistent across
     screen sizes. */
  aspect-ratio: 24 / 7;
  min-height: 240px;
  max-height: 540px;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  isolation: isolate;
}
.hero--photo .hero-photo__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Image is pre-cropped to a banner aspect with the cloud already in the
     upper portion of the frame, so simple centering reads correctly. */
  object-position: center center;
  z-index: -2;
}
.hero--photo::after {
  /* Light scrim — only enough to keep the title legible without dimming
     the photograph. */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 36, 32, 0) 40%, rgba(43, 36, 32, 0.28) 80%, rgba(43, 36, 32, 0.4) 100%);
  z-index: -1;
}
.hero--photo > .container { width: 100%; }
.hero-content--photo { max-width: 820px; }
.hero--photo .eyebrow { color: var(--sand); }
.hero--photo h1 {
  color: var(--paper);
  margin-top: 0.6rem;
  font-size: clamp(1.7rem, 2.6vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* --- Vision section — textured background + semi-transparent dark-glass box ---
   Mirrors the section--roots testimonial card treatment: the texture reads
   through the card, with a thin paper-tinted border and a soft backdrop blur
   to keep the long-form copy legible. */
.section--vision {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(120, 118, 102, 0.22), rgba(120, 118, 102, 0.22)),
    url('media/about/vision-bg.jpg') center/cover no-repeat;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.vision-card {
  background: rgba(20, 22, 18, 0.42);
  border: 1px solid rgba(251, 247, 238, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 14px;
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.75rem);
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 20px 60px -30px rgba(20, 22, 18, 0.45);
  color: var(--paper);
}
.vision-card .eyebrow {
  color: var(--paper);
  opacity: .9;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.vision-card h1,
.vision-card h2 {
  color: var(--paper);
  margin: 0.4rem 0 1.5rem;
  font-size: clamp(1.5rem, 2vw + 0.6rem, 2.1rem);
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
/* Two-column flowing prose — collapses to a single column on narrow screens */
.vision-card__columns {
  column-count: 2;
  column-gap: clamp(1.75rem, 3vw, 2.75rem);
  column-rule: 1px solid rgba(251, 247, 238, 0.14);
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(251, 247, 238, 0.94);
}
.vision-card__columns p {
  margin: 0 0 1rem;
  /* Avoid orphan/widow line splits across columns */
  break-inside: avoid;
}
/* Force a column break before this paragraph — used to land "In times of
   personal and collective crisis…" at the bottom of column 1 so column 2
   opens cleanly with the practice paragraph. */
.vision-card__columns p.col-break { break-before: column; }
.vision-card__columns p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .vision-card__columns { column-count: 1; }
}

/* -------------------- 6d. Holistic approach — modality carousel -------------------- */
.section--holistic {
  padding: clamp(3.5rem, 6.5vw, 5.5rem) 0;
  background: var(--cream);
  position: relative;
}
.holistic-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
}
.holistic-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2.4vw + 0.7rem, 2.5rem);
  line-height: 1.15;
}
.holistic-intro h2 em {
  font-style: italic;
  color: var(--clay);
}
.holistic-intro p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}
.modalities-carousel {
  position: relative;
  padding: 0 clamp(0px, 5vw, 64px);
}
.modalities-track {
  display: flex;
  gap: clamp(1rem, 1.8vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modalities-track::-webkit-scrollbar { display: none; }
.modality-card {
  flex: 0 0 clamp(240px, 24vw, 290px);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--clay), var(--sage, #9aa18b));
  cursor: default;
  box-shadow: 0 14px 38px -22px rgba(20, 22, 18, 0.45);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.modality-card:hover { box-shadow: 0 20px 50px -22px rgba(20, 22, 18, 0.55); transform: translateY(-2px); }
.modality-card__media {
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.modality-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,22,18,0.05) 40%, rgba(20,22,18,0.65) 100%);
}
.modality-card__title {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.4rem);
  margin: 0;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1vw + 0.7rem, 1.4rem);
  line-height: 1.2;
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  transition: opacity .3s var(--ease);
}
.modality-card__reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(20, 22, 18, 0.78);
  color: var(--paper);
  text-align: center;
  opacity: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity .35s var(--ease);
}
.modality-card__reveal p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.modality-card:hover .modality-card__reveal,
.modality-card:focus-within .modality-card__reveal { opacity: 1; }
.modality-card:hover .modality-card__title,
.modality-card:focus-within .modality-card__title { opacity: 0; }

.modality-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -12px rgba(20, 22, 18, 0.3);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.modality-arrow:hover { background: var(--ink); color: var(--paper); }
.modality-arrow--prev { left: 0; }
.modality-arrow--next { right: 0; }

@media (max-width: 820px) {
  .modalities-carousel { padding: 0; }
  .modality-arrow { display: none; }
  .modality-card { flex-basis: 78vw; }
}

/* -------------------- 6e. Core values — accordion -------------------- */
.section--values {
  padding: clamp(3.5rem, 6.5vw, 5.5rem) 0;
  background: var(--paper);
}
.values-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
}
.values-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2.4vw + 0.7rem, 2.5rem);
  line-height: 1.15;
}
.values-intro p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.values-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 4.5vw, 4.5rem);
  align-items: start;
}
.values-accordion__col {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.value-item {
  border-bottom: 1px solid var(--line);
}
.value-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0.25rem;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.25rem);
  font-style: normal;
  line-height: 1.25;
  color: var(--ink-soft);
  letter-spacing: 0;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.value-item__head:hover {
  color: var(--ink);
  padding-left: 0.6rem;
}
.value-item__name {
  flex: 1;
}
.value-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--clay);
}
.value-item__icon::before,
.value-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.value-item__icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.value-item__icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.value-item.is-open .value-item__head {
  color: var(--ink);
}
.value-item.is-open .value-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.value-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.value-item__inner {
  padding: 0 0.25rem 1.25rem;
  max-width: 520px;
}
.value-item__inner p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
}

@media (max-width: 820px) {
  .values-accordion { grid-template-columns: 1fr; }
  .values-accordion__col + .values-accordion__col { border-top: 0; }
  .value-item__head { font-size: 1.08rem; }
}

/* -------------------- 6c. Psilocybin section (image + text split) -------------------- */
.section--psilocybin {
  padding: clamp(3.5rem, 6.5vw, 5.5rem) 0;
  background: var(--paper);
}
.psilocybin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}
.psilocybin-text { max-width: 560px; }
.psilocybin-text h2 {
  margin: 0.4rem 0 1.25rem;
  font-size: clamp(1.6rem, 2vw + 0.6rem, 2.2rem);
  line-height: 1.2;
}
.psilocybin-text p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--ink);
}
.psilocybin-text .btn { margin-top: 1rem; }
.psilocybin-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(20, 22, 18, 0.45);
}
.psilocybin-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 820px) {
  .psilocybin-grid { grid-template-columns: 1fr; }
  .psilocybin-image { order: -1; }
}

/* -------------------- 7. Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-nav); font-size: 0.92rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px;
  transition: all .3s var(--ease);
  border: 1px solid transparent;
}
.btn--primary { background: var(--clay); color: var(--paper); }
.btn--primary:hover { background: var(--clay-deep); color: var(--paper); transform: translateY(-1px); }
.btn--ghost { color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--text {
  padding: 0; border: 0; text-transform: none; letter-spacing: .02em;
  font-size: 1rem; color: var(--clay);
  background: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px; border-radius: 0;
}
.btn--text:hover { border-color: var(--clay); color: var(--clay-deep); }
.btn--text::after { content: ' →'; transition: transform .25s var(--ease); display: inline-block; }
.btn--text:hover::after { transform: translateX(3px); }

/* -------------------- 8. Two-up feature -------------------- */
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 820px) { .two-up { grid-template-columns: 1fr; } }
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(2rem, 3vw, 3rem);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.feature:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.feature h3 { margin-top: 0; }

/* Resource list — used inside .feature--list. A capped-height column
   that scrolls vertically through book/article entries. Each entry is
   a small two-col grid: cover image left, title + author + blurb right. */
.two-up--resources { gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.resource-column { display: flex; flex-direction: column; }
.resource-column__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1.2vw + 0.7rem, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
}
.feature--list { padding: clamp(1.25rem, 2vw, 1.75rem); }
.feature--list:hover { box-shadow: none; transform: none; }
.resource-list {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem 0 0;
  max-height: 460px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.resource-list::-webkit-scrollbar { width: 6px; }
.resource-list::-webkit-scrollbar-track { background: transparent; }
.resource-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.resource-list::-webkit-scrollbar-thumb:hover { background: var(--clay); }
.resource-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.resource-item:last-child { border-bottom: 0; padding-bottom: 0; }
.resource-item__cover {
  width: 90px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 6px 16px -8px rgba(20, 22, 18, 0.35);
  background: var(--cream);
}
.resource-item__body { min-width: 0; }
.resource-item__title {
  margin: 0 0 0.15rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
}
.resource-item__author {
  margin: 0 0 0.5rem;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.resource-item__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.resource-item--empty {
  grid-template-columns: 1fr;
  border-bottom: 0;
}
.resource-item--empty .resource-item__desc { color: var(--ink-mute); }
/* Text-only variant — used for studies and organisations (no cover image). */
.resource-item--text { grid-template-columns: 1fr; }
.resource-item__link {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.resource-item__link::after {
  content: ' →';
  display: inline-block;
  transition: transform .25s var(--ease);
}
.resource-item__link:hover { color: var(--clay-deep); border-bottom-color: var(--clay); }
.resource-item__link:hover::after { transform: translateX(3px); }

/* -------------------- 9. Big stacked heading -------------------- */
.stack-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 2rem;
}
.stack-heading span { display: block; }
.stack-heading .accent { color: var(--clay); font-style: italic; }

/* -------------------- 9b. Full-bleed banner image (between sections) -------------------- */
/* A wide horizontal image used as a visual pause between two sections.
   Sized to roughly match the footprint of the "What to expect" section
   so the two visual blocks feel balanced. */
.banner-image {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}
.banner-image img {
  display: block;
  width: 100%;
  height: clamp(340px, 40vw, 560px);
  object-fit: cover;
  object-position: center;
}

/* -------------------- 10. Values list -------------------- */
.values-list { list-style: none; padding: 0; margin: 2rem 0; }
.values-list li {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 200px 1fr; gap: 2rem;
}
.values-list li:last-child { border-bottom: 1px solid var(--line); }
.values-list strong {
  font-family: var(--font-serif); font-weight: 400; font-size: 1.25rem; color: var(--clay);
}
@media (max-width: 700px) { .values-list li { grid-template-columns: 1fr; gap: .3rem; } }

/* FAQ accordion — categorised list of questions. Reuses the values
   accordion JS handler (data-values-accordion). Categories are simple
   headings interleaved between accordion items. */
.faq-accordion { margin: clamp(1.5rem, 3vw, 2.25rem) 0 0; }
.faq-category {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: clamp(2rem, 3.5vw, 2.75rem) 0 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.faq-category:first-child { margin-top: 0; }

.faq-cta {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.faq-cta__lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--ink);
  text-align: center;
}

/* Scope-of-practice disclaimer — clarifies what we are and aren't.
   Visually distinct callout placed near the contraindications. */
.scope-disclaimer {
  margin: 1.5rem 0;
  padding: 1.25rem clamp(1.25rem, 2vw, 1.5rem);
  background: rgba(127, 132, 113, 0.08);
  border-left: 3px solid var(--clay);
  border-radius: 4px;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--ink);
}
.scope-disclaimer__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.02rem;
  margin: 0 0 0.45rem;
  color: var(--ink);
}
.scope-disclaimer p {
  margin: 0;
}

/* Contraindications list — leaner variant of values-list, prose-style. */
.contra-list { list-style: none; padding: 0; margin: 1.25rem 0 1.75rem; }
.contra-list li {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  line-height: 1.65;
  color: var(--ink);
}
.contra-list li:last-child { border-bottom: 1px solid var(--line); }
.contra-list strong {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--clay);
  margin-right: 0.35rem;
}

/* -------------------- 11. Team cards -------------------- */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow .3s var(--ease);
}
.team-card:hover { box-shadow: var(--shadow-soft); }
.team-card h3 { margin-bottom: .2rem; }
.team-card .role {
  font-family: var(--font-nav); font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1.2rem;
}
.team-card .avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--sage));
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2rem; color: var(--paper);
}

/* -------------------- 12. Retreat cards -------------------- */
.retreat-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--paper);
}
@media (max-width: 820px) { .retreat-card { grid-template-columns: 1fr; } }
.retreat-card__image {
  min-height: 320px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-family: var(--font-serif); font-size: 2.5rem;
}
.retreat-card__body { padding: clamp(2rem, 3vw, 3rem); }
.retreat-card__meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--font-nav); font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.retreat-card__meta span { display: flex; align-items: center; gap: .4rem; }

/* -------------------- 13. Contact form -------------------- */
.form-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-family: var(--font-nav); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute);
}
.form-field input, .form-field textarea, .form-field select {
  font: inherit; font-family: var(--font-sans);
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .25s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--clay);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* -------------------- 14. Policy / advocacy page -------------------- */
.pillar {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--clay);
  line-height: 1;
  margin-bottom: .5rem;
}

.callout {
  background: var(--cream);
  border-left: 3px solid var(--clay);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.callout--draft {
  background: #FBEEDC;
  border-left-color: #C88A2E;
}
.callout--draft::before {
  content: 'DRAFT — please review';
  display: block;
  font-family: var(--font-nav); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: #8B5A13; margin-bottom: .4rem;
}

/* -------------------- 15. Footer -------------------- */
.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 4rem 0 2rem;
  /* No top margin — footer sits flush against the previous section so the
     page closes without an unintended ivory band between Retreats and
     the dark footer. */
  margin-top: 0;
}
.site-footer a { color: var(--sand); }
.site-footer a:hover { color: var(--paper); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  font-family: var(--font-nav); font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--paper); margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .6rem; font-size: .95rem; }
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  /* Pull back the trailing letter-spacing so the wordmark sits flush left
     under the column gutter, mirroring the header brand treatment. */
  margin-right: -0.35em;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: var(--sand); max-width: 340px; font-size: 1rem; line-height: 1.5; }
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(217, 200, 167, 0.18);
  font-family: var(--font-nav); font-size: .82rem; color: var(--ink-mute);
}
.footer-bottom__row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-bottom__row a {
  color: var(--ink-mute); text-decoration: none;
  border-bottom: 1px solid rgba(217, 200, 167, 0.3);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer-bottom__row a:hover {
  color: var(--paper);
  border-bottom-color: var(--clay);
}
.footer-disclaimer {
  margin: 0;
  font-size: .78rem;
  line-height: 1.55;
  color: var(--ink-mute);
  opacity: 0.82;
  max-width: 90ch;
}

/* Legal page body: clean prose with serif headings and tight rhythm. */
.legal-body {
  padding-top: clamp(0.5rem, 1.5vw, 1.5rem);
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
}
.legal-body h2 {
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 1.4vw + 0.9rem, 2rem);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 0.5vw + 0.9rem, 1.25rem);
  color: var(--ink);
}
.legal-body p { margin: 0 0 1rem; }
.legal-body .lead { font-size: 1.05rem; margin-bottom: 1.5rem; }
.legal-list {
  margin: 0.5rem 0 1.25rem 1.25rem;
  padding: 0;
}
.legal-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.legal-list li strong {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--clay);
  font-size: 1.02rem;
}
.legal-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: clamp(2.5rem, 4vw, 3.5rem) 0;
}
.legal-pending {
  background: rgba(150, 148, 129, 0.08);
  border-left: 3px solid var(--clay);
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  line-height: 1.7;
  border-radius: 4px;
}
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  padding-top: clamp(1rem, 1.8vw, 1.4rem);
  border-top: 1px solid var(--line);
}
.legal-toc a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute, var(--clay));
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.legal-pending strong {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.4rem;
}
.legal-pending em {
  color: var(--ink-mute);
  font-style: normal;
  background: rgba(127, 132, 113, 0.1);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.88rem;
}

/* --------------------------------------------------------------
   Newsletter form (Buttondown embed) — soft cream callout
   matching the editorial tone of the policy page.
-------------------------------------------------------------- */
.newsletter-form {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(127, 132, 113, 0.07);
  border-left: 3px solid var(--clay);
  border-radius: 4px;
}
.newsletter-form__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 0.9vw + 0.75rem, 1.4rem);
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.newsletter-form__desc {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.newsletter-form__row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: stretch;
}
.newsletter-form__input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color .25s var(--ease);
}
.newsletter-form__input:focus {
  outline: none;
  border-color: var(--clay);
}
.newsletter-form__input::placeholder {
  color: var(--ink-mute);
  opacity: 0.7;
}
.newsletter-form__btn {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.newsletter-form__btn:hover {
  background: var(--clay);
  border-color: var(--clay);
}
.newsletter-form__note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--ink-mute);
}
.newsletter-form__note a {
  color: var(--clay);
  border-bottom: 1px solid rgba(127, 132, 113, 0.3);
}
.newsletter-form__note a:hover {
  color: var(--clay-deep);
  border-bottom-color: var(--clay);
}
/* Visually-hidden label — accessible to screen readers */
.newsletter-form__label-sr,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------
   Team grid on About page — compact text-only cards.
   Same hover-reveal aesthetic as modality cards but no images,
   so cards can stay small and the focus is on name + role.
-------------------------------------------------------------- */
/* Team grid — wraps to new rows as more members are added.
   Cards have a min width so the layout breathes; container width decides
   how many fit per row, the rest unfold below. */
.team-grid--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  justify-items: stretch;
  align-items: stretch;
}
/* Hide cards beyond the 4th until the user clicks "See more". */
.team-grid--compact > .team-card-compact:nth-child(n+5) {
  display: none;
}
.team-grid--compact.is-expanded > .team-card-compact:nth-child(n+5) {
  display: flex;
  flex-direction: column;
}
.team-show-more-wrap {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.team-show-more {
  background: none;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.team-show-more:hover {
  background: var(--paper);
  color: var(--ink);
}
/* Card: photo fills the entire frame. Source photos are pre-cropped to
   exactly 4:5 with the face at upper third, so cover doesn't crop further. */
.team-card-compact {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--clay);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.team-card-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px -22px rgba(20, 22, 18, 0.55);
}
.team-card-compact__photo {
  position: absolute;
  inset: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
}
.team-card-compact__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Dark vignette so the caption is always readable, regardless of photo. */
.team-card-compact::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
              rgba(20, 22, 18, 0) 55%,
              rgba(20, 22, 18, 0.85) 100%);
  pointer-events: none;
}
.team-card-compact__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(0.9rem, 1.5vw, 1.25rem) clamp(0.85rem, 1.4vw, 1.15rem) clamp(1rem, 1.6vw, 1.35rem);
  text-align: left;
  color: var(--paper);
}
.team-card-compact h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 0.9vw + 0.65rem, 1.2rem);
  line-height: 1.2;
  margin: 0 0 0.25rem;
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.team-card-compact .team-role {
  font-family: var(--font-nav);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 238, 0.86);
  margin: 0 0 0.8rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.team-card-compact__more {
  background: rgba(251, 247, 238, 0.16);
  border: 1px solid rgba(251, 247, 238, 0.6);
  color: var(--paper);
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all .25s var(--ease);
}
.team-card-compact__more:hover {
  background: var(--paper);
  color: var(--ink);
}

/* --------------------------------------------------------------
   Modal — used for team-member bios on About page.
   - Hidden by default with display:none for accessibility
   - Centered panel with overlay dim
   - Close via overlay click, × button, or Escape
-------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 18, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border-radius: 10px;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  animation: modalSlideIn .25s var(--ease);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal__close {
  position: absolute;
  top: clamp(0.75rem, 1.5vw, 1rem);
  right: clamp(0.75rem, 1.5vw, 1rem);
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink-mute);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.modal__close:hover {
  color: var(--ink);
  background: rgba(127, 132, 113, 0.1);
}
.modal__panel h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.5vw + 0.9rem, 2rem);
  line-height: 1.2;
  margin: 0 0 0.4rem;
  color: var(--ink);
  padding-right: 2rem;
}
.modal__role {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--clay);
  margin: 0 0 1.5rem;
}
.modal__panel p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1rem;
}
.modal__panel p:last-child { margin-bottom: 0; }

/* Prevent scroll under the modal */
body.no-scroll { overflow: hidden; }

/* --------------------------------------------------------------
   "How it started" — homepage origin story section.
   Yaya portrait on the left, the bio split across 2 columns
   on the right, with a "Meet the team" CTA at the bottom.
-------------------------------------------------------------- */
/* Wide grid layout: portrait left, text in two equal columns to the
   right. Uses the full container width so the section is short rather
   than tall. */
.how-started {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.65;
}
.how-started h2 {
  font-size: clamp(1.4rem, 1.2vw + 0.75rem, 1.85rem);
  line-height: 1.2;
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
}
.how-started__grid {
  display: grid;
  grid-template-columns: minmax(180px, 22%) 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  align-items: start;
}
.how-started__portrait {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 32px -20px rgba(20, 22, 18, 0.45);
}
.how-started__portrait img {
  display: block;
  width: 100%;
  height: auto;
}
.how-started__body {
  column-count: 2;
  column-gap: clamp(1.5rem, 2.5vw, 2rem);
}
.how-started__body p {
  margin: 0 0 0.85rem;
  break-inside: avoid;
}
.how-started__body p.col-start {
  break-before: column;
}
.how-started__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  text-align: right;
  color: var(--clay);
  margin: 1.25rem 0 0;
}
.how-started__cta {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

/* Tighter vertical breathing for the section as a whole. */
.section--how-started {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 720px) {
  .how-started__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .how-started__portrait {
    max-width: 240px;
    margin: 0 auto;
  }
  .how-started__body {
    column-count: 1;
  }
  .how-started__signature { text-align: left; }
}

/* -------------------- 16. Utilities / animations -------------------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: all .8s var(--ease); }
.fade-in.in { opacity: 1; transform: none; }
.text-center { text-align: center; }
.text-center > p, .text-center > .lead { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 2rem; } .mt-4 { margin-top: 4rem; }

/* -------------------- 17. Homepage — What to expect (numbered steps) -------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3.5rem);
  margin-top: 2.5rem;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { display: flex; gap: 1.25rem; }
.step-num {
  flex: 0 0 auto;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--clay);
  background: var(--paper);
}
.step-body h3 { margin: .2rem 0 .4rem; font-size: 1.1rem; }
.step-body p  { margin: 0; color: var(--ink-soft); }
.step-body .note {
  display: inline-block; margin-top: .5rem;
  font-size: .82rem; font-style: italic; color: var(--ink-mute);
}

/* -------------------- 18. Homepage — Upcoming retreats teasers -------------------- */
.retreat-teasers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
}
@media (max-width: 820px) { .retreat-teasers { grid-template-columns: 1fr; } }
.retreat-teaser {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.retreat-teaser:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.retreat-teaser .eyebrow { margin-bottom: .4rem; }
.retreat-teaser h3 { margin: 0 0 .5rem; font-size: 1.25rem; }
.retreat-teaser p  { margin: 0; color: var(--ink-soft); }

/* -------------------- 19. Homepage — Testimonials -------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1rem;
  border: 0; padding: 0;
}
.testimonial .attribution {
  font-family: var(--font-nav);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
/* Single highlighted testimonial used inside narrow containers — larger
   serif quote, no card chrome, leading curly mark for atmosphere. */
.testimonial--feature {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial--feature blockquote {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 0.55vw + 1rem, 1.35rem);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.25rem;
  padding: 0 clamp(0.5rem, 2vw, 1.25rem);
}
.testimonial--feature blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  color: var(--clay);
  margin-bottom: 0.5rem;
}
.testimonial--feature .attribution { color: var(--clay); }

/* -------------------- 20. Homepage — Facilitators carousel (horizontal scroll-snap) -------------------- */
.facilitators-rail {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--gutter);
  padding: .5rem var(--gutter) 1.5rem;
  margin: 2.5rem calc(-1 * var(--gutter)) 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  -webkit-overflow-scrolling: touch;
}
.facilitators-rail::-webkit-scrollbar { height: 6px; }
.facilitators-rail::-webkit-scrollbar-track { background: transparent; }
.facilitators-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.facilitator-card {
  flex: 0 0 clamp(280px, 32vw, 360px);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow .3s var(--ease);
}
.facilitator-card:hover { box-shadow: var(--shadow-soft); }
.facilitator-card .avatar {
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--sage));
  margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--paper);
}
.facilitator-card h3 { margin: 0 0 .2rem; }
.facilitator-card .role {
  font-family: var(--font-nav); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1rem;
}
.facilitator-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.facilitator-card--placeholder {
  border-style: dashed;
  opacity: .55;
}
.facilitator-card--placeholder .avatar {
  background: var(--line); color: var(--ink-mute);
}
.facilitator-card--placeholder .role { color: var(--ink-mute); }

/* -------------------- 20b. Team — rounded portrait tiles with hover-to-bio -------------------- */
/* A responsive grid of tall rectangular cards with gently rounded corners.
   On hover (or focus), the portrait/initials fade out and the member's
   bio fades in in their place. */
.section--team {
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(0.65rem, 1.1vw, 1rem);
  margin-top: 1.75rem;
}
.team-member {
  position: relative;
  aspect-ratio: 4 / 4.8;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  isolation: isolate;
  outline: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}
.team-member:focus-visible {
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--clay);
}
.team-member__photo,
.team-member__initials {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .45s var(--ease), transform .6s var(--ease);
}
.team-member__photo {
  object-fit: cover;
  object-position: center 20%;
}
.team-member__initials {
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: rgba(251, 247, 238, 0.28);
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #3A382F 0%, #1E1C17 100%);
}
/* Subtle gradient scrim at the bottom so the name sits clearly over the photo */
.team-member::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0));
  z-index: 1;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.team-member__caption {
  position: absolute;
  left: clamp(0.7rem, 1.2vw, 1rem);
  right: clamp(0.7rem, 1.2vw, 1rem);
  bottom: clamp(0.7rem, 1.3vw, 1rem);
  z-index: 2;
  transition: opacity .3s var(--ease);
}
.team-member__caption h3 {
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 0.6vw + 0.65rem, 1.05rem);
  margin: 0 0 0.2rem;
  color: var(--paper);
  line-height: 1.2;
}
.team-member__caption p {
  margin: 0;
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.82);
}
.team-member__bio {
  position: absolute;
  inset: 0;
  padding: clamp(0.8rem, 1.6vw, 1.15rem);
  display: flex;
  align-items: center;
  background: rgba(30, 28, 23, 0.94);
  color: var(--paper);
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  overflow-y: auto;
}
.team-member__bio p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(0.72rem, 0.3vw + 0.64rem, 0.82rem);
  line-height: 1.5;
}
.team-member:hover .team-member__bio,
.team-member:focus-within .team-member__bio {
  opacity: 1;
  transform: translateY(0);
}
.team-member:hover .team-member__caption,
.team-member:focus-within .team-member__caption {
  opacity: 0;
}
.team-member:hover::after,
.team-member:focus-within::after {
  opacity: 0;
}
.team-member:hover .team-member__photo,
.team-member:focus-within .team-member__photo {
  transform: scale(1.04);
}

/* Placeholder tile — dashed border, softened opacity */
.team-member--placeholder {
  background: #2a2822;
  opacity: 0.7;
}
.team-member--placeholder .team-member__initials {
  background: linear-gradient(180deg, #2a2822, #1a1813);
  color: rgba(251, 247, 238, 0.2);
}

/* Mobile — tighter 2-column grid so small tiles stay readable */
@media (max-width: 520px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------- 21. Split section (text + carousel) -------------------- */
/* Slightly wider than the default container so the two boxes can breathe,
   but kept close to the rest of the site's rhythm. */
.container--wide { max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }

/* Two-column split: framed text card on the left, carousel on the right,
   both stretched to the same height. */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch; /* equal-height cards */
}
@media (max-width: 900px) {
  .section-split { grid-template-columns: 1fr; }
}
/* Override the default .feature hover lift inside the split so the
   equal-height boxes stay locked together visually. */
.section-split__text {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.4vw, 2.2rem); /* tighter than default .feature padding */
  font-size: 0.95rem;
}
.section-split__text:hover { box-shadow: none; transform: none; }
.section-split__text .lede {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 1rem;
}
.section-split__text p { margin: 0 0 0.8rem; line-height: 1.55; }
.section-split__text .btn--text { margin-top: auto; padding-top: 0.5rem; align-self: flex-start; }

.section-split__visual {
  width: 100%;
  display: flex;
}

/* -------------------- 22. Carousel -------------------- */
.carousel {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-soft, 0 2px 12px rgba(0,0,0,.04));
  /* Fill the parent column so its height matches the text card. */
  flex: 1;
  min-height: 360px;
}
.carousel-track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}
.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 239, 228, .06), rgba(160, 128, 96, .05));
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* On tablets / mobile where the columns stack, give the carousel
   a sensible standalone height rather than inheriting a tall text card. */
@media (max-width: 900px) {
  .carousel { min-height: 0; aspect-ratio: 4 / 3; }
  .carousel-track { min-height: 0; }
}

/* Arrows — semi-visible, become fully opaque on hover/focus. */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(26, 22, 18, .28);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  z-index: 3;
  padding: 0;
}
.carousel-arrow svg { width: 22px; height: 22px; display: block; }
.carousel-arrow--prev { left: 14px; }
.carousel-arrow--next { right: 14px; }
.carousel:hover .carousel-arrow { opacity: .95; }
.carousel-arrow:hover { background: rgba(26, 22, 18, .55); transform: translateY(-50%) scale(1.06); }
.carousel-arrow:focus-visible { opacity: 1; outline: 2px solid var(--paper); outline-offset: 3px; }
@media (max-width: 600px) {
  .carousel-arrow { width: 38px; height: 38px; opacity: .8; }
  .carousel-arrow svg { width: 18px; height: 18px; }
}

/* Dots */
.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .25);
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.carousel-dot:hover { background: rgba(255, 255, 255, .55); }
.carousel-dot.is-active {
  background: rgba(255, 255, 255, .95);
  transform: scale(1.15);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

/* -------------------- 23. Process steps (horizontal timeline) -------------------- */
/* A thin line running through six small outlined circles. Each circle
   holds a step number; below sits a bold title and a short description. */
.process-steps {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
/* CTA anchored below the process diagram. Small top margin so it sits
   close to the steps and the section's own padding handles the rest. */
.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
/* The connecting line. Sits behind the circles, starts and ends at the
   centre of the first / last circle so it doesn't stick out past them. */
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px; /* vertical centre of the 44px marker */
  left: calc((100% / 6) / 2);
  right: calc((100% / 6) / 2);
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-step__marker {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ink-soft);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.process-step__num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1;
}
.process-step__title {
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.process-step__desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  max-width: 20ch;
}
.process-step:hover .process-step__marker {
  border-color: var(--clay);
}
.process-step:hover .process-step__num { color: var(--clay); }

/* Tablet — allow the step descriptions to wrap a little wider. */
@media (max-width: 1100px) {
  .process-step__desc { max-width: 22ch; }
  .process-step__title { font-size: 0.88rem; }
  .process-step__desc { font-size: 0.78rem; }
}

/* Below 780px the six-column line becomes unreadable. Collapse to a
   vertical stack with a vertical connecting line on the left. The marker
   spans both rows of the grid so title + description stay aligned in
   column 2 (otherwise the description wraps back into the 44px column). */
@media (max-width: 780px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 2rem;
    padding-left: 0;
  }
  .process-steps::before {
    top: 22px; bottom: 22px;
    left: 22px; right: auto;
    width: 1px; height: auto;
  }
  .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.25rem;
    align-items: start;
    text-align: left;
  }
  .process-step__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
  .process-step__title {
    grid-column: 2;
    grid-row: 1;
    margin: 0.6rem 0 0;
    font-size: 0.95rem;
  }
  .process-step__desc {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    font-size: 0.9rem;
  }
}

/* -------------------- Homepage marketing additions -------------------- */
/* Hero subline — sits below the lead, smaller and softer in tone, to set
   expectation about the structured arc without competing with the lead. */
.hero-subline {
  margin-top: 0.85rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 0.45vw + 0.85rem, 1.18rem);
  line-height: 1.55;
  color: rgba(251, 247, 238, 0.85);
  max-width: 620px;
}

/* Journey section — three text columns, no cards, clear typographic
   numbering and lede line. Restful, horizontal storytelling. */
.section--journey { padding: clamp(4rem, 7vw, 6rem) 0; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.journey-step { max-width: 340px; }
.journey-step__num {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.journey-step__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.2vw + 0.85rem, 1.85rem);
  line-height: 1.2;
  color: var(--ink);
}
.journey-step__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1rem;
}
.journey-step p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}
.journey-step p:last-child { margin-bottom: 0; }
@media (max-width: 820px) {
  .journey-grid { grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); }
  .journey-step { max-width: none; }
}

/* Who-fold — interactive section that opens to reveal the criteria.
   The head (eyebrow + h2 + lead + toggle) is always visible; the body
   animates open via max-height. */
.who-fold { max-width: 760px; margin: 0 auto; text-align: center; }
.who-fold__head .eyebrow { margin-bottom: 0.5rem; }
.who-fold__head h2 { margin-top: 0.25rem; margin-bottom: 1.1rem; }
.who-fold__head .lead { margin: 0 auto 1.5rem; max-width: 620px; }
.who-fold__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--clay);
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-nav);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.who-fold__toggle:hover { background: var(--clay); color: var(--paper); }
.who-fold__toggle-icon {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
}
.who-fold__toggle-icon::before,
.who-fold__toggle-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.who-fold__toggle-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.who-fold__toggle-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.who-fold.is-open .who-fold__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.who-fold__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease);
}
.who-fold__inner {
  padding: clamp(2rem, 4vw, 3rem) 0 0;
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
}
.who-fold__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.who-fold__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid var(--line);
}
.who-fold__list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}
.who-fold__list li::before {
  content: '◈';
  position: absolute;
  left: 0;
  top: 0.85rem;
  color: var(--clay);
  font-size: 0.85rem;
}
.who-fold__close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
}

/* Why-this-matters — large statement heading + spaced lead lines, with
   a soft horizontal rule to mark the pivot before the closing accent. */
.why-heading {
  font-size: clamp(1.85rem, 2.6vw + 0.75rem, 2.7rem);
  line-height: 1.2;
  margin: 0.4rem 0 1.25rem;
}
.lead--accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--clay-deep);
}
.rule-soft {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 2rem auto;
  width: 60px;
}

/* Final CTA section — paper background, big heading, two buttons.
   Centered and generous to mark the page's closing invitation. */
.section--cta {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cta-heading {
  font-size: clamp(1.55rem, 2vw + 0.75rem, 2.4rem);
  line-height: 1.25;
  margin: 0 0 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Two pillars on moss — combined "Why this work matters" + "A committed
   process". Two text columns side by side, using the existing moss
   palette (paper text on muted green) so it reads as a deliberate pause
   in the page rhythm before testimonials. */
.section--two-pillars { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.two-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.pillar-text { max-width: 480px; }
.pillar-text .eyebrow { color: var(--sand); margin-bottom: 0.7rem; display: block; }
.pillar-text h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.55rem, 1.6vw + 0.85rem, 2rem);
  line-height: 1.2;
  color: var(--paper);
}
.pillar-text .lead {
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.18rem);
  line-height: 1.6;
  color: var(--paper);
  margin: 0 0 1rem;
}
.pillar-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(251, 247, 238, 0.88);
  margin: 0 0 1rem;
}
.pillar-text p:last-child { margin-bottom: 0; }
.pillar-text__accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 0.55vw + 0.9rem, 1.22rem) !important;
  color: var(--paper) !important;
  padding-top: 0.5rem;
  margin-top: 0.5rem !important;
  border-top: 1px solid rgba(251, 247, 238, 0.22);
}
@media (max-width: 820px) {
  .two-pillars-grid { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 3.5rem); }
  .pillar-text { max-width: none; }
}

/* Text orphan prevention — pretty wraps body prose, balance balances
   short headings. Modern browsers; no-op fallback in older ones. */
p, .lead, .pillar-text p, .journey-step p, .who-fold__close, .resource-item__desc {
  text-wrap: pretty;
}
h1, h2, h3, h4,
.cta-heading, .why-heading, .stack-heading,
.hero-subline, .who-fold__lede, .journey-step__lede,
.pillar-text__accent {
  text-wrap: balance;
}

/* Journey step — replace the lost number marker with a thin clay rule
   on top of the column so the title doesn't sit naked at the edge. */
.journey-step { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.journey-step__title { margin-top: 0; }

/* Journey on moss — text colors flipped to read on the green background.
   The thin top rule on each step uses a translucent paper line so it
   stays visible without competing with the underlying texture. */
.section--moss .journey-step {
  border-top-color: rgba(251, 247, 238, 0.22);
}
.section--moss .journey-step__title { color: var(--paper); }
.section--moss .journey-step__lede  { color: var(--paper); }
.section--moss .journey-step p      { color: rgba(251, 247, 238, 0.88); }

/* Resources hero — book photograph behind the text, with a paper-tinted
   wash over it so the eyebrow, h1 and lead remain easily readable. */
.hero--image { position: relative; isolation: isolate; overflow: hidden; }
.hero--image .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero--image .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(43, 36, 32, 0.52), rgba(43, 36, 32, 0.62)),
    linear-gradient(180deg, rgba(43, 36, 32, 0.18), rgba(43, 36, 32, 0.55) 70%);
}
.hero--resources .hero__bg {
  background-image: url('media/resources/hero-book.jpg');
}
.hero--image .hero-content { color: var(--paper); }
.hero--image h1,
.hero--image .lead { color: var(--paper); }
.hero--image .eyebrow { color: var(--sand); }
.hero--image { background: var(--ink); }

/* Venues + Nutrition — two-column section on the about page.
   Centered titles, clear vertical rhythm, no boxes. */
.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.venues-col { max-width: 480px; }
.venues-col .eyebrow { display: block; margin-bottom: 0.6rem; }
.venues-col h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.55rem, 1.6vw + 0.85rem, 2.05rem);
  line-height: 1.2;
}
.venues-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1rem;
}
.venues-col__image {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 38px -22px rgba(20, 22, 18, 0.45);
}
.venues-col__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 820px) {
  .venues-grid { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 3.5rem); }
  .venues-col { max-width: none; }
}

/* Retreats hero — path photograph with paper-tinted overlay. Header
   text is centered and there is no main h1 — just the eyebrow + lead. */
.hero--retreats .hero__bg {
  background-image: url('media/retreats/hero-path.jpg');
}
.hero-content--center {
  margin: 0 auto;
  text-align: center;
  max-width: 720px;
}
.hero-content--center .lead {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.1rem, 0.65vw + 0.95rem, 1.35rem);
}

/* Retreats: includes grid — a flowing 3-column tile of features,
   light typography, no card chrome, soft horizontal rule between rows. */
.includes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3vw, 2.75rem) clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(1.75rem, 3vw, 2.75rem);
}
.include-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 0.85rem;
  align-items: start;
}
.include-item__mark {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--clay);
}
.include-item__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--ink);
}
.include-item__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.include-item--more .include-item__title { font-style: italic; color: var(--clay-deep); }
@media (max-width: 900px) {
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .includes-grid { grid-template-columns: 1fr; }
}

/* Sample schedule — a structured timeline-style list with the time on
   the left, a thin clay rule, and a short description on the right. */
.schedule {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row__time {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  padding-top: 0.25rem;
}
.schedule-row__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--ink);
}
.schedule-row__desc {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .schedule-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .schedule-row__time { padding-top: 0; }
}

/* Bare hero — image only, no text content. Used on retreats page. */
.hero--bare {
  min-height: clamp(360px, 50vh, 520px);
  padding: 0;
  display: block;
}
/* Bare image hero has no text overlay, so the dark legibility wash isn't
   needed. Replace it with a very soft, almost-imperceptible vignette to
   keep some depth at the edges. */
.hero--bare .hero__bg::after {
  background: linear-gradient(180deg, rgba(43, 36, 32, 0) 70%, rgba(43, 36, 32, 0.18) 100%);
}

/* Tighter, single-line variant of include-item. We override the
   title/desc layout from earlier with a simple mark + sentence pair. */
.include-item__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}
.include-item--more .include-item__text {
  font-style: italic;
  color: var(--clay-deep);
}

/* Weekly schedule — horizontal rail of seven day-cards with scroll-snap.
   Each card is fixed-width so the eye reads the arc of the week
   left-to-right. Ceremony days are subtly accented. */
.week-rail-wrap {
  position: relative;
  /* Match the modality carousel: constrained to the container width
     so the rail does not bleed past the layout. */
  padding: 0 clamp(0px, 5vw, 64px);
}
.week-rail {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1.5rem;
  display: flex;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  -webkit-overflow-scrolling: touch;
}
.week-rail::-webkit-scrollbar { height: 6px; }
.week-rail::-webkit-scrollbar-track { background: transparent; }
.week-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.week-day {
  flex: 0 0 clamp(220px, 22vw, 260px);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.25rem, 1.6vw, 1.75rem);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.week-day__num {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.week-day__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 0.5vw + 0.95rem, 1.3rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--ink);
}
.week-day__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.week-day__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.week-day__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--clay);
}
.week-day--accent {
  background: var(--cream);
  border-color: var(--clay);
}
.week-day--accent .week-day__num,
.week-day--accent .week-day__title { color: var(--clay-deep); }
