/* =====================================================================
   New Morning Retreat - Hope Town, Abaco
   Design language cloned from Six Senses: airy editorial whitespace,
   thin display serif, wide-tracked sans labels, slow fade reveals,
   alternating full-bleed sections, parallax bands.
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  --white: #ffffff;
  --ivory: #f7f4ef;
  --ivory-deep: #efe9df;
  --ink: #1e2a2e;
  --ink-soft: #4e5b61;
  --ocean: #155e63;
  --ocean-deep: #0e3d42;
  --sand: #bfa074;        /* decorative only - never sole carrier of meaning */
  --line: #e2ddd4;

  --ff-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --ff-titling: 'Cinzel', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 1.0625rem;          /* 17px floor for AA */
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* --------------------------- Utilities ---------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 1000;
  background: var(--ocean); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: 0 0 4px 4px;
  font-family: var(--ff-sans); font-size: 0.9rem; letter-spacing: 0.04em;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1.1rem;
}

/* ----------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2.4em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ocean); color: var(--white); }
.btn-solid:hover { background: var(--ocean-deep); color: var(--white); }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.75); }
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-block { width: 100%; }

/* ----------------------------- Reveal ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================== HEADER ============================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.05rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.45s var(--ease);
}

/* Wordmark */
.wordmark { display: inline-flex; flex-direction: row; align-items: center; gap: 0.7rem; line-height: 1; }
.wordmark-emblem { position: relative; flex: none; width: 46px; height: 44px; }
.wordmark-emblem img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity 0.45s var(--ease);
}
.wordmark-emblem .emblem-dark { opacity: 0; }
.wordmark-text { display: inline-flex; flex-direction: column; }
.wordmark-name {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.45s var(--ease);
}
.wordmark-sub {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.82);
  transition: color 0.45s var(--ease);
}

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 2.4rem; }
.nav-menu a {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a[aria-current="true"]::after,
.nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid currentColor;
  padding: 0.7rem 1.5rem !important;
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { background: var(--white); color: var(--ink) !important; }

/* Header scrolled state */
.site-header[data-state="scrolled"] {
  background: var(--ivory);
  box-shadow: 0 1px 0 var(--line);
}
.site-header[data-state="scrolled"] .header-inner { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.site-header[data-state="scrolled"] .wordmark-name { color: var(--ink); }
.site-header[data-state="scrolled"] .wordmark-sub { color: var(--ink-soft); }
.site-header[data-state="scrolled"] .emblem-light { opacity: 0; }
.site-header[data-state="scrolled"] .emblem-dark { opacity: 1; }
.site-header[data-state="scrolled"] .nav-menu a { color: var(--ink); }
.site-header[data-state="scrolled"] .nav-cta { color: var(--ocean); }
.site-header[data-state="scrolled"] .nav-cta:hover { background: var(--ocean); color: var(--white) !important; }
.site-header[data-state="scrolled"] .nav-toggle-bar { background: var(--ink); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle-bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.45s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,61,66,0.45) 0%, rgba(14,61,66,0.15) 35%, rgba(14,61,66,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 var(--gutter);
}
.hero-eyebrow {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  color: rgba(255,255,255,0.92);
}
.hero-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-tagline {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin: 1.5rem 0 2.6rem;
  color: rgba(255,255,255,0.94);
}
.hero-content .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.18s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.32s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.46s; }

/* Hero video toggle */
.hero-video-toggle {
  position: absolute;
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 2.2rem);
  z-index: 3;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero-video-toggle:hover { background: rgba(255,255,255,0.16); }
.hero-video-icon {
  width: 12px; height: 14px;
  position: relative;
}
/* pause icon (two bars) when playing */
.hero-video-toggle[aria-pressed="true"] .hero-video-icon::before,
.hero-video-toggle[aria-pressed="true"] .hero-video-icon::after {
  content: "";
  position: absolute; top: 0;
  width: 4px; height: 14px;
  background: var(--white);
}
.hero-video-toggle[aria-pressed="true"] .hero-video-icon::before { left: 0; }
.hero-video-toggle[aria-pressed="true"] .hero-video-icon::after { right: 0; }
/* play triangle when paused */
.hero-video-toggle[aria-pressed="false"] .hero-video-icon::before {
  content: "";
  position: absolute; top: 0; left: 2px;
  width: 0; height: 0;
  border-left: 11px solid var(--white);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

/* Hero scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px; height: 56px;
}
.hero-scroll-line {
  display: block; width: 1px; height: 100%;
  background: rgba(255,255,255,0.5);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

/* ============================= SECTIONS =========================== */
.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}
.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--ink);
}
.section-lede {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 1.4rem;
}
.retreat-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  color: var(--ink-soft);
  margin: 0.6rem 0 0;
}

/* ----------------------------- The House -------------------------- */
.section-house { padding-top: clamp(5rem, 11vw, 10rem); }

/* Unifying warm grade so mixed-source house photography reads as one set.
   Subtle on purpose: a touch of warmth and saturation, never an orange cast. */
.house-hero-img,
.house-row-media img {
  filter: saturate(1.06) contrast(1.02) brightness(1.005) sepia(0.045);
}

/* Establishing image - slow parallax, gentle gradient to seat the caption */
.house-hero {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 56vw, 660px);
  margin: 0;
}
.house-hero-img {
  position: absolute;
  top: -14%; left: 0;
  width: 100%; height: 128%;
  object-fit: cover;
}
.house-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,61,66,0) 55%, rgba(14,61,66,0.42) 100%);
  z-index: 1;
}
.house-hero-caption {
  position: absolute;
  left: clamp(1.1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 2;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}

/* Editorial descent - asymmetric rows that alternate side to side */
.house-rows {
  display: grid;
  gap: clamp(3rem, 7vw, 6.5rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}
.house-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: center;
}
.house-row:nth-child(even) .house-row-media { order: 2; }
.house-row-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;   /* portrait box for the vertical garden photography */
}
.house-row-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.house-row:hover .house-row-media img { transform: scale(1.045); }
.house-row-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.house-row-text p:not(.eyebrow) { color: var(--ink-soft); max-width: 42ch; }

/* ----------------------------- Parallax --------------------------- */
.parallax {
  position: relative;
  overflow: hidden;
}
.parallax-quote { min-height: 62vh; display: grid; place-items: center; }
.parallax-image { height: clamp(320px, 46vw, 560px); }
.parallax-bg {
  position: absolute;
  inset: -14% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-bg-quote { background-image: url(images/island-1.webp); }
.parallax-bg-island { background-image: url(images/island-2.webp); }
.parallax-quote::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,40,44,0.5);
}
.parallax-inner {
  position: relative; z-index: 2;
  max-width: 880px;
  padding: 0 var(--gutter);
  text-align: center;
}
.parallax-quote-text {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.3;
  color: var(--white);
}

/* ----------------------------- The Retreat ------------------------ */
.section-retreat { background: var(--ivory); max-width: none; }
.section-retreat > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section-retreat .section-title { font-size: clamp(1.95rem, 4vw, 3.05rem); }
.retreat-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.retreat-subtitle {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1.3rem;
}
.retreat-subtitle:not(:first-child) { margin-top: 2.8rem; }
.practice-list { columns: 2; column-gap: 2rem; }
.practice-list li {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--ink);
  padding: 0.5rem 0;
  break-inside: avoid;
  border-bottom: 1px solid var(--line);
}
.flow-list { counter-reset: none; }
.flow-list li {
  display: flex;
  gap: 1.2rem;
  padding: 0.7rem 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.flow-time {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ocean);
  min-width: 3.5rem;
  padding-top: 0.15rem;
}
.retreat-note {
  margin: 1.6rem 0 2.4rem;
  font-style: italic;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--ink-soft);
}
.retreat-feature { margin: 0; overflow: hidden; align-self: stretch; }
.retreat-feature img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

/* Facilitators */
.facilitators { margin-top: clamp(3.5rem, 7vw, 6rem); }
.facilitators-title { text-align: center; margin-bottom: 2.6rem; }
.facilitator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.facilitator img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1.2rem;
  filter: grayscale(0.15);
}
.facilitator-name {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  color: var(--ink);
}
.facilitator-role {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin: 0.5rem 0 0.9rem;
}
.facilitator-bio { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.65; }

/* ----------------------------- The Book --------------------------- */
.section-book { padding-top: clamp(5rem, 10vw, 9rem); }
.book-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.book-cover { margin: 0; }
.book-cover img {
  width: 100%;
  box-shadow: 0 30px 70px -30px rgba(14,61,66,0.45);
  border-radius: 2px;
}
.book-subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--ink-soft);
  margin: 0.4rem 0 1.6rem;
}
.book-body { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 46ch; }
.book-included {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  padding: 0.9rem 0;
  margin-bottom: 1.6rem;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.book-alt { margin-top: 1.1rem; font-size: 0.95rem; color: var(--ink-soft); }
.book-alt a { color: var(--ocean); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------- Reserve / Pricing -------------------- */
.section-reserve { background: var(--ivory); max-width: none; }
.section-reserve > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.reserve-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.pricing-panel {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.pricing-row:first-child { padding-top: 0; }
.pricing-label { font-family: var(--ff-serif); font-size: 1.35rem; color: var(--ink); }
.pricing-amount {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--ocean);
  white-space: nowrap;
}
.pricing-row-feature .pricing-amount { font-size: 1.25rem; }
.included-block { margin-top: 2rem; }
.included-title {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 1.6rem 0 0.9rem;
}
.included-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.included-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.65em;
  width: 6px; height: 6px;
  background: var(--sand);
  border-radius: 50%;
}
.included-list-muted li { color: var(--ink-soft); opacity: 0.85; }
.included-list-muted li::before { background: var(--line); }

/* Form */
.reserve-form-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.reserve-form-intro { color: var(--ink-soft); margin: 0.6rem 0 1.8rem; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(21,94,99,0.14);
}
.field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form-status[data-state="error"] { color: #9b2c2c; }
.form-status[data-state="success"] { color: var(--ocean); }
.form-fineprint { margin-top: 1.1rem; font-size: 0.82rem; color: var(--ink-soft); }
.reserve-form .btn-block { margin-top: 0.4rem; }

/* ============================== FOOTER ============================ */
.site-footer {
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.82);
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-mark {
  width: 110px; height: auto;
  margin-bottom: 1.3rem;
  opacity: 0.92;
}
.footer-name {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-place { font-size: 0.95rem; line-height: 1.7; }
.footer-nav ul, .footer-social { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-nav a, .footer-social a {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover, .footer-social a:hover, .footer-contact a:hover { color: var(--white); }
.footer-connect-title, .footer-nav::before {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.3rem;
  display: block;
}
.footer-contact { margin-top: 1.6rem; font-size: 0.9rem; }
.footer-contact a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.6rem var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 1.6rem; }
.footer-legal a { color: rgba(255,255,255,0.82); transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* Dark-context focus visibility */
.hero :focus-visible,
.site-footer :focus-visible,
.parallax :focus-visible,
.site-header[data-state="top"] :focus-visible {
  outline-color: var(--white);
}

/* ============================ RESPONSIVE ========================== */
@media (max-width: 960px) {
  .retreat-layout { grid-template-columns: 1fr; }
  .retreat-feature { order: -1; }
  .retreat-feature img { min-height: 320px; max-height: 460px; }
  .book-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-cover { max-width: 320px; margin: 0 auto; }
  .reserve-layout { grid-template-columns: 1fr; }
  .facilitator-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    padding: 0.5rem var(--gutter) 1.5rem;
    box-shadow: 0 20px 40px -20px rgba(14,61,66,0.35);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease), visibility 0s 0.4s;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
  }
  .nav-menu a {
    color: var(--ink) !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid var(--line);
    width: 100%;
    font-size: 0.92rem;
  }
  .nav-menu a::after { display: none; }
  .nav-cta {
    border: 0 !important;
    color: var(--ocean) !important;
    margin-top: 0.4rem;
  }
  .nav-cta:hover { background: none; }
}

@media (max-width: 760px) {
  .house-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .house-row:nth-child(even) .house-row-media { order: 0; }
  .house-hero { height: clamp(280px, 58vw, 420px); }
}

@media (max-width: 680px) {
  .practice-list { columns: 1; }
  .facilitator-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Small phones: shrink the hero title so a short word (e.g. "in") never orphans on its own line. */
@media (max-width: 600px) {
  .hero-title { font-size: clamp(1.6rem, 6.6vw, 2.1rem); letter-spacing: 0.01em; }
}

/* Tiniest phones (iPhone SE 1st gen, 320px): drop below the 1.6rem floor so "in Hope Town, Abaco" still rides one line. */
@media (max-width: 340px) {
  .hero-title { font-size: 1.45rem; }
}

/* ============================ LEGAL PAGES ========================= */
.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.legal-header .header-inner { padding-top: 1.2rem; padding-bottom: 1.2rem; }
.legal-header .wordmark-name { color: var(--ink); }
.legal-header .wordmark-sub { color: var(--ink-soft); }
.legal-header .emblem-light { opacity: 0; }
.legal-header .emblem-dark { opacity: 1; }
.legal-back {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean);
}
.legal-back:hover { text-decoration: underline; text-underline-offset: 4px; }
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
}
.legal .eyebrow { text-align: left; }
.legal h1 {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  line-height: 1.16;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.legal-updated { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 2.6rem; }
.legal h2 {
  font-family: var(--ff-titling);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 2.6rem 0 0.9rem;
}
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal a { color: var(--ocean); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2rem var(--gutter);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* =================================================================
   PHOTO REFRESH ADDITIONS - shared homepage + Wellness components
   Unifying warm grade so the owner-supplied photo set reads as one.
   ================================================================= */
.facilitators-group img,
.table-lead img,
.table-grid img,
.modality-media img,
.ritual-grid img,
.cta-feature-media img,
.retreat-feature img {
  filter: saturate(1.06) contrast(1.02) brightness(1.005) sepia(0.045);
}

/* ---- Facilitators group portrait (circle of teachers) ---- */
.facilitators-group {
  position: relative;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.facilitators-group img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.facilitators-group::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,61,66,0) 55%, rgba(14,61,66,0.45) 100%);
}
.facilitators-group figcaption {
  position: absolute;
  left: clamp(1.1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 1;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}

/* ---- The Table (homepage nourishment band) ---- */
.table-lead {
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
}
.table-lead img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.table-grid figure { margin: 0; overflow: hidden; }
.table-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.table-grid li:hover img { transform: scale(1.04); }
.table-grid figcaption {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.85rem;
  text-align: center;
}

/* ---- Modality rows (Wellness page, landscape media, alternating) ---- */
.modality-rows {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.modality-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.modality-row:nth-child(even) .modality-media { order: 2; }
.modality-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.modality-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.modality-row:hover .modality-media img { transform: scale(1.045); }
.modality-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.modality-text p:not(.eyebrow) { color: var(--ink-soft); max-width: 44ch; }

/* ---- The Details ritual strip (Wellness page) ---- */
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.ritual-grid figure { margin: 0; overflow: hidden; }
.ritual-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.ritual-grid li:hover img { transform: scale(1.05); }
.ritual-grid figcaption {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.7rem;
  text-align: center;
}

/* ---- CTA feature (Wellness practitioners block) ---- */
.cta-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.cta-feature-media { margin: 0; overflow: hidden; aspect-ratio: 3 / 2; }
.cta-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-feature-text p { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 46ch; }

/* ---- Wellness hero still (video-ready: same box as .hero-video) ---- */
.hero-still { width: 100%; height: 100%; object-fit: cover; }

/* ---- Wellness closing CTA band ---- */
.wellness-cta { background: var(--ocean-deep); color: var(--white); text-align: center; }
.wellness-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.wellness-cta .eyebrow { color: var(--sand); }
.wellness-cta .section-title { color: var(--white); }
.wellness-cta-price {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: rgba(255,255,255,0.94);
  margin: 1.3rem 0 0.5rem;
}
.wellness-cta-note { color: rgba(255,255,255,0.7); font-size: 0.98rem; margin-bottom: 2.2rem; }

/* ---- Private 1:1 session cards (Wellness page) ---- */
.private-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.private-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.private-media { margin: 0; overflow: hidden; aspect-ratio: 4 / 3; }
.private-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.private-card:hover .private-media img { transform: scale(1.045); }
.private-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(1.5rem, 2.4vw, 2rem);
}
.private-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.private-text { color: var(--ink-soft); font-size: 0.98rem; }
.private-price {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ocean);
  margin: 1.4rem 0 1.3rem;
}
.private-price-unit { font-size: 1rem; font-style: normal; color: var(--ink-soft); letter-spacing: 0.03em; }
.private-body .btn { margin-top: auto; }

/* ---- Pricing group labels + form field rows ---- */
.pricing-group-label {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 1.8rem 0 0.4rem;
}
.pricing-group-label:first-child { margin-top: 0; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-hint { text-transform: none; letter-spacing: 0.02em; color: var(--ink-soft); font-size: 0.7rem; }

/* ---- Responsive for the new components ---- */
@media (max-width: 880px) {
  .modality-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .modality-row:nth-child(even) .modality-media { order: 0; }
  .private-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 760px) {
  .cta-feature { grid-template-columns: 1fr; gap: 1.75rem; }
  .cta-feature-media { order: -1; }
  .ritual-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 680px) {
  .table-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* =================================================================
   RESERVE THE HOUSE  (/stay page) + homepage stay CTA band
   ================================================================= */

/* Sub-page hero: a touch shorter than the homepage so it reads as a section page */
.hero-stay { min-height: 78vh; min-height: 78svh; }
.hero-stay .hero-content .btn { margin-top: 2.4rem; }

/* Warm grade so the owner interior photos match the rest of the photo set */
.stay-gallery img { filter: saturate(1.06) contrast(1.02) brightness(1.005) sepia(0.045); }

/* ---- Overview band (ivory, full-bleed) ---- */
.section-stay-overview { background: var(--ivory); max-width: none; }
.section-stay-overview > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.stay-glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}
.stay-glance-item {
  text-align: center;
  padding: 1.6rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.stay-glance-label {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.6rem;
}
.stay-glance-value {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
}
.stay-glance-note {
  max-width: 60ch;
  margin: clamp(1.75rem, 3.5vw, 2.6rem) auto 0;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---- Gallery (white) ---- */
/* Break the gallery wider than the text column so the images fill the page */
.section-stay-gallery { max-width: 1680px; }
.stay-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.4vw, 1.2rem);
  margin-top: clamp(2rem, 4vw, 3.25rem);
}
.stay-gallery figure { margin: 0; overflow: hidden; }
.stay-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.stay-gallery figure:hover img { transform: scale(1.04); }
.stay-gallery-item--portrait figure img { aspect-ratio: 3 / 4; }
.stay-gallery figcaption {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.8rem;
  text-align: center;
}

/* ---- Booking steps (how it works) ---- */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 940px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.booking-step { text-align: center; }
.booking-step-num {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.booking-step-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.booking-step-text { color: var(--ink-soft); font-size: 0.96rem; max-width: 30ch; margin: 0 auto; }

/* ---- Date-range calendar ---- */
.booking-calendar { align-self: start; }
.cal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.cal-month {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.cal-nav {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: grid; place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ocean);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.cal-nav:hover:not(:disabled) { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 0.45rem;
}
.cal-dow span {
  text-align: center;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.3rem 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--ink);
}
.cal-pad { visibility: hidden; }
.cal-day {
  width: 100%; height: 100%;
  border-radius: 2px;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
button.cal-day:hover { background: var(--ivory-deep); }
.cal-day.is-past { color: var(--line); cursor: default; }
.cal-day.is-range { background: rgba(21, 94, 99, 0.13); color: var(--ink); }
.cal-day.is-start,
.cal-day.is-end {
  background: var(--ocean);
  color: var(--white);
  font-weight: 500;
}
.cal-summary {
  margin-top: 1.2rem;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  min-height: 1.6em;
}
.cal-clear {
  margin-top: 0.5rem;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cal-clear:hover { color: var(--ocean-deep); }

/* ---- Homepage "Reserve the House" CTA band (full-bleed, parallax) ---- */
.stay-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.stay-cta-bg {
  position: absolute;
  inset: -14% 0;
  background: url(images/stay-hero.webp) center / cover no-repeat;
  will-change: transform;
}
.stay-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 61, 66, 0.52) 0%, rgba(14, 61, 66, 0.62) 100%);
}
.stay-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8rem) var(--gutter);
}
.stay-cta .eyebrow { color: rgba(255, 255, 255, 0.9); }
.stay-cta-title {
  font-family: var(--ff-titling);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--white);
}
.stay-cta-text {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 1.3rem auto 2.2rem;
  max-width: 540px;
}

/* ---- Responsive for the /stay components ---- */
@media (max-width: 880px) {
  .stay-gallery { grid-template-columns: repeat(2, 1fr); }
  .stay-glance { grid-template-columns: repeat(2, 1fr); }
  .booking-steps { grid-template-columns: 1fr; max-width: 420px; }
  .booking-step-text { max-width: 38ch; }
}
@media (max-width: 600px) {
  .stay-gallery { grid-template-columns: 1fr; gap: 0.9rem; }
}
@media (max-width: 560px) {
  .stay-glance { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ====================== REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-scroll-line::after { animation: none; }
  .house-row:hover .house-row-media img,
  .table-grid li:hover img,
  .modality-row:hover .modality-media img,
  .ritual-grid li:hover img,
  .stay-gallery figure:hover img { transform: none; }
  .parallax-bg, .house-hero-img, .stay-cta-bg { transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =================================================================
   /stay HERO — scroll-scrubbed walk-in (canvas image sequence)
   + clickable gallery (show-all + lightbox)
   Appended last so .hero-walk overrides .hero / .hero-stay by source order.
   ================================================================= */

/* Tall scroll track; collapses to one screen with no JS / reduced motion */
.hero-walk {
  display: block;
  overflow: visible;
  min-height: 0;
  height: 100vh;
  height: 100svh;
  padding: 0;
}
.hero-walk.is-walk-on { height: 250vh; }

.hero-walk-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-walk-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.hero-walk.is-walk-ready .hero-walk-canvas { opacity: 1; }

.hero-walk-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease);
}
.hero-walk.is-walk-ready .hero-walk-poster { opacity: 0; }

.hero-walk-sticky .hero-scrim { z-index: 1; }
.hero-walk-sticky .hero-content { z-index: 2; }
.hero-walk-sticky .hero-scroll { z-index: 3; }

@media (max-width: 760px) {
  .hero-walk.is-walk-on { height: 200vh; }
}

/* ---- Gallery: clickable tiles + show-all ---- */
.stay-gallery-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.stay-gallery-item.is-gallery-hidden { display: none; }
.stay-gallery.is-gallery-expanded .stay-gallery-item.is-gallery-hidden { display: block; }
.stay-gallery-btn:focus-visible { outline: 2px solid var(--ocean); outline-offset: 3px; }

.stay-gallery-more { text-align: center; margin-top: clamp(1.75rem, 3.5vw, 2.6rem); }
.gallery-more-btn {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean);
  background: none;
  border: 1px solid var(--ocean);
  padding: 0.9rem 2.1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.gallery-more-btn:hover { background: var(--ocean); color: var(--white); }
.gallery-more-btn:focus-visible { outline: 2px solid var(--ocean); outline-offset: 3px; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 28, 30, 0.92);
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; cursor: zoom-out; }
.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1100px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background 0.3s var(--ease);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 48px;
  height: 48px;
  font-size: 1.9rem;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 2rem;
}
.lightbox-prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox-next { right: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
body.is-lightbox-open { overflow: hidden; }

@media (max-width: 560px) {
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lightbox-img { max-height: 70vh; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
}

/* ---- Reduced motion: no scrub, just the static poster ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-walk,
  .hero-walk.is-walk-on { height: 100vh; height: 100svh; }
  .hero-walk-canvas { display: none; }
  .hero-walk-poster { opacity: 1 !important; }
}
