/* ─── Variables ──────────────────────────────────────────────────── */
:root {
  --forest:        #463F17;
  --forest-dark:   #2E290F;
  --forest-light:  rgba(70, 63, 23, 0.07);
  --forest-mid:    rgba(70, 63, 23, 0.50);
  --brown:         #5A3318;
  --brown-dark:    #3D1F08;
  --footer-dark:   #4A2410;
  --cream:         #F8F4EE;
  --warm-white:    #FBF8F3;
  --charcoal:      #282828;
  --charcoal-soft: rgba(40, 40, 40, 0.72);
  --border:        rgba(74, 44, 18, 0.12);
  --navbar-height: 76px;

  /* Spacing rhythm — used across all pages for consistent vertical flow */
  --section-py:     clamp(3rem, 6vw, 5rem);        /* standard section top/bottom padding */
  --section-py-sm:  clamp(1rem, 2vw, 1.75rem);     /* tight padding between related sections */
  --card-gap:       clamp(1.75rem, 3vw, 2.5rem);   /* gap between cards in grids */
  --header-mb:      clamp(2rem, 4vw, 3rem);        /* margin below a section-header */
  --container-px:   clamp(1.25rem, 4vw, 3rem);     /* container horizontal padding */

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', system-ui, sans-serif;

  --duration-fast: 180ms;
  --duration-base: 280ms;
  --duration-slow: 480ms;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}
@media (min-width: 768px) {
  :root { --navbar-height: 88px; }
}
@media (min-width: 992px) {
  :root { --navbar-height: 132px; }
}

/* ─── Reset + Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  width: 100%;
}

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

/* Required-field markers (FRM-03) */
.form-field:has([required]) .form-field__label::after,
.booking__field:has([required]) label::after {
  content: ' *';
  color: #b00020;
}

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ─── Utilities ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
@media (max-width: 720px) {
  .container { padding-inline: 30px; }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brown);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: currentColor;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    gap: 10px;
  }
  .eyebrow::before { width: 22px; }
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 540px) {
  .section-header { text-align: left; }
}
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 0.75rem; }
/* Page-title H1 inside a section-header (inner pages). Clearly larger
   than the body H2 base size so the hierarchy reads. */
.section-header h1 {
  font-size: clamp(2.6rem, 5.2vw, 3.85rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section-header__sub {
  font-size: 1rem;
  color: var(--charcoal-soft);
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 540px) {
  .section-header__sub {
    text-align: left;
    margin-inline: 0;
  }
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Mobile — uniform CTA height to match the nav Book Now button */
@media (max-width: 720px) {
  .btn {
    height: 44px;
    min-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 0.78rem;
  }
  .site-nav__cta {
    height: 44px;
    min-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 0.8rem;
  }
}

.btn--primary {
  background-color: var(--forest);
  color: #fff;
}
.btn--primary:hover { background-color: var(--forest-dark); }

.btn--accent {
  background-color: var(--forest);
  color: #fff;
}
.btn--accent:hover { background-color: var(--forest-dark); }

.btn--light {
  background-color: rgba(253, 252, 250, 0.95);
  color: var(--charcoal);
}
.btn--light:hover { background-color: #fff; }

.btn--ghost-light {
  background-color: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn--ghost-light:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn--outline {
  background-color: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.btn--outline:hover {
  background-color: var(--forest);
  color: #fff;
}

/* ─── Navbar ─────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
}
.site-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 8, 0.35) 0%, rgba(10, 14, 8, 0) 100%);
  z-index: -1;
  transition: opacity var(--duration-slow) var(--ease-out);
  pointer-events: none;
}
.site-nav.is-scrolled {
  background-color: var(--cream);
  box-shadow: 0 1px 20px rgba(74, 44, 18, 0.10), inset 0 -1px 0 var(--border);
}
.site-nav.is-scrolled::before { opacity: 0; }

/* ── Top row ── */
.site-nav__top {
  padding: 0.6rem 0;
}
.site-nav__top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.site-nav__logo {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  line-height: 0;
}
.site-nav__logo img {
  height: 48px;
  width: auto;
  display: block;
  /* filter: brightness(0) invert(1); */
  transition: filter var(--duration-base) var(--ease-out);
}
@media (min-width: 768px) {
  .site-nav__logo img { height: 56px; }
}
.site-nav.is-scrolled .site-nav__logo img {
  filter: none;
}

.site-nav__cta {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.78rem 1.6rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  margin-right: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: border-color var(--duration-base) var(--ease-out),
              background-color var(--duration-base) var(--ease-out);
}
@media (min-width: 768px) {
  .site-nav__cta {
    margin-right: 0;
    font-size: 0.88rem;
    padding: 0.85rem 1.85rem;
  }
}
.site-nav.is-scrolled .site-nav__cta {
  border-color: transparent;
}

/* ── Bottom row ── */
.site-nav__bottom {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.6rem 0;
  transition: border-color var(--duration-slow) var(--ease-out);
}
.site-nav .site-nav__bottom {
  border-top-color: var(--border);
}
@media (min-width: 992px) {
  .site-nav__bottom { display: block; }
}
.site-nav__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  min-height: 32px;
}

.site-nav__links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.site-nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--duration-fast);
  white-space: nowrap;
}
.site-nav.is-scrolled .site-nav__links a { color: var(--charcoal); }
.site-nav__links a:hover { color: #fff; }
.site-nav.is-scrolled .site-nav__links a:hover { color: var(--forest); }

/* Active-page link — underline + accent color */
.site-nav__links a[aria-current="page"] {
  position: relative;
  color: rgba(215, 190, 120, 1);
}
.site-nav__links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background-color: currentColor;
}
.site-nav.is-scrolled .site-nav__links a[aria-current="page"] {
  color: var(--forest);
}

/* Acronym helper — keeps the trailing "s" of an acronym (e.g. FAQs) small
   while the parent text-transform: uppercase keeps the acronym caps. */
.lowercase-s { text-transform: lowercase; }

/* Active-page link in drawer — leading dash + forest accent + heavier weight */
.site-nav__drawer a[aria-current="page"] {
  color: var(--forest);
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.site-nav__drawer a[aria-current="page"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background-color: currentColor;
}

/* ── Hamburger ── */
.site-nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.92);
  padding: 0;
  border-radius: 2px;
  transition: color var(--duration-fast);
}
.site-nav.is-scrolled .site-nav__hamburger { color: var(--charcoal); }
.site-nav__hamburger i { width: 20px; height: 20px; }

/* Mobile hamburger sits top-left on small screens, hidden on desktop */
.site-nav__hamburger--mobile {
  grid-column: 1;
  justify-self: start;
}
@media (min-width: 992px) {
  .site-nav__hamburger--mobile { display: none; }
}

/* Desktop hamburger sits at the far right of the bottom row */
.site-nav__hamburger--desktop {
  position: static;
  transform: none;
  align-self: center;
}
@media (max-width: 991px) {
  .site-nav__hamburger--desktop { display: none; }
}

/* ── Drawer ── */
.site-nav__drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--cream);
  padding: 1.5rem 30px 2rem;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 12px 32px rgba(74, 44, 18, 0.18);
  border-bottom: 1px solid var(--border);
  max-height: calc(100svh - var(--navbar-height));
  overflow-y: auto;
  z-index: 10;
}
.site-nav.nav-open .site-nav__drawer { display: flex; }
/* Drawer items that are already in the top nav: always hide them so
   the drawer never duplicates the main nav. */
.site-nav__drawer .drawer-link--primary { display: none; }
/* On mobile, the main nav already shows every item including Contact Us,
   so the drawer (which only carries Contact Us as a secondary item) is
   redundant. Hide it entirely on mobile to prevent duplication. */
@media (max-width: 991px) {
  .site-nav.nav-open .site-nav__drawer { display: none; }
}
@media (min-width: 992px) {
  /* Hide Contact Us from the main nav on desktop only —
     it appears in the hamburger drawer instead. */
  .site-nav__links a[href$="contact-us/"] { display: none; }
}
.site-nav__drawer a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--duration-fast);
}
.site-nav__drawer a:hover { color: var(--forest); }

/* ──────────────────────────────────────────────────────────────────
   Mobile menu (≤991px): full vertical list with every nav item visible
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* When the menu is open on mobile, flip the top bar to its scrolled (cream)
     appearance so the open panel reads as one continuous surface. */
  .site-nav.nav-open {
    background-color: var(--cream);
    box-shadow: none;
  }
  .site-nav.nav-open::before { opacity: 0; }
  /* No shadow between the bottom row and the drawer — keep it one flat panel */
  .site-nav.nav-open .site-nav__drawer {
    box-shadow: none;
  }
  .site-nav.nav-open .site-nav__logo img { filter: none; }
  .site-nav.nav-open .site-nav__hamburger { color: var(--charcoal); }
  .site-nav.nav-open .site-nav__cta { border-color: transparent; }

  /* Reveal the main nav links (.site-nav__bottom is hidden on mobile by default) */
  .site-nav.nav-open .site-nav__bottom {
    display: block;
    background-color: var(--cream);
    border-top: 1px solid var(--border);
    padding: 0;
  }
  .site-nav.nav-open .site-nav__bottom-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding-block: 0;
    gap: 0;
  }
  .site-nav.nav-open .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    width: 100%;
  }
  .site-nav.nav-open .site-nav__links a {
    display: block;
    width: 100%;
    color: var(--charcoal);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .site-nav.nav-open .site-nav__links a:hover { color: var(--forest); }
  .site-nav.nav-open .site-nav__links a[aria-current="page"] {
    color: var(--forest);
  }
  .site-nav.nav-open .site-nav__links a[aria-current="page"]::after {
    display: none;
  }
  /* Hide the desktop hamburger that lives in the bottom row */
  .site-nav.nav-open .site-nav__hamburger--desktop { display: none; }

  /* Style the secondary drawer (Spa · Safari · Policies · FAQ) to match
     the vertical list above, so they read as one menu. */
  .site-nav.nav-open .site-nav__drawer {
    padding-block: 0;
    gap: 0;
  }
  .site-nav__drawer a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .site-nav__drawer a:last-child { border-bottom: 0; }
}

/* Desktop — render the drawer as a compact dropdown anchored near the hamburger */
@media (min-width: 992px) {
  .site-nav__drawer {
    left: auto;
    /* Align drawer's right edge with the .container's content right edge (where the hamburger sits) */
    right: max(clamp(1.25rem, 4vw, 3rem), calc(50vw - 572px));
    top: calc(100% - 6px);
    width: max-content;
    min-width: 240px;
    max-width: 340px;
    background-color: var(--cream);
    padding: 1.25rem 1.75rem;
    gap: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border);
    border-radius: 3px;
    max-height: none;
    overflow: visible;
  }
  .site-nav__drawer a {
    font-size: 0.78rem;
    color: var(--charcoal);
    letter-spacing: 0.14em;
  }
  .site-nav__drawer a:hover { color: var(--forest); }
  .site-nav.is-scrolled .site-nav__drawer { background-color: var(--cream); }
  .site-nav.is-scrolled .site-nav__drawer a { color: var(--charcoal); }
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--navbar-height);
}

.hero__media {
  position: absolute;
  inset: 0;
}
/* QC perf: promote the parallax layer to the GPU (desktop only — parallax is desktop-gated in JS) */
@media (hover: hover) and (pointer: fine) {
  .hero__media { will-change: transform; }
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Crossfade slideshow when multiple .hero__image siblings exist.
   JS toggles .is-active to drive the fade. */
.hero__media--slideshow .hero__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
}
.hero__media--slideshow .hero__image.is-active {
  opacity: 1;
}

/* Slick-style dots for the hero slideshow */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(3.5rem, 9vh, 6rem);
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 2;
}
.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, width 0.3s ease;
}
.hero__dot:hover {
  background-color: rgba(255, 255, 255, 0.65);
}
.hero__dot.is-active {
  background-color: #fff;
  width: 28px;
  border-radius: 999px;
}
.hero__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 30, 18, 0.68) 0%,
    rgba(26, 47, 26, 0.45) 50%,
    rgba(10, 20, 12, 0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(215, 190, 120, 0.95);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: currentColor;
  display: block;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  animation: scrollBounce 2.4s ease-in-out infinite;
  z-index: 1;
}
.hero__scroll-cue i { width: 24px; height: 24px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── Booking Widget ─────────────────────────────────────────────── */
.booking {
  background-color: var(--cream);
  padding: 0;
  position: relative;
  z-index: 10;
}
.booking__card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: -2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.booking__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .booking__form { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .booking__form { grid-template-columns: repeat(4, 1fr) auto; align-items: end; }
}

.booking__field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.4rem;
}
.booking__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.6rem 0.85rem;
  transition: border-color var(--duration-fast) var(--ease-out);
}
.booking__input-wrap:focus-within { border-color: var(--forest); }
.booking__input-wrap i { width: 15px; height: 15px; flex-shrink: 0; color: var(--forest); }
.booking__input-wrap input,
.booking__input-wrap select {
  font-size: 0.875rem;
  color: var(--charcoal);
}
.booking__submit { white-space: nowrap; height: 44px; }

/* ─── Wave Dividers ──────────────────────────────────────────────── */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; }
.wave-divider--top { margin-bottom: -1px; }

/* ─── Intro ──────────────────────────────────────────────────────── */
.intro {
  background-color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1fr 1fr; }
}

.intro__image-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.intro__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro__image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--forest);
  color: #fff;
  padding: 1rem;
  text-align: center;
  line-height: 1;
  border-radius: 2px;
}
.badge__number { display: block; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; opacity: 0.8; }
.badge__year { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; }

.intro__copy .eyebrow { margin-bottom: 0.75rem; }
.intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}
.intro__body {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.intro__body a {
  color: var(--forest);
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease-out);
}
.intro__body a:hover {
  color: var(--brown);
}

.intro__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.intro__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--forest);
}
.stat__number small { font-size: 1rem; }
.stat__label { font-size: 0.75rem; color: var(--charcoal-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── USP Strip ──────────────────────────────────────────────────── */
.usp-strip {
  background-color: var(--forest);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.usp-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  justify-items: center;
}
@media (min-width: 600px) {
  .usp-strip__grid {
    grid-template-columns: repeat(2, auto);
    row-gap: 1.25rem;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .usp-strip__grid {
    grid-template-columns: repeat(5, auto);
    row-gap: 0;
  }
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 0;
  justify-self: start;
}
@media (max-width: 599px) {
  .usp-item { justify-self: center; }
}
.usp-item i { width: 18px; height: 18px; flex-shrink: 0; color: rgba(215, 190, 120, 0.85); }

/* ─── Rooms Triptych ─────────────────────────────────────────────── */
.rooms {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--cream);
}
.rooms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .rooms__grid { grid-template-columns: repeat(3, 1fr); }
}

.room-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.room-card--featured { border-color: var(--forest); }

.room-card__image-wrap {
  position: relative;
  overflow: hidden;
}
.room-card__image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.room-card:hover .room-card__image-wrap img { transform: scale(1.04); }

/* ─── Rooms Carousel (3 visible, slide for the rest) ─────────────── */
.rooms-carousel {
  position: relative;
}
.rooms-carousel__viewport {
  overflow: hidden;
}
.rooms-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}
.rooms-carousel__track .room-card {
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 640px) {
  .rooms-carousel__track .room-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (min-width: 960px) {
  .rooms-carousel__track .room-card { flex: 0 0 calc((100% - 3rem) / 3); }
}

.rooms-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--forest);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  z-index: 3;
}
.rooms-carousel__arrow:hover {
  background-color: var(--forest);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.rooms-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.rooms-carousel__arrow i { width: 20px; height: 20px; }
.rooms-carousel__arrow--prev { left: -10px; }
.rooms-carousel__arrow--next { right: -10px; }
@media (min-width: 720px) {
  .rooms-carousel__arrow--prev { left: -22px; }
  .rooms-carousel__arrow--next { right: -22px; }
}

.rooms-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.rooms-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--forest-mid);
  padding: 0;
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.rooms-carousel__dot:hover { border-color: var(--forest); }
.rooms-carousel__dot.is-active {
  background-color: var(--forest);
  border-color: var(--forest);
  transform: scale(1.15);
}

/* ─── Room Card Body ────────────────────────────────────────────── */
.room-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.room-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.room-card__desc {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.room-card__amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0.75rem 0;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.room-card__amenities li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  text-transform: uppercase;
}
.room-card__amenities i {
  width: 18px;
  height: 18px;
  color: var(--forest);
  flex-shrink: 0;
}

.room-card__book {
  align-self: stretch;
  justify-content: center;
  margin-top: auto;
}

/* ─── Amenities Strip ────────────────────────────────────────────── */
.amenities-strip {
  background-color: var(--warm-white);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.amenities-strip__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.amenity-item i { width: 22px; height: 22px; color: var(--forest); }

/* ─── Offers ─────────────────────────────────────────────────────── */
.offers {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--cream);
}
.offers__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
@media (min-width: 900px) {
  .offers__layout { grid-template-columns: 1fr 1fr; }
}

.offers__copy .eyebrow { margin-bottom: 0.75rem; }
.offers__copy h2 { margin-bottom: 1rem; }
.offers__copy > p { color: var(--charcoal-soft); margin-bottom: 2rem; }

.offers__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.offer-item { padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.offer-item__badge {
  display: inline-block;
  background-color: var(--forest-light);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 1px;
  margin-bottom: 0.5rem;
}
.offer-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.offer-item p { font-size: 1rem; color: var(--charcoal-soft); line-height: 1.6; }

.offers__collage {
  position: relative;
  height: 560px;
}
.polaroid {
  position: absolute;
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.polaroid:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 52px rgba(0,0,0,0.22);
  z-index: 5;
}
.polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.polaroid--1 { width: 64%; height: 56%; top: 0;     left: 0;    z-index: 1; }
.polaroid--2 { width: 52%; height: 46%; top: 20%;   right: 0;   z-index: 2; }
.polaroid--3 { width: 58%; height: 48%; bottom: 0;  left: 18%;  z-index: 3; }

/* ─── Dining ─────────────────────────────────────────────────────── */
.dining {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.dining__deco {
  position: absolute;
  left: 2.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 140px;
  opacity: 0.12;
  pointer-events: none;
}
.dining__leaf {
  position: absolute;
  right: 3%;
  top: 12%;
  width: 64px;
  height: 96px;
  opacity: 0.1;
  pointer-events: none;
}

.dining__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .dining__grid { grid-template-columns: 1fr 1fr; }
}

.dining__image-wrap { border-radius: 2px; overflow: hidden; }
.dining__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ─── Dining Slider (slick-style dots) ──────────────────────────── */
.dining-slider { position: relative; }
.dining-slider__viewport { overflow: hidden; }
.dining-slider__track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}
.dining-slider__track > .dining__image {
  flex: 0 0 100%;
  min-width: 0;
  display: block;
}
.dining-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.dining-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.85);
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0,0,0,0.35);
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}
.dining-slider__dot:hover { background-color: rgba(255,255,255,0.5); }
.dining-slider__dot.is-active {
  background-color: #fff;
  transform: scale(1.15);
}

.dining__venues {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.venue-card { display: flex; gap: 1.25rem; }
.venue-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}
.venue-card__icon i { width: 18px; height: 18px; }
.venue-card__copy h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.venue-card__copy p {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.venue-card__hours {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--forest);
}

/* ─── Events / Experiences ───────────────────────────────────────── */
.events {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}
.events__illustration {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 260px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1024px) {
  .events__illustration { width: 80px; height: 340px; opacity: 0.08; }
}

.events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .events__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .events__grid { grid-template-columns: repeat(4, 1fr); }
}

.event-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.event-card__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.event-card:hover .event-card__media img { transform: scale(1.04); }
.event-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.event-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.event-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.event-card__body p { font-size: 1rem; color: var(--charcoal-soft); line-height: 1.6; margin-bottom: 0.75rem; }
.event-card__duration {
  font-size: 0.725rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  display: block;
  margin-top: auto;
}

/* ─── Spa ────────────────────────────────────────────────────────── */
.spa {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.spa__illustration {
  position: absolute;
  left: 50%;
  top: 3rem;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  opacity: 0.06;
  pointer-events: none;
}

.spa__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .spa__layout { grid-template-columns: 1fr 1fr; }
}

.spa__copy .eyebrow { margin-bottom: 0.75rem; }
.spa__copy h2 { margin-bottom: 1rem; }
.spa__intro {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.spa__treatments {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.spa__treatments li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.spa__treatments strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.spa__treatments span { font-size: 0.8125rem; color: var(--charcoal-soft); }

.spa__image-wrap { border-radius: 2px; overflow: hidden; }
.spa__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ─── Gallery ────────────────────────────────────────────────────── */
.gallery { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background-color: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; }
}

.gallery__cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}
.gallery__cell--wide { grid-column: span 2; }
.gallery__cell--tall { grid-row: span 2; }

.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.gallery__cell:hover img { transform: scale(1.06); }
.gallery__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(15, 30, 18, 0);
  transition: background-color var(--duration-base) var(--ease-out);
}
.gallery__cell:hover::after { background-color: rgba(15, 30, 18, 0.2); }

/* ─── Lightbox ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(10, 18, 12, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox__media { max-width: 90vw; max-height: 90svh; }
.lightbox__image { max-width: 90vw; max-height: 90svh; object-fit: contain; border-radius: 2px; }
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem;
  transition: color var(--duration-fast);
}
.lightbox__close:hover { color: #fff; }
.lightbox__close i { width: 24px; height: 24px; }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  padding: 1rem;
  transition: color var(--duration-fast);
}
.lightbox__prev:hover, .lightbox__next:hover { color: #fff; }
.lightbox__prev i, .lightbox__next i { width: 28px; height: 28px; }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* ─── Facilities ─────────────────────────────────────────────────── */
.facilities {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--warm-white);
}
.facilities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}
@media (min-width: 640px) {
  .facilities__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .facilities__grid { grid-template-columns: repeat(5, 1fr); }
}

.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background-color: var(--warm-white);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--charcoal-soft);
  transition: background-color var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out);
}
.facility-item:hover { background-color: var(--forest-light); color: var(--forest); }
.facility-item i { width: 24px; height: 24px; color: var(--forest); }

/* ─── Attractions ────────────────────────────────────────────────── */
.attractions {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--cream);
  overflow: hidden;
}

.attractions-carousel {
  position: relative;
  margin-top: 1rem;
}
.attractions-carousel__viewport {
  overflow: hidden;
  padding: 0.5rem 0;
}
.attractions-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}

.attraction-card {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  isolation: isolate;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
@media (min-width: 720px) {
  .attraction-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (min-width: 1100px) {
  .attraction-card { flex: 0 0 calc((100% - 2.5rem) / 3); }
}
.attraction-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.18); }

.attraction-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform var(--duration-slow) var(--ease-out);
}
.attraction-card:hover .attraction-card__bg { transform: scale(1.06); }

.attraction-card__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.85) 18%,
      rgba(0,0,0,0.60) 38%,
      rgba(0,0,0,0.25) 60%,
      rgba(0,0,0,0) 85%
    );
}

.attraction-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.4rem 1.25rem 1.35rem;
  color: #fff;
}
.attraction-card__dist {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.attraction-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 0.45rem;
  color: #fff;
}
.attraction-card__content p {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.attraction-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  background-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background-color 0.25s ease, gap 0.25s ease, border-color 0.25s ease;
}
.attraction-card__cta:hover {
  background-color: rgba(255,255,255,0.22);
  border-color: #fff;
  gap: 0.6rem;
}
.attraction-card__cta i {
  width: 14px;
  height: 14px;
}

.attractions-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--forest);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  z-index: 4;
}
.attractions-carousel__arrow:hover {
  background-color: var(--forest);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.attractions-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.attractions-carousel__arrow i { width: 20px; height: 20px; }
.attractions-carousel__arrow--prev { left: -10px; }
.attractions-carousel__arrow--next { right: -10px; }
@media (min-width: 720px) {
  .attractions-carousel__arrow--prev { left: -22px; }
  .attractions-carousel__arrow--next { right: -22px; }
}

.attractions-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.75rem;
}
.attractions-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--forest-mid);
  padding: 0;
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.attractions-carousel__dot:hover { border-color: var(--forest); }
.attractions-carousel__dot.is-active {
  background-color: var(--forest);
  border-color: var(--forest);
  transform: scale(1.15);
}

/* ─── Testimonials ───────────────────────────────────────────────── */
.testimonials {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background-color: var(--forest);
}
.testimonials .section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.testimonials .section-header .eyebrow { color: #fff; }
.testimonials .section-header h2 { color: #fff; }

/* ── Testimonials slider (multi-card) ── */
.testi-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 56px;
  outline: none;
  --testi-cards: 1;
  --testi-gap: 1rem;
}
@media (min-width: 768px) {
  .testi-slider { --testi-cards: 2; --testi-gap: 1.25rem; padding-inline: 60px; }
}
@media (min-width: 992px) {
  .testi-slider { --testi-cards: 3; --testi-gap: 1.5rem; }
}
@media (min-width: 1280px) {
  .testi-slider { padding-inline: 0; }
}
.testi-slider__viewport {
  overflow: hidden;
}
.testi-slider__track {
  display: flex;
  gap: var(--testi-gap);
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}
.testi-slider__slide {
  flex: 0 0 calc((100% - var(--testi-gap) * (var(--testi-cards) - 1)) / var(--testi-cards));
  min-width: 0;
  box-sizing: border-box;
}

/* Prev/next arrows */
.testi-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
  z-index: 2;
}
.testi-slider__btn:hover {
  background-color: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.35);
}
.testi-slider__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}
.testi-slider__btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
.testi-slider__btn i,
.testi-slider__btn svg { width: 20px; height: 20px; }
.testi-slider__btn--prev { left: 0; }
.testi-slider__btn--next { right: 0; }
@media (min-width: 1280px) {
  .testi-slider__btn--prev { left: -52px; }
  .testi-slider__btn--next { right: -52px; }
}
.testi-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: clamp(2rem, 3.5vw, 2.5rem);
  min-height: 9px;
}
.testi-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, width 0.3s ease;
}
.testi-slider__dot:hover {
  background-color: rgba(255, 255, 255, 0.55);
}
.testi-slider__dot.is-active {
  background-color: #fff;
  width: 26px;
  border-radius: 999px;
}
.testi-slider__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.testimonial-card {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}
.testimonial-card__stars i,
.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.90);
  stroke: rgba(255, 255, 255, 0.90);
  fill: rgba(255, 255, 255, 0.75);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-card footer strong { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.testimonial-card footer span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ─── Contact Form ───────────────────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-section__grid { grid-template-columns: 1fr 1fr; }
}

.contact-section__copy .eyebrow { margin-bottom: 0.75rem; }
.contact-section__copy h2 { margin-bottom: 1rem; }
.contact-section__copy > p { color: var(--charcoal-soft); margin-bottom: 2rem; }

.contact-section__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail > i { width: 20px; height: 20px; flex-shrink: 0; color: var(--forest); margin-top: 2px; }
.contact-detail div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail strong { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal-soft); }
.contact-detail a, .contact-detail span { font-size: 1rem; color: var(--charcoal); }
.contact-detail a:hover { color: var(--forest); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--charcoal);
  background-color: #fff;
  transition: border-color var(--duration-fast) var(--ease-out);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--forest); }
.form-group textarea { resize: vertical; min-height: 100px; }

.contact-form__submit { align-self: flex-start; margin-top: 0.5rem; }
.contact-form__note { font-size: 0.75rem; color: var(--charcoal-soft); }

/* ─── Newsletter ─────────────────────────────────────────────────── */
.newsletter {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--warm-white);
  border-top: 1px solid var(--border);
}
.newsletter__inner {
  text-align: center;
  max-width: 600px;
}
.newsletter .eyebrow { margin-bottom: 0.75rem; }
.newsletter h2 { margin-bottom: 1rem; }
.newsletter > .newsletter__inner > p {
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__form input {
  flex: 1 1 260px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  background-color: #fff;
  transition: border-color var(--duration-fast) var(--ease-out);
}
.newsletter__form input:focus { border-color: var(--forest); }

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  /* QC perf: opaque bg (was translucent + backdrop-filter blur(28px) — heavy per-frame paint on scroll,
     near-zero visual value behind a bottom footer) */
  background: linear-gradient(
    145deg,
    rgb(70, 63, 23) 0%,
    rgb(46, 41, 15) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07),
              0 -8px 40px rgba(70, 63, 23, 0.30);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  z-index: 0;
}

.footer__wave {
  line-height: 0;
  position: relative;
  z-index: 1;
}
.footer__wave svg { width: 100%; display: block; }

.footer__tree {
  position: absolute;
  top: 30px;
  left: -5px;
  width: 120px;
  height: 200px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .site-footer__main { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer__main { grid-template-columns: 2fr 2fr 1fr; }
}

.footer__logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  display: block;
  /* filter: brightness(0) invert(1); */
  opacity: 0.92;
  margin-bottom: 1rem;
}
.footer__location {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(215, 190, 120, 0.95);
  margin-bottom: 1rem;
}
.footer__address {
  font-size: 0.88rem;
  color: rgba(255, 248, 235, 0.92);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 235, 0.85);
  transition: border-color var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              background-color var(--duration-base) var(--ease-out);
}
.footer__social-link:hover {
  border-color: var(--brown);
  color: rgba(215, 190, 120, 1);
  background-color: rgba(90, 51, 24, 0.25);
}
.footer__social-link i { width: 16px; height: 16px; }
.footer__social-link img { width: 22px; height: 22px; display: block; object-fit: contain; }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__nav-col h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 190, 120, 0.95);
  margin-bottom: 1rem;
}
.footer__nav-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav-col a {
  font-size: 0.9rem;
  color: rgba(255, 248, 235, 0.92);
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__nav-col a:hover { color: rgba(215, 190, 120, 1); }

.footer__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 190, 120, 0.95);
}
.footer__contact-link {
  font-size: 0.92rem;
  color: rgba(255, 248, 235, 0.95);
  display: block;
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__contact-link:hover { color: rgba(215, 190, 120, 1); }
.footer__cta { margin-top: 0.5rem; align-self: flex-start; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.site-footer__bottom p { font-size: 0.78rem; color: rgba(255,248,235,0.78); }
.site-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer__bottom a { font-size: 0.78rem; color: rgba(255,248,235,0.78); transition: color var(--duration-fast); }
.site-footer__bottom a:hover { color: rgba(215, 190, 120, 0.95); }

/* ─── Flatpickr Theme ────────────────────────────────────────────── */
.flatpickr-calendar {
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(74, 44, 18, 0.14);
  font-family: var(--font-body);
}
.flatpickr-months .flatpickr-month {
  background: var(--forest);
  color: #fff;
  border-radius: 2px 2px 0 0;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year { color: #fff; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #fff !important; }
.flatpickr-weekday { color: var(--forest); font-weight: 600; }
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.flatpickr-day.inRange {
  background: var(--forest-light);
  border-color: transparent;
  box-shadow: -5px 0 0 var(--forest-light), 5px 0 0 var(--forest-light);
}
.flatpickr-day:hover { background: var(--forest-light); border-color: transparent; }
.flatpickr-day.today { border-color: var(--forest); }
.flatpickr-day.today:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

/* ─── Page Hero (inner pages) ────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 380px;
  height: 56svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--navbar-height) + 2rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 30, 18, 0.55) 0%,
    rgba(15, 30, 18, 0.35) 50%,
    rgba(10, 20, 12, 0.78) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-hero__content .eyebrow {
  color: rgba(215, 190, 120, 0.95);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration-fast);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: rgba(255, 255, 255, 0.55); }

/* Dark-text variant when breadcrumb sits on cream/light background */
.breadcrumb--inline {
  justify-content: flex-start;
  color: var(--charcoal-soft);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.breadcrumb--inline a { color: var(--charcoal); }
.breadcrumb--inline a:hover { color: var(--forest); }
.breadcrumb--inline [aria-current] { color: var(--charcoal-soft); }

/* Bare hero — image only, no overlay text content */
.page-hero--bare {
  min-height: 380px;
  height: 56svh;
  padding: 0;
  display: block;
}
@media (min-width: 768px) {
  .page-hero--bare {
    min-height: 540px;
    height: 72svh;
  }
}

/* ─── Section Pill Nav ───────────────────────────────────────────── */
/* Horizontal sibling-page nav shown on inner pages within a section */
.section-pill-nav {
  background-color: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.section-pill-nav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem clamp(1rem, 3vw, 2.5rem);
  padding: 0.85rem var(--container-px);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--forest-mid) transparent;
}
.section-pill-nav__inner::-webkit-scrollbar { height: 4px; }
.section-pill-nav__inner::-webkit-scrollbar-thumb {
  background: var(--forest-mid);
  border-radius: 2px;
}
.section-pill-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--forest);
  padding: 0.4rem 0.15rem;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.section-pill-nav a:hover {
  color: var(--forest-dark);
  border-bottom-color: var(--forest-mid);
}
.section-pill-nav a[aria-current="page"] {
  color: var(--forest-dark);
  border-bottom-color: var(--forest);
  font-weight: 500;
}

/* ─── Rooms Summary ──────────────────────────────────────────────── */
.rooms-summary {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
.rooms-summary .section-header {
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .rooms-summary .section-header {
    margin-bottom: 20px;
  }
}
.rooms-summary__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rooms-summary__list > .room-summary:first-child {
  padding-top: 0;
}

.room-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  scroll-margin-top: calc(var(--navbar-height) + 1rem);
  position: relative;
  isolation: isolate;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.room-summary:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #F1EADC;
  z-index: -1;
}
@media (min-width: 900px) {
  .room-summary {
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  .room-summary:nth-child(even) .room-summary__media { order: 2; }
}

.room-summary__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.room-summary__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.room-summary:hover .room-summary__media img {
  transform: scale(1.04);
}

.room-summary__body {
  display: flex;
  flex-direction: column;
}
.room-summary__view {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.room-summary__name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.room-summary__desc {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.room-summary--package .room-summary__desc {
  -webkit-line-clamp: 6;
  line-clamp: 6;
}

.room-summary__amenities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .room-summary__amenities {
    grid-template-columns: 1fr 1fr;
  }
}
.room-summary__amenities li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.825rem;
  color: var(--charcoal-soft);
}
.room-summary__amenities i {
  width: 14px;
  height: 14px;
  color: var(--forest);
  flex-shrink: 0;
}

/* Inline spec list inside a room-summary card (used on Dining + Offers pages) */
.room-summary__specs {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
}
.room-summary__specs li strong {
  color: var(--charcoal);
  font-weight: 500;
  margin-right: 0.35rem;
}

/* Spec bullets on each room summary card (size / occupancy / view) */
.room-summary__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  list-style: disc;
}
.room-summary__bullets li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--charcoal);
}
.room-summary__bullets li::marker {
  color: var(--forest);
}

.room-summary__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ─── Room Detail (inner page intro) ─────────────────────────────── */
.room-detail {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
.room-detail__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 4vw, 3rem);
}

/* Keep the breadcrumb left-aligned even inside the centered widget */
.room-detail__inner > .breadcrumb--inline {
  align-self: flex-start;
  text-align: left;
}

.room-detail__header {
  text-align: center;
}
.room-detail__header .header-pill { justify-content: center; }
.room-detail__header .eyebrow {
  margin-bottom: 0.75rem;
}
.room-detail__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Header pill — sub-header label, same dash-prefixed style as .eyebrow */
.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin-bottom: 0.75rem;
  background: none;
  border: none;
  border-radius: 0;
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1;
}
.header-pill::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: currentColor;
  display: block;
}

.room-detail__specs {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .room-detail__specs:has(.spec-card:nth-child(3):last-child) .spec-card:last-child {
    grid-column: 1 / -1;
    max-width: 220px;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .room-detail__specs {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .room-detail__specs:has(.spec-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 220px));
    justify-content: center;
  }
}

.spec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.5rem 1rem;
  background-color: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-align: center;
}
.spec-card i {
  width: 22px;
  height: 22px;
  color: var(--forest);
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.spec-card__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.spec-card__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
}
.spec-card__note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--charcoal-soft);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.room-detail__desc {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.room-detail__desc p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
}
.room-detail__desc p:last-child {
  margin-bottom: 0;
}

.room-detail__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Room Gallery / Slider (inner page) ─────────────────────────── */
.room-gallery {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: #F1EADC;
}

.room-slider {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  outline: none;
}
.room-slider__viewport {
  width: 100%;
  overflow: hidden;
}
.room-slider__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.room-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}
.room-slider__slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.room-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  z-index: 2;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}
.room-slider__btn:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.room-slider__btn:active {
  transform: translateY(-50%) scale(0.98);
}
.room-slider__btn--prev { left: 1rem; }
.room-slider__btn--next { right: 1rem; }
.room-slider__btn i { width: 22px; height: 22px; }
@media (min-width: 768px) {
  .room-slider__btn { width: 50px; height: 50px; }
  .room-slider__btn--prev { left: 1.5rem; }
  .room-slider__btn--next { right: 1.5rem; }
}

.room-slider__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 2;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.room-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.55);
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  padding: 0;
  border: none;
  cursor: pointer;
}
.room-slider__dot.is-active {
  background-color: #fff;
  transform: scale(1.3);
}
.room-slider__dot:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

/* ─── Room Amenities (inner page) ────────────────────────────────── */
.room-amenities {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--cream);
}
.amenities-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.amenity-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: border-color var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
}
.amenity-tile:hover {
  border-color: var(--forest);
  background-color: var(--forest-light);
}
.amenity-tile i {
  width: 18px;
  height: 18px;
  color: var(--forest);
  flex-shrink: 0;
}
.amenity-tile small {
  color: var(--charcoal-soft);
  font-size: 0.7rem;
}

/* ─── Dining Timings ─────────────────────────────────────────────── */
.dining-timings {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: #F1EADC;
}
.dining-timings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .dining-timings__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.timing-card i {
  width: 26px;
  height: 26px;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.timing-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.timing-card__hours {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 0.1rem;
  margin-bottom: 0.4rem;
}
.timing-card__note {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* ─── Related Rooms ──────────────────────────────────────────────── */
.related-rooms {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.related-rooms__slider {
  position: relative;
}
.related-rooms__grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--forest-mid) transparent;
}
.related-rooms__grid--center {
  justify-content: center;
}

/* Arrow buttons for related-rooms slider */
.related-rooms__btn {
  position: absolute;
  top: calc(50% - 0.5rem);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  z-index: 2;
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}
.related-rooms__btn:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.06);
  color: var(--forest);
}
.related-rooms__btn:active {
  transform: translateY(-50%) scale(0.98);
}
.related-rooms__btn:disabled {
  opacity: 0;
  pointer-events: none;
}
.related-rooms__btn i { width: 22px; height: 22px; }
.related-rooms__btn--prev { left: -22px; }
.related-rooms__btn--next { right: -22px; }
@media (max-width: 768px) {
  .related-rooms__btn { width: 38px; height: 38px; }
  .related-rooms__btn--prev { left: 0.25rem; }
  .related-rooms__btn--next { right: 0.25rem; }
  .related-rooms__btn i { width: 18px; height: 18px; }
}
.related-rooms__grid::-webkit-scrollbar {
  height: 6px;
}
.related-rooms__grid::-webkit-scrollbar-track {
  background-color: transparent;
}
.related-rooms__grid::-webkit-scrollbar-thumb {
  background-color: var(--forest-mid);
  border-radius: 3px;
}
.related-rooms__grid > .related-room-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  scroll-snap-align: start;
}
@media (max-width: 1023px) {
  .related-rooms__grid > .related-room-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 640px) {
  .related-rooms__grid > .related-room-card {
    flex: 0 0 86%;
  }
}

.related-room-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.related-room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}
.related-room-card__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.related-room-card__media {
  overflow: hidden;
}
.related-room-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.related-room-card:hover .related-room-card__media img {
  transform: scale(1.04);
}
.related-room-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-room-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 0.25rem;
}
.related-room-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  transition: gap var(--duration-fast) var(--ease-out);
}
.related-room-card:hover .related-room-card__cta {
  gap: 0.7rem;
}
.related-room-card__cta i {
  width: 14px;
  height: 14px;
}

/* ─── About Us Page ──────────────────────────────────────────────── */
.about-block {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.about-block--cream { background-color: var(--cream); }
.about-block--oat   { background-color: #F1EADC; }

.about-block__header {
  text-align: left;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.about-block__heading {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}
h1.about-block__heading {
  font-size: clamp(2.6rem, 5.2vw, 3.85rem);
}
h2.about-block__heading {
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-block__body {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}
.about-block__body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
}
.about-block__body p:last-child { margin-bottom: 0; }

/* Desktop-only centered variant (intro blocks) — breadcrumb stays left */
@media (min-width: 992px) {
  .about-block--centered-desktop .about-block__header { text-align: center; }
  .about-block--centered-desktop .about-block__header .header-pill { justify-content: center; }
  .about-block--centered-desktop .about-block__body {
    margin-inline: auto;
    text-align: center;
  }
}

.about-slider {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background-color: #F1EADC;
}

/* Split layout — image one side, text on the other */
.about-block__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .about-block__split {
    grid-template-columns: 1fr 1fr;
  }
  .about-block--reverse .about-block__media {
    order: 2;
  }
}

.about-block__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin: 0;
}
.about-block__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}
.about-block__media:hover img {
  transform: scale(1.03);
}

.about-block__copy {
  display: flex;
  flex-direction: column;
}

/* Split-layout overrides — header and body align left, not centered */
.about-block--split .about-block__header {
  text-align: left;
  margin-bottom: 1.25rem;
}
.about-block--split .about-block__body {
  max-width: none;
  margin: 0;
  text-align: left;
}

/* Values grid */
.about-values {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--warm-white);
}
.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .about-values__grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.value-card i {
  width: 26px;
  height: 26px;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* About gallery */
.about-gallery {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: #F1EADC;
}
.about-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  grid-auto-rows: 160px;
}
@media (min-width: 768px) {
  .about-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}
.about-gallery__cell {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin: 0;
}
.about-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.about-gallery__cell:hover img {
  transform: scale(1.04);
}

/* 11-image collage variant — asymmetric bento layout on desktop */
@media (min-width: 1024px) {
  .about-gallery__grid--collage {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 0.55rem;
  }
  .about-gallery__grid--collage .about-gallery__cell:nth-child(1)  { grid-row: span 2; }
  .about-gallery__grid--collage .about-gallery__cell:nth-child(3)  { grid-column: span 2; }
  .about-gallery__grid--collage .about-gallery__cell:nth-child(5)  { grid-column: span 2; }
  .about-gallery__grid--collage .about-gallery__cell:nth-child(6)  { grid-row: span 2; }
  .about-gallery__grid--collage .about-gallery__cell:nth-child(10) { grid-column: span 2; }
}

/* ─── Facilities Page ────────────────────────────────────────────── */
.facilities-section {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
.facilities-section--safari {
  background:
    linear-gradient(180deg, rgba(70, 63, 23, 0.08) 0%, rgba(70, 63, 23, 0.03) 100%),
    var(--cream);
  position: relative;
  isolation: isolate;
}
.facilities-section--safari::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' opacity='0.06'><path fill='%23463F17' d='M40 160 Q42 110 30 70 Q28 50 40 30 Q52 50 50 70 Q38 110 40 160 Z M120 170 Q124 100 100 50 Q96 30 120 10 Q144 30 140 50 Q116 100 120 170 Z'/></svg>");
  background-repeat: repeat;
  background-size: 280px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.facilities-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (min-width: 640px) {
  .facilities-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .facilities-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facility-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}
.facility-card__media {
  overflow: hidden;
}
.facility-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.facility-card:hover .facility-card__media img {
  transform: scale(1.04);
}
.facility-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.facility-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 0.4rem;
}
.facility-card__hours {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.facility-card__body p:not(.facility-card__hours) {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* ─── Generic Page CTA Strip ─────────────────────────────────────── */
.page-cta {
  padding: var(--section-py) 0;
  background-color: var(--warm-white);
  border-top: 1px solid var(--border);
}
.page-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
.page-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-cta__copy .eyebrow,
.page-cta__copy .header-pill { justify-content: center; }
.page-cta__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 0.6rem;
  margin-top: 0.5rem;
}
.page-cta__copy p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  max-width: 540px;
  margin-inline: auto;
}
.page-cta__copy p a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-cta__copy p a:hover {
  color: var(--brown);
}
.page-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Location page ──────────────────────────────────────────────── */
.location-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.location-intro__copy {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
}
.location-intro__address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}
.location-intro__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.rooms-summary--location {
  /* No hero on this page, so add the navbar height to the top padding
     to keep the breadcrumb and section header clear of the fixed nav. */
  padding-top: calc(var(--navbar-height) + var(--section-py));
  padding-bottom: 0;
}
.location-map {
  padding: 60px 0 var(--section-py);
  background-color: var(--cream);
}
.location-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 14px 40px -25px rgba(0,0,0,0.35);
}
.location-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 720px) {
  .location-map__frame { aspect-ratio: 4 / 5; }
}

.getting-here {
  padding: var(--section-py) 0;
  background-color: var(--bone, #f3ece0);
}
.travel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .travel-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
}
.travel-card {
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.travel-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.travel-card__head i {
  width: 22px;
  height: 22px;
  color: var(--forest);
  flex-shrink: 0;
}
.travel-card__head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  color: var(--charcoal);
}
.travel-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.travel-card__list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
}
.travel-card__list li strong {
  color: var(--charcoal);
  font-weight: 500;
}
.travel-card__list li span {
  color: var(--charcoal-soft);
  font-size: 0.82rem;
}
.travel-card__note {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
  margin: auto 0 0;
  padding-top: 0.5rem;
}

.nearby {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
}
.nearby-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nearby-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px -22px rgba(0,0,0,0.3);
}
.nearby-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 0.35rem;
}
.nearby-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.85rem;
}
.nearby-card p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin: 0;
}
.nearby-card {
  display: flex;
  flex-direction: column;
}
.nearby-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--forest);
  transition: gap 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.nearby-card__cta:hover {
  gap: 0.6rem;
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}
.nearby-card__cta i {
  width: 14px;
  height: 14px;
}

/* ─── Gallery page ───────────────────────────────────────────────── */
.gallery-page {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2rem 0 3rem;
}
.gallery-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--charcoal-soft);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.gallery-filter:hover {
  color: var(--charcoal);
  border-color: var(--forest);
}
.gallery-filter.is-active {
  background-color: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
/* Justified-flex collage: items flow in rows with varied widths */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-item {
  position: relative;
  display: block;
  flex: 1 1 280px;
  height: 200px;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 640px) {
  .gallery-item {
    flex-basis: calc(50% - 5px);
    min-width: 0;
    height: 170px;
  }
}
@media (min-width: 720px) {
  .gallery-item { height: 240px; }
  /* Editorial rhythm — every 7th group gets a wider feature */
  .gallery-item:nth-child(7n+1) { flex-basis: 540px; flex-grow: 1.6; }
  .gallery-item:nth-child(7n+4) { flex-basis: 420px; flex-grow: 1.2; }
  .gallery-item:nth-child(7n+6) { flex-basis: 460px; flex-grow: 1.3; }
}
@media (min-width: 1200px) {
  .gallery-item { height: 280px; }
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out, cubic-bezier(.2,.7,.2,1)), filter 0.4s ease;
}

/* Soft overlay on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,14,0) 30%, rgba(20,18,14,0.32) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

/* Magnify icon overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(253, 248, 238, 0.95);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23355c3a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.2,.9,.3,1.3);
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 2;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px -20px rgba(0,0,0,0.35);
  z-index: 3;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.04);
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-item:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}
.gallery-item:focus-visible::before { opacity: 1; }
.gallery-empty {
  text-align: center;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  padding: 2rem 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 18, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: clamp(2rem, 5vw, 4rem);
}
.lightbox[hidden] { display: none; }
.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255,255,255,0.22);
}
.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
}
.lightbox__nav i,
.lightbox__close i {
  width: 22px;
  height: 22px;
}
.lightbox__nav--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }
@media (max-width: 640px) {
  .lightbox__close { top: 0.75rem; right: 0.75rem; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}

/* ─── Rooms summary — cards layout (2 per row) ───────────────────── */
.rooms-summary--cards .rooms-summary__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 720px) {
  .rooms-summary--cards .rooms-summary__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
  }
}
.rooms-summary--cards .room-summary {
  display: block;
  padding: 0;
  gap: 0;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 14px 35px -28px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rooms-summary--cards .room-summary:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(0,0,0,0.28);
}
@media (min-width: 768px) {
  .rooms-summary--cards .room-summary {
    grid-template-columns: 1fr;
  }
  .rooms-summary--cards .room-summary:nth-child(even) .room-summary__media {
    order: 0;
  }
}
.rooms-summary--cards .room-summary::before {
  display: none;
}
.rooms-summary--cards .room-summary__media {
  aspect-ratio: 3 / 2;
  width: 100%;
  border-radius: 0;
}
.rooms-summary--cards .room-summary__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.rooms-summary--cards .room-summary:hover .room-summary__media img {
  transform: scale(1.04);
}
.rooms-summary--cards .room-summary__body {
  padding: 1.35rem 1.5rem 1.5rem;
}
.rooms-summary--cards .room-summary__name {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}
.rooms-summary--cards .room-summary__desc {
  margin-bottom: 1rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.rooms-summary--cards .room-summary__bullets {
  margin-bottom: 1rem;
}
.rooms-summary--cards .room-summary__actions .btn {
  flex: 1 1 auto;
  justify-content: center;
}

/* ─── Meetings & Events page ─────────────────────────────────────── */
.events-intro {
  padding: var(--section-py) 0 var(--section-py-sm);
  background-color: var(--cream);
}
/* Section-header is the only child here, so its bottom margin would
   stack on top of the next section's top padding. Zero it out so the
   rhythm comes from section padding alone. */
.events-intro .section-header { margin-bottom: 0; }
.section-header__sub {
  max-width: 680px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
}
@media (max-width: 540px) {
  .section-header__sub {
    text-align: left;
    margin: 1.25rem 0 0;
  }
}

.event-venues {
  padding: var(--section-py-sm) 0 var(--section-py);
  background-color: var(--cream);
}
.event-venues > .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.event-venue {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
@media (min-width: 800px) {
  .event-venue {
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  .event-venue--reverse .event-venue__media { order: 2; }
}
.event-venue__media {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 45px -28px rgba(0,0,0,0.25);
}
@media (max-width: 720px) {
  .event-venue__media { aspect-ratio: 16 / 11; }
  .event-venue__media .room-slider__btn { display: none; }
}
.event-venue__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.event-venue:hover .event-venue__media img {
  transform: scale(1.03);
}

/* Slider variant — make the room-slider fill the 4/5 event-venue__media wrapper */
.event-venue__media .room-slider,
.event-venue__media .room-slider__viewport,
.event-venue__media .room-slider__track,
.event-venue__media .room-slider__slide {
  height: 100%;
}
.event-venue__media .room-slider__slide img {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  max-height: none;
}
.event-venue:hover .event-venue__media .room-slider__slide img {
  transform: none;
}
.event-venue__body .eyebrow {
  margin-bottom: 0.75rem;
}
.event-venue__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--charcoal);
}
.event-venue__body > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin: 0 0 1.5rem;
}

.event-capacity__scroll {
  margin: 0 0 1.75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background-color: #fff;
  overflow: hidden;
}
.event-capacity {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background-color: #fff;
}
@media (max-width: 720px) {
  .event-capacity__scroll { border: 1px solid var(--border); }
  .event-capacity { display: block; }
  .event-capacity thead { display: none; }
  .event-capacity tbody,
  .event-capacity tr { display: block; }
  .event-capacity td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    border-right: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--charcoal);
  }
  .event-capacity tr:last-child td:last-child { border-bottom: 0; }
  .event-capacity td:last-child { border-bottom: 0; }
  .event-capacity td::before {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
  }
  .event-capacity td:nth-child(1)::before { content: "Area"; }
  .event-capacity td:nth-child(2)::before { content: "Theatre"; }
  .event-capacity td:nth-child(3)::before { content: "U-Shape"; }
  .event-capacity td:nth-child(4)::before { content: "Reception"; }
  .event-capacity td:nth-child(5)::before { content: "Cluster"; }
}
.event-capacity th,
.event-capacity td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  font-size: 0.8rem;
  border-right: 1px solid var(--border);
}
.event-capacity th:last-child,
.event-capacity td:last-child {
  border-right: 0;
}
.event-capacity thead th {
  background-color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--forest);
  border-bottom: 1px solid var(--border);
}
.event-capacity tbody td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.event-venue__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 3px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.event-venue__cta i {
  width: 16px;
  height: 16px;
}
.event-venue__cta:hover {
  gap: 0.75rem;
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}

/* Enquiry section */
.event-enquiry {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
.event-enquiry__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 760px;
  margin: 0 auto;
}
.event-enquiry__copy {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.event-enquiry__copy .eyebrow {
  margin-bottom: 0.75rem;
}
.event-enquiry__copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--charcoal);
}
.event-enquiry__copy p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin: 0;
}
.event-enquiry__copy a {
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}

.event-enquiry__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background-color: var(--cream);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 300;
  transition: border-color 0.25s ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2382816a' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.event-enquiry__form button[type="submit"] {
  align-self: center;
  justify-content: center;
  text-align: center;
  margin-top: 0.75rem;
  min-width: 220px;
}

/* ─── Legal pages (terms, policies) ──────────────────────────────── */
.legal-page {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
/* No override here — the div carries .container, so the breadcrumb
   sits at the same 1240px-container left edge as every other page.
   The long-form body is constrained to 820px on .legal-content. */
.legal-page .section-header {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.legal-page .section-header h1 {
  text-align: center;
}
.legal-page .section-intro {
  text-align: center;
  margin: 1rem auto 0;
  max-width: 720px;
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 820px;
  margin-inline: auto;
}
.legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.legal-section h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 1rem 0 0;
}
.legal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin: 0;
}
.legal-section ul,
.legal-section ol {
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.legal-section li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
  padding-left: 0.25rem;
}
.legal-section li::marker {
  color: var(--forest);
  font-weight: 500;
}
.legal-section li strong {
  color: var(--charcoal);
  font-weight: 500;
}
.legal-section a {
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}
.legal-section a:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}
.legal-note {
  margin-top: 0.75rem !important;
  padding: 0.85rem 1rem;
  background-color: rgba(53, 92, 58, 0.06);
  border-left: 2px solid var(--forest);
  font-size: 0.88rem !important;
  font-style: italic;
}

/* Stronger active-page emphasis in the slim drawer */
.site-nav__drawer a[aria-current="page"] {
  color: var(--forest);
}

/* ─── Contact Us page ────────────────────────────────────────────── */
.section-intro {
  max-width: 640px;
  margin: 1.25rem 0 0;
  text-align: left;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info__block {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.contact-info__block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-info__block h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.75rem;
}
.contact-info__block p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin: 0;
}
.contact-info__link {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.contact-info__link:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.contact-info__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.contact-info__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--charcoal-soft);
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.contact-info__social a:hover {
  color: #fff;
  border-color: var(--forest);
  background-color: var(--forest);
}

.contact-form {
  background-color: #fff;
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 3px;
  box-shadow: 0 14px 40px -28px rgba(0,0,0,0.25);
}
.contact-form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--charcoal);
}
.contact-form__intro {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin: 0 0 1.75rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 560px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.contact-form__row .contact-form__field {
  margin-bottom: 0;
}
.contact-form__field label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color 0.25s ease, background-color 0.25s ease;
  font-weight: 300;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2382816a' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background-color: #fff;
}
.contact-form__submit {
  margin-top: 0.5rem;
  min-width: 200px;
}

/* ─── Venue contact strip (left text · right image) ───────────────── */
.venue-contact {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background-color: var(--warm-white);
  border-top: 1px solid var(--border);
}
.venue-contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .venue-contact__inner { grid-template-columns: 1fr 1fr; }
}
.venue-contact__copy .eyebrow { margin-bottom: 0.6rem; }
.venue-contact__copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}
.venue-contact__block {
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
}
.venue-contact__block:last-child { border-bottom: 0; padding-bottom: 0; }
.venue-contact__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.6rem;
}
.venue-contact__label i { width: 16px; height: 16px; }
.venue-contact__block p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin: 0;
}
.venue-contact__block p + p { margin-top: 0.25rem; }
.venue-contact__block a {
  color: var(--charcoal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.venue-contact__block a:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.venue-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest) !important;
  border-bottom: 1px solid var(--forest) !important;
  padding-bottom: 3px;
  transition: gap 0.25s ease;
}
.venue-contact__link i { width: 14px; height: 14px; }
.venue-contact__link:hover { gap: 0.65rem; }
.venue-contact__media {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4 / 5;
  background-color: var(--border);
  box-shadow: 0 18px 45px -28px rgba(0,0,0,0.25);
}
@media (min-width: 900px) {
  .venue-contact__media { aspect-ratio: 3 / 4; }
}
.venue-contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Venue inner-page capacity table ─────────────────────────────── */
.venue-capacity-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background-color: var(--cream);
}
.venue-capacity-table-wrap {
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 3px;
  background-color: #fff;
}
.venue-capacity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 540px;
}
.venue-capacity-table thead th {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  text-align: left;
  padding: 1rem 1.25rem;
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
}
.venue-capacity-table tbody th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  padding: 1rem 1.25rem;
  color: var(--charcoal);
  width: 30%;
}
.venue-capacity-table tbody td {
  padding: 1rem 1.25rem;
  color: var(--charcoal-soft);
  font-size: 0.92rem;
}
.venue-capacity-table tbody td:first-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--forest);
  width: 18%;
}
.venue-capacity-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.venue-capacity-table tbody tr:last-child { border-bottom: 0; }

/* ─── Floating Chatbot Widget ─────────────────────────────────────── */
.chatbot {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 150;
  font-family: var(--font-body);
}
.chatbot__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--forest);
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.35), 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.25s ease, transform 0.25s var(--ease-out);
}
.chatbot__toggle:hover {
  background-color: var(--forest-dark);
  transform: translateY(-2px);
}
.chatbot__toggle i {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease, transform 0.3s var(--ease-out);
}
.chatbot__toggle-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}
.chatbot.is-open .chatbot__toggle-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}
.chatbot.is-open .chatbot__toggle-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.chatbot__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.85rem);
  width: min(340px, calc(100vw - 2rem));
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 50px -12px rgba(20, 18, 14, 0.28), 0 8px 18px rgba(20, 18, 14, 0.10);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s var(--ease-out);
  transform-origin: bottom right;
}
.chatbot.is-open .chatbot__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  background-color: var(--forest);
  color: #fff;
}
.chatbot__avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot__avatar i { width: 18px; height: 18px; color: #fff; }
.chatbot__heading {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.chatbot__heading strong {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}
.chatbot__heading span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
}
.chatbot__close {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.chatbot__close:hover { background-color: rgba(255, 255, 255, 0.22); }
.chatbot__close i { width: 16px; height: 16px; }

.chatbot__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background-color: var(--warm-white);
}
.chatbot__greeting {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--charcoal-soft);
  margin: 0 0 0.35rem;
}
.chatbot__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease-out);
}
.chatbot__option:hover {
  border-color: var(--forest);
  background-color: var(--forest-light);
  transform: translateX(2px);
}
.chatbot__option-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--forest-light);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot__option-icon i { width: 16px; height: 16px; }
.chatbot__option-text {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.chatbot__option-text strong {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}
.chatbot__option-text small {
  font-size: 0.72rem;
  color: var(--charcoal-soft);
}
.chatbot__option-arrow {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--charcoal-soft);
}

/* ─── FAQ page (accordion) ────────────────────────────────────────── */
.faq-page {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}
/* No override here — the div carries .container, so the breadcrumb
   sits at the same 1240px-container left edge as every other page.
   The accordion content is constrained to 820px on .faq-category. */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* FAQ category — heading + accordion group, constrained for readability */
.faq-category {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  max-width: 820px;
  margin-inline: auto;
}
.faq-category:first-of-type {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.faq-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--forest);
  text-align: center;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  background-color: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] {
  background-color: var(--forest-light);
  border-color: var(--forest-mid);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 400;
  color: var(--charcoal);
  user-select: none;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--forest); }
.faq-item[open] summary { color: var(--forest); }
.faq-item__question {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
}
.faq-item__chevron {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--forest);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__answer {
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.1rem, 2vw, 1.4rem);
}
.faq-item__answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin: 0 0 0.6rem;
}
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item__answer li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
}
.faq-item__answer li::marker { color: var(--forest); }
.faq-item__answer a {
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}
.faq-item__answer a:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}
.faq-item__answer strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* QC ACC-05: skip-to-main-content link (visible on focus) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--forest-dark, #463F17);
  color: #FBF8F3;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-family: var(--font-body);
}
.skip-link:focus { left: 0; }

/* QC FRM-03: required-field marker */
.req { color: #c0392b; font-weight: 600; }

/* QC BTN-04/RES-05: footer social links meet 44px tap target */
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

/* QC ACC-02/SEO-15: visually-hidden heading utility (fixes h1->h3 skips without visual change) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
