/* ============================================================
   SELVA MISTICA — Luxury Theme Design System
   ============================================================ */

/* 1. Design Tokens */
:root {
  --ink:        #0a1812;
  --forest:     #132b20;
  --forest-mid: #1f3a2e;
  --moss:       #3d5e45;
  --sage:       #7a9d7e;
  --stone:      #bfad96;
  --sand:       #d8c9b0;
  --ivory:      #f4ede0;
  --cream:      #faf7f2;
  --gold:       #b8883c;
  --gold-warm:  #c9993e;
  --gold-light: #ddb96a;
  --soil:       #6a4628;

  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-sans:  "Avenir Next", "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease-out:   cubic-bezier(0.33, 1, 0.68, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --content:      min(1280px, calc(100vw - 3rem));
  --content-wide: min(1560px, calc(100vw - 3rem));
  --content-full: calc(100vw - 3rem);

  --r-xs:  6px;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  44px;
  --r-2xl: 60px;

  --shadow-xs:   0 2px 8px rgba(10, 24, 18, 0.06);
  --shadow-sm:   0 4px 18px rgba(10, 24, 18, 0.09);
  --shadow-md:   0 12px 40px rgba(10, 24, 18, 0.12);
  --shadow-lg:   0 24px 64px rgba(10, 24, 18, 0.16);
  --shadow-gold: 0 12px 36px rgba(184, 136, 60, 0.28);
}

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

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--forest);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
figure { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 3. Typography */
.t-serif {
  font-family: var(--font-serif);
  letter-spacing: -0.04em;
  line-height: 1;
}

.t-eyebrow {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-display {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* 4. Layout */
.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.wrap {
  width: var(--content);
  margin-inline: auto;
}

.wrap--wide {
  width: var(--content-wide);
  margin-inline: auto;
}

/* 5. Generic Card */
.card {
  border-radius: var(--r-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(191, 173, 150, 0.6);
  box-shadow: var(--shadow-sm);
}

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0 1.85rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), filter 200ms var(--ease-out), background-color 200ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out);
  border: 1px solid transparent;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-warm), #a87632);
  color: #fff8ef;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(184, 136, 60, 0.38);
  filter: brightness(1.06);
}

.btn--ghost-white {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244, 237, 224, 0.42);
}

.btn--ghost-white:hover {
  background: rgba(244, 237, 224, 0.1);
  border-color: rgba(244, 237, 224, 0.75);
  transform: translateY(-2px);
}

.btn--ghost-forest {
  background: transparent;
  color: var(--forest);
  border-color: rgba(19, 43, 32, 0.25);
}

.btn--ghost-forest:hover {
  background: var(--forest);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn--filled-forest {
  background: var(--forest);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}

.btn--filled-forest:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 6. Site Header */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 60;
  padding: 1.4rem 0;
  transition: padding 220ms var(--ease-out), background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-header.is-scrolled {
  padding: 0.85rem 0;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(19, 43, 32, 0.08), var(--shadow-xs);
}

.site-header--transparent {
  color: var(--ivory);
}

.site-header--transparent .site-branding__title,
.site-header--transparent .site-branding__tagline,
.site-header--transparent .menu > li > a {
  color: var(--ivory);
}

.site-header--transparent .site-branding__mark {
  border-color: rgba(244, 237, 224, 0.5);
  color: var(--gold-light);
}

.site-header--transparent .nav-toggle span {
  background: var(--ivory);
}

.site-header__inner {
  width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Branding */
.site-branding {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  transition: color 220ms var(--ease-out);
}

.site-branding__mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(178, 138, 74, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
  transition: border-color 220ms var(--ease-out), color 220ms var(--ease-out);
}

.site-branding__text { min-width: 0; }

.site-branding__title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 220ms var(--ease-out);
}

.site-branding__tagline {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 58, 46, 0.62);
  transition: color 220ms var(--ease-out);
}

.site-header--transparent .site-branding__tagline {
  color: rgba(244, 237, 224, 0.58);
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  font-size: clamp(0.7rem, 0.82vw, 0.78rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

/* Solid header — hover */
.menu > li:hover > a,
.menu > li:focus-within > a {
  color: var(--forest);
  background: rgba(61, 94, 69, 0.10);
}

/* Solid header — active / current page */
.menu > li.current-menu-item > a,
.menu > li.current_page_item > a {
  color: var(--ivory);
  background: var(--forest);
}

/* Transparent header — hover */
.site-header--transparent .menu > li:hover > a,
.site-header--transparent .menu > li:focus-within > a {
  color: var(--ivory);
  background: rgba(244, 237, 224, 0.15);
}

/* Transparent header — active / current page */
.site-header--transparent .menu > li.current-menu-item > a,
.site-header--transparent .menu > li.current_page_item > a {
  color: var(--forest);
  background: var(--ivory);
}

/* Submenu toggle */
.menu-item-has-children > .submenu-toggle {
  display: none;
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
}

.menu-item-has-children > .submenu-toggle span,
.menu-item-has-children > .submenu-toggle span::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.6rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-item-has-children > .submenu-toggle span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-item-has-children.is-open > .submenu-toggle span::before,
.menu-item-has-children:hover > .submenu-toggle span::before,
.menu-item-has-children:focus-within > .submenu-toggle span::before {
  opacity: 0;
}

/* ─── Mega menu — editorial split panel ──────────────── */

/* Panel shell: block layout, right portion reserved for photo */
.sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 70;
  display: block;
  min-width: 36rem;
  /* No padding-right — spacing handled by <a> so <li> is always full width */
  padding-bottom: 1.5rem;
  list-style: none;
  border-radius: var(--r-xl);
  background: rgba(8, 20, 14, 0.97);
  backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid rgba(184, 136, 60, 0.16);
  border-top: 2px solid rgba(184, 136, 60, 0.5);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(244, 237, 224, 0.04) inset;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 280ms;
}

/* Section label */
.sub-menu::before {
  content: "";
  display: block;
  padding: 1.6rem calc(50% + 2.5rem) 0.6rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(184, 136, 60, 0.65);
  pointer-events: none;
}

/* ── Editorial photo panel — absolutely fills the right portion ──
   .sub-menu is position:absolute which creates a containing block
   for its absolutely-positioned children, so inset is relative to
   the panel itself, giving full-height photo regardless of nav length */
.sub-menu .mega__feature {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-image: url("../images/hotel-lounge.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* Purely decorative — must not swallow hover/click on the link row beneath it. */
  pointer-events: none;
}

/* Gradient veil over photo — left edge fades to panel bg, photo visible on right */
.sub-menu .mega__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 20, 14, 0.7) 0%,
    rgba(8, 20, 14, 0.1) 45%,
    rgba(8, 20, 14, 0.0) 100%
  );
}

/* Thin gold separator at left edge of photo panel */
.sub-menu .mega__feature::before {
  content: "";
  position: absolute;
  inset: 1.25rem auto 1.25rem 0;
  z-index: 1;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 136, 60, 0.4) 20%,
    rgba(184, 136, 60, 0.4) 80%,
    transparent 100%
  );
}

/* ── Per-section featured images ── */
.menu-item--rooms          .mega__feature { background-image: url("../images/room-interior-2.jpg"); }
.menu-item--restaurant     .mega__feature { background-image: url("../images/breakfast-spread.jpg"); }
.menu-item--sustainability .mega__feature { background-image: url("../images/tropical-garden.jpg"); }
.menu-item--tours          .mega__feature { background-image: url("../images/canopy-view.jpg"); }

/* ── Per-section labels ── */
.menu-item--rooms        .sub-menu::before { content: "Rooms & Suites"; }
.menu-item--restaurant   .sub-menu::before { content: "Restaurant & Bar"; }
.menu-item--sustainability .sub-menu::before { content: "Sustainability"; }
.menu-item--tours        .sub-menu::before { content: "Tours & Experiences"; }

/* ── Nav link style ── */
.sub-menu > li:not(.mega__feature) {
  border-top: 1px solid rgba(244, 237, 224, 0.055);
  transition: background-color 200ms ease;
}

.sub-menu > li:not(.mega__feature):last-of-type {
  border-bottom: 1px solid rgba(244, 237, 224, 0.055);
}

.sub-menu > li:not(.mega__feature):hover {
  background-color: rgba(184, 136, 60, 0.07);
}

.sub-menu > li:not(.mega__feature) > a {
  position: relative;
  display: block;
  /* Right padding = 50% photo + 20px gap + 2rem visual margin */
  padding: 1rem calc(50% + 2.5rem) 1rem 2.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  color: rgba(244, 237, 224, 0.72);
  transition: color 200ms ease;
}

/* Gold left-bar accent — fades in on hover */
.sub-menu > li:not(.mega__feature) > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 200ms ease;
}

.sub-menu > li:not(.mega__feature):hover > a {
  color: var(--gold-light);
}

.sub-menu > li:not(.mega__feature):hover > a::before {
  opacity: 1;
}

/* Link inner elements */
.sub-menu a .mega__name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  transition: color 220ms ease;
}

.sub-menu a .mega__desc {
  display: block;
  margin-top: 0.28rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: rgba(244, 237, 224, 0.35);
  transition: color 220ms ease;
}

.sub-menu > li:not(.mega__feature) > a:hover .mega__desc {
  color: rgba(244, 237, 224, 0.58);
}

/* ── Open state ── */
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── Desktop: anchor to .site-header, center on viewport ── */
@media (min-width: 981px) {
  /* Removing position:relative from nav makes the absolute sub-menu
     bubble up to .site-header (position:fixed) as the containing block,
     giving true viewport-center via left:50% transform:-50% */
  .primary-nav,
  .primary-nav .menu-item-has-children {
    position: static;
  }

  .sub-menu {
    top: 100%;
    left: 50%;
    width: min(56rem, calc(100vw - 4rem));
    min-width: 0;
    margin-top: 0.4rem;
    transform: translateX(-50%) translateY(12px);
  }

  .sub-menu .mega__feature {
    width: 50%;
  }

  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu,
  .menu-item-has-children.is-open > .sub-menu {
    transform: translateX(-50%) translateY(0);
  }
}

.primary-nav__cta {
  flex: 0 0 auto;
  padding-inline: 1.35rem;
  font-size: clamp(0.72rem, 0.82vw, 0.78rem);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 43, 32, 0.08);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  transition: background-color 180ms var(--ease-out);
}

.nav-toggle:hover {
  background: rgba(19, 43, 32, 0.14);
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--forest);
  border-radius: 999px;
  transition: background-color 220ms var(--ease-out);
}

/* ============================================================
   7. HERO — Cinematic Full Screen
   ============================================================ */
.hero--cinema {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  color: var(--ivory);
  display: flex;
  align-items: stretch;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform-origin: center;
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__bg.is-active {
  opacity: 1;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(10, 24, 18, 0.82) 0%,
      rgba(10, 24, 18, 0.55) 40%,
      rgba(10, 24, 18, 0.15) 70%,
      rgba(10, 24, 18, 0.05) 100%
    ),
    linear-gradient(to bottom,
      rgba(10, 24, 18, 0.25) 0%,
      rgba(10, 24, 18, 0.0) 30%,
      rgba(10, 24, 18, 0.0) 60%,
      rgba(10, 24, 18, 0.5) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: clamp(4rem, 8vh, 7rem);
}

.hero__copy {
  max-width: 80rem;
}

.hero__eyebrow {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ivory);
  max-width: 16ch;
}

.hero__lede {
  margin-top: 2.25rem;
  max-width: 36rem;
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Hero floor: stats row, directly below copy */
.hero__floor {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244,237,224,.12);
}

.hero__stats {
  display: flex;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-stat { display: grid; gap: 0.35rem; }

.hero-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ivory);
}

.hero-stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.54);
}

.hero__scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.44);
}

.hero__scroll-line {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, rgba(244, 237, 224, 0.65), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* Mosaic thumbnails floating in corner */
.hero__mosaic {
  position: absolute;
  z-index: 3;
  right: 3rem;
  bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  width: 20rem;
  opacity: 0;
  transform: translateX(1.5rem);
  transition: opacity 0.9s var(--ease-out) 0.5s, transform 0.9s var(--ease-out) 0.5s;
}

.hero__mosaic.is-loaded {
  opacity: 1;
  transform: translateX(0);
}

.hero__mosaic-frame {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(244, 237, 224, 0.2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.hero__mosaic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.hero__mosaic-frame:hover img {
  transform: scale(1.05);
}

/* ============================================================
   8. Marquee Band
   ============================================================ */
.marquee-band {
  overflow: hidden;
  border-top: 1px solid rgba(19, 43, 32, 0.1);
  border-bottom: 1px solid rgba(19, 43, 32, 0.1);
  padding: 1.1rem 0;
  background: var(--cream);
  user-select: none;
}

.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-band:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0 1.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.marquee__dot {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   9. Section Commons
   ============================================================ */
.section-eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-eyebrow--light {
  color: var(--gold-light);
}

.section-eyebrow--gold {
  color: var(--gold-light);
}

/* Eyebrow on dark photo heroes — always ivory-gold, never inherits body dark */
.rooms-hero__content .section-eyebrow,
.checkout-hero .checkout-hero__eyebrow {
  color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

/* ============================================================
   10. Home Story (Light Editorial Section)
   ============================================================ */
/* ── Story Tell (Cinematic storytelling) ── */
.story-tell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10rem, 18vw, 18rem) var(--gap);
  overflow: hidden;
  background: var(--cream);
}

.story-tell__inner {
  position: relative;
  z-index: 2;
  max-width: 72rem;
  text-align: center;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  padding-block: 4rem;
}

.story-tell__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.story-tell__body {
  display: grid;
  gap: 1rem;
  max-width: 60rem;
}

.story-tell__body p {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.72;
  color: var(--ink);
}

.story-tell__word {
  display: inline;
}

.story-tell__pills {
  justify-content: center;
  margin-top: 0.5rem;
}

.story-tell__pills .pill {
  border-color: rgba(184, 136, 60, 0.28);
  background: rgba(184, 136, 60, 0.07);
  color: var(--soil);
}

@media (prefers-reduced-motion: reduce) {
  .story-tell__word { color: var(--ink) !important; }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(184, 136, 60, 0.28);
  border-radius: 999px;
  background: rgba(184, 136, 60, 0.07);
  color: var(--soil);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid rgba(184, 136, 60, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-warm), #a87632);
  color: #fff8ef;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), filter 200ms var(--ease-out);
  margin-top: 0.5rem;
}

.text-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(184, 136, 60, 0.38);
  filter: brightness(1.06);
}


/* ============================================================
   11. Home Testimonials — Crossfade Slider
   ============================================================ */
.home-testimonials {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(6rem, 12vw, 12rem) 0;
  position: relative;
  overflow: hidden;
}

.home-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(184, 136, 60, 0.07), transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(61, 94, 69, 0.14), transparent 50%);
  pointer-events: none;
}

.home-testimonials__inner {
  position: relative;
  width: var(--content);
  margin-inline: auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  justify-items: center;
  text-align: center;
}

/* Slider wrapper */
.testimonial-slider {
  width: 100%;
  max-width: 58rem;
  display: grid;
  gap: 0;
  justify-items: center;
}

.testimonial-slider__mark {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(7rem, 12vw, 13rem);
  line-height: 0.55;
  color: var(--gold);
  opacity: 0.28;
  letter-spacing: -0.04em;
  user-select: none;
  margin-bottom: -1.5rem;
}

/* Track — stacks all slides in the same grid cell */
.testimonial-slider__track {
  display: grid;
  width: 100%;
  min-height: clamp(16rem, 28vw, 22rem);
  align-items: center;
}

.testimonial-slide {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.testimonial-slide p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 0;
}

.testimonial-slide footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.testimonial-slide__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
}

.testimonial-slide cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.38);
}

/* Controls */
.testimonial-slider__controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.testimonial-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(244, 237, 224, 0.2);
  background: transparent;
  color: rgba(244, 237, 224, 0.6);
  cursor: pointer;
  transition: border-color 240ms, color 240ms, background 240ms;
}

.testimonial-slider__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 136, 60, 0.08);
}

.testimonial-slider__dots {
  display: flex;
  gap: 0.55rem;
}

.testimonial-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: none;
  background: rgba(244, 237, 224, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 300ms, transform 300ms;
}

.testimonial-dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ============================================================
   12. Room Showcase (Dark Cinematic Section)
   ============================================================ */
.room-showcase {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}

.room-showcase__inner {
  width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.room-showcase__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  align-self: stretch;
  min-height: 420px;
  border: 1px solid rgba(10, 24, 18, 0.08);
  box-shadow: 0 24px 64px rgba(10, 24, 18, 0.1);
}

.room-showcase__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.room-showcase__media:hover img {
  transform: scale(1.04);
}

.room-showcase__copy { display: grid; gap: 1.5rem; align-content: start; }

.room-showcase__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.room-showcase__copy p {
  max-width: 30rem;
  color: rgba(10, 24, 18, 0.62);
  font-size: 1.2rem;
  line-height: 1.75;
}

.room-showcase__rate {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  background: rgba(10, 24, 18, 0.03);
  border: 1px solid rgba(10, 24, 18, 0.08);
}

.room-showcase__rate-price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.room-showcase__rate-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 24, 18, 0.42);
}

.room-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(10, 24, 18, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.room-stat {
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(10, 24, 18, 0.08);
  display: grid;
  gap: 0.2rem;
}

.room-stat:last-child { border-right: 0; }

.room-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.room-stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 24, 18, 0.42);
}

.room-showcase__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-policy-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 24, 18, 0.15);
  color: rgba(10, 24, 18, 0.6);
  letter-spacing: 0.02em;
}

.room-showcase__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(10, 24, 18, 0.03);
  border: 1px solid rgba(10, 24, 18, 0.07);
}

.room-feature__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.feature-list { display: grid; gap: 0.6rem; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(10, 24, 18, 0.7);
}

.feature-list svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.85;
}

/* ============================================================
   12b. Cinematic Image Reveal
   ============================================================ */
/* ── Aperture Reveal ── */
.aperture-reveal {
  position: relative;
  height: 320vh;
  background: var(--ink);
}

/* One sticky container holding both the bg text and the stage */
.aperture-reveal__pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--ink);
}

/* Ghosted text — lives in the dark ink layer behind the circle */
.aperture-reveal__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
  pointer-events: none;
  gap: 0.4rem;
}

.aperture-reveal__bg-sub {
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.18);
}

.aperture-reveal__bg-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 18rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: rgba(244, 237, 224, 0.05);
}

/* Stage: clip-path circle animated by GSAP — video fills it as a normal bg */
.aperture-reveal__stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

/* Standard YouTube "object-fit: cover" background sizing */
.aperture-reveal__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.aperture-reveal__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Covers the viewport at 16:9 ratio — no stretch, no black bars */
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.aperture-reveal__sound {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(244, 237, 224, 0.35);
  background: rgba(10, 24, 18, 0.55);
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms, background 200ms;
  backdrop-filter: blur(6px);
}

.aperture-reveal__sound:hover { background: rgba(10, 24, 18, 0.8); }
.aperture-reveal__sound.is-visible { opacity: 1; }
.aperture-reveal__sound .icon-sound { display: none; }
.aperture-reveal__sound.is-unmuted .icon-muted { display: none; }
.aperture-reveal__sound.is-unmuted .icon-sound { display: block; }

/* ============================================================
   13. Home Gallery (Three Image Row)
   ============================================================ */
/* ── Editorial Gallery ── */
.home-gallery {
  width: var(--content-wide);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.home-gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.home-gallery__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0.5rem 0 0;
}

.home-gallery__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.home-gallery__cta svg {
  transition: transform 240ms var(--ease-out);
}

.home-gallery__cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.home-gallery__cta:hover svg {
  transform: translateX(4px);
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.5fr;
  grid-template-rows: 58vh 38vh;
  gap: 0.65rem;
}

.gallery-frame {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.gallery-frame:hover img { transform: scale(1.06); }

/* Grid placement */
.gf--1 { grid-column: 1; grid-row: 1 / 3; } /* tall left — spans both rows */
.gf--2 { grid-column: 2; grid-row: 1; }
.gf--3 { grid-column: 3 / 5; grid-row: 1; } /* wide top right */
.gf--4 { grid-column: 2 / 4; grid-row: 2; } /* wide bottom middle */
.gf--5 { grid-column: 4; grid-row: 2; }
.gf--6 { display: none; } /* reserved for future use */

/* ============================================================
   14. Home Experience Cards (Link Row)
   ============================================================ */
.home-experiences {
  background: var(--ink);
  width: 100%;
  padding-top: clamp(5rem, 10vw, 10rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.home-experiences__inner {
  width: var(--content-wide);
  margin-inline: auto;
}

.home-experiences__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.home-experiences__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ivory);
}

.home-experiences__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 240ms var(--ease-out);
}

.home-experiences__cta svg { transition: transform 240ms var(--ease-out); }
.home-experiences__cta:hover { color: var(--gold); }
.home-experiences__cta:hover svg { transform: translateX(4px); }

/* Bento grid */
.experience-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 46vh 36vh;
  gap: 0.75rem;
}

.ec--rooms    { grid-column: 1; grid-row: 1 / 3; }
.ec--dining   { grid-column: 2; grid-row: 1; }
.ec--nature   { grid-column: 3; grid-row: 1; }
.ec--wellness { grid-column: 2 / 4; grid-row: 2; }

/* Small cards — trim content to fit shorter height */
.ec--dining .experience-card__body p,
.ec--nature .experience-card__body p { display: none; }

.ec--dining .experience-card h3,
.ec--nature .experience-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.2;
}

/* Wellness card — wider, so text can be slightly larger */
.ec--wellness .experience-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-xl);
  overflow: hidden;
  color: var(--ivory);
  text-decoration: none;
  transition: box-shadow 240ms var(--ease-out);
}

.experience-card:hover {
  box-shadow: var(--shadow-lg);
}

.experience-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.experience-card:hover .experience-card__media img {
  transform: scale(1.05);
}

.experience-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5, 14, 10, 0.92) 0%,
    rgba(5, 14, 10, 0.45) 45%,
    rgba(5, 14, 10, 0.08) 100%
  );
  transition: background 280ms var(--ease-out);
}

.experience-card:hover .experience-card__overlay {
  background: linear-gradient(
    to top,
    rgba(5, 14, 10, 0.95) 0%,
    rgba(5, 14, 10, 0.55) 50%,
    rgba(5, 14, 10, 0.12) 100%
  );
}

.experience-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  padding: 1.75rem;
  gap: 0.55rem;
}

.experience-card__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.experience-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ivory);
}

.experience-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.78);
  max-width: 28rem;
}

.experience-card__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(244, 237, 224, 0.12);
  border: 1px solid rgba(244, 237, 224, 0.2);
  display: grid;
  place-items: center;
  margin-top: 0.5rem;
  transition: background-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.experience-card:hover .experience-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateX(3px);
}

.experience-card__arrow svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--ivory);
  fill: none;
}

/* ============================================================
   15. Floating Booking Bar
   ============================================================ */
.home-booking-band {
  position: relative;
  z-index: 50;
}

.booking-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.booking-bar__form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  width: min(1700px, calc(100vw - 3rem));
  padding: 1.1rem 1.25rem 1.1rem 2rem;
  border-radius: var(--r-2xl);
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(191, 173, 150, 0.7);
  box-shadow: 0 24px 80px rgba(10, 24, 18, 0.24), 0 2px 0 rgba(244, 237, 224, 0.8) inset;
  pointer-events: all;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}

body.booking-bar-near-footer .booking-bar__form {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem);
}

.booking-bar__label {
  display: grid;
  gap: 0.15rem;
  white-space: nowrap;
}

.booking-bar__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(19, 43, 32, 0.52);
}

.booking-bar__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest);
}

.booking-bar__fields {
  display: grid;
  grid-template-columns:
    minmax(9rem, 1.3fr)
    minmax(9rem, 1.3fr)
    minmax(6rem, 0.8fr)
    minmax(6rem, 0.8fr);
  gap: 0.5rem;
  align-items: end;
}

.booking-field {
  display: grid;
  gap: 0.3rem;
}

.booking-field__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(19, 43, 32, 0.55);
}

.booking-field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(19, 43, 32, 0.1);
  border-radius: var(--r-md);
  background: rgba(244, 237, 224, 0.7);
  color: var(--forest);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.booking-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 136, 60, 0.15);
}

/* Guest stepper controls */
.guest-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(19, 43, 32, 0.1);
  border-radius: var(--r-md);
  background: rgba(244, 237, 224, 0.7);
}

.stepper-btn {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 43, 32, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  transition: background-color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}

.stepper-btn:hover {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}

.stepper-value {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
}

/* Info cards (old home-facts) */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(191, 173, 150, 0.6);
  box-shadow: var(--shadow-sm);
  display: grid;
  align-content: start;
  gap: 0.6rem;
  min-height: clamp(12rem, 18vw, 15rem);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.info-card p {
  color: rgba(19, 43, 32, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   16. Booking Form (Rooms Page + Footer CTA)
   ============================================================ */
.booking-form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(160deg, rgba(19, 43, 32, 0.96), rgba(47, 81, 61, 0.88));
  color: rgba(244, 237, 224, 0.92);
  box-shadow: var(--shadow-lg);
}

.booking-form__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.booking-form__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.booking-form__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.booking-form .booking-field__label {
  color: rgba(244, 237, 224, 0.6);
}

.booking-form .booking-field input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 237, 224, 0.15);
  color: rgba(244, 237, 224, 0.96);
}

.booking-form .booking-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 136, 60, 0.2);
}

.booking-form__submit {
  width: 100%;
  min-height: 3.25rem;
}

.booking-form--filters {
  background: transparent;
  padding: 0;
  box-shadow: none;
  color: var(--forest);
}

.booking-form--filters .booking-form__title { color: var(--forest); }
.booking-form--filters .booking-form__eyebrow { color: var(--gold); }
.booking-form--filters .booking-field__label { color: rgba(19, 43, 32, 0.65); }
.booking-form--filters .booking-field input {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(19, 43, 32, 0.12);
  color: var(--forest);
}

.booking-action { display: grid; gap: 0.3rem; }

.booking-field__label--ghost { visibility: hidden; }

/* ============================================================
   17. Page Hero (Inner Pages)
   ============================================================ */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 2.5rem;
}

.page-hero__inner {
  width: var(--content);
  margin-inline: auto;
  max-width: 56rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.page-hero__lede {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(19, 43, 32, 0.74);
  max-width: 38rem;
}

/* ============================================================
   18. Rooms Page
   ============================================================ */

/* ── Cinematic hero ── */
.rooms-hero {
  position: relative;
  height: 72vh;
  min-height: 36rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.rooms-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
}

.rooms-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.rooms-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 14, 0.4) 0%,
    rgba(8, 20, 14, 0.35) 40%,
    rgba(8, 20, 14, 0.85) 100%
  );
}

.rooms-hero__content {
  position: relative;
  z-index: 2;
  width: var(--content-wide);
  margin-inline: auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--ivory);
}

.rooms-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ivory);
  margin-top: 1rem;
}

.rooms-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.rooms-hero__pills span {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 237, 224, 0.35);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.9);
  background: rgba(244, 237, 224, 0.08);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.rooms-hero__scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244, 237, 224, 0.55);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rooms-hero__scroll-cue span:first-child {
  display: block;
  width: 1px;
  height: 2rem;
  background: rgba(244, 237, 224, 0.3);
  animation: scroll-cue-pulse 2s ease-in-out infinite;
}

@keyframes scroll-cue-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(0.6); }
}

/* ── Shared page hero (About, Checkout, and all inner pages) ── */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 36rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,20,14,.60) 0%, transparent 30%),
    linear-gradient(to top,   rgba(8,20,14,.80) 0%, rgba(8,20,14,.35) 50%, rgba(8,20,14,.10) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: var(--content-wide);
  margin-inline: auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--ivory);
}
.page-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ivory);
  margin-top: 1rem;
}
.page-hero__lede {
  font-size: 1.05rem;
  color: rgba(244, 237, 224, 0.72);
  max-width: 44ch;
  margin-top: 1.25rem;
  line-height: 1.6;
}
.page-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.page-hero__pills span {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 237, 224, 0.35);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.9);
  background: rgba(244, 237, 224, 0.08);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.page-hero__pills svg { opacity: 0.75; flex-shrink: 0; }
.page-hero__scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244, 237, 224, 0.55);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page-hero__scroll-cue span:first-child {
  display: block;
  width: 1px;
  height: 2rem;
  background: rgba(244, 237, 224, 0.3);
  animation: scroll-cue-pulse 2s ease-in-out infinite;
}
@media (max-width: 760px) {
  .page-hero { height: 85vh; }
  .page-hero__headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }
}

/* ── Inline search strip ── */
.rooms-search-strip {
  background: var(--cream);
  padding: 2.5rem 0;
}

.rooms-search-strip__inner {
  width: var(--content-wide);
  margin-inline: auto;
}

/* Override filter-form defaults inside the strip */
.rooms-search-strip .booking-form--filters {
  background: #fff;
  border: 1px solid rgba(191, 173, 150, 0.5);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.rooms-search-strip .booking-form__grid {
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  align-items: end;
}

/* ── Availability notice ── */
.rooms-notice-wrap {
  width: var(--content);
  margin-inline: auto;
  padding-top: 2rem;
}

.rooms-notice {
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(122, 157, 126, 0.1);
  border: 1px solid rgba(122, 157, 126, 0.3);
  font-size: 0.9rem;
  color: var(--forest);
  line-height: 1.55;
}

.rooms-notice--error {
  background: rgba(180, 70, 50, 0.07);
  border-color: rgba(180, 70, 50, 0.22);
  color: #8b2012;
}

/* ── Room showcase card (rsc) ── */
.rsc {
  width: var(--content-wide);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.rsc__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(10, 24, 18, 0.14),
    0 0 0 1px rgba(191, 173, 150, 0.3);
}

/* Left — media column */
.rsc__media {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
}

.rsc__photo {
  flex: 1;
  overflow: hidden;
  min-height: 28rem;
}

.rsc__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 500ms var(--ease-out);
}

.rsc:hover .rsc__photo img {
  transform: scale(1.04);
}

.rsc__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 11rem;
  gap: 2px;
  background: rgba(8, 20, 14, 0.6);
}

.rsc__thumb {
  overflow: hidden;
}

.rsc__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease-out), opacity 300ms ease;
  opacity: 0.75;
}

.rsc__thumb:hover img {
  transform: scale(1.06);
  opacity: 1;
}

/* Right — body column (dark editorial) */
.rsc__body {
  padding: clamp(2.5rem, 4vw, 4rem);
  background: var(--forest);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  color: var(--ivory);
}

.rsc__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.rsc__status {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.45);
  margin-bottom: 0.5rem;
}

.rsc__status--available {
  color: #5dc48a;
}

.rsc__status--unavailable {
  color: #e07a6e;
}

.rsc__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ivory);
}

.rsc__pricing {
  text-align: right;
  flex-shrink: 0;
}

.rsc__price {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-light);
}

.rsc__per-night {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.4);
}

.rsc__desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(244, 237, 224, 0.65);
  border-left: 2px solid rgba(184, 136, 60, 0.45);
  padding-left: 1.25rem;
}

/* Stat pills */
.rsc__stats {
  display: flex;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(244, 237, 224, 0.1);
}

.rsc__stat {
  flex: 1;
  padding: 0.85rem 1rem;
  text-align: center;
  background: rgba(244, 237, 224, 0.05);
  border-right: 1px solid rgba(244, 237, 224, 0.1);
}

.rsc__stat:last-child { border-right: 0; }

.rsc__stat span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.4);
  margin-bottom: 0.3rem;
}

.rsc__stat strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

/* Inclusions & policies */
.rsc__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.rsc__feature-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.4);
  margin-bottom: 0.85rem;
}

.rsc__list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.rsc__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.8);
}

.rsc__list li svg {
  flex-shrink: 0;
  margin-top: 0.12em;
  color: var(--gold-light);
}

.rsc__list--notes li svg {
  color: rgba(244, 237, 224, 0.3);
}

/* Bed tags */
.rsc__bed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.rsc__bed-tag {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 136, 60, 0.35);
  background: rgba(184, 136, 60, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(244, 237, 224, 0.75);
}

.rsc__beds-note {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: rgba(244, 237, 224, 0.35);
  line-height: 1.5;
}

.rsc__stat-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184, 136, 60, 0.5);
  transition: text-decoration-color 200ms ease;
}

.rsc__stat-link:hover {
  text-decoration-color: var(--gold-light);
}

/* CTA row */
.rsc__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
}

/* ── Amenities section ── */
.rooms-amenities {
  background: var(--forest);
  color: var(--ivory);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.rooms-amenities__inner {
  width: var(--content);
  margin-inline: auto;
}

.rooms-amenities__header {
  max-width: 42rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.rooms-amenities__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 1rem;
  color: var(--ivory);
}

.rooms-amenities__header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.65);
}

.rooms-amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.amenity-item {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--r-xl);
  border: 1px solid rgba(244, 237, 224, 0.08);
  background: rgba(244, 237, 224, 0.04);
  transition: background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.amenity-item:hover {
  background: rgba(244, 237, 224, 0.08);
  border-color: rgba(184, 136, 60, 0.3);
  transform: translateY(-4px);
}

.amenity-item__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  background: rgba(184, 136, 60, 0.12);
  border: 1px solid rgba(184, 136, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
  transition: background-color 240ms ease;
}

.amenity-item:hover .amenity-item__icon {
  background: rgba(184, 136, 60, 0.2);
}

.amenity-item h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.amenity-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.55);
}

/* ── Trust stats strip ── */
.rooms-trust {
  background: var(--ink);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.rooms-trust__inner {
  width: var(--content);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.rooms-trust__item {
  padding: 0 2rem;
  border-right: 1px solid rgba(244, 237, 224, 0.08);
}

.rooms-trust__item:last-child { border-right: 0; }

.rooms-trust__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ivory);
}

.rooms-trust__item strong span {
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 0.1em;
}

.rooms-trust__item > span {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.4);
}

/* ── Photo gallery mosaic ── */
.rooms-gallery {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}

.rooms-gallery__inner {
  width: var(--content-wide);
  margin-inline: auto;
}

.rooms-gallery__header {
  max-width: 40rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.rooms-gallery__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 1rem;
}

.rooms-gallery__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr;
  gap: 0.75rem;
  height: 38rem;
}

.rooms-gallery__main {
  min-height: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.rooms-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 700ms var(--ease-out);
}

.rooms-gallery__main:hover img {
  transform: scale(1.04);
}

.rooms-gallery__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 0;
}

.rooms-gallery__tile {
  min-height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.rooms-gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 500ms var(--ease-out);
}

.rooms-gallery__tile:hover img {
  transform: scale(1.07);
}

/* ── Cinematic finale ── */
.rooms-finale {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.rooms-finale__bg {
  position: absolute;
  inset: 0;
  margin: 0;
}

.rooms-finale__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.rooms-finale__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 14, 0.42) 0%,
    rgba(8, 20, 14, 0.78) 100%
  );
}

.rooms-finale__content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.rooms-finale__quote {
  margin: 0;
  max-width: 54ch;
}

.rooms-finale__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin: 0;
}

.rooms-finale__cta {
  min-height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 0.82rem;
}

/* Intro grid for inner pages */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.intro-grid h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.intro-grid__story,
.intro-grid__principles {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(191, 173, 150, 0.6);
  box-shadow: var(--shadow-sm);
}

.content-shell {
  padding: 1.5rem 0 clamp(5rem, 10vw, 10rem);
}

.content-shell__inner {
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(191, 173, 150, 0.6);
  box-shadow: var(--shadow-sm);
}

.content-shell__inner > *:first-child { margin-top: 0; }
.content-shell__inner > *:last-child  { margin-bottom: 0; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.post-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(191, 173, 150, 0.6);
  box-shadow: var(--shadow-sm);
}

.post-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0.2rem 0 0.6rem;
  letter-spacing: -0.03em;
}

/* ============================================================
   19. Site Footer
   ============================================================ */
.site-footer {
  background: #0A1812;
  color: rgba(244, 237, 224, 0.85);
  padding: clamp(4rem, 8vw, 7rem) 0 1.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(184, 136, 60, 0.08), transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(61, 94, 69, 0.2), transparent 50%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 3rem;
  align-items: start;
}

.site-footer__brand { max-width: 26rem; }

.site-footer__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.site-footer__copy,
.site-footer__tag {
  color: rgba(244, 237, 224, 0.62);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  margin-top: 1.75rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(184, 136, 60, 0.45);
  border-radius: 999px;
  background: rgba(184, 136, 60, 0.14);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 180ms var(--ease-out), transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.site-footer__button:hover {
  transform: translateY(-2px);
  background: rgba(184, 136, 60, 0.26);
  border-color: rgba(184, 136, 60, 0.65);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory);
}

.site-footer__links li + li { margin-top: 0.6rem; }

.site-footer__links a {
  font-size: 1.05rem;
  color: rgba(244, 237, 224, 0.64);
  transition: color 180ms var(--ease-out);
}

.site-footer__links a:hover { color: var(--ivory); }

.site-footer__bottom {
  position: relative;
  width: var(--content-wide);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
}

.site-footer__bottom p {
  font-size: 0.92rem;
  color: rgba(244, 237, 224, 0.44);
}

/* ============================================================
   20. Responsive
   ============================================================ */
@media (max-width: 1280px) {
  :root {
    --content: min(100%, calc(100vw - 3rem));
    --content-wide: min(100%, calc(100vw - 3rem));
  }
}

@media (max-width: 1100px) {
  .home-story,
  .room-showcase__inner,
  .intro-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .rooms-shell {
    grid-template-columns: 1fr;
  }

  .rooms-shell__filters {
    position: static;
  }

  .home-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 40vh 40vh 30vh 30vh;
  }

  .gf--1 { grid-column: 1 / 3; grid-row: 1; }
  .gf--2 { grid-column: 1; grid-row: 2; }
  .gf--3 { grid-column: 2; grid-row: 2; }
  .gf--4 { grid-column: 1 / 3; grid-row: 3; }
  .gf--5 { grid-column: 1 / 3; grid-row: 4; }
  .gf--6 { display: none; }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ec--rooms   { grid-column: 1 / 3; grid-row: auto; min-height: 42vh; }
  .ec--dining  { grid-column: 1; grid-row: auto; }
  .ec--nature  { grid-column: 2; grid-row: auto; }
  .ec--wellness { grid-column: 1 / 3; grid-row: auto; min-height: 32vh; }

  .room-result__columns,
  .room-notes,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .room-result__facts {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .booking-bar__form {
    grid-template-columns: 1fr;
  }

  .booking-bar__fields {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: 5rem 1rem auto;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--r-xl);
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.is-open { display: flex; }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu > li { display: block; }

  .menu > li > a {
    display: block;
    padding-right: 2.5rem;
    border-radius: var(--r-md);
  }

  /* The mobile dropdown panel always has a light background (see .primary-nav
     above), even while the header itself is still in its transparent
     (pre-scroll) state — so menu text must stay dark here regardless. */
  .site-header--transparent .menu > li > a {
    color: var(--ink);
  }

  .site-header--transparent .menu > li:hover > a,
  .site-header--transparent .menu > li:focus-within > a {
    color: var(--forest);
    background: rgba(61, 94, 69, 0.10);
  }

  /* Lay the link + toggle button out as a row and let the sub-menu wrap
     onto its own full-width line, so the toggle stays pinned to the link
     itself instead of centering on the whole (now-taller) <li> once the
     sub-menu opens underneath it. */
  .menu > li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .menu > li.menu-item-has-children > a {
    flex: 1 1 auto;
    padding-right: 0.75rem;
  }

  .menu-item-has-children > .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: auto;
    top: auto;
    flex: 0 0 auto;
    transform: none;
  }

  .sub-menu {
    position: static;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    padding: 0.35rem 0;
    padding-right: 0;
    margin-top: 0.4rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border-radius: var(--r-md);
    background: rgba(244, 237, 224, 0.45);
    border: 1px solid rgba(191, 173, 150, 0.35);
    border-top: 2px solid rgba(184, 136, 60, 0.4);
    backdrop-filter: none;
    box-shadow: 0 4px 16px rgba(10, 24, 18, 0.08);
  }

  .menu-item-has-children.is-open > .sub-menu { display: block; }
  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu { display: none; }
  .menu-item-has-children.is-open:hover > .sub-menu,
  .menu-item-has-children.is-open:focus-within > .sub-menu { display: block; }

  /* Hide section label and photo panel on mobile */
  .sub-menu::before { display: none; }
  .mega__feature    { display: none; }

  /* Mobile link style — dark text on light background */
  .sub-menu > li:not(.mega__feature) > a {
    padding: 0.8rem 1.1rem;
    border-top: 1px solid rgba(191, 173, 150, 0.25);
    color: var(--ink);
    background-color: transparent;
    transition: background-color 150ms ease;
  }

  .sub-menu > li:not(.mega__feature) > a:hover {
    background-color: rgba(184, 136, 60, 0.08);
    color: var(--forest);
    padding-left: 1.1rem;
  }

  .sub-menu > li:not(.mega__feature) > a::before { display: none; }
  .sub-menu > li:nth-child(3) > a { border-bottom: none; }

  .sub-menu a .mega__name {
    font-size: 0.9rem;
    color: inherit;
  }

  .sub-menu a .mega__desc {
    color: rgba(10, 24, 18, 0.4);
  }

  .primary-nav__cta { width: 100%; }

  .hero__mosaic { display: none; }

}

@media (max-width: 768px) {
  :root {
    --content: calc(100vw - 1.5rem);
    --content-wide: calc(100vw - 1.5rem);
  }

  .hero--cinema { min-height: 100dvh; }

  .hero__title {
    font-size: clamp(3.2rem, 12vw, 5rem);
  }

  .hero__floor {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hero__scroll-cue { display: none; }

  .hero__stats { gap: 2rem; }

  .home-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 45vw);
  }

  .gf--1, .gf--2, .gf--3, .gf--4, .gf--5 { grid-column: 1; grid-row: auto; }
  .gf--6 { display: none; }

  .experience-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ec--rooms, .ec--dining, .ec--nature, .ec--wellness { grid-column: 1; grid-row: auto; min-height: 60vw; }

  .info-cards-grid { grid-template-columns: 1fr; }

  .booking-bar__form {
    display: none;
  }

  .home-experiences__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav { grid-template-columns: 1fr 1fr; }

  /* Rooms page — tablet */
  .rsc__inner {
    grid-template-columns: 1fr;
  }

  .rsc__photo { min-height: 22rem; }

  .rsc__features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .rsc__stats {
    flex-wrap: wrap;
  }

  .rooms-amenities__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rooms-trust__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .rooms-trust__item {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 237, 224, 0.08);
    padding-bottom: 2rem;
  }

  .rooms-trust__item:nth-child(even) { border-bottom: 0; }

  .rooms-gallery__mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }

  .rooms-gallery__main { min-height: 26rem; }

  .rooms-gallery__side {
    height: 22rem;
  }

  .rooms-search-strip .booking-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .site-footer__nav { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 1.25rem; }

  /* Rooms page — mobile */
  .rooms-hero { height: 85vh; }
  .rooms-hero__headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .rooms-amenities__grid { grid-template-columns: 1fr; }
  .rooms-trust__inner { grid-template-columns: 1fr; }
  .rooms-trust__item { border-bottom: 1px solid rgba(244, 237, 224, 0.08); border-right: 0; }
  .rsc__thumbs { height: 7rem; }
  .rsc__actions { flex-direction: column; }
  .rsc__header { flex-direction: column; }
  .rsc__pricing { text-align: left; }
  .rooms-gallery__side { height: 16rem; }
  .rooms-gallery__mosaic { gap: 0.5rem; }
  .rooms-finale { min-height: 60vh; }
  .rooms-finale__quote p { font-size: clamp(1.3rem, 6vw, 1.8rem); }
}

/* ============================================================
   21. Motion & Animations
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-delay-1 { transition-delay: 0.1s; }
.js-reveal-delay-2 { transition-delay: 0.2s; }
.js-reveal-delay-3 { transition-delay: 0.3s; }
.js-reveal-delay-4 { transition-delay: 0.4s; }

/* Clip-path reveal for premium sections */
.js-clip-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease-out);
}

.js-clip-reveal.is-visible {
  clip-path: inset(0 0 0% 0);
}

/* Counter animation */
.js-counter { display: inline-block; }

/* Parallax layers */
.js-parallax { will-change: transform; }

/* Main content spacing (non-home) */
.site-main { padding-top: 0; }

body:not(.home) .site-main {
  padding-bottom: 0;
}

body.nav-is-open { overflow: hidden; }

/* ============================================================
   Pills with icons & feature-list icon overrides
   ============================================================ */
.pill svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.rooms-hero__pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.rooms-hero__pills span svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* When feature-list items contain an SVG icon, suppress the ::before bullet */
.feature-list li:has(svg)::before {
  display: none;
}

.feature-list li:has(svg) {
  align-items: center;
}

.feature-list li svg {
  flex-shrink: 0;
  color: var(--gold-light);
  opacity: 0.9;
}

/* ============================================================
   Checkout Page
   ============================================================ */
.checkout-hero {
  position: relative;
  height: clamp(26rem, 45vh, 36rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.checkout-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
}

.checkout-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.checkout-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 24, 18, 0.82) 0%,
    rgba(10, 24, 18, 0.55) 55%,
    rgba(10, 24, 18, 0.35) 100%
  );
  z-index: 1;
}

.checkout-hero__inner {
  position: relative;
  z-index: 2;
  width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gap);
  padding-top: 4rem;
}

.checkout-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  display: block;
}

.checkout-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
  max-width: 22ch;
  color: var(--ivory);
}

.checkout-hero p {
  font-size: 1.05rem;
  color: rgba(244, 237, 224, 0.72);
  max-width: 44ch;
  margin-bottom: 1.5rem;
}

.checkout-hero__meta {
  color: rgba(244, 237, 224, 0.82);
}

.checkout-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(244, 237, 224, 0.72);
  background: rgba(10, 24, 18, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 136, 60, 0.25);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  width: fit-content;
}

.checkout-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.checkout-hero__meta svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.checkout-hero__meta-sep {
  color: var(--gold);
  opacity: 0.6;
}

/* Main checkout layout */
.checkout-main {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.checkout-main__inner {
  width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Left: Booking Summary */
.checkout-summary {
  position: sticky;
  top: calc(var(--header-h, 80px) + 2rem);
  background: var(--ink);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  color: var(--ivory);
}

.checkout-summary__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: block;
}

.checkout-summary__room {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
  margin-bottom: 1.5rem;
}

.checkout-summary__thumb {
  width: 5rem;
  height: 4rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.checkout-summary__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-summary__room-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
}

.checkout-summary__room-meta {
  font-size: 0.82rem;
  color: rgba(244, 237, 224, 0.55);
  margin-top: 0.3rem;
}

.checkout-dates-form {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
}

.checkout-dates-form__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.45);
  margin-bottom: 0.75rem;
}

.checkout-dates-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.checkout-dates-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.checkout-dates-form__field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.45);
}

.checkout-dates-form__field input[type="date"] {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1.5px solid rgba(244, 237, 224, 0.18);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--ivory);
  background: rgba(244, 237, 224, 0.06);
  outline: none;
  transition: border-color 200ms var(--ease-out);
  color-scheme: dark;
}

.checkout-dates-form__field input[type="date"]:focus {
  border-color: var(--gold);
}

.checkout-dates-form__btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 0.65rem 1.25rem;
}

.checkout-summary__line-items {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.checkout-summary__line-items li {
  display: flex;
  justify-content: space-between;
  color: rgba(244, 237, 224, 0.7);
}

.checkout-summary__line-items li:last-child {
  color: rgba(244, 237, 224, 0.45);
  font-size: 0.82rem;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
  font-weight: 600;
}

.checkout-summary__total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 237, 224, 0.65);
}

.checkout-summary__total-price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-light);
}

.checkout-summary__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(244, 237, 224, 0.35);
  line-height: 1.5;
}

/* Right: Payment panel */
.checkout-payment {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.checkout-block {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  border: 1px solid rgba(10, 24, 18, 0.08);
  box-shadow: 0 2px 16px rgba(10, 24, 18, 0.06);
}

.checkout-block__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.checkout-block__sub {
  font-size: 0.85rem;
  color: rgba(10, 24, 18, 0.5);
  margin-bottom: 1.75rem;
}

/* Contact form */
.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.checkout-form__field--full {
  grid-column: 1 / -1;
}

.checkout-form label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 24, 18, 0.55);
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(10, 24, 18, 0.12);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  outline: none;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 136, 60, 0.12);
}

/* Payment method tiles */
.checkout-methods {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checkout-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid rgba(10, 24, 18, 0.1);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  text-decoration: none;
  background: var(--cream);
}

.checkout-method:hover {
  border-color: var(--gold);
  background: rgba(184, 136, 60, 0.04);
  box-shadow: 0 4px 20px rgba(184, 136, 60, 0.1);
}

.checkout-method.is-selected {
  border-color: var(--gold);
  background: rgba(184, 136, 60, 0.06);
}

.checkout-method__radio {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(10, 24, 18, 0.2);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: border-color 180ms;
}

.checkout-method.is-selected .checkout-method__radio {
  border-color: var(--gold);
  background: var(--gold);
}

.checkout-method.is-selected .checkout-method__radio::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  background: #fff;
  border-radius: 50%;
}

.checkout-method__logo {
  display: flex;
  align-items: center;
  height: 2rem;
}

.checkout-method__logo svg,
.checkout-method__logo img {
  height: 100%;
  width: auto;
  max-width: 7rem;
}

.checkout-method__info {
  flex: 1;
}

.checkout-method__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  display: block;
}

.checkout-method__desc {
  font-size: 0.78rem;
  color: rgba(10, 24, 18, 0.5);
  margin-top: 0.15rem;
  display: block;
}

.checkout-method__badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.checkout-method__badge--eco {
  background: rgba(34, 130, 65, 0.12);
  color: #1a6e35;
}

/* Submit CTA */
.checkout-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-cta .btn--gold {
  width: 100%;
  justify-content: center;
  padding-block: 1.1rem;
  font-size: 1rem;
}

.checkout-cta__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(10, 24, 18, 0.45);
}

.checkout-cta__secure svg {
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .checkout-main__inner {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
  }
  .checkout-form {
    grid-template-columns: 1fr;
  }
  .checkout-form__field--full {
    grid-column: 1;
  }
}

/* ── Logo images ─────────────────────────────────────────── */
.site-branding__logo-link {
  display: flex;
  align-items: center;
}
.site-branding__logo-link img {
  height: 58px;
  width: auto;
  transition: opacity 220ms ease;
}

/* Solid header (default): black logo visible, white hidden */
.site-branding__logo-link .logo--light { display: none; }
.site-branding__logo-link .logo--dark  { display: block; }

/* Transparent header: white logo visible, black hidden */
.site-header--transparent .site-branding__logo-link .logo--light { display: block; }
.site-header--transparent .site-branding__logo-link .logo--dark  { display: none; }

/* Footer logo */
.site-footer__logo-link { display: inline-block; }
.site-footer__logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}
