﻿/* ============================================================
   BANGALORE GATE HOTEL & CONFERENCES
   Homepage Stylesheet v2 — Warm Heritage Palette
   Vanilla CSS · Mobile-First · No dependencies
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   Palette drawn from the hotel's actual interiors:
   amber lobby walls, mahogany woodwork, brass fittings,
   crimson accents, warm cream bedding.
   ============================================================ */
:root {
  /* Core palette */
  --clr-dark:       #140B05;   /* Warm near-black — base dark bg */
  --clr-mahogany:   #2A1408;   /* Deep mahogany — dark sections */
  --clr-brown:      #5C3018;   /* Warm brown — mid-dark */
  --clr-gold:       #AE864B;   /* Brand gold — logo + accents */
  --clr-gold-hover: #96713F;   /* Darker gold for hover states */
  --clr-gold-light: #E8C870;   /* Light gold — on-dark text */
  --clr-amber:      #A67834;   /* Lobby amber — warm accent */
  --clr-cream:      #F6F1EB;   /* Section alternate background */
  --clr-warm-white: #FEFEFE;   /* Page & component background */
  --clr-white:      #FFFFFF;
  --clr-text:       #1E1008;   /* Warm near-black body text */
  --clr-mid:        #6B4820;   /* Mid-warm for secondary text */
  --clr-muted:      #9A7850;   /* Muted warm for small labels */
  --clr-border:     #E0CEB0;   /* Warm border */
  --clr-border-dark: rgba(255,255,255,0.1); /* On dark bg */

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w:       1280px;
  --nav-h:       80px;
  --radius:      2px;
  --radius-md:   8px;
  --radius-lg:   12px;

  /* Section padding */
  --section-py:  clamp(5rem, 9vw, 8rem);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    250ms;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text);
  background-color: var(--clr-warm-white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ============================================================
   2b. BREADCRUMB (shared across all inner pages)
   ============================================================ */
.breadcrumb-bar {
  background: var(--clr-cream);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.75rem 0;
}

.ri-breadcrumb {
  display: flex;
  gap: 0.375rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--clr-muted);
  padding: 0.875rem 0;
}

.ri-breadcrumb a {
  color: var(--clr-muted);
  transition: color 0.2s ease;
}

.ri-breadcrumb a:hover { color: var(--clr-gold); }

.ri-breadcrumb__sep {
  color: var(--clr-border);
  font-size: 0.875rem;
  line-height: 1;
}

.ri-breadcrumb span[aria-current="page"] {
  color: var(--clr-text);
  font-weight: 500;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 50px);
}

.section          { padding-block: var(--section-py); }
.section--dark    { background-color: var(--clr-white); border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); }
.section--cream   { background-color: var(--clr-cream); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--light .h2 { color: var(--clr-white); }

.section-header__sub {
  margin-top: var(--sp-5);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: var(--clr-mid);
}

.section-header__sub--light { color: rgba(255,255,255,0.6); }

.section-footer {
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4rem);
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */

/* Global heading colour */
h1, h2, h3, h4, h5, h6 { color: #535758; }

.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #535758;
}

.h2--light { color: var(--clr-white); }

.h2 em {
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: var(--sp-4);
}

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

.body-copy {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.8;
  color: var(--clr-mid);
  margin-bottom: var(--sp-5);
}

.body-copy:last-of-type { margin-bottom: var(--sp-8); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.8125rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--gold {
  background-color: var(--clr-gold);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-gold);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background-color: #AE864B;
  border-color: #AE864B;
}

.btn--outline-dark,
.btn--primary,
.btn--outline-light,
.btn--ghost {
  background: transparent;
  color: #AE864B;
  border: 1.5px solid #AE864B;
}
.btn--outline-dark:hover, .btn--outline-dark:focus-visible,
.btn--primary:hover, .btn--primary:focus-visible,
.btn--outline-light:hover, .btn--outline-light:focus-visible,
.btn--ghost:hover, .btn--ghost:focus-visible {
  background-color: #AE864B;
  border-color: #AE864B;
  color: var(--clr-white);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

.btn--sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.75rem;
}

/* ============================================================
   5b. VERSION STRIP
   ============================================================ */
.version-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9300;
  height: 36px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.version-strip__link {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.version-strip__link:hover { color: rgba(255,255,255,0.85); }

.version-strip__link--active {
  color: var(--clr-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.version-strip__sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.625rem;
}

/* ============================================================
   6. WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.wa-float:hover, .wa-float:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

.wa-float svg { width: 28px; height: 28px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background-color: var(--clr-mahogany);
  color: var(--clr-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease),
              visibility 0.3s var(--ease),
              transform 0.3s var(--ease),
              background-color 0.2s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background-color: var(--clr-gold);
}

.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9200;
  height: var(--nav-h);
  border-bottom: none;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.site-header:not(.is-scrolled) {
  background: rgba(255,255,255,0.8);
}

.site-header:not(.is-scrolled) .nav__logo-img { filter: none; }
.site-header:not(.is-scrolled) .nav__link { color: var(--clr-text); }
.site-header:not(.is-scrolled) .nav__link:hover,
.site-header:not(.is-scrolled) .nav__link--active { color: var(--clr-gold); }
.site-header:not(.is-scrolled) .nav__link::after { background: var(--clr-gold); }
.site-header:not(.is-scrolled) .nav__bar { background-color: var(--clr-text); }
.site-header:not(.is-scrolled) .nav__more-btn { color: var(--clr-text); }
.site-header:not(.is-scrolled) .nav__more-btn:hover { color: var(--clr-gold); }

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* Nav links — dark on white header */
.site-header.is-scrolled .nav__link {
  color: var(--clr-text);
}
.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link:focus-visible,
.site-header.is-scrolled .nav__link--active {
  color: var(--clr-gold);
}
.site-header.is-scrolled .nav__link::after {
  background: var(--clr-gold);
}

/* Hamburger bars — dark */
.site-header.is-scrolled .nav__bar {
  background-color: var(--clr-text);
}

/* More button icon — dark */
.site-header.is-scrolled .nav__more-btn {
  color: var(--clr-text);
}
.site-header.is-scrolled .nav__more-btn:hover {
  color: var(--clr-gold);
}


.nav { height: 100%; }

.nav__inner {
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 50px);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--duration) var(--ease);
}
.nav__logo:hover { opacity: 0.8; }

.nav__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}


/* Two-logo variants (hidden by default — single logo + filter used instead) */
.nav__logo-img--dark  { display: none; }
.nav__logo-img--white { display: block; }

/* Nav links */
.nav__menu {
  display: none;
  margin-left: auto;
}

.nav__link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  position: relative;
  transition: color var(--duration) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: var(--sp-3);
  right: var(--sp-3);
  height: 1.5px;
  background-color: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link--active { color: var(--clr-white); }

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link--active::after { transform: scaleX(1); }

/* ── More dropdown ── */
.nav__more-wrap {
  position: relative;
}

.nav__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 34px;
  background: none;
  border: none;
  border-radius: 5px;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  padding: 0;
  transition: color var(--duration) var(--ease);
}
.nav__more-btn svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  pointer-events: none;
}
.nav__more-btn[aria-expanded="true"],
.nav__more-btn:hover {
  color: var(--clr-white);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.nav__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 0.625rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text);
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown-link:hover,
.nav__dropdown-link--active {
  color: var(--clr-gold);
  background: var(--clr-cream);
}
.nav__dropdown-link--active {
  font-weight: 600;
}

/* Mobile: flatten dropdown into regular menu */
@media (max-width: 767px) {
  .nav__more-wrap { display: contents; }
  .nav__more-btn { display: none; }
  .nav__dropdown {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    display: contents;
  }
  .nav__dropdown-link {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--clr-text);
    padding: 1.1rem 1.75rem;
    border-bottom: 1px solid var(--clr-border);
    border-left: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-transform: uppercase;
  }
  .nav__dropdown-link:hover,
  .nav__dropdown-link--active {
    color: var(--clr-gold);
    border-left-color: var(--clr-gold);
    background: var(--clr-cream);
  }
}

/* Hide FAQs / T&C from desktop dropdown (visible on mobile via display:contents) */
@media (min-width: 768px) {
  .nav__desktop-hide { display: none; }
}

/* Mobile vertical rhythm — section padding bottoms out at 5rem (80px) on phones,
   stacking to ~160px of dead space between widgets. Tighten it for small screens. */
@media (max-width: 767px) {
  :root { --section-py: 3rem; }
}

/* Book Now — desktop nav */
.nav__book {
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.625rem 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  background: #AE864B;
  color: #fff;
  border: 1px solid #AE864B;
}

.nav__book:hover,
.nav__book:focus-visible {
  background: #9C7843;
  border-color: #9C7843;
  color: #fff;
}

/* Floating Book Now — mobile only */
.nav__book-float {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 850;
  border-radius: 3px;
  background: var(--clr-gold);
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  transition: background var(--duration) var(--ease);
}
.nav__book-float:hover { background: #AE864B; }

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
  border-radius: var(--radius);
}

.nav__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__menu.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
  background: #ffffff;
  padding: 0;
  gap: 0;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  animation: navSlideDown 0.25s ease forwards;
  z-index: 9100;
}

.nav__menu.is-open .nav__link {
  display: flex;
  align-items: center;
  padding: 1.1rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav__menu.is-open .nav__link::after { display: none; }

.nav__menu.is-open .nav__link:hover,
.nav__menu.is-open .nav__link--active {
  color: var(--clr-gold);
  border-left-color: var(--clr-gold);
  background: var(--clr-cream);
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  padding-top: calc(var(--nav-h) + 36px);
  padding-bottom: 0;
}

/* Slides container */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20,11,5,0.55) 0%, rgba(20,11,5,0.1) 40%, transparent 100%);
}

/* ---- Left reservation sidebar ---- */
.hero__sidebar-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2.25rem;
  padding-top: var(--nav-h);
}

.hero__sidebar-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 1.5rem;
}

.hero__sidebar-label {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__sidebar-phone {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--clr-gold-light);
}

.hero__sidebar-icon-wrap {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.hero__sidebar-icon-wrap:hover,
.hero__sidebar-icon-wrap:focus-visible {
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
}

.hero__sidebar-icon-wrap svg { width: 15px; height: 15px; }

/* ---- Center hero content ---- */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  padding-bottom: 7rem;
  padding-inline: 5rem;
  animation: fadeUp 0.9s var(--ease) both;
}

.hero__stars {
  color: var(--clr-gold);
  font-size: 1.125rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.125rem;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.625rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.55);
  background: transparent;
  transition: border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.hero__cta:hover,
.hero__cta:focus-visible {
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
}

/* ---- Slide indicator dots ---- */
.hero__dots {
  position: absolute;
  right: 1.375rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.hero__dot:hover { transform: scale(1.3); }

.hero__dot--active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}


/* ============================================================
   8b. BOOKING BAR
   ============================================================ */
.booking-bar {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 3.75%, rgba(0, 0, 0, 0.70) 100%);
  margin-inline: 0;
  padding: 20px 50px 20px 50px;
}

.booking-form {
  width: 100%;
  display: flex;
  align-items: stretch;
}

/* Column wrapper — label above + box below */
.booking-form__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem clamp(0.875rem, 2vw, 1.375rem);
  min-width: 0;
  border-right: none;
}

.booking-form__col:hover { background: rgba(255,255,255,0.05); }

/* Label above the box */
.booking-form__col-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  white-space: nowrap;
  cursor: default;
}

/* Bordered input box — icon + input/select */
.booking-form__box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 0.5rem 0.625rem;
  background: transparent;
  cursor: pointer;
}

.booking-form__box:focus-within {
  border-color: var(--clr-gold);
}

/* Icon inside box */
.booking-form__box-icon {
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

/* Input inside box */
.booking-form__input {
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--clr-white);
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: pointer;
  color-scheme: dark;
  min-width: 0;
}

.booking-form__input::placeholder { color: rgba(255,255,255,0.5); }
.booking-form__input:focus { color: var(--clr-white); }

/* Select inside box */
.booking-form__select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--clr-white);
  background: transparent;
  padding: 0 0 0 0.25rem;
  width: 100%;
  cursor: pointer;
  min-width: 0;
}

.booking-form__select option { color: var(--clr-dark); background: #fff; padding-left: 0.5em; }

.booking-form__select:focus { color: var(--clr-white); }

/* Chevron in select box */
.booking-form__chevron {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  pointer-events: none;
}

/* Submit column — button + manage link */
.booking-form__submit-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  flex-shrink: 0;
  padding: 0.75rem clamp(0.875rem, 2vw, 1.375rem);
}

.booking-form__submit {
  padding: 12px 1.5rem;
  background: var(--clr-gold);
  color: var(--clr-white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration) var(--ease);
}

.booking-form__submit:hover,
.booking-form__submit:focus-visible {
  background: #AE864B;
}

/* Why book direct? — sits just under the Book Now button, left-aligned to it.
   Absolutely positioned so it does NOT push the button up — the button stays
   aligned with the other input boxes. */
.booking-form__why {
  position: absolute;
  top: calc(100% - 0.5rem);
  left: clamp(0.875rem, 2vw, 1.375rem);
  text-align: left;
}

.booking-form__why-trigger {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.45);
  transition: color var(--duration) var(--ease);
}

.booking-form__why-trigger:hover,
.booking-form__why:focus-within .booking-form__why-trigger {
  color: var(--clr-gold);
}

/* Pop-up — opens in place, just above the trigger */
.booking-form__why-pop {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: 240px;
  background: var(--clr-white);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(20,11,5,0.24);
  padding: 0.875rem 1rem;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              visibility var(--duration) var(--ease);
  z-index: 20;
}

/* Transparent bridge so the pointer can travel across the gap without closing */
.booking-form__why-pop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

/* Little arrow pointing down to the trigger */
.booking-form__why-pop::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 22px;
  border: 7px solid transparent;
  border-top-color: var(--clr-white);
}

.booking-form__why:hover .booking-form__why-pop,
.booking-form__why:focus-within .booking-form__why-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.booking-form__why-pop-title {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #535758;
  margin-bottom: 0.625rem;
}

.booking-form__why-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-form__why-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--clr-mid);
}

.booking-form__why-list svg {
  width: 15px;
  height: 15px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* ============================================================
   MOBILE SLIDER COMPONENTS (global, shown by JS on mobile)
   ============================================================ */
.mobile-slider-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mobile-slider-arrow {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  background: rgba(0,0,0,0.55);
  color: var(--clr-white);
  cursor: pointer; flex-shrink: 0;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.mobile-slider-arrow:hover { background: rgba(0,0,0,0.85); border-color: rgba(255,255,255,0.9); }
.mobile-slider-arrow:disabled { opacity: 0.3; pointer-events: none; }
.mobile-slider-arrow svg { width: 14px; height: 14px; }
.mobile-slider-dots { display: flex; gap: 0.5rem; }
.mobile-slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--clr-border); border: none; cursor: pointer; padding: 0;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.mobile-slider-dot.is-active { background: var(--clr-gold); transform: scale(1.3); }

/* ============================================================
   MOBILE OVERRIDES  <768 px
   Only rules that were genuinely missing — per-section rules
   already exist (wedding, stats, gallery, attractions, testi).
   ============================================================ */
@media (max-width: 767px) {

  /* Version strip */
  .version-strip { gap: 0.75rem; }
  .version-strip__link { font-size: 0.5rem; letter-spacing: 0.14em; }

  /* Hero */
  .hero__sidebar-left { display: none; }
  .hero__dots { display: none; }

  /* Booking bar */
  .booking-bar { padding: 0; }
  .booking-form { flex-direction: column; }
  .booking-form__col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 0.75rem 1.25rem;
  }
  .booking-form__submit-col { padding: 0.75rem 1.25rem; }
  .booking-form__submit { width: 100%; padding: 0.875rem; }

  /* Rooms mobile slider */
  .rooms-slider-outer { overflow: hidden; }
  .rooms-grid.is-mobile-slider {
    display: flex !important;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .rooms-grid.is-mobile-slider .room-card {
    flex: 0 0 82vw;
    min-width: 0;
  }

  /* Rooms section header */
  .rooms__header { text-align: center; }

  /* Offers mobile slider */
  .offers-slider-outer { overflow: hidden; }
  .offers__inner { grid-template-columns: 1fr; }
  .offers__cards.is-mobile-slider {
    display: flex !important;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .offers__cards.is-mobile-slider .offer-card {
    flex: 0 0 82vw;
    min-width: 0;
  }

  /* Location — was missing mobile handling */
  .location__inner { grid-template-columns: 1fr; }
  .location__map { min-height: 300px; }
  .location__map-embed { min-height: 300px; }

  /* Footer stacking — was missing */
  .site-footer__top { grid-template-columns: 1fr !important; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; }

  /* Nav mobile menu — sits flush below header */
  .nav__menu.is-open { top: var(--nav-h); height: calc(100dvh - var(--nav-h)); }

  /* Hide Book Now from nav, show floating button instead */
  .nav__book       { display: none; }
  .nav__book-float { display: block; }

  /* Hide booking bar — floating Book Now handles this on mobile */
  .booking-bar { display: none; }

  /* Add bottom padding to body so floating button doesn't cover content */
  body { padding-bottom: 3.5rem; }
}

/* Destroy sliders above 768 px */
@media (min-width: 768px) {
  .mobile-slider-nav { display: none !important; }
  .rooms-slider-outer  { overflow: visible; }
  .offers-slider-outer { overflow: visible; }
}


/* ============================================================
   10. ABOUT
   ============================================================ */
.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.about__eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 400;
  color: var(--clr-muted);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: #535758;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 767px) {
  .about__heading { font-size: 32px; }
}


.about__body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.85;
  color: var(--clr-text);
  max-width: 680px;
}

/* ============================================================
   10b. STATS
   ============================================================ */
.stats {
  background: var(--clr-cream);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.stats__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  text-align: center;
}

.stats__bg-num {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 600;
  line-height: 1;
  color: #E8E0D4;
  user-select: none;
  display: block;
}

.stats__bg-num sup {
  font-size: 0.45em;
  vertical-align: super;
  line-height: 0;
}

.stats__label {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.2vw, 0.9375rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #535758;
  margin-top: -1.5rem;
  position: relative;
  z-index: 1;
}

.stats__divider {
  width: 1px;
  height: 5rem;
  background: var(--clr-border);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stats__divider { display: none; }
  .stats__item {
    border-bottom: 1px solid var(--clr-border);
    padding-block: 1.25rem;
  }
  .stats__item:nth-child(odd) { border-right: 1px solid var(--clr-border); }
}

/* ============================================================
   11. ROOMS
   ============================================================ */

.rooms {
  background-color: var(--clr-cream);
}

.rooms .container {
  background: var(--clr-white);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 2px 24px rgba(20, 11, 5, 0.07);
}

.rooms__header {
  text-align: left;
}

.rooms__header .h2 { margin-top: var(--sp-2); }

.rooms-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Card — full-image portrait */
.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

/* Image fills card entirely */
.room-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.room-card:hover .room-card__image { transform: scale(1.06); }

/* Dark gradient overlay — bottom */
.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 5, 2, 0.88) 0%,
    rgba(10, 5, 2, 0.45) 35%,
    rgba(10, 5, 2, 0.05) 65%,
    transparent 100%
  );
  transition: background var(--duration) var(--ease);
}

.room-card:hover .room-card__overlay,
.room-card--active .room-card__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 5, 2, 0.92) 0%,
    rgba(10, 5, 2, 0.55) 45%,
    rgba(10, 5, 2, 0.1) 70%,
    transparent 100%
  );
}

/* Vertical BOOKING tab — top right */
.room-card__booking-tab {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  z-index: 3;
  border-radius: 3px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 0.85rem 0.35rem;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.room-card__booking-tab:hover,
.room-card__booking-tab:focus-visible {
  background: var(--clr-white);
  color: var(--clr-dark);
  border-color: var(--clr-white);
}

/* Info block — bottom of card */
.room-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.room-card__sqft {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.4rem;
}

.room-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* Hover row — icons + details link */
.room-card__hover-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top-color: transparent;
  transition: max-height 0.4s var(--ease),
              opacity 0.35s var(--ease),
              margin-top 0.35s var(--ease),
              padding-top 0.35s var(--ease),
              border-top-color 0.35s var(--ease);
}

.room-card:hover .room-card__hover-row,
.room-card--active .room-card__hover-row {
  max-height: 60px;
  opacity: 1;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top-color: rgba(255, 255, 255, 0.2);
}

.room-card__icons {
  display: flex;
  gap: var(--sp-4);
}

.room-card__icons svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.room-card__details {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  white-space: nowrap;
  transition: color var(--duration) var(--ease);
}

.room-card__details:hover { color: var(--clr-gold-light); }

/* ============================================================
   11b. ROOMS — SERVICE CARD STYLE (image top, content below)
   ============================================================ */
.rooms__intro {
  max-width: 54ch;
  color: var(--clr-mid);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-top: var(--sp-3);
}

.rooms-svc-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 900px) {
  .rooms-svc-grid { grid-template-columns: repeat(3, 1fr); }
}

.rooms-svc-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.rooms-svc-card:hover {
  box-shadow: 0 8px 32px rgba(20, 11, 5, 0.12);
  transform: translateY(-2px);
}

.rooms-svc-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.rooms-svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.rooms-svc-card:hover .rooms-svc-card__img { transform: scale(1.05); }

.rooms-svc-card__body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}

.rooms-svc-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.2;
}

.rooms-svc-card__desc {
  font-size: 0.875rem;
  color: var(--clr-mid);
  line-height: 1.65;
  flex: 1;
}

.rooms-svc-card__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-1);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-4);
  margin-top: auto;
  transition: color var(--duration) var(--ease);
}

.rooms-svc-card__cta:hover { color: var(--clr-gold); }

.rooms-svc-card__specs {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.rooms-svc-card__usp {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--clr-mid);
  padding: 0.4rem 0.75rem;
  border-left: 2px solid var(--clr-gold);
}

/* ============================================================
   12. WHY BOOK DIRECT STRIP
   ============================================================ */

.book-direct-strip {
  background: var(--clr-mahogany);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}

.book-direct-strip__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--clr-gold);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.book-direct-strip__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.book-direct-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 110px;
}

.book-direct-strip__item svg {
  width: 32px;
  height: 32px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.book-direct-strip__item span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-cream);
  line-height: 1.5;
}

.book-direct-strip__cta {
  margin-top: var(--sp-2);
}

/* ============================================================
   12b. FACILITIES STRIP (homepage)
   ============================================================ */

.hp-facilities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

@media (min-width: 560px) {
  .hp-facilities__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hp-facilities__grid { grid-template-columns: repeat(5, 1fr); }
}

.hp-fac-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 1rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.hp-fac-item:hover {
  box-shadow: 0 6px 20px rgba(20, 11, 5, 0.09);
  transform: translateY(-2px);
}

.hp-fac-item svg {
  width: 28px;
  height: 28px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.hp-fac-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.35;
}

/* ============================================================
   13. OFFERS
   ============================================================ */
.offers {
  background-color: var(--clr-warm-white);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* ── Offers split layout (text left, two images right) ── */
.offers-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
  padding-block: clamp(1rem, 3vw, 2rem);
}

@media (max-width: 767px) {
  .offers-split { grid-template-columns: 1fr; }
}

/* Stars */
.offers-split__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--sp-4);
}
.offers-split__stars svg {
  width: 16px;
  height: 16px;
  color: var(--clr-gold);
}

/* Body text */
.offers__body {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: var(--clr-mid);
  padding-top: 12px;
  margin-bottom: var(--sp-5);
}

/* Two images — offset for visual depth */
.offers-split__imgs {
  display: flex;
  gap: clamp(0.875rem, 2vw, 1.5rem);
  align-items: flex-start;
  overflow: hidden;
}

.offers-split__img1 {
  flex: 0 0 52%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.offers-split__img2 {
  flex: 1;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.offers-split__img1 img,
.offers-split__img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.offers-split__img1:hover img,
.offers-split__img2:hover img { transform: scale(1.04); }

/* Right: two offer cards (kept for offers.html page) */
.offers__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

/* Individual offer card */
.offer-card {
  background-color: transparent;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
}

.offer-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.offer-card:hover .offer-card__image img { transform: scale(1.05); }

.offer-card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.offer-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
}

.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}

.offer-card__amount {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: var(--clr-gold);
  line-height: 1;
}

.offer-card__period {
  font-size: 0.875rem;
  color: var(--clr-muted);
  font-weight: 400;
}

.offer-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.offer-card__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--clr-mid);
  line-height: 1.4;
}

.offer-card__item--yes::before {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-gold);
  flex-shrink: 0;
  width: 14px;
}

.offer-card__item--no::before {
  content: '✕';
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-muted);
  flex-shrink: 0;
  width: 14px;
}

.offers__cta { width: 100%; justify-content: center; }

/* ============================================================
   12b. WEDDINGS & EVENTS
   ============================================================ */
.wedding {
  display: flex;
  align-items: stretch;
  background-color: var(--clr-cream);
  min-height: clamp(480px, 55vw, 680px);
  padding-top: 128px;
  padding-bottom: 128px;
}

/* Left image */
.wedding__img-wrap {
  flex: 0 0 48%;
  margin-left: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border-radius: 8px;
}

.wedding__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.wedding__img-wrap:hover .wedding__img { transform: scale(1.03); }

/* Right content */
.wedding__content {
  flex: 0 0 52%;
  display: flex;
  align-items: center;
  padding-inline: clamp(3rem, 7vw, 7rem);
}

.wedding__content-inner {
  max-width: 520px;
}

.wedding__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #535758;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.wedding__body {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  line-height: 1.85;
  color: var(--clr-mid);
  margin-bottom: var(--sp-5);
}

.wedding__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-top: var(--sp-5);
  padding: 0.9rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AE864B;
  background: transparent;
  border: 1.5px solid #AE864B;
  transition: background-color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.wedding__btn:hover,
.wedding__btn:focus-visible {
  background-color: #AE864B;
  border-color: #AE864B;
  color: var(--clr-white);
}

/* Mobile */
@media (max-width: 767px) {
  .wedding {
    flex-direction: column;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
  }
  .wedding__img-wrap {
    flex: none;
    height: 320px;
    margin: 0 1.5rem;
  }
  .wedding__content {
    flex: none;
    padding: 2.5rem 1.5rem;
  }
}

/* ============================================================
   13. DINING — cinematic full-width banner
   ============================================================ */
.dining {
  /* no section padding — full bleed */
}

.dining__banner {
  position: relative;
  min-height: 340px;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.dining__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.dining__bg.is-active {
  opacity: 1;
}

.dining__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 2, 0.62);
}

/* Slide indicator dots */
.dining__dots {
  position: absolute;
  right: 1.375rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.dining__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.dining__dot:hover { transform: scale(1.3); }

.dining__dot--active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

/* Inner content row */
.dining__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

/* Left: text */
.dining__brand-logo {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: var(--sp-5);
  display: block;
}

.dining__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  display: block;
}

.dining__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.dining__desc {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  max-width: 420px;
}

.dining__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  border-bottom: 1px solid rgba(196,146,48,0.4);
  padding-bottom: 2px;
  transition: color var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.dining__link:hover {
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.4);
}

/* Right: rating circle (like the play button in reference) */
.dining__badge {
  flex-shrink: 0;
  width: clamp(90px, 10vw, 120px);
  height: clamp(90px, 10vw, 120px);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  transition: border-color var(--duration) var(--ease);
}

.dining__badge:hover { border-color: var(--clr-gold); }

.dining__badge-score {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1;
}

.dining__badge-stars {
  font-size: 0.5625rem;
  color: var(--clr-gold);
  letter-spacing: 0.1em;
}

.dining__badge-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

/* Mobile: stack badge below text */
@media (max-width: 639px) {
  .dining__banner {
    aspect-ratio: auto;
    min-height: 420px;
    padding-block: 3rem;
  }

  .dining__content { flex-direction: column; align-items: flex-start; }
  .dining__badge   { align-self: flex-start; }
}

/* ============================================================
   14. EVENTS / CONFERENCES
   ============================================================ */
.venues-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.venue-card {
  background-color: var(--clr-warm-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.venue-card:hover {
  box-shadow: 0 8px 28px rgba(42,20,8,0.1);
  transform: translateY(-3px);
}

.venue-card--gold {
  border-color: var(--clr-gold);
  background-color: #FEFCF5;
}

.venue-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2);
}

.venue-card__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: #535758;
}

.venue-card__cap {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  white-space: nowrap;
}

.venue-card__meta {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--sp-4);
}

.venue-card__setups {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  padding: var(--sp-4);
  background-color: var(--clr-cream);
  border-radius: var(--radius);
}

.venue-card__setups li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--clr-text);
}

.venue-card__setups li span:last-child {
  font-weight: 600;
  color: #535758;
}

.venue-card__ideal {
  font-size: 0.8125rem;
  color: var(--clr-mid);
  font-style: italic;
}

.events__footer {
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.events__note {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  margin-bottom: var(--sp-6);
}

.events__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ============================================================
   15. LOCATION
   ============================================================ */

/* Top heading block */
.location__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.location__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: #535758;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.location__title em {
  font-style: italic;
  color: var(--clr-gold);
  font-weight: 400;
}


/* Two-column grid */
.location__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

/* Left: body + labeled list */
.location__content .body-copy {
  margin-bottom: var(--sp-6);
}

.location-list {
  margin-top: var(--sp-6);
}

.location-list__item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9375rem;
}

.location-list__item:first-child { border-top: 1px solid var(--clr-border); }

.location-list__cat {
  flex-shrink: 0;
  width: 6rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-amber);
}

.location-list__detail {
  color: var(--clr-text);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Right: map */
.location__map {
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--clr-border);
}

.location__map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

/* ============================================================
   15b. NEARBY ATTRACTIONS
   ============================================================ */
.attractions { padding-top: 0; }

.attractions__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.attractions__heading .h2 { margin-top: var(--sp-3); }

/* Prev + Next arrow pair */
.attractions__controls {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Clips the overflowing cards — full width, aligned with heading */
.attractions__outer {
  overflow: hidden;
}

/* Scrollable track */
.attractions__track {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Arrow buttons */
.attractions__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.attractions__arrow svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.attractions__arrow:hover:not(:disabled) {
  background: #AE864B;
  border-color: #AE864B;
  color: var(--clr-white);
  box-shadow: 0 4px 12px rgba(20,11,5,0.18);
}

.attractions__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Card — 4 visible at a time */
.attract-card {
  flex: 0 0 calc((100% - 3 * clamp(0.75rem, 1.5vw, 1.25rem)) / 4);
  min-width: 0;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.attract-card:hover {
  box-shadow: 0 8px 28px rgba(20, 11, 5, 0.10);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  /* Show one full card + ~1/4 peek of the next (1.25 cards across) */
  .attract-card {
    flex: 0 0 calc((100% - clamp(0.75rem, 1.5vw, 1.25rem)) / 1.25);
  }
}

/* Image */
.attract-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.attract-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}

.attract-card:hover .attract-card__img-wrap img { transform: scale(1.05); }

/* Card body */
.attract-card__body {
  padding: 1rem 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-2);
}

.attract-card__dist {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.attract-card__name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.25;
}

.attract-card__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--clr-mid);
  flex: 1;
}

/* ============================================================
   16. GALLERY — scattered layout
   ============================================================ */

.gallery { background-color: var(--clr-white); }

/* 8-col × 5-row scatter grid */
.gallery-scatter {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, clamp(72px, 7.5vw, 108px));
  gap: clamp(8px, 1vw, 12px);
}

/* Image items */
.gs__item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.gs__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}

.gs__item:hover img { transform: scale(1.06); }

/* Grid placements */
.gs__a { grid-column: 2;     grid-row: 1; }          /* small square, top-left area */
.gs__b { grid-column: 3 / 6; grid-row: 1; }          /* wide, top-centre */
.gs__c { grid-column: 7 / 9; grid-row: 1 / 4; }      /* tall, right */
.gs__d { grid-column: 1 / 4; grid-row: 2 / 4; }      /* medium, middle-left */
.gs__e { grid-column: 2 / 5; grid-row: 4 / 6; }      /* medium, bottom-left */
.gs__f { grid-column: 5 / 8; grid-row: 4 / 6; }      /* large, bottom-right */
.gs__g { grid-column: 6;     grid-row: 1; }          /* small square, fills top gap */

/* Centre text block */
.gs__text {
  grid-column: 4 / 7;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-4);
}

.gs__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--sp-2);
}

.gs__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  font-style: normal;
  color: #535758;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gs__sub {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* Mobile: simple 2-col grid */
@media (max-width: 767px) {
  .gallery-scatter {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .gs__a, .gs__b, .gs__c,
  .gs__d, .gs__e, .gs__f, .gs__g {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }
  .gs__text {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 2rem var(--sp-4);
  }
}

/* ============================================================
   16b. TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--clr-white);
  padding-top: 128px;
  padding-bottom: 128px;
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.testimonials__header .h2 { margin-top: var(--sp-3); }

/* Overflow clip wrapper */
.testimonials__wrap {
  overflow: hidden;
}

/* Flex track — slides via JS translateX */
.testimonials__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card: 1/3 of wrap width (minus 2 gaps) */
.testi-card {
  flex: 0 0 calc((100% - 2 * clamp(1rem, 2vw, 1.5rem)) / 3);
  min-width: 0;
  background: var(--clr-warm-white);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin: 0;
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.testi-card:hover {
  box-shadow: 0 8px 32px rgba(42,20,8,0.09);
  transform: translateY(-3px);
}

.testi-card__stars {
  color: var(--clr-gold);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
}

.testi-card__quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-style: italic;
  line-height: 1.75;
  color: #535758;
  flex: 1;
}

.testi-card__quote::before { content: '\201C'; }
.testi-card__quote::after  { content: '\201D'; }

.testi-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--clr-border);
}

.testi-card__name {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-text);
}

.testi-card__source {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  text-transform: uppercase;
}

/* Dot nav */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.testimonials__dot--active,
.testimonials__dot:hover {
  background: var(--clr-gold);
  transform: scale(1.3);
}

/* Responsive card widths */
@media (max-width: 767px) {
  .testi-card {
    flex: 0 0 100%;
  }
  .testimonials {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .testi-card {
    flex: 0 0 calc((100% - clamp(1rem, 2vw, 1.5rem)) / 2);
  }
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  color: rgba(255,255,255,0.75);
  overflow: hidden;
}

/* Background photo + dark overlay */
.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.site-footer__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-mahogany);
}

/* Inner wrapper sits above the background */
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 50px);
  padding-top: clamp(3.5rem, 6vw, 5rem);
}

/* Three-column top grid */
.site-footer__top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Shared section label */
.site-footer__label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
}

.site-footer__label--gap { margin-top: var(--sp-8); }

/* Col 1: Brand */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.site-footer__logo-link {
  display: inline-block;
  transition: opacity var(--duration) var(--ease);
}
.site-footer__logo-link:hover { opacity: 0.75; }

.site-footer__logo {
  height: 87px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}

/* Col 2: Quick Links */
.site-footer__nav { /* heading + two-col list */ }

.site-footer__nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.site-footer__nav-cols ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.site-footer__nav-cols a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}
.site-footer__nav-cols a:hover { color: var(--clr-gold-light); }

/* Col 3: Contact */
.site-footer__contact { display: flex; flex-direction: column; }

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.site-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.site-footer__contact-list svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--clr-gold);
}

.site-footer__contact-list a {
  color: rgba(255,255,255,0.75);
  transition: color var(--duration) var(--ease);
}
.site-footer__contact-list a:hover { color: var(--clr-gold); }

.site-footer__dept {
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
}

/* Social icons */
.site-footer__social {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              background-color var(--duration) var(--ease);
}

.site-footer__social a[aria-label="Instagram"]:hover,
.site-footer__social a[aria-label="Instagram"]:focus-visible {
  background-color: #E1306C; border-color: #E1306C; color: #fff;
}
.site-footer__social a[aria-label="Facebook"]:hover,
.site-footer__social a[aria-label="Facebook"]:focus-visible {
  background-color: #1877F2; border-color: #1877F2; color: #fff;
}
.site-footer__social a[aria-label="LinkedIn"]:hover,
.site-footer__social a[aria-label="LinkedIn"]:focus-visible {
  background-color: #0A66C2; border-color: #0A66C2; color: #fff;
}
.site-footer__social a[aria-label^="X"]:hover,
.site-footer__social a[aria-label^="X"]:focus-visible {
  background-color: #1DA1F2; border-color: #1DA1F2; color: #fff;
}
.site-footer__social a[aria-label="YouTube"]:hover,
.site-footer__social a[aria-label="YouTube"]:focus-visible {
  background-color: #FF0000; border-color: #FF0000; color: #fff;
}
.site-footer__social a[aria-label="TripAdvisor"]:hover,
.site-footer__social a[aria-label="TripAdvisor"]:focus-visible {
  background-color: #34E0A1; border-color: #34E0A1; color: #000;
}

.site-footer__social svg { width: 14px; height: 14px; }

/* Footer bottom bar */
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
}

.site-footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.site-footer__legal a,
.site-footer__legal span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--duration) var(--ease);
}

.site-footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   17b. TEXT ANIMATIONS
   ============================================================ */

/* Word-reveal — each word clips up into view */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}

.split-word__inner {
  display: inline-block;
  transform: translateY(108%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease;
}

.split-text.text-visible .split-word__inner {
  transform: translateY(0);
  opacity: 1;
}

/* Eyebrow fade-up */
.eyebrow-anim {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.eyebrow-anim.eyebrow-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Body-copy fade-up */
.body-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.body-anim.body-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .split-word__inner,
  .eyebrow-anim,
  .body-anim {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ============================================================
   18. SCROLL REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0ms;   opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: none; }

/* ============================================================
   19. RESPONSIVE — ≥ 640px (tablet)
   ============================================================ */
@media (min-width: 640px) {
  .venues-grid { grid-template-columns: repeat(2, 1fr); }


}

/* ============================================================
   20. RESPONSIVE — ≥ 900px (desktop nav)
   ============================================================ */
@media (min-width: 900px) {
  /* Full nav */
  .nav__menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex-direction: row;
    margin-left: auto;
  }

  .nav__toggle { display: none; }
  .nav__book   { margin-left: var(--sp-5); }



  /* Rooms: 3-col equal */
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
  .rooms .section-footer { text-align: center; }

  /* Offers: text left, cards right */
  .offers__inner { grid-template-columns: 2fr 3fr; align-items: center; }



  /* Location: 2-col */
  .location__inner { grid-template-columns: 5fr 7fr; align-items: start; }

  /* Footer: brand | quick-links | contact */
  .site-footer__top {
    grid-template-columns: 1fr 1.6fr 1.4fr;
    align-items: start;
  }

  /* Booking widget mobile stacking fix (overrides below) */
  .booking-form { flex-direction: row; }
}

/* ============================================================
   21. RESPONSIVE — ≥ 1200px (large desktop)
   ============================================================ */
@media (min-width: 1200px) {
  .venues-grid { grid-template-columns: repeat(3, 1fr); }

  .site-footer__top {
    grid-template-columns: 1fr 1.8fr 1.5fr;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

/* ============================================================
   22. RESPONSIVE — ≥ 1600px (ultra-wide)
   ============================================================ */
@media (min-width: 1600px) {
  :root { --max-w: 1440px; }
}

/* ============================================================
   23. BOOKING BAR — Mobile stacking (< 640px)
   ============================================================ */
@media (max-width: 639px) {
  .booking-form {
    flex-direction: column;
  }

  .booking-form__field {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: var(--sp-4) var(--sp-5);
  }

  .booking-form__field:last-of-type { border-bottom: none; }

  .booking-form__submit {
    width: 100%;
    padding-block: var(--sp-5);
  }

}

/* ============================================================
   INNER PAGE HERO (shared across all inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(320px, 45vw, 520px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,2,0.78) 0%, rgba(10,5,2,0.25) 60%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 4vw, 50px) clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.1;
  margin-top: var(--sp-3);
}

/* ============================================================
   ABOUT — STORY (2-col: text left, image right)
   ============================================================ */
.about-story {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-story { grid-template-columns: 1fr 1fr; }
}

.about-story__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about-story__text .h2 { margin-top: var(--sp-3); margin-bottom: var(--sp-5); }

.about-story__body {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.85;
  color: var(--clr-mid);
  margin-bottom: var(--sp-5);
}

/* ============================================================
   ABOUT — GAJANANA GROUP / FOUNDERS (2-col: image left, text right)
   ============================================================ */
.about-founders {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-founders { grid-template-columns: 1fr 1fr; }
}

.about-founders__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about-founders__eyebrow { margin-bottom: var(--sp-3); }

.about-founders__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}

.about-founders__body {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.85;
  color: var(--clr-mid);
  margin-bottom: var(--sp-5);
}

.about-founders__signature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--clr-border);
}

.about-founders__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-text);
}

.about-founders__role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ============================================================
   ABOUT — WHY CHOOSE US (3 value cards)
   ============================================================ */
.about-values {
  background-color: var(--clr-cream);
}

.about-values__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

@media (min-width: 768px) {
  .about-values__grid { grid-template-columns: repeat(3, 1fr); }
}

.about-val-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.about-val-card__icon {
  width: 44px;
  height: 44px;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
}

.about-val-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.about-val-card__body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--clr-mid);
}

/* ============================================================
   ACCOMMODATIONS — ROOM LISTING PAGE
   ============================================================ */

/* Intro strip */
.rooms-intro {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
}

.rooms-intro__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .rooms-intro__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.rooms-intro__text {
  max-width: 56ch;
}

.rooms-intro__text p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.8;
  color: var(--clr-mid);
  margin-top: var(--sp-3);
}

.rooms-intro__chips {
  display: flex;
  gap: var(--sp-4);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.rooms-intro__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  min-width: 72px;
}

.rooms-intro__chip-num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--clr-gold);
  line-height: 1;
}

.rooms-intro__chip-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* Room listing section */
.rooms-listing {
  padding-block: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

/* Individual room card */
.room-listing-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--clr-border);
  padding-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--clr-white);
  transition: box-shadow var(--duration) var(--ease);
}

.room-listing-card:hover {
  box-shadow: 0 8px 32px rgba(20,11,5,0.10);
}

@media (min-width: 768px) {
  .room-listing-card {
    grid-template-columns: 45% 1fr;
  }
}

/* Image side */
.room-listing-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .room-listing-card__img-wrap {
    aspect-ratio: unset;
    height: 100%;
    min-height: 320px;
  }
}

.room-listing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.room-listing-card:hover .room-listing-card__img {
  transform: scale(1.04);
}

/* Content side */
.room-listing-card__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.room-listing-card__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-amber);
}

.room-listing-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.15;
  margin: 0;
}

/* Meta chips: size, bed, guests */
.room-listing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.room-listing-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--clr-mid);
  background: var(--clr-warm-white);
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  padding: 0.3rem 0.65rem;
}

.room-listing-card__chip svg {
  width: 13px;
  height: 13px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* Description */
.room-listing-card__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--clr-mid);
  flex: 1;
}

/* 3 amenity tags */
.room-listing-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--clr-border);
}

.room-amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--clr-text);
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  padding: 0.35rem 0.75rem;
}

.room-amenity-tag svg {
  width: 12px;
  height: 12px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* CTA row */
.room-listing-card__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-top: auto;
}

.room-listing-card__details-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-mid);
  transition: color var(--duration) var(--ease);
}

.room-listing-card__details-link:hover { color: var(--clr-gold); }

/* Common amenities strip */
.common-amenities {
  background: var(--clr-cream);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.common-amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4) var(--sp-6);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

@media (min-width: 600px) {
  .common-amenities__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .common-amenities__grid { grid-template-columns: repeat(5, 1fr); }
}

.common-amenity {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-text);
}

.common-amenity svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* Booking CTA strip */
.rooms-cta-strip {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}

.rooms-cta-strip__eyebrow {
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}

.rooms-cta-strip__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--clr-mahogany);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}

.rooms-cta-strip__sub {
  font-size: 0.9375rem;
  color: var(--clr-mid);
  margin-bottom: var(--sp-8);
  max-width: 44ch;
  margin-inline: auto;
}

/* ============================================================
   24. PRINT
   ============================================================ */
@media print {
  .site-header, .wa-float, .booking-widget,
  .direct-booking, .gallery, .site-footer__social { display: none; }
  body { color: #000; font-size: 11pt; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 9pt; color: #555; }
}

/* ============================================================
   OFFER TAB — persistent left-edge Special Offers tab
   Shown on all pages; dismissed per session via JS.
   ============================================================ */
.offer-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  z-index: 9002;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 44px;
  height: 200px;
  background: var(--clr-mahogany);
  border-radius: 0 6px 6px 0;
  box-shadow: 3px 0 16px rgba(10,4,2,0.22);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-tab.is-visible {
  transform: translateY(-50%) translateX(0);
}
.offer-tab__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.offer-tab__arrow:hover { background: rgba(255,255,255,0.1); }
.offer-tab__arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  flex-shrink: 0;
}
.offer-tab__divider {
  height: 1px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.offer-tab__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  flex: 1;
  text-decoration: none;
  transition: background 0.2s;
}
.offer-tab__body:hover { background: rgba(255,255,255,0.07); }
.offer-tab__icon {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
}
.offer-tab__label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* ============================================================
   OFFER PANEL — side drawer next to the tab
   ============================================================ */
.offer-panel {
  position: fixed;
  top: 50%;
  left: 44px;
  transform: translateY(-50%) translateX(calc(-100% - 50px));
  z-index: 9001;
  width: min(260px, calc(100vw - 56px));
  height: 200px;
  overflow-y: auto;
  background: var(--clr-mahogany);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.25rem 1.25rem;
  box-shadow: 4px 0 28px rgba(10,4,2,0.28);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-sizing: border-box;
}
.offer-panel.is-open {
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.offer-panel__tag {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.625rem;
}
.offer-panel__title {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}
.offer-panel__desc {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 1.25rem;
}
.offer-panel__know {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.offer-panel__know:hover { color: var(--clr-gold); }
.offer-panel__book {
  display: inline-flex;
  align-items: center;
  background: var(--clr-gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.625rem 1.125rem;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.offer-panel__book:hover { opacity: 0.88; }
