/* =========================================================================
   TIKKUN RETREATS — shared design system
   -------------------------------------------------------------------------
   🟥 OWNED BY THE DESIGN-SYSTEM BUILDER (the main session).
   Page builders: do NOT edit this file. Anything page-specific goes in a
   small <style> block in that page's own <head>, scoped to that page.

   Family note: this is a sibling of the Tikkun Ha'Nefesh system
   (C:\Users\shell\TikkunHaNefeshSite\assets\css\site.css). Token names and
   component names are deliberately the SAME so the three Tikkun brands read
   as one hand. The palette is different: Retreats is forest + sage + cream,
   keyed to the Retreats logo. There is no navy and no gold here.

   The brief's rule: "cleaner and more photographic than the Healing Center."
   So: more full-bleed imagery, more white space, fewer boxes, fewer rules.
   -------------------------------------------------------------------------
   WCAG contrast — MEASURED (WCAG 2.x relative luminance), 2026-09-14.
   AA = 4.5:1 body text, 3:1 large text (>= 24px, or bold >= 18.66px).

     ink        #1F2B25 on cream      #FAF6EE .... 13.62  (body)
     ink        #1F2B25 on cream-deep #F0E8D9 .... 12.06  (body on cards / alt)
     ink        #1F2B25 on sand       #E4D8C3 .... 10.42
     ink-soft   #54605A on cream ................   6.09  (secondary text)
     ink-soft   #54605A on cream-deep ...........   5.39
     forest     #2C5545 on cream ................   7.82  (headings)
     forest     #2C5545 on cream-deep ...........   6.92
     forest     #2C5545 on sand .................   5.98
     forest-deep#1B382C on cream ................  11.82
     leaf       #2F6B4A on cream ................   5.86  (links)
     leaf       #2F6B4A on cream-deep ...........   5.19
     leaf       #2F6B4A on sand .................   4.49  ⚠️ LARGE TEXT ONLY
     clay-ink   #8F5B33 on cream ................   5.25  (eyebrows, accents)
     clay-ink   #8F5B33 on cream-deep ...........   4.65
     cream      #FAF6EE on forest ...............   7.82
     cream      #FAF6EE on forest-deep ..........  11.82
     white      #FFFFFF on forest ...............   8.43
     sage       #A8D5A2 on forest ...............   5.10  (labels on dark)
     sage       #A8D5A2 on forest-deep ..........   7.71
     sage-deep  #6F9E74 on forest-deep .........    4.14  ⚠️ LARGE TEXT ONLY
     clay       #BE8459 on forest-deep ..........   4.02  ⚠️ LARGE TEXT ONLY
     forest-deep#1B382C on sage ................    7.71  (.btn--sage label)

   🟥 cream at 82% opacity on forest = 6.0:1 — that is the floor for soft
   body text on dark grounds. Do not go below 80%.
   ========================================================================= */


/* ---------- 1. Tokens ---------- */
:root {
  /* ground */
  --cream: #FAF6EE;
  --cream-deep: #F0E8D9;
  --sand: #E4D8C3;
  --white: #FFFFFF;

  /* green */
  --forest: #2C5545;
  --forest-deep: #1B382C;
  --leaf: #2F6B4A;
  --sage: #A8D5A2;
  --sage-deep: #6F9E74;

  /* ink */
  --ink: #1F2B25;
  --ink-soft: #54605A;

  /* warm accent — used sparingly, never as a second brand colour */
  --clay: #BE8459;
  --clay-ink: #8F5B33;

  /* derived */
  --line: rgba(31, 43, 37, 0.13);
  --line-dark: rgba(250, 246, 238, 0.18);
  --field-bg: #FFFDF8;
  --shadow-soft: 0 28px 56px -32px rgba(27, 56, 44, 0.38);
  --shadow-lift: 0 34px 64px -30px rgba(27, 56, 44, 0.46);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-h1: clamp(2.9rem, 1.4rem + 5.6vw, 5.4rem);
  --fs-h2: clamp(2.1rem, 1rem + 3.7vw, 3.75rem);
  --fs-h3: clamp(1.45rem, 1.1rem + 1.1vw, 1.85rem);
  --fs-pull: clamp(1.55rem, 1rem + 2.1vw, 2.45rem);
  --fs-lead: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  --fs-body: 1.0625rem;

  --radius: 4px;          /* the Retreats system is squarer than THN — photographic, not app-like */
  --radius-sm: 3px;
  --radius-pill: 999px;

  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --space-section: clamp(4.5rem, 9vw, 8.5rem);
  --space-section-tight: clamp(3rem, 6vw, 5.5rem);
  --header-h: 92px;
  --measure: 66ch;
  --maxw: 1240px;
  --maxw-wide: 1440px;
  --maxw-text: 760px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
svg { display: block; }

/* 🟥 The browser's own `[hidden] { display: none }` is a bare element rule, so ANY
   class that sets `display` (`.card { display: flex }`) beats it and the element stays
   on screen. The retreat filters set `el.hidden` — without this they silently do
   nothing. Keep this rule; it is load-bearing. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.25em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--leaf); text-decoration: none; text-underline-offset: 0.22em; }
a:hover { text-decoration: underline; }

ul, ol { margin: 0 0 1.25em; padding-left: 1.3em; max-width: var(--measure); }
li { margin-bottom: 0.5em; }
li:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--space-section-tight) 0; }

:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible,
.section--forest :focus-visible { outline-color: var(--sage); }

::selection { background: var(--sage); color: var(--forest-deep); }

.skip-link {
  position: absolute; left: 0.75rem; top: -100px; z-index: 200;
  background: var(--forest); color: var(--cream);
  padding: 0.85rem 1.25rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 0.75rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}


/* ---------- 3. Layout primitives ---------- */
.wrap    { width: min(100% - (var(--gutter) * 2), var(--maxw));      margin-inline: auto; }
.wrap--wide { width: min(100% - (var(--gutter) * 2), var(--maxw-wide)); margin-inline: auto; }
.wrap--text { width: min(100% - (var(--gutter) * 2), var(--maxw-text)); margin-inline: auto; }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: var(--space-section-tight); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.section--cream      { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }
.section--sand       { background: var(--sand); }

.section--forest,
.section--forest-deep {
  background: var(--forest);
  color: rgba(250, 246, 238, 0.86);
}
.section--forest-deep { background: var(--forest-deep); }
.section--forest h1, .section--forest h2, .section--forest h3, .section--forest h4,
.section--forest-deep h1, .section--forest-deep h2, .section--forest-deep h3, .section--forest-deep h4 { color: var(--cream); }
.section--forest a:not(.btn), .section--forest-deep a:not(.btn) { color: var(--sage); }
.section--forest hr, .section--forest-deep hr { border-top-color: var(--line-dark); }

/* a centred, narrow block of prose — the brief's "visually spacious" sections */
.prose-center { max-width: var(--maxw-text); margin-inline: auto; text-align: center; }
.prose-center p { margin-inline: auto; }

/* stack rhythm */
.stack > * + * { margin-top: 1.25rem; }
.stack-lg > * + * { margin-top: 2rem; }


/* ---------- 4. Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--clay-ink);
  margin: 0 0 1.1rem;
  display: block;
}
.section--forest .eyebrow,
.section--forest-deep .eyebrow,
.on-dark .eyebrow { color: var(--sage); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--forest .lead,
.section--forest-deep .lead,
.on-dark .lead { color: rgba(250, 246, 238, 0.86); }

.pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-pull);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--forest);
  max-width: 24ch;
}
.section--forest .pull, .section--forest-deep .pull, .on-dark .pull { color: var(--cream); }

.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; }

.small { font-size: 0.875rem; line-height: 1.6; color: var(--ink-soft); }
.section--forest .small, .section--forest-deep .small, .on-dark .small { color: rgba(250, 246, 238, 0.8); }

/* the quiet disclosure line the brief asks for — present, never loud */
.disclosure {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 68ch;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.section--forest .disclosure,
.section--forest-deep .disclosure,
.on-dark .disclosure {
  color: rgba(250, 246, 238, 0.78);
  border-top-color: var(--line-dark);
}

.rule-short { width: 56px; height: 1px; background: var(--sage-deep); border: 0; margin: 0 0 1.75rem; }
.prose-center .rule-short { margin-inline: auto; }


/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  line-height: 1; letter-spacing: 0.01em;
  padding: 1.05rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest); color: var(--cream); }
.btn--primary:hover { background: var(--forest-deep); color: var(--white); }

.btn--sage { background: var(--sage); color: var(--forest-deep); }
.btn--sage:hover { background: #BCE0B7; color: var(--forest-deep); }

.btn--ghost { background: transparent; color: var(--forest); border-color: rgba(44, 85, 69, 0.38); }
.btn--ghost:hover { background: rgba(44, 85, 69, 0.07); border-color: var(--forest); }

.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(250, 246, 238, 0.45); }
.btn--ghost-light:hover { background: rgba(250, 246, 238, 0.12); border-color: var(--cream); color: var(--white); }

.btn--sm { padding: 0.8rem 1.4rem; font-size: 0.875rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.prose-center .btn-row { justify-content: center; }

/* a text link that reads as an action — used on cards */
.link-more {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; font-size: 0.9rem; color: var(--leaf);
  text-decoration: none;
}
.link-more::after { content: "\2192"; transition: transform 0.2s var(--ease); }
.link-more:hover { text-decoration: none; }
.link-more:hover::after { transform: translateX(4px); }
.on-dark .link-more, .section--forest .link-more { color: var(--sage); }


/* ---------- 6. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
/* over a hero image, the bar is transparent and the type is cream */
.site-header__inner {
  width: min(100% - (var(--gutter) * 2), var(--maxw-wide));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
/* 🟥 THE REAL LOGO. `assets/img/logo-retreats.png` is the owner's artwork with its
   green ground keyed to transparency. Its wordmark is WHITE and its "T", roof and
   sprout are SAGE — so it only reads on a DARK ground. Every place it appears (the
   header bar and the footer) is forest or sits over a scrimmed photograph. 🟥 Do not
   place it on cream, sand or white without a dark-ink version of the artwork; there
   is not one yet. A hand-drawn SVG approximation stood here until 2026-09-14 — do not
   reintroduce one. */
/* 🟥 Sized in px, deliberately. A `vw`-based clamp renders at its floor inside a
   zero-width measuring context, and the floor was small enough to turn "RETREATS"
   into a smudge. The lockup needs about 54px of height before that second line is
   legible at all — which is why the bar is 92px rather than 84px. */
.brand__logo {
  height: 54px;
  width: auto;
  flex-shrink: 0;
}
.brand__logo--footer { height: 68px; }
@media (max-width: 880px) {
  .brand__logo { height: 42px; }
  .brand__logo--footer { height: 56px; }
}

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  font-size: 0.95rem; font-weight: 500; color: rgba(250, 246, 238, 0.88);
  text-decoration: none; position: relative; padding-block: 0.4rem;
}
.nav__link:hover { color: var(--white); text-decoration: none; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--white); }

/* scrolled / solid state — set by assets/js/main.js */
.site-header.is-solid {
  background: rgba(27, 56, 44, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.6);
}

/* pages with no photographic hero start solid from the top */
.site-header--solid { background: var(--forest-deep); border-bottom-color: var(--line-dark); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle__bars { display: block; width: 24px; height: 14px; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after,
.nav-toggle__bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px;
  background: var(--cream); transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 6.25px; }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6.25px) rotate(-45deg); }

@media (max-width: 880px) {
  /* 🟥 NO-JAVASCRIPT FIRST.
     The slide-down panel below is opened by main.js. If the script never runs, a
     toggle button that does nothing is worse than no button at all — so by default
     the bar simply grows and the links sit under the brand as a plain wrapping row,
     and the toggle is hidden. Everything under `.js` restores the compact bar. */
  .site-header { height: auto; min-height: var(--header-h); padding-block: 0.7rem; }
  .site-header__inner { flex-wrap: wrap; row-gap: 0.85rem; }
  .nav { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 0.85rem 1.4rem; }
  .nav .btn { margin-left: auto; }

  .js .site-header { height: var(--header-h); min-height: 0; padding-block: 0; }
  .js .site-header__inner { flex-wrap: nowrap; row-gap: 0; }
  .js .nav-toggle { display: inline-flex; }
  .js .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--forest-deep);
    padding: 0.5rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line-dark);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .js .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .js .nav__link {
    font-size: 1.15rem; padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav__link::after { display: none; }
  .js .nav .btn { margin-top: 1.5rem; margin-left: 0; width: 100%; }
}


/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--cream);
  overflow: hidden;
  background: var(--forest-deep);
}
.hero--short { min-height: min(64svh, 620px); }
.hero--page  { min-height: min(56svh, 540px); align-items: flex-end; }

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
/* 🟥 The scrim is not decoration — it is what makes cream type legible over a
   photograph whose luminance we do not control. Do not reduce it. */
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(15, 32, 25, 0.86) 0%, rgba(15, 32, 25, 0.55) 34%, rgba(15, 32, 25, 0.22) 62%, rgba(15, 32, 25, 0.38) 100%);
}
/* 🟥 `.hero__inner` is normally combined with a wrap class (`.hero__inner.wrap--wide`).
   It used to also declare `width: 100%`, which — being later in this file at the same
   specificity — beat `.wrap--wide`'s width and killed the hero's gutter entirely, so
   headlines ran hard against the left edge. Only fall back to full width when there is
   no wrap class to honour. */
.hero__inner { position: relative; z-index: 1; }
.hero__inner:not(.wrap):not(.wrap--wide):not(.wrap--text) { width: 100%; }

.hero__title { color: var(--cream); margin-bottom: 0.4em; max-width: 16ch; }
.hero__title .line { display: block; }
.hero__lead {
  font-size: var(--fs-lead); line-height: 1.55;
  color: rgba(250, 246, 238, 0.9);
  max-width: 54ch; margin-bottom: 2rem;
}
.hero__eyebrow { color: var(--sage); }

/* a compact meta row under a retreat hero: dates · host · place */
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(250, 246, 238, 0.9);
  margin-bottom: 1.6rem;
}
.hero__meta > * { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta > * + *::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--sage); margin-right: 1rem; opacity: 0.8;
}


/* ---------- 8. Cards ---------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card--linked:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card--linked:hover .card__media img { transform: scale(1.035); }
.card__body { padding: 1.5rem 1.5rem 1.65rem; display: flex; flex-direction: column; flex: 1; gap: 0.6rem; }
.card__title { font-size: 1.4rem; margin: 0; }
.card__meta {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--clay-ink); margin: 0;
}
.card__text { font-size: 0.975rem; color: var(--ink-soft); margin: 0; }
.card__foot {
  margin-top: auto; padding-top: 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line);
}
.card__price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--forest); }
.card__price span { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; color: var(--ink-soft); display: block; letter-spacing: 0.04em; }

/* availability pill */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.34rem 0.7rem; border-radius: var(--radius-pill);
  background: rgba(47, 107, 74, 0.1); color: var(--leaf);
}
.pill--low   { background: rgba(143, 91, 51, 0.12); color: var(--clay-ink); }
.pill--full  { background: rgba(31, 43, 37, 0.09); color: var(--ink-soft); }
.pill--onimg {
  position: absolute; left: 0.9rem; top: 0.9rem; z-index: 1;
  background: rgba(250, 246, 238, 0.94); color: var(--forest);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* the three experience types — quieter than a card, no box */
.type-card { display: flex; flex-direction: column; gap: 1rem; }
.type-card__media { aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); background: var(--cream-deep); }
.type-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.type-card:hover .type-card__media img { transform: scale(1.03); }
.type-card__title { font-size: 1.55rem; margin: 0; }
.type-card__text { font-size: 0.975rem; color: var(--ink-soft); margin: 0; }
.section--forest .type-card__text { color: rgba(250, 246, 238, 0.84); }


/* ---------- 9. Split / feature rows ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--text-first .split__text { order: -1; }
.split__media { border-radius: var(--radius); overflow: hidden; background: var(--cream-deep); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 4 / 5; }
.split__media--wide { aspect-ratio: 4 / 3; }

/* a full-bleed photographic band with no text — a breath between sections */
.band {
  position: relative;
  height: clamp(280px, 42vw, 520px);
  overflow: hidden;
  background: var(--forest-deep);
}
.band img { width: 100%; height: 100%; object-fit: cover; }

/* a full-bleed band WITH centred text over it */
.band--text { display: flex; align-items: center; justify-content: center; text-align: center; color: var(--cream); }
.band--text img { position: absolute; inset: 0; }
.band--text::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15, 32, 25, 0.5), rgba(15, 32, 25, 0.72));
}
.band__inner { position: relative; z-index: 1; padding: var(--gutter); }
.band__inner h2, .band__inner .pull { color: var(--cream); }


/* ---------- 10. Gallery ---------- */
.gallery { display: grid; gap: clamp(0.65rem, 1.4vw, 1rem); grid-template-columns: repeat(12, 1fr); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--cream-deep); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item { grid-column: span 12; aspect-ratio: 4 / 3; }
@media (min-width: 720px) {
  .gallery__item          { grid-column: span 6; }
  .gallery__item--wide    { grid-column: span 8; aspect-ratio: 16 / 9; }
  .gallery__item--narrow  { grid-column: span 4; aspect-ratio: 3 / 4; }
  .gallery__item--full    { grid-column: span 12; aspect-ratio: 21 / 9; }
  .gallery__item--third   { grid-column: span 4; aspect-ratio: 1 / 1; }
}


/* ---------- 11. Lists that are not bullet lists ---------- */
.included { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; max-width: none; }
.included li {
  display: grid; grid-template-columns: 1.15rem 1fr; gap: 0.85rem;
  align-items: start; margin: 0; font-size: 1rem; line-height: 1.55;
}
.included li::before {
  content: ""; width: 7px; height: 7px; margin-top: 0.62em;
  border-radius: 50%; background: var(--sage-deep);
}
.section--forest .included li::before { background: var(--sage); }

/* a numbered rhythm — "what the retreat feels like" */
.rhythm { list-style: none; padding: 0; margin: 0; display: grid; gap: 2rem; max-width: none; }
.rhythm li { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.rhythm__when {
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
  color: var(--clay-ink); white-space: nowrap; padding-top: 0.1em; min-width: 7ch;
}
.section--forest .rhythm__when { color: var(--sage); }
.rhythm__what { margin: 0; }
@media (max-width: 560px) {
  .rhythm li { grid-template-columns: 1fr; gap: 0.35rem; }
}


/* ---------- 12. Accordion (FAQ) ---------- */
.faq { border-top: 1px solid var(--line); max-width: var(--maxw-text); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0; position: relative;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--forest); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0.4rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 1.5px solid var(--sage-deep); border-bottom: 1.5px solid var(--sage-deep);
  transform: rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__body { padding: 0 0 1.5rem; color: var(--ink-soft); }
.faq__body p { max-width: none; }


/* ---------- 13. Person ---------- */
.person { display: grid; grid-template-columns: minmax(0, 200px) 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.person__photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream-deep); }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__name { font-size: 1.5rem; margin: 0 0 0.2rem; }
.person__role {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--clay-ink); margin: 0 0 1rem;
}
.section--forest .person__role { color: var(--sage); }
@media (max-width: 560px) { .person { grid-template-columns: 1fr; } .person__photo { max-width: 220px; } }


/* ---------- 14. Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  padding: 0.6rem 1.15rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(44, 85, 69, 0.28); background: transparent;
  color: var(--forest); cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter:hover { background: rgba(44, 85, 69, 0.07); }
.filter[aria-pressed="true"] { background: var(--forest); color: var(--cream); border-color: var(--forest); }


/* ---------- 15. Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(250, 246, 238, 0.82); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.25rem; }
.site-footer a { color: rgba(250, 246, 238, 0.82); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark);
}
.footer-brand { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.25rem; }
.footer-heading {
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage);
  margin: 0 0 1rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; }
.footer-list li { margin-bottom: 0.7rem; }
.footer-bottom {
  padding-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(250, 246, 238, 0.66);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
/* the standing brand-relationship line — every page carries it once, quietly */
.footer-note {
  font-size: 0.8125rem; line-height: 1.65; color: rgba(250, 246, 238, 0.7);
  max-width: 70ch; margin: 2rem 0 0;
}


/* ---------- 16. Reveal on scroll (progressive enhancement) ---------- */
/* 🟥 No `.js` class on <html> means everything is visible. Never hide content
   behind a script that might not run. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }


/* ---------- 17. Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero { min-height: 0; color: #000; padding-top: 0; }
  .hero__media { display: none; }
  .hero__title, h1, h2, h3 { color: #000; }
  .section { padding-block: 1.5rem; page-break-inside: avoid; }
}
