/* ============================================================
   Bamboo Bay — Belmond-style site layer
   Built entirely on Bamboo Bay design tokens. Cinematic, slow,
   editorial. Full-bleed photography, generous whitespace.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: var(--type-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* hero-treatment / accent driven by tweaks via these custom props */
  --display-scale: 1;
}

img { display: block; max-width: 100%; }

a { color: var(--link); text-decoration: none; }

/* Branded keyboard focus indicator (replaces the stripped/default outline) */
:focus-visible {
  outline: 2px solid var(--bb-gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.site-nav :focus-visible, .nav-mobile :focus-visible, .hero :focus-visible,
.page-head :focus-visible, .bleed :focus-visible, .section--burgundy :focus-visible,
.footer :focus-visible { outline-color: var(--bb-gold-soft); }

/* <picture> wrappers fill their media container so img sizing/hover still apply */
.chalet__img picture, .split__media picture,
.room-card__media picture, .mosaic figure picture { display: block; width: 100%; height: 100%; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 820px; }

/* ---- Display type helpers ---- */
.display {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  color: var(--text-heading);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  margin: 0;
}
.display em { font-style: italic; font-weight: var(--fw-light); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--type-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--bb-gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.eyebrow--rule::before,
.eyebrow--rule.eyebrow--center::after {
  content: "";
  width: 38px; height: 1px;
  background: currentColor; opacity: .5;
}
.eyebrow--center { justify-content: center; }

.lead {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: var(--type-lead);
  line-height: var(--lh-relaxed);
  color: var(--text-muted);
}

.measure { max-width: 60ch; }

/* ============================================================
   Navigation — transparent over hero, burgundy on scroll
   ============================================================ */
.site-nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 80;
  transition: background var(--dur-base) var(--ease-calm),
              box-shadow var(--dur-base) var(--ease-calm),
              padding var(--dur-base) var(--ease-calm),
              border-color var(--dur-base) var(--ease-calm);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: var(--bb-burgundy);
  box-shadow: 0 10px 40px rgba(43,36,34,.22);
  padding: 12px 0;
  border-bottom-color: rgba(209,154,45,.22);
}
/* legibility scrim behind the transparent (over-hero) nav; hidden once solid */
.site-nav::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 140px;
  background: linear-gradient(to bottom, rgba(43,36,34,.45), rgba(43,36,34,0));
  pointer-events: none; z-index: -1;
  transition: opacity var(--dur-base) var(--ease-calm);
}
.site-nav.scrolled::before { opacity: 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-right { display: flex; align-items: center; gap: 44px; }
.nav-links {
  display: flex; align-items: center; gap: 34px;
  list-style: none; margin: 0; padding: 0;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bb-sand);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-base) var(--ease-calm);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--bb-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-calm);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--bb-gold-soft); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

/* text wordmark — Cormorant name + gold mono eyebrow */
.nav-wordmark {
  display: inline-flex; flex-direction: column; line-height: 1;
  white-space: nowrap;
}
.nav-wordmark-name {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 27px;
  color: var(--bb-white);
  letter-spacing: 0.01em;
  transition: font-size var(--dur-base) var(--ease-calm);
}
.nav-wordmark-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-top: 7px;
  padding-left: 2px;
}
.site-nav.scrolled .nav-wordmark-name { font-size: 23px; }

.nav-book {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bb-gold-soft); background: transparent;
  padding: 13px 30px; border-radius: var(--radius-sm);
  border: 1px solid rgba(209,154,45,.6);
  transition: background var(--dur-base) var(--ease-calm),
              color var(--dur-base) var(--ease-calm),
              border-color var(--dur-base) var(--ease-calm);
}
.nav-book:hover { background: var(--bb-gold); color: var(--bb-burgundy); border-color: var(--bb-gold); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--bb-sand); font-size: 22px; padding: 6px;
}

/* mobile menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 79;
  background: var(--bb-burgundy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-calm), visibility 0s linear var(--dur-base);
}
.nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity var(--dur-base) var(--ease-calm), visibility 0s; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 30px;
  color: var(--bb-sand); font-weight: var(--fw-light);
}
.nav-mobile a:hover { color: var(--bb-gold); }
.nav-mobile .nav-book { font-family: var(--font-mono); font-size: 13px; margin-top: 12px; }

/* ============================================================
   Hero — full-bleed photography, burgundy scrim, slow zoom
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  color: var(--bb-sand);
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
}
@media (prefers-reduced-motion: no-preference) {
  .motion-on .hero-media { animation: kenburns 22s var(--ease-calm) forwards; }
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(74,0,0,.42) 0%, rgba(74,0,0,.18) 35%, rgba(102,0,0,.48) 100%),
    linear-gradient(115deg, rgba(74,0,0,.55) 0%, rgba(102,0,0,.20) 60%, rgba(102,0,0,.10) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column;
  padding: 0 0 0;
}
.hero-eyebrow { color: var(--bb-gold-soft); white-space: nowrap; }
.hero-title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  color: var(--bb-white);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 26px 0 0;
  font-size: calc(clamp(2.6rem, 6vw, 4.5rem) * var(--display-scale));
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(43,0,0,.3);
}
.hero-title em { font-style: italic; color: var(--bb-sand); }
.hero-sub {
  font-family: var(--font-body); font-weight: var(--fw-light);
  font-size: var(--type-lead); color: var(--bb-sand);
  margin: 26px 0 0; max-width: 46ch;
  line-height: var(--lh-relaxed);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }

/* understated editorial text link — Belmond-style */
.textlink {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bb-gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-sand);
  transition: gap var(--dur-base) var(--ease-calm), color var(--dur-base) var(--ease-calm), border-color var(--dur-base) var(--ease-calm);
}
.textlink::after { content: "\2192"; font-size: 14px; transition: transform var(--dur-base) var(--ease-calm); }
.textlink:hover { gap: 18px; color: var(--bb-burgundy); border-color: var(--bb-gold); }
.textlink--light { color: var(--bb-sand); border-bottom-color: rgba(235,217,180,.4); }
.textlink--light:hover { color: var(--bb-gold-soft); border-color: var(--bb-gold-soft); }

.btn-hero {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 34px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  transition: transform var(--dur-base) var(--ease-calm),
              background var(--dur-base) var(--ease-calm),
              box-shadow var(--dur-base) var(--ease-calm),
              color var(--dur-base) var(--ease-calm);
}
.btn-hero--gold { background: var(--bb-gold); color: var(--bb-burgundy); border: 1.5px solid var(--bb-gold); }
.btn-hero--gold:hover { background: var(--bb-gold-deep); box-shadow: var(--shadow-gold); transform: translateY(var(--lift)); }
.btn-hero--ghost { background: rgba(251,247,239,.06); color: var(--bb-sand); border: 1.5px solid rgba(235,217,180,.55); }
.btn-hero--ghost:hover { background: var(--bb-sand); color: var(--bb-burgundy); border-color: var(--bb-sand); transform: translateY(var(--lift)); }

/* scroll cue */
.hero-cue {
  position: absolute; left: 50%; bottom: 34px; z-index: 3;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--bb-sand);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: .85;
}
.hero-cue::after {
  content: ""; width: 1px; height: 46px;
  background: linear-gradient(var(--bb-gold-soft), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-cue::after { animation: cuepulse 2.4s var(--ease-calm) infinite; transform-origin: top; }
}
@keyframes cuepulse { 0%,100% { opacity:.4; transform: scaleY(.6);} 50% { opacity:1; transform: scaleY(1);} }

/* ---- Hero treatments ---- */
/* centered (default) */
.hero[data-hero="centered"] .hero-inner { align-items: center; justify-content: center; text-align: center; }
.hero[data-hero="centered"] .hero-sub { margin-left: auto; margin-right: auto; }
.hero[data-hero="centered"] .hero-actions { justify-content: center; }
.hero[data-hero="centered"] .hero-eyebrow { justify-content: center; }

/* editorial — bottom-left, generous */
.hero[data-hero="editorial"] .hero-inner { align-items: flex-start; justify-content: flex-end; text-align: left; padding-bottom: 12vh; }
.hero[data-hero="editorial"] .hero-title { max-width: 16ch; }

/* framed — thin gold frame + centered, lettered */
.hero[data-hero="framed"] .hero-inner { align-items: center; justify-content: center; text-align: center; }
.hero[data-hero="framed"] .hero-sub { margin-left:auto; margin-right:auto; }
.hero[data-hero="framed"] .hero-actions { justify-content: center; }
.hero[data-hero="framed"] .hero-eyebrow { justify-content: center; }
.hero[data-hero="framed"] .hero-frame {
  position: absolute; inset: 28px; z-index: 2;
  border: 1px solid rgba(235,217,180,.45);
  pointer-events: none;
}
.hero-frame { display: none; }
.hero[data-hero="framed"] .hero-frame { display: block; }

/* hero booking bar — slim, understated */
.booking-wrap { position: relative; z-index: 30; margin-top: -38px; }
.booking-bar {
  background: var(--bb-paper);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
}
.booking-field {
  display: flex; flex-direction: column; gap: 5px;
  padding: 16px 28px;
  border-right: 1px solid var(--border-sand);
}
.booking-field label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-caption);
}
.booking-field input, .booking-field select {
  border: none; background: transparent;
  font-family: var(--font-body); font-size: 15px; color: var(--bb-ink);
  padding: 2px 0;
}
.booking-field input::-webkit-calendar-picker-indicator { filter: sepia(.4) saturate(2) hue-rotate(-10deg); }
.booking-cta {
  border: none; cursor: pointer;
  background: var(--bb-gold); color: var(--bb-burgundy);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0 38px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--dur-base) var(--ease-calm);
}
.booking-cta:hover { background: var(--bb-gold-deep); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: clamp(6rem, 10vw, 11rem) 0; }
.section--tight { padding: clamp(4rem, 6vw, 6rem) 0; }
.section--sand { background: var(--surface-cream); }
.section--soft { background: var(--surface-cream-soft); }
.section--burgundy { background: var(--surface-dark); color: var(--bb-sand); }
.section--burgundy .display { color: var(--bb-gold); }
.section--burgundy .lead { color: var(--bb-sand); }

.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.section-head--center { margin: 0 auto; align-items: center; text-align: center; }
.section-head .display { font-size: var(--type-h1); }

/* statement / intro */
.statement {
  text-align: center; max-width: 940px; margin: 0 auto;
}
.statement .display {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: var(--fw-light);
  line-height: 1.24;
  letter-spacing: 0.004em;
}
.statement .display em { font-style: italic; color: var(--bb-burgundy); }
.section--burgundy .statement .display em { color: var(--bb-gold-soft); }

/* gold stat bar */
.statbar { background: var(--bb-gold); }
.statbar .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-top: 40px; padding-bottom: 40px;
}
.statbar-item { position: relative; }
.statbar-item:not(:last-child)::after {
  content: ""; position: absolute; right: -12px; top: 12%; height: 76%;
  width: 1px; background: rgba(102,0,0,.18);
}

/* editorial split */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 72px;
}
.split--reverse .split__media { order: 2; }
.split__media {
  overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-calm); }
.split__media:hover img { transform: scale(1.05); }
.split__body { display: flex; flex-direction: column; gap: 18px; }
.split__body .display { font-size: var(--type-h1); }

/* full-bleed editorial band */
.bleed {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  overflow: hidden; color: var(--bb-sand);
}
.bleed-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bleed-media::after { content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(74,0,0,.72) 0%, rgba(74,0,0,.35) 50%, rgba(74,0,0,.12) 100%); }
.bleed .container { position: relative; z-index: 2; }
.bleed .display { color: var(--bb-white); font-size: clamp(2.2rem,4vw,3.2rem); max-width: 18ch; }
.bleed .lead { color: var(--bb-sand); max-width: 48ch; }

/* tick feature list */
.ticklist { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ticklist li { display: flex; gap: 14px; align-items: baseline; font-size: var(--type-body); color: var(--text-muted); }
.ticklist li i { color: var(--bb-gold-deep); font-size: 13px; }
.section--burgundy .ticklist li { color: var(--bb-sand); }
.section--burgundy .ticklist li i { color: var(--bb-gold); }

/* minimal pillars — thin gold rule, mono label, cormorant line. No cards. */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar { padding: 0 48px; border-left: 1px solid var(--border-sand); }
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar:last-child { padding-right: 0; }
.pillar-rule { width: 34px; height: 1px; background: var(--bb-gold); margin-bottom: 26px; }
.pillar .meta {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bb-gold-ink); display: block; margin-bottom: 14px;
}
.pillar h3 {
  font-family: var(--font-display); font-weight: var(--fw-light);
  font-size: 27px; line-height: 1.2; color: var(--bb-burgundy); margin: 0 0 14px;
}
.pillar p { margin: 0; font-size: var(--type-small); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* large single pull-quote — Belmond editorial */
.bigquote { max-width: 1000px; margin: 0 auto; text-align: center; }
.bigquote .review-stars { color: var(--bb-gold); letter-spacing: 6px; font-size: 14px; margin-bottom: 30px; }
.bigquote blockquote {
  font-family: var(--font-display); font-weight: var(--fw-light); font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.32; color: var(--bb-ink);
  margin: 0; text-wrap: balance;
}
.section--burgundy .bigquote blockquote { color: var(--bb-white); }
.bigquote cite {
  display: block; margin-top: 34px;
  font-family: var(--font-mono); font-style: normal; font-size: 11.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-caption);
}
.section--burgundy .bigquote cite { color: var(--bb-gold-soft); }

/* grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   Editorial home — Coconut Bay numbered-section language
   ============================================================ */
/* numbered section label: "02 — The Chalets" */
.sec-num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bb-gold-ink);
  display: inline-flex; align-items: center; gap: 12px;
}
.sec-num b { font-weight: var(--fw-regular); color: var(--bb-gold-ink); }
.section--burgundy .sec-num, .section--burgundy .sec-num b { color: var(--bb-gold-soft); }

/* hero caption under the CTA */
.hero-caption {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bb-sand); opacity: .8; margin: 22px 0 0;
}

/* editorial chalet cards (image, label, name, copy — no price chrome) */
.chalet { display: flex; flex-direction: column; }
.chalet__img {
  overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); aspect-ratio: 4 / 5;
}
.chalet__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-calm); }
.chalet:hover .chalet__img img { transform: scale(1.05); }
.chalet__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bb-gold-ink); margin: 26px 0 10px;
}
.chalet__name {
  font-family: var(--font-display); font-weight: var(--fw-regular);
  font-size: 29px; line-height: 1.15; color: var(--bb-burgundy); margin: 0 0 12px;
}
.chalet__desc { color: var(--text-muted); font-size: var(--type-small); line-height: var(--lh-relaxed); margin: 0; max-width: 34ch; }

/* numbered experience rows */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }
.exp__item { border-top: 1px solid var(--border-sand); padding-top: 26px; }
.exp__num {
  font-family: var(--font-display); font-weight: var(--fw-light);
  font-size: 30px; color: var(--bb-gold-deep); line-height: 1;
}
.exp__name {
  font-family: var(--font-display); font-weight: var(--fw-regular);
  font-size: 24px; line-height: 1.2; color: var(--bb-burgundy); margin: 20px 0 10px;
}
.exp__desc { color: var(--text-muted); font-size: var(--type-small); line-height: var(--lh-relaxed); margin: 0; }

/* philosophy micro-stats */
.microstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 64px; }
.microstat { border-top: 1px solid rgba(209,154,45,.28); padding-top: 22px; }
.microstat__title {
  font-family: var(--font-display); font-weight: var(--fw-regular);
  font-size: 24px; color: var(--bb-gold); margin: 0 0 8px;
}
.microstat__desc { font-size: var(--type-small); color: rgba(235,217,180,.82); line-height: var(--lh-body); margin: 0; }

/* quiet guest words */
.words { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.word { border-top: 1px solid var(--border-sand); padding-top: 26px; }
.word p {
  font-family: var(--font-display); font-style: italic; font-weight: var(--fw-light);
  font-size: 20px; line-height: 1.4; color: var(--bb-ink); margin: 0 0 18px;
}
.word cite {
  font-family: var(--font-mono); font-style: normal; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-caption);
}

/* large location stats + coordinates */
.locstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 8px; }
.locstat { border-top: 1px solid var(--border-sand); padding-top: 26px; }
.locstat__val {
  font-family: var(--font-display); font-weight: var(--fw-light);
  font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--bb-burgundy);
}
.locstat__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-caption); margin-top: 14px; display: block;
}
.coords {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--bb-gold-ink); margin-top: 56px; text-align: center;
}

/* full-bleed image band between sections */
.imgband {
  height: clamp(360px, 56vh, 640px);
  /* portrait statue in a short, wide band — bias the crop toward the top so the
     head/headdress stays in frame instead of being cut off on wide viewports */
  background-size: cover; background-position: center 20%;
}

/* review card — 3px gold top border per DS */
.review-card {
  background: var(--bb-white);
  border: 1px solid var(--border-default);
  border-top: 3px solid var(--bb-gold);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--dur-base) var(--ease-calm), box-shadow var(--dur-base) var(--ease-calm);
}
.review-card:hover { transform: translateY(var(--lift)); box-shadow: var(--shadow-md); }
.review-stars { color: var(--bb-gold); letter-spacing: 3px; font-size: 14px; }
.review-card p { font-family: var(--font-display); font-style: italic; font-size: 21px;
  line-height: 1.4; color: var(--bb-ink); margin: 0; font-weight: var(--fw-regular); }
.review-card cite { font-family: var(--font-mono); font-style: normal; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-caption); }

/* wellness card — 3px forest left border per DS */
.wellness-card {
  background: var(--bb-white);
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--bb-forest);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px; height: 100%;
  transition: transform var(--dur-base) var(--ease-calm), box-shadow var(--dur-base) var(--ease-calm);
}
.wellness-card:hover { transform: translateY(var(--lift)); box-shadow: var(--shadow-md); }
.wellness-card h4 { font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 23px; color: var(--bb-burgundy); margin: 0; }
.wellness-card .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bb-forest); }
.wellness-card p { margin: 0; font-size: var(--type-small); color: var(--text-muted); line-height: var(--lh-body); }

/* page header (interior pages) */
.page-head {
  position: relative; min-height: 64vh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--bb-sand);
}
.page-head-media { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
@media (prefers-reduced-motion: no-preference) { .motion-on .page-head-media { animation: kenburns 20s var(--ease-calm) forwards; } }
.page-head-scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,0,0,.40), rgba(102,0,0,.62)); }
.page-head .container { position: relative; z-index: 2; padding-bottom: 64px; }
.page-head .display { color: var(--bb-white); font-size: var(--type-display-2); max-width: 18ch; }
.page-head .lead { color: var(--bb-sand); max-width: 52ch; margin-top: 14px; }
.page-head .eyebrow { color: var(--bb-gold-soft); }

/* gallery mosaic */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; grid-auto-flow: dense; }
.mosaic figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-calm); }
.mosaic figure:hover img { transform: scale(1.06); }
.m-span-3 { grid-column: span 3; }
.m-span-2 { grid-column: span 2; }
.m-tall { grid-row: span 2; }

/* distances table */
.dtable { width: 100%; border-collapse: collapse; }
.dtable th {
  text-align: left; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-caption); padding: 0 0 16px; border-bottom: 1px solid var(--border-sand);
}
.dtable td { padding: 20px 0; border-bottom: 1px solid var(--border-sand); font-size: var(--type-body); color: var(--text-body); }
.dtable td:first-child { font-family: var(--font-display); font-size: 22px; color: var(--bb-burgundy); }
.dtable td.num { font-family: var(--font-mono); color: var(--bb-gold-ink); letter-spacing: 0.04em; }
.dtable tr:last-child td { border-bottom: none; }

/* FAQ */
.faq { border-top: 1px solid var(--border-sand); }
.faq-item { border-bottom: 1px solid var(--border-sand); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; font-family: var(--font-display); font-size: 24px; color: var(--bb-burgundy);
}
.faq-q i { color: var(--bb-gold-deep); font-size: 15px; transition: transform var(--dur-base) var(--ease-calm); flex: none; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease-calm); }
.faq-a-inner { padding: 0 0 26px; color: var(--text-muted); max-width: 70ch; }

/* contact detail */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.contact-card {
  background: var(--bb-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); padding: 34px; box-shadow: var(--shadow-sm);
  display: flex; gap: 20px; align-items: flex-start;
}
.contact-ico {
  width: 56px; height: 56px; flex: none; border-radius: var(--radius-md);
  background: var(--bb-gold); color: var(--bb-burgundy);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.contact-card h4 { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 22px;
  color: var(--bb-burgundy); margin: 0 0 6px; }
.contact-card p { margin: 0; color: var(--text-muted); font-size: var(--type-small); line-height: var(--lh-body); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--bb-burgundy-deep); color: var(--bb-sand); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer img.f-logo { height: 40px; margin-bottom: 22px; }
.footer p { color: rgba(235,217,180,.78); font-size: var(--type-small); line-height: var(--lh-body); max-width: 38ch; }
.footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bb-gold-soft); margin: 0 0 20px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: rgba(235,217,180,.82); font-size: var(--type-small); transition: color var(--dur-base) var(--ease-calm); }
.footer ul a:hover { color: var(--bb-gold); }
.footer .f-contact li { display: flex; gap: 12px; align-items: baseline; color: rgba(235,217,180,.82); font-size: var(--type-small); margin-bottom: 12px; }
.footer .f-contact i { color: var(--bb-gold); font-size: 13px; width: 16px; flex: none; }
.footer .f-contact--plain li { display: block; margin-bottom: 12px; }
.footer-bottom {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(209,154,45,.2);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(235,217,180,.82); margin: 0; max-width: none; }

/* ============================================================
   Scroll reveal — base visible; hidden only when JS active
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 1s var(--ease-calm), transform 1s var(--ease-calm); }
.js .reveal[data-delay="1"].in { transition-delay: .1s; }
.js .reveal[data-delay="2"].in { transition-delay: .2s; }
.js .reveal[data-delay="3"].in { transition-delay: .3s; }
/* motion off (tweak) or reduced-motion: no transform jump */
.motion-off .js .reveal,
.motion-off.js .reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .exp-grid, .microstats, .words { grid-template-columns: repeat(2, 1fr); gap: 36px 40px; }
}
@media (max-width: 980px) {
  .nav-right { display: none; }
  .nav-toggle { display: inline-flex; }
  .split, .grid-3, .grid-2, .grid-4, .contact-grid, .pillars, .exp-grid, .microstats, .words, .locstats, .chalets-3 { grid-template-columns: 1fr; gap: 40px; }
  .pillar { border-left: none; padding: 0; }
  .pillar-rule { margin-bottom: 18px; }
  .split--reverse .split__media { order: 0; }
  .statbar .container { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .statbar-item:nth-child(2)::after { display: none; }
  .booking-bar { grid-template-columns: 1fr 1fr; }
  .booking-cta { grid-column: 1 / -1; padding: 18px; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .m-span-3, .m-span-2 { grid-column: span 1; }
  .m-tall { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .statbar .container { grid-template-columns: 1fr 1fr; }
  .booking-bar { grid-template-columns: 1fr; }
  .booking-field { border-right: none; border-bottom: 1px solid var(--border-sand); }
}

/* ============================================================
   DS components — static recreation of the React design-system
   pieces (Button, Badge, RoomCard, Input/form) used in the
   accommodations / experiences / location / contact pages.
   Styles mirror _ds_bundle.js inline styles + JS hover handlers.
   ============================================================ */

/* ---- Button (variants: primary, outline, burgundy, ghost) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: var(--fw-medium);
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius-sm); cursor: pointer; white-space: nowrap;
  padding: 12px 28px; font-size: 15px;          /* md (default) */
  border: 1.5px solid transparent;
  transition: transform var(--dur-base) var(--ease-calm),
              background var(--dur-base) var(--ease-calm),
              box-shadow var(--dur-base) var(--ease-calm),
              color var(--dur-base) var(--ease-calm);
}
.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--lg { padding: 15px 38px; font-size: 16px; }

.btn--primary { background: var(--bb-gold); color: var(--bb-burgundy); border-color: var(--bb-gold); }
.btn--primary:hover { transform: translateY(var(--lift)); background: var(--bb-gold-deep); box-shadow: var(--shadow-gold); }

.btn--outline { background: transparent; color: var(--bb-gold-deep); border-color: var(--bb-gold); }
.btn--outline:hover { transform: translateY(var(--lift)); background: var(--bb-gold); color: var(--bb-burgundy); }

.btn--burgundy { background: var(--bb-burgundy); color: var(--bb-sand); border-color: var(--bb-burgundy); }
.btn--burgundy:hover { transform: translateY(var(--lift)); background: var(--bb-burgundy-wine); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--bb-burgundy); border-color: transparent; }
.btn--ghost:hover { transform: translateY(var(--lift)); background: rgba(102,0,0,0.06); }

.btn--block { width: 100%; }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 11px; border-radius: var(--radius-pill); line-height: 1;
}
.badge--solid { background: var(--bb-gold); color: var(--bb-burgundy); border: 1px solid var(--bb-gold); }

/* ---- RoomCard ---- */
.room-card {
  background: var(--bb-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-calm), box-shadow var(--dur-base) var(--ease-calm);
}
.room-card:hover { transform: translateY(var(--lift)); box-shadow: var(--shadow-lg); }
.room-card__media { position: relative; height: 230px; overflow: hidden; }
.room-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-calm);
}
.room-card:hover .room-card__media img { transform: scale(1.05); }
.room-card__badge { position: absolute; top: 14px; left: 14px; }
.room-card__body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.room-card__name {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 26px; line-height: 1.1; color: var(--bb-burgundy); margin: 0;
}
.room-card__price { display: flex; align-items: baseline; gap: 6px; }
.room-card__price .amt { font-family: var(--font-mono); font-size: 22px; color: var(--bb-gold-deep); }
.room-card__price .per { font-family: var(--font-mono); font-size: 12px; color: var(--bb-stone); letter-spacing: 0.04em; }
.room-card__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.room-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-weight: var(--fw-light);
  font-size: 14.5px; color: var(--bb-ink-soft); line-height: 1.45;
}
.room-card__features li i { color: var(--bb-gold); font-size: 12px; margin-top: 4px; }
.room-card__cta { margin-top: auto; padding-top: 8px; }

/* ---- Enquiry form (Input + Button) ---- */
.form-card {
  background: var(--bb-white); border: 1px solid var(--border-default);
  border-top: 3px solid var(--bb-gold); border-radius: var(--radius-md);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.form-card__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bb-gold-ink); margin: 0 0 8px;
}
.form-card__title {
  font-family: var(--font-display); font-weight: var(--fw-regular);
  font-size: 30px; color: var(--bb-burgundy); margin: 0 0 24px;
}
.form-fields { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; width: 100%; }
.field label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bb-ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 15px;
  color: var(--bb-ink); background: var(--bb-white);
  border: 1.5px solid var(--bb-sand-deep); border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color var(--dur-base) var(--ease-calm), box-shadow var(--dur-base) var(--ease-calm);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--bb-gold); box-shadow: 0 0 0 4px rgba(209,154,45,0.18);
}
.form-thankyou {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.form-thankyou[hidden] { display: none; }
.form-thankyou .ty-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bb-gold); color: var(--bb-burgundy);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.form-thankyou h3 { font-family: var(--font-display); color: var(--bb-burgundy); font-size: 28px; margin: 0; }
.form-thankyou p { color: var(--text-muted); margin: 0; max-width: 36ch; }

/* ---- Embedded map (Location page) ---- */
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); line-height: 0;
}
.map-frame iframe { display: block; width: 100%; border: 0; }
