/* ============================================
   ARBORÉA — Design System
   Boutique Retreat in Bucovina
   ============================================ */

/* Design Tokens */
:root {
  /* Palette */
  --forest-950: #0f1a10;
  --forest-900: #16231a;
  --forest-800: #1c2a1c;
  --forest-700: #223d22;
  --forest-600: #2f4a2f;

  --cream-50: #fbf8f1;
  --cream-100: #f5efe4;
  --cream-200: #ebe2d1;
  --cream-300: #ddd0b7;

  --bronze-500: #a67b3f;
  --bronze-600: #8f6a37;
  --bronze-700: #75562d;

  --stone-800: #3d2f1f;
  --stone-700: #4d3d2b;
  --stone-500: #78624a;
  --stone-400: #9a8a72;
  --stone-300: #bcae95;

  --white-warm: #faf7f0;
  --black-warm: #0a0c0a;

  /* Semantic */
  --bg-primary: var(--cream-50);
  --bg-secondary: var(--cream-100);
  --bg-dark: var(--forest-800);
  --bg-darkest: var(--forest-950);
  --text-primary: var(--forest-950);
  --text-secondary: #3a3025;
  --text-muted: #6b5a44;
  --text-on-dark: var(--cream-100);
  --text-on-dark-muted: var(--stone-300);
  --accent: var(--bronze-500);
  --accent-dark: var(--bronze-700);
  --border-subtle: rgba(120, 98, 74, 0.22);
  --border-on-dark: rgba(235, 226, 209, 0.18);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;
  --text-6xl: 5.5rem;
  --text-hero: clamp(2.75rem, 8vw, 6.5rem);

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --tracking-tightest: -0.03em;
  --tracking-tighter: -0.02em;
  --tracking-tight: -0.01em;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.14em;
  --tracking-widest: 0.22em;

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

  /* Layout */
  --container-max: 1440px;
  --container-wide: 1280px;
  --container-narrow: 960px;
  --container-text: 680px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-fast: 200ms;
  --dur-base: 400ms;
  --dur-slow: 700ms;
  --dur-slower: 1200ms;

  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Shadows (restrained) */
  --shadow-soft: 0 1px 2px rgba(15, 26, 16, 0.04), 0 4px 12px rgba(15, 26, 16, 0.06);
  --shadow-lift: 0 4px 16px rgba(15, 26, 16, 0.08), 0 12px 40px rgba(15, 26, 16, 0.1);

  /* Header */
  --header-height: 88px;
  --header-height-scrolled: 68px;
  --header-height-mobile: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  font-weight: 400;
}

/* Improve base contrast for body copy */
p {
  color: var(--text-secondary);
}

.section p,
.body-text p,
.legal-content p {
  color: var(--stone-700);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

::selection {
  background: var(--forest-800);
  color: var(--cream-100);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--bronze-500);
  outline-offset: 3px;
}

/* Typography Utilities */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--bronze-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--bronze-500);
  display: inline-block;
}

.eyebrow--dark {
  color: var(--bronze-500);
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::before {
  display: none;
}

.eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--bronze-500);
  display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tighter);
  color: var(--text-primary);
}

.h-hero {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-hero);
  line-height: 0.98;
  letter-spacing: var(--tracking-tightest);
}

.h-display {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: var(--tracking-tightest);
}

.h-section {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 400;
}

.h-card {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 56ch;
  font-weight: 300;
}

.text-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.body-text p + p {
  margin-top: 1.25em;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

/* Sections */
.section {
  padding-block: clamp(4rem, 9vw, 8rem);
  position: relative;
}

.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--darkest {
  background: var(--bg-darkest);
  color: var(--text-on-dark);
}

.section--cream {
  background: var(--cream-100);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--darkest h1,
.section--darkest h2,
.section--darkest h3,
.section--darkest h4 {
  color: var(--cream-100);
}

.section--dark .lede,
.section--darkest .lede {
  color: var(--stone-300);
}

.section--dark .body-text,
.section--darkest .body-text {
  color: var(--stone-300);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--forest-800);
  color: var(--cream-100);
}

.btn--primary:hover {
  background: var(--forest-700);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--bronze-500);
  color: var(--white-warm);
}

.btn--accent:hover {
  background: var(--bronze-600);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--forest-900);
  border-color: var(--forest-900);
}

.btn--outline:hover {
  background: var(--forest-900);
  color: var(--cream-100);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(235, 226, 209, 0.5);
}

.btn--outline-light:hover {
  background: var(--cream-100);
  color: var(--forest-900);
  border-color: var(--cream-100);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  padding-inline: 0.25rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.5rem;
}

.btn--ghost:hover {
  color: var(--bronze-600);
}

.btn--sm {
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
}

.btn--lg {
  padding: 1.15rem 2.25rem;
  font-size: 0.82rem;
}

.btn__arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-base) var(--ease-out-expo);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  transition: all var(--dur-base) var(--ease-out-quart);
}

.link-arrow:hover {
  color: var(--bronze-600);
  gap: 0.9rem;
}

.link-arrow--light {
  color: var(--cream-100);
}

.link-arrow--light:hover {
  color: var(--bronze-500);
}

/* ============================================
   Header / Navigation
   ============================================ */

.demo-badge {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  background: rgba(15, 26, 16, 0.92);
  color: var(--cream-100);
  padding: 0.4rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(235, 226, 209, 0.15);
  transition: all var(--dur-base) var(--ease-standard);
  cursor: default;
}

.demo-badge:hover {
  padding-right: 1rem;
}

.demo-badge__full {
  display: none;
  margin-left: 0.5rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  opacity: 0.85;
}

.demo-badge:hover .demo-badge__full {
  display: inline;
}

@media (max-width: 767px) {
  /* Small tag pinned to the very top-right corner, above the menu button */
  .demo-badge {
    bottom: auto;
    top: 0.45rem;
    right: 0.55rem;
    left: auto;
    font-size: 0.5rem;
    padding: 0.22rem 0.45rem;
  }
  .demo-badge:hover .demo-badge__full {
    display: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--dur-base) var(--ease-out-quart);
  padding-inline: var(--gutter);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 26, 16, 0.72) 0%, rgba(15, 26, 16, 0.35) 60%, transparent 100%);
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-standard);
  opacity: 1;
}

.site-header--scrolled {
  height: var(--header-height-scrolled);
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header--scrolled::before {
  opacity: 0;
}

.site-header--light {
  --header-text: var(--forest-900);
}

.site-header--scrolled .site-header__inner {
  color: var(--forest-900);
}

.site-header--light .site-header__inner {
  color: var(--forest-900);
}

.site-header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-8);
  color: var(--cream-100);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(15, 26, 16, 0.35);
}

.site-header--light .site-header__inner,
.site-header--scrolled .site-header__inner {
  color: var(--forest-900);
  text-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.brand__mark {
  font-weight: 500;
  letter-spacing: 0.35em;
}

.brand__sub {
  display: none;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  opacity: 0.7;
}

@media (min-width: 1100px) {
  .brand__sub {
    display: inline;
  }
}

/* On phones/tablets: keep ARBORÉA large and stack the tagline underneath it */
@media (max-width: 979px) {
  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
  .brand__sub {
    display: inline;
  }
}

.nav-primary {
  display: none;
  align-items: center;
  gap: 2.2rem;
  justify-self: center;
}

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

.nav-primary a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
}

.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease-out-quart);
}

.nav-primary a:hover::after,
.nav-primary a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.lang-switch button {
  padding: 0.3rem 0.4rem;
  opacity: 0.55;
  transition: opacity var(--dur-fast) var(--ease-standard);
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
}

.lang-switch button:hover { opacity: 0.9; }

.lang-switch button.is-active {
  opacity: 1;
  color: var(--bronze-500);
}

.header-cta {
  display: none;
}

@media (min-width: 720px) {
  .header-cta { display: inline-flex; }
}

/* Mobile menu button */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2;
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }
}

.menu-toggle__lines {
  display: block;
  width: 22px;
  height: 12px;
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-base) var(--ease-out-expo);
}

.menu-toggle__lines::before { top: 2px; }
.menu-toggle__lines::after { bottom: 2px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  transform: translateY(-3px) rotate(-45deg);
}

/* When the drawer is open its background is light, so the X must be dark */
.menu-toggle[aria-expanded="true"] {
  color: var(--forest-950);
}

/* Drawer open: header sits over the light drawer, so drop the dark gradient
   and switch logo / RO-EN to dark text so they stay readable */
.site-header:has(.menu-toggle[aria-expanded="true"])::before {
  opacity: 0;
}

.site-header:has(.menu-toggle[aria-expanded="true"]) .site-header__inner {
  color: var(--forest-950);
  text-shadow: none;
}

/* Mobile drawer — light/cream, like the desktop header (no gold accent) */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--cream-100);
  color: var(--forest-950);
  padding: calc(var(--header-height-mobile) + 3rem) var(--gutter) 3rem;
  transform: translateY(-100%);
  transition: transform 500ms var(--ease-out-expo);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-nav__list a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  line-height: 1.15;
  padding-block: 0.35rem;
  border-bottom: 1px solid rgba(15, 26, 16, 0.1);
  display: block;
  color: var(--forest-900);
  transition: color var(--dur-fast) var(--ease-standard),
              padding-left var(--dur-base) var(--ease-out-expo);
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus {
  color: var(--forest-950);
  padding-left: 0.5rem;
}

.mobile-nav__footer {
  margin-top: auto;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: rgba(22, 35, 26, 0.65);
}

.mobile-nav__footer .btn {
  align-self: flex-start;
}

.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.mobile-nav__contact a {
  color: var(--forest-950);
}

@media (min-width: 980px) {
  .mobile-nav { display: none; }
}

/* Mobile sticky booking bar */
.mobile-book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--forest-900);
  color: var(--cream-100);
  padding: 0.8rem var(--gutter);
  display: none;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(235, 226, 209, 0.12);
  box-shadow: 0 -10px 40px rgba(15, 26, 16, 0.35);
}

.mobile-book-bar__cta {
  flex: 1;
  background: var(--bronze-500);
  color: var(--white-warm);
  padding: 0.9rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--dur-fast) var(--ease-standard);
}

.mobile-book-bar__cta:hover {
  background: var(--bronze-600);
}

.mobile-book-bar__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(235, 226, 209, 0.25);
  border-radius: 50%;
  transition: background var(--dur-fast) var(--ease-standard);
}

.mobile-book-bar__icon:hover {
  background: rgba(235, 226, 209, 0.1);
}

.mobile-book-bar__icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 979px) {
  .mobile-book-bar { display: flex; }
  body.has-mobile-bar {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 8rem);
  color: var(--cream-100);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(60, 82, 48, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(166, 123, 63, 0.25) 0%, transparent 60%),
    linear-gradient(160deg, #16231a 0%, #0f1a10 45%, #1c2a1c 100%);
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 18s var(--ease-out-quart) forwards;
  opacity: 0;
  transition: opacity 800ms var(--ease-out-quart);
}

.hero__media img.is-loaded,
.hero__media video.is-loaded {
  opacity: 1;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(15, 26, 16, 0.35) 0%, rgba(15, 26, 16, 0.15) 40%, rgba(15, 26, 16, 0.85) 100%);
}

.hero__content {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 30vh;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__eyebrow {
  color: var(--cream-100);
  opacity: 0.85;
}

.hero__eyebrow::before {
  background: var(--cream-100);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.98;
  letter-spacing: var(--tracking-tightest);
  font-weight: 400;
  max-width: 15ch;
  color: var(--cream-100);
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--cream-100);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--cream-200);
  max-width: 42ch;
  line-height: 1.55;
  font-weight: 300;
}

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

.hero__meta {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  padding-inline: var(--gutter);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  color: var(--cream-100);
  pointer-events: none;
}

.hero__meta > * { pointer-events: auto; }

.hero__meta-list {
  display: none;
  gap: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  opacity: 0.85;
}

@media (min-width: 720px) {
  .hero__meta-list { display: flex; }
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero__meta-item span:first-child {
  font-size: 0.62rem;
  opacity: 0.65;
  letter-spacing: var(--tracking-widest);
}

.hero__meta-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  opacity: 0.75;
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}

.scroll-indicator__line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--cream-100));
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

/* ============================================
   Booking Widget
   ============================================ */

.booking-widget {
  position: relative;
  margin-top: -60px;
  z-index: 5;
}

.booking-widget__inner {
  background: var(--cream-50);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lift);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}

@media (min-width: 768px) {
  .booking-widget__inner {
    grid-template-columns: repeat(4, 1fr) auto;
    padding: 2rem 2.25rem;
    gap: 1.5rem;
  }
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.booking-field + .booking-field {
  padding-left: 0;
}

@media (min-width: 768px) {
  .booking-field + .booking-field {
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-subtle);
  }
}

.booking-field__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--stone-500);
}

.booking-field__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest-900);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
}

.booking-field__value::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

.booking-field select.booking-field__value {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2378624a' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}

.booking-widget__submit {
  padding: 1.1rem 1.75rem;
  background: var(--forest-800);
  color: var(--cream-100);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard);
  cursor: pointer;
  border: none;
  min-height: 56px;
}

.booking-widget__submit:hover {
  background: var(--forest-700);
}

/* ============================================
   Common Section Elements
   ============================================ */

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 720px;
}

.section-header--center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-header--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  max-width: 100%;
}

@media (min-width: 900px) {
  .section-header--split {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

.section-header--split .section-header__title { max-width: 18ch; }
.section-header--split .section-header__lede { max-width: 44ch; text-align: left; }

.section-header__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: var(--tracking-tightest);
  font-weight: 400;
}

.section-header__title em {
  font-style: italic;
  font-weight: 300;
}

.section-header__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 52ch;
  font-weight: 300;
}

/* Introduction split section */
.intro-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .intro-split {
    grid-template-columns: 1fr 1.15fr;
    gap: 6rem;
  }
}

.intro-split__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-split__title {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: var(--tracking-tightest);
  font-weight: 400;
}

.intro-split__title em { font-style: italic; font-weight: 300; }

.intro-split__body p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 48ch;
}

/* ============================================
   Room Cards
   ============================================ */

.room-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .room-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.room-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: inherit;
  group: card;
}

.room-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(135deg, #223d22 0%, #16231a 100%);
}

.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out-quart), opacity 700ms var(--ease-out-quart);
  opacity: 0;
}

.room-card__media img.is-loaded {
  opacity: 1;
}

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

.room-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(28, 42, 28, 0.85);
  color: var(--cream-100);
  padding: 0.4rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.room-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.room-card__meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}

.room-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: var(--tracking-tighter);
}

.room-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.room-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  gap: 1rem;
}

.room-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.room-card__price small {
  font-size: 0.62rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
}

.room-card__price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
}

.room-card__price span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.room-card__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  color: var(--text-primary);
  transition: color var(--dur-fast) var(--ease-standard);
}

.room-card:hover .room-card__link {
  color: var(--bronze-600);
}

/* ============================================
   Editorial Section
   ============================================ */

.editorial {
  position: relative;
  background: var(--forest-900);
  color: var(--cream-100);
  overflow: hidden;
}

.editorial__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

@media (min-width: 900px) {
  .editorial__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 640px;
  }
}

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

.editorial__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

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

.editorial__body {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}

.editorial__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: var(--tracking-tightest);
  color: var(--cream-100);
  font-weight: 400;
}

.editorial__title em { font-style: italic; font-weight: 300; }

.editorial__body p {
  color: var(--stone-300);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 52ch;
}

.editorial--reverse .editorial__inner {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .editorial--reverse .editorial__inner {
    grid-template-columns: 1fr 1.1fr;
  }
  .editorial--reverse .editorial__media { order: 2; }
}

/* Experience mini-cards */
.exp-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border-on-dark);
}

.exp-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-on-dark);
  align-items: baseline;
}

.exp-list__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bronze-500);
  font-weight: 400;
}

.exp-list__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream-100);
  line-height: 1.2;
}

.exp-list__meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--stone-300);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

/* ============================================
   Gastronomy Split
   ============================================ */

.gastro-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .gastro-split {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.gastro-split__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.gastro-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-quart);
}

.gastro-split__media:hover img {
  transform: scale(1.03);
}

.gastro-split__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  background: var(--cream-100);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}

.testimonial__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--bronze-500);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--forest-900);
  font-style: italic;
  quotes: '\201C' '\201D';
}

.testimonial__quote::before {
  content: open-quote;
  margin-right: 0.1em;
}

.testimonial__quote::after {
  content: close-quote;
  margin-left: 0.1em;
}

.testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.testimonial__name {
  font-weight: 500;
  color: var(--forest-900);
}

.testimonial__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.testimonials__disclaimer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--border-subtle);
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

/* ============================================
   Gallery Preview
   ============================================ */

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-preview {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
    gap: 1rem;
  }
}

.gallery-preview__item {
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #223d22 0%, #16231a 100%);
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-quart);
}

.gallery-preview__item:hover img {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .gallery-preview__item:nth-child(1) { grid-column: span 7; grid-row: span 3; }
  .gallery-preview__item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
  .gallery-preview__item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
  .gallery-preview__item:nth-child(4) { grid-column: span 2; grid-row: span 3; }
  .gallery-preview__item:nth-child(5) { grid-column: span 5; grid-row: span 3; }
  .gallery-preview__item:nth-child(6) { grid-column: span 5; grid-row: span 2; }
}

/* ============================================
   Location Map
   ============================================ */

.location-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .location-block {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
}

.location-block__map {
  aspect-ratio: 4 / 3;
  background: var(--cream-200);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-subtle);
}

.location-block__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(0.95);
}

.location-block__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-top: 1rem;
}

.distances__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.distances__item strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest-900);
}

.distances__item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   Final CTA
   ============================================ */

.cta-final {
  background: var(--forest-950);
  color: var(--cream-100);
  padding-block: clamp(5rem, 12vw, 10rem);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(166, 123, 63, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: var(--tracking-tightest);
  color: var(--cream-100);
  font-weight: 400;
  max-width: 15ch;
}

.cta-final__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--bronze-500);
}

.cta-final__text {
  font-size: 1.1rem;
  color: var(--stone-300);
  max-width: 46ch;
  line-height: 1.6;
  font-weight: 300;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--forest-950);
  color: var(--stone-300);
  padding: 5rem var(--gutter) 2rem;
  border-top: 1px solid rgba(235, 226, 209, 0.05);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(235, 226, 209, 0.08);
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 4rem;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  color: var(--cream-100);
  font-weight: 500;
}

.site-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--stone-300);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 34ch;
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--cream-100);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--stone-300);
  transition: color var(--dur-fast) var(--ease-standard);
}

.footer-col a:hover {
  color: var(--bronze-500);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact strong {
  color: var(--cream-100);
  font-weight: 500;
  display: block;
  margin-bottom: 0.15rem;
}

.newsletter {
  margin-top: 1.25rem;
  display: flex;
  border-bottom: 1px solid rgba(235, 226, 209, 0.25);
  padding-bottom: 0.4rem;
}

.newsletter input {
  flex: 1;
  padding: 0.4rem 0;
  color: var(--cream-100);
  background: transparent;
  font-size: 0.9rem;
}

.newsletter input::placeholder {
  color: var(--stone-400);
}

.newsletter button {
  padding: 0.4rem 0;
  color: var(--bronze-500);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: var(--stone-400);
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__legal a {
  color: var(--stone-400);
  transition: color var(--dur-fast) var(--ease-standard);
}

.site-footer__legal a:hover {
  color: var(--cream-200);
}

.site-footer__demo {
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(235, 226, 209, 0.15);
  font-size: 0.78rem;
  color: var(--stone-400);
  text-align: center;
  font-style: italic;
}

/* ============================================
   Page Header (interior pages)
   ============================================ */

.page-header {
  position: relative;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-inline: var(--gutter);
  background:
    radial-gradient(ellipse 800px 500px at 85% 30%, rgba(166, 123, 63, 0.08), transparent 70%),
    radial-gradient(ellipse 600px 400px at 15% 85%, rgba(34, 61, 34, 0.06), transparent 70%),
    var(--cream-100);
  overflow: hidden;
}

.page-header:not(.page-header--image)::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(166, 123, 63, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.page-header:not(.page-header--image)::before {
  content: '';
  position: absolute;
  top: 25%;
  right: 40px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(166, 123, 63, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-header:not(.page-header--image)::after,
  .page-header:not(.page-header--image)::before { display: none; }
}

.page-header--dark {
  background: var(--forest-900);
  color: var(--cream-100);
}

.page-header--image {
  min-height: 60vh;
  min-height: 60dvh;
  display: flex;
  align-items: flex-end;
  color: var(--cream-100);
  padding-bottom: 4rem;
}

/* Force high-contrast light text over image headers */
.page-header--image .page-header__title,
.page-header--image .page-header__title em,
.page-header--image h1,
.page-header--image h2,
.page-header--image .page-header__lede,
.page-header--image .breadcrumbs,
.page-header--image .breadcrumbs a,
.page-header--image .eyebrow {
  color: var(--cream-100) !important;
  text-shadow: 0 2px 20px rgba(15, 26, 16, 0.4);
}

.page-header--image .eyebrow::before,
.page-header--image .eyebrow::after {
  background: var(--cream-100) !important;
  opacity: 0.7;
}

.page-header--image .page-header__lede {
  color: rgba(251, 248, 241, 0.92) !important;
}

.page-header--image .breadcrumbs {
  opacity: 0.85;
}

.page-header--image .breadcrumbs a:hover {
  color: var(--bronze-500) !important;
  opacity: 1;
}

.page-header--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 26, 16, 0.92) 0%, rgba(15, 26, 16, 0.45) 55%, rgba(15, 26, 16, 0.55) 100%),
    linear-gradient(to right, rgba(15, 26, 16, 0.35) 0%, transparent 45%);
  z-index: 1;
}

.page-header__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(60, 82, 48, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(166, 123, 63, 0.25) 0%, transparent 60%),
    linear-gradient(160deg, #16231a 0%, #0f1a10 45%, #1c2a1c 100%);
}

.page-header__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms var(--ease-out-quart);
}

.page-header__media img.is-loaded {
  opacity: 1;
}

.page-header__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: var(--tracking-tightest);
  font-weight: 400;
  max-width: 18ch;
}

.page-header__title em {
  font-style: italic;
  font-weight: 300;
}

.page-header__lede {
  font-size: 1.1rem;
  max-width: 52ch;
  line-height: 1.55;
  font-weight: 300;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  transition: opacity var(--dur-fast) var(--ease-standard);
}

.breadcrumbs a:hover {
  opacity: 1;
  color: var(--bronze-500);
}

.breadcrumbs__sep {
  opacity: 0.5;
}

/* ============================================
   Filters
   ============================================ */

.filters {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.filter-chip {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border-subtle);
  color: var(--forest-900);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
  border-radius: 2px;
}

.filter-chip:hover {
  border-color: var(--forest-800);
}

.filter-chip.is-active {
  background: var(--forest-800);
  color: var(--cream-100);
  border-color: var(--forest-800);
}

.filters__label {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 1rem;
  font-weight: 500;
}

/* ============================================
   Rooms Grid (index)
   ============================================ */

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 3rem;
}

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

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

.room-tile {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: inherit;
  position: relative;
}

.room-tile__media {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: linear-gradient(135deg, #223d22 0%, #16231a 100%);
  position: relative;
}

.room-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out-quart), opacity 700ms var(--ease-out-quart);
  opacity: 0;
}

.room-tile__media img.is-loaded {
  opacity: 1;
}

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

.room-tile__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream-100);
  background: rgba(15, 26, 16, 0.55);
  padding: 0.3rem 0.6rem;
  letter-spacing: 0.2em;
  backdrop-filter: blur(4px);
}

.room-tile__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.room-tile__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.1;
  font-weight: 400;
}

.room-tile__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  white-space: nowrap;
}

.room-tile__price small {
  font-size: 0.62rem;
  letter-spacing: var(--tracking-widest);
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
}

.room-tile__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.room-tile__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  padding-top: 0.5rem;
}

.room-tile__specs strong {
  color: var(--forest-900);
  font-weight: 500;
  margin-right: 0.35rem;
}

.room-tile__actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.room-tile__actions .btn {
  flex: 1;
  padding: 0.85rem 1rem;
  font-size: 0.68rem;
}

/* Availability indicator */
.availability-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--forest-700);
  font-weight: 500;
}

.availability-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}

.availability-tag--limited {
  color: var(--bronze-600);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================
   Room detail page
   ============================================ */

.room-detail {
  padding-top: var(--header-height);
}

.room-detail__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-inline: var(--gutter);
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .room-detail__gallery {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    aspect-ratio: 16 / 8;
    max-height: 700px;
  }
  .room-detail__gallery-item:nth-child(1) { grid-row: 1 / -1; }
}

.room-detail__gallery-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .room-detail__gallery-item { aspect-ratio: unset; height: 100%; }
}

.room-detail__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out-quart);
}

.room-detail__gallery-item:hover img {
  transform: scale(1.03);
}

.room-detail__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  max-width: var(--container-max);
  margin-inline: auto;
}

@media (min-width: 1000px) {
  .room-detail__body {
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: start;
  }
}

.room-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: var(--tracking-tightest);
  font-weight: 400;
}

.room-detail__title em {
  font-style: italic;
  font-weight: 300;
}

.room-detail__lede {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 56ch;
  font-weight: 300;
}

.room-detail__section {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.room-detail__section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: var(--tracking-tight);
  color: var(--forest-900);
}

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

@media (min-width: 640px) {
  .room-specs { grid-template-columns: repeat(4, 1fr); }
}

.room-spec {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.room-spec__label {
  font-size: 0.62rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.room-spec__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest-900);
  line-height: 1.1;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2rem;
}

@media (min-width: 640px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.amenity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(120, 98, 74, 0.08);
}

.amenity::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze-500);
  flex-shrink: 0;
}

/* Sticky booking panel */
.booking-panel {
  background: var(--cream-100);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-height-scrolled) + 2rem);
}

.booking-panel__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-panel__price small {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.booking-panel__price strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--forest-900);
  line-height: 1;
}

.booking-panel__price span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.booking-panel__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.booking-panel__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-panel__field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-panel__field input,
.booking-panel__field select {
  padding: 0.8rem;
  border: 1px solid var(--border-subtle);
  background: var(--white-warm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest-900);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease-standard);
}

.booking-panel__field input:focus,
.booking-panel__field select:focus {
  border-color: var(--forest-800);
}

.booking-panel__breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.booking-panel__breakdown-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.booking-panel__breakdown-row--total {
  color: var(--forest-900);
  font-weight: 600;
  padding-top: 0.5rem;
  margin-top: 0.35rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.booking-panel__cta {
  width: 100%;
  padding: 1.1rem;
  background: var(--forest-800);
  color: var(--cream-100);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard);
  cursor: pointer;
  display: block;
  text-align: center;
}

.booking-panel__cta:hover {
  background: var(--forest-700);
}

.booking-panel__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* Sticky mobile bar for rooms */
.room-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest-900);
  color: var(--cream-100);
  padding: 0.75rem var(--gutter);
  z-index: 79;
  display: none;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(235, 226, 209, 0.15);
}

.room-mobile-bar__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.1;
}

.room-mobile-bar__price small {
  font-size: 0.6rem;
  opacity: 0.7;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.room-mobile-bar__price strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.room-mobile-bar__cta {
  flex: 1;
  padding: 0.9rem;
  background: var(--bronze-500);
  color: var(--white-warm);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

@media (max-width: 999px) {
  .room-mobile-bar { display: flex; }
}

/* ============================================
   Experiences page
   ============================================ */

.experiences-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .experience-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .experience-row:nth-child(even) .experience-row__media {
    order: 2;
  }
}

.experience-row__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.experience-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-quart);
}

.experience-row__media:hover img {
  transform: scale(1.04);
}

.experience-row__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 44ch;
}

.experience-row__meta {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.experience-row__meta strong {
  display: block;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.25rem;
}

.experience-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: var(--tracking-tighter);
}

.experience-row__desc {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 1rem;
}

.experience-row__actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ============================================
   Gallery page
   ============================================ */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2rem 0;
}

.gallery-masonry {
  columns: 1;
  column-gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-masonry { columns: 2; }
}

@media (min-width: 1000px) {
  .gallery-masonry { columns: 3; }
}

.gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, #223d22 0%, #16231a 100%);
}

.gallery-masonry__item img {
  width: 100%;
  height: auto;
  transition: transform 900ms var(--ease-out-quart);
}

.gallery-masonry__item:hover img {
  transform: scale(1.04);
}

/* ============================================
   Contact page
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
}

.contact-info__block:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest-900);
  line-height: 1.3;
}

.contact-info__value a {
  color: inherit;
  transition: color var(--dur-fast) var(--ease-standard);
}

.contact-info__value a:hover {
  color: var(--bronze-600);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--cream-100);
  border: 1px solid var(--border-subtle);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-subtle);
  background: var(--white-warm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest-900);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease-standard);
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--forest-800);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-note a {
  color: var(--bronze-600);
  border-bottom: 1px solid currentColor;
}

/* ============================================
   About / Story page
   ============================================ */

.story-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  padding-top: calc(var(--header-height) + 3rem);
  max-width: var(--container-max);
  margin-inline: auto;
}

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

.story-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: var(--tracking-tightest);
  font-weight: 400;
  max-width: 12ch;
}

.story-hero__title em { font-style: italic; font-weight: 300; }

.story-hero__intro {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 46ch;
}

.story-hero__intro p + p { margin-top: 1.25rem; }

.story-image {
  padding: 0 var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.story-image__wrapper {
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.story-image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-columns {
  padding: 0 var(--gutter);
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.story-columns__text {
  columns: 1;
  column-gap: 3rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.story-columns__text p + p { margin-top: 1rem; }

@media (min-width: 768px) {
  .story-columns__text { columns: 2; }
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

@media (min-width: 700px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 4rem; }
}

@media (min-width: 1000px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-item__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bronze-500);
  font-weight: 400;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.5rem;
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest-900);
}

.value-item__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   Booking flow
   ============================================ */

.booking-flow {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 900px 600px at 90% 5%, rgba(166, 123, 63, 0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 5% 95%, rgba(34, 61, 34, 0.06), transparent 60%),
    var(--cream-50);
  position: relative;
  overflow: hidden;
}

.booking-flow::before {
  content: 'ARBORÉA';
  position: absolute;
  top: 200px;
  right: -180px;
  font-family: var(--font-display);
  font-size: 22rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(166, 123, 63, 0.04);
  pointer-events: none;
  line-height: 0.8;
  z-index: 0;
  white-space: nowrap;
}

.booking-flow > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .booking-flow::before {
    font-size: 12rem;
    top: 100px;
    right: -80px;
  }
}

.booking-progress {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
  scrollbar-width: none;
}

.booking-progress::-webkit-scrollbar { display: none; }

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast) var(--ease-standard);
  cursor: pointer;
  background: none;
  font-weight: 500;
}

.booking-step__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.booking-step.is-active {
  color: var(--forest-900);
  border-bottom-color: var(--bronze-500);
}

.booking-step.is-active .booking-step__num {
  color: var(--bronze-600);
  opacity: 1;
}

.booking-step.is-done {
  color: var(--forest-700);
}

.booking-panel-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .booking-panel-container {
    grid-template-columns: 1fr 360px;
    gap: 4rem;
  }
}

.booking-step-content {
  display: none;
}

.booking-step-content.is-active {
  display: block;
  animation: fade-in var(--dur-slow) var(--ease-out-quart);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: 0.75rem;
}

.booking-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 52ch;
}

.booking-summary {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 2rem);
  background: var(--forest-900);
  color: var(--cream-100);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-summary h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream-100);
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(235, 226, 209, 0.15);
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--stone-300);
  font-size: 0.92rem;
  line-height: 1.4;
}

.booking-summary__row strong {
  color: var(--cream-100);
  font-weight: 500;
}

.booking-summary__row--total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(235, 226, 209, 0.15);
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  align-items: baseline;
}

.booking-summary__note {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px dashed rgba(235, 226, 209, 0.2);
  font-size: 0.8rem;
  color: var(--stone-400);
  line-height: 1.5;
  font-style: italic;
}

.booking-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.booking-room-choice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.booking-room-option {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  background: var(--white-warm);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-standard),
              background var(--dur-fast) var(--ease-standard);
  align-items: center;
  text-align: left;
}

.booking-room-option:hover {
  border-color: var(--forest-800);
}

.booking-room-option.is-selected {
  border-color: var(--bronze-500);
  background: rgba(166, 123, 63, 0.05);
}

.booking-room-option__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.booking-room-option__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-room-option__body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.booking-room-option__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.booking-room-option__price {
  text-align: right;
}

.booking-room-option__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest-900);
  font-weight: 400;
}

.booking-room-option__price small {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .booking-room-option {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .booking-room-option__img {
    aspect-ratio: 16 / 9;
  }
  .booking-room-option__price {
    text-align: left;
  }
}

.booking-extras {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.booking-extra {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  align-items: center;
  cursor: pointer;
  background: var(--white-warm);
  transition: border-color var(--dur-fast) var(--ease-standard);
}

.booking-extra:hover { border-color: var(--stone-500); }

.booking-extra input {
  width: 20px;
  height: 20px;
  accent-color: var(--forest-800);
  cursor: pointer;
}

.booking-extra__body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.booking-extra__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.booking-extra__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--forest-900);
  white-space: nowrap;
}

.booking-confirmation {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 640px;
  margin-inline: auto;
}

.booking-confirmation__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: rgba(28, 42, 28, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-800);
}

.booking-confirmation__code {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--cream-100);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--forest-900);
  margin-top: 1.5rem;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item__question {
  width: 100%;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  text-align: left;
  color: var(--forest-900);
  transition: color var(--dur-fast) var(--ease-standard);
}

.faq-item__question:hover {
  color: var(--bronze-600);
}

.faq-item__question h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
}

.faq-item__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  position: relative;
  transition: background var(--dur-fast) var(--ease-standard);
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transition: transform var(--dur-base) var(--ease-out-quart);
}

.faq-item__toggle::before {
  width: 12px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  width: 1px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-out-quart);
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer > div {
  padding-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 68ch;
}

/* ============================================
   Legal pages
   ============================================ */

.legal-content {
  max-width: 720px;
  margin-inline: auto;
  padding: 0 var(--gutter);
  padding-bottom: 5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest-900);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--forest-900);
  font-weight: 600;
}

/* ============================================
   Reveal animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-out-quart),
              transform 900ms var(--ease-out-quart);
}

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

.reveal--fade {
  transform: none;
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }

/* Image mask reveal */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal img {
  transform: scale(1.1);
  transition: transform 1400ms var(--ease-out-quart);
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream-100);
  transform: translateX(0);
  transition: transform 1200ms var(--ease-out-expo);
  z-index: 2;
}

.img-reveal.is-visible::after {
  transform: translateX(101%);
}

.img-reveal.is-visible img {
  transform: scale(1);
}

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

  .hero__media img { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .img-reveal::after { display: none; }
  .img-reveal img { transform: none; }
}

/* Body offset for mobile bar */
.has-mobile-bar {
  padding-bottom: 64px;
}

@media (min-width: 980px) {
  .has-mobile-bar {
    padding-bottom: 0;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: initial; } }

/* ============================================
   Chatbot
   ============================================ */

.chatbot-root {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  font-family: var(--font-body);
}

@media (max-width: 979px) {
  .chatbot-root {
    bottom: calc(64px + 0.75rem + env(safe-area-inset-bottom));
    right: 1rem;
  }
}

.chatbot-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem 0.85rem 1rem;
  background: var(--forest-900);
  color: var(--cream-100);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(15, 26, 16, 0.35), 0 2px 6px rgba(15, 26, 16, 0.2);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out-quart),
              background var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
  border: 1px solid rgba(235, 226, 209, 0.15);
  position: relative;
  overflow: visible;
}

.chatbot-fab:hover {
  background: var(--forest-800);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 26, 16, 0.42), 0 4px 12px rgba(15, 26, 16, 0.25);
}

.chatbot-fab__icon-chat,
.chatbot-fab__icon-close {
  color: var(--bronze-500);
  transition: opacity var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-out-quart);
  flex-shrink: 0;
}

.chatbot-fab__icon-close {
  position: absolute;
  left: 1rem;
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
  pointer-events: none;
}

.chatbot-root.is-open .chatbot-fab__icon-chat {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}

.chatbot-root.is-open .chatbot-fab__icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.chatbot-fab__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .chatbot-fab__label { display: none; }
  .chatbot-fab { padding: 0.85rem; }
  .chatbot-fab__icon-close { left: 50%; margin-left: -10px; }
}

.chatbot-fab__pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bronze-500);
  box-shadow: 0 0 0 3px var(--forest-900);
}

.chatbot-fab__pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bronze-500);
  opacity: 0.7;
  animation: chatbot-pulse 2s ease-out infinite;
}

.chatbot-root.is-open .chatbot-fab__pulse { display: none; }

@keyframes chatbot-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

.chatbot-panel {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: min(380px, calc(100vw - 2rem));
  max-height: min(600px, calc(100vh - 8rem));
  background: var(--cream-50);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(15, 26, 16, 0.28), 0 8px 24px rgba(15, 26, 16, 0.12);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out-quart),
              transform var(--dur-base) var(--ease-out-quart);
  overflow: hidden;
  border: 1px solid rgba(120, 98, 74, 0.15);
}

.chatbot-root.is-open .chatbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--forest-900);
  color: var(--cream-100);
  border-bottom: 1px solid rgba(235, 226, 209, 0.1);
}

.chatbot-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.chatbot-panel__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bronze-500);
  color: var(--forest-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
  flex-shrink: 0;
}

.chatbot-panel__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream-100);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.chatbot-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--stone-300);
  margin-top: 0.15rem;
}

.chatbot-panel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dc47d;
  box-shadow: 0 0 0 3px rgba(125, 196, 125, 0.2);
}

.chatbot-panel__close {
  color: var(--cream-200);
  padding: 0.35rem;
  border-radius: 50%;
  transition: background var(--dur-fast) var(--ease-standard);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chatbot-panel__close:hover {
  background: rgba(235, 226, 209, 0.1);
  color: var(--cream-100);
}

.chatbot-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 100% 0%, rgba(166, 123, 63, 0.05), transparent 50%),
    var(--cream-50);
}

.chatbot-panel__body::-webkit-scrollbar { width: 5px; }
.chatbot-panel__body::-webkit-scrollbar-thumb {
  background: rgba(120, 98, 74, 0.3);
  border-radius: 3px;
}
.chatbot-panel__body::-webkit-scrollbar-track { background: transparent; }

.chatbot-msg {
  display: flex;
  animation: chatbot-msg-in 400ms var(--ease-out-quart);
}

@keyframes chatbot-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot-msg--bot { justify-content: flex-start; }
.chatbot-msg--user { justify-content: flex-end; }

.chatbot-msg__bubble {
  max-width: 82%;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.chatbot-msg--bot .chatbot-msg__bubble {
  background: #fff;
  color: var(--forest-900);
  border: 1px solid rgba(120, 98, 74, 0.12);
  border-bottom-left-radius: 4px;
}

.chatbot-msg--user .chatbot-msg__bubble {
  background: var(--forest-800);
  color: var(--cream-100);
  border-bottom-right-radius: 4px;
}

.chatbot-msg__bubble a {
  color: var(--bronze-600);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.chatbot-msg--user .chatbot-msg__bubble a {
  color: var(--cream-100);
}

.chatbot-msg__bubble strong {
  font-weight: 600;
}

.chatbot-msg__bubble ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.chatbot-msg__bubble ul li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(120, 98, 74, 0.15);
}
.chatbot-msg__bubble ul li:last-child { border-bottom: none; }

.chatbot-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}

.chatbot-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone-500);
  animation: chatbot-typing 1.4s ease-in-out infinite;
}

.chatbot-typing i:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatbot-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.chatbot-chip {
  padding: 0.45rem 0.85rem;
  background: transparent;
  border: 1px solid rgba(120, 98, 74, 0.25);
  color: var(--forest-900);
  font-size: 0.78rem;
  border-radius: 999px;
  transition: all var(--dur-fast) var(--ease-standard);
  cursor: pointer;
}

.chatbot-chip:hover {
  background: var(--forest-800);
  color: var(--cream-100);
  border-color: var(--forest-800);
}

.chatbot-panel__foot {
  padding: 0.85rem 1rem;
  background: #fff;
  border-top: 1px solid rgba(120, 98, 74, 0.12);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.chatbot-panel__foot input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(120, 98, 74, 0.2);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--forest-900);
  background: var(--cream-50);
  transition: border-color var(--dur-fast) var(--ease-standard);
}

.chatbot-panel__foot input:focus {
  border-color: var(--forest-800);
  outline: none;
}

.chatbot-panel__foot button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bronze-500);
  color: var(--white-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
  flex-shrink: 0;
}

.chatbot-panel__foot button:hover {
  background: var(--bronze-600);
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100vw - 1.5rem);
    max-height: min(500px, calc(100vh - 10rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .chatbot-fab__pulse::before { animation: none; }
  .chatbot-msg { animation: none; }
  .chatbot-typing i { animation: none; }
}

/* ============================================
   GLOBAL CONTRAST & READABILITY FIXES
   Enforce readable text everywhere
   ============================================ */

/* Any hero-style dark section: force cream text on all headings */
.hero h1, .hero h2, .hero h3, .hero p, .hero span,
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--dark p, .section--dark li, .section--dark span,
.section--darkest h1, .section--darkest h2, .section--darkest h3, .section--darkest h4,
.section--darkest p, .section--darkest li, .section--darkest span,
.editorial h1, .editorial h2, .editorial h3, .editorial p, .editorial li,
.cta-final h1, .cta-final h2, .cta-final h3, .cta-final p, .cta-final span {
  color: inherit;
}

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--darkest h1, .section--darkest h2, .section--darkest h3, .section--darkest h4,
.editorial h1, .editorial h2, .editorial h3, .editorial h4,
.cta-final h1, .cta-final h2, .cta-final h3, .cta-final h4 {
  color: var(--cream-100) !important;
}

.section--dark p:not(.eyebrow),
.section--darkest p:not(.eyebrow),
.editorial p:not(.eyebrow),
.cta-final p:not(.eyebrow) {
  color: var(--stone-300) !important;
}

/* Ensure eyebrow stays bronze on dark backgrounds */
.section--dark .eyebrow,
.section--darkest .eyebrow,
.editorial .eyebrow,
.cta-final .eyebrow {
  color: var(--bronze-500) !important;
}

/* Body copy contrast improvements */
p, .body-text p, li {
  color: var(--stone-700);
}

.section p, .section li {
  color: var(--stone-700);
}

.section--cream p, .section--cream li {
  color: var(--stone-700);
}

/* Legal pages high-contrast */
.legal-content p, .legal-content li, .legal-content ul {
  color: var(--stone-700) !important;
}
.legal-content h2, .legal-content h3 {
  color: var(--forest-950) !important;
}
.legal-content strong {
  color: var(--forest-950) !important;
}

/* FAQ answers */
.faq-item__answer > div,
.faq-item__answer p {
  color: var(--stone-700) !important;
}
.faq-item__question h3 {
  color: var(--forest-950) !important;
}

/* Room detail readability */
.room-detail__title,
.room-detail__section-title {
  color: var(--forest-950) !important;
}
.room-detail__lede,
.room-detail .body-text p {
  color: var(--stone-700) !important;
}
.amenity {
  color: var(--forest-900) !important;
}

/* Contact & booking form labels */
.form-field label,
.booking-panel__field label,
.booking-field__label {
  color: var(--stone-700) !important;
  font-weight: 600;
}

/* Ensure links in body copy have clear color */
.body-text a,
.section p a,
.legal-content a {
  color: var(--bronze-700);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.body-text a:hover,
.section p a:hover,
.legal-content a:hover {
  color: var(--forest-800);
}

/* Story columns text */
.story-columns__text p {
  color: var(--stone-700) !important;
}
.story-columns__text strong {
  color: var(--forest-950) !important;
}

/* Value item text */
.value-item__title {
  color: var(--forest-950) !important;
}
.value-item__text {
  color: var(--stone-700) !important;
}

/* Testimonials */
.testimonial__quote {
  color: var(--forest-950) !important;
}
.testimonial__name {
  color: var(--forest-950) !important;
}

/* Room card */
.room-card__title,
.room-tile__title {
  color: var(--forest-950) !important;
}
.room-card__desc,
.room-tile__desc {
  color: var(--stone-700) !important;
}

/* Section headers */
.section-header__title,
.section-header__title em {
  color: var(--forest-950) !important;
}

.section--dark .section-header__title,
.section--darkest .section-header__title,
.section--dark .section-header__title em,
.section--darkest .section-header__title em {
  color: var(--cream-100) !important;
}

.section-header__lede {
  color: var(--stone-700) !important;
}

.section--dark .section-header__lede,
.section--darkest .section-header__lede {
  color: var(--stone-300) !important;
}

/* Intro split */
.intro-split__title,
.intro-split__title em {
  color: var(--forest-950) !important;
}
.intro-split__body p {
  color: var(--stone-700) !important;
}

/* Editorial titles */
.editorial__title,
.editorial__title em {
  color: var(--cream-100) !important;
}

/* CTA final title */
.cta-final__title {
  color: var(--cream-100) !important;
}
.cta-final__text {
  color: var(--stone-300) !important;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

@media (max-width: 979px) {
  /* Ensure chatbot doesn't overlap mobile book bar */
  .chatbot-root {
    bottom: calc(64px + 1rem + env(safe-area-inset-bottom));
    right: 1rem;
  }

  /* When chat is open, position panel above the mobile book bar */
  .chatbot-panel {
    max-height: min(500px, calc(100vh - 10rem));
  }
}

/* Small phones: extra compact */
@media (max-width: 480px) {
  .chatbot-fab {
    padding: 0.75rem;
    box-shadow: 0 8px 20px rgba(15, 26, 16, 0.4);
  }
  .chatbot-fab__label { display: none; }
  .chatbot-fab__icon-close {
    left: 50%;
    margin-left: -10px;
  }

  /* Chat panel spans nearly full width */
  .chatbot-panel {
    position: fixed;
    right: 0.75rem;
    left: 0.75rem;
    bottom: calc(64px + 0.5rem + env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
  }

  /* Hero title wraps intentionally on small screens */
  .hero__title {
    font-size: clamp(2.5rem, 12vw, 3.75rem);
    line-height: 1;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__actions .btn {
    flex: 1 1 auto;
    padding: 1rem 1.25rem;
    font-size: 0.72rem;
  }

  /* Page header title for mobile */
  .page-header__title {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1;
  }

  /* Booking widget stacks cleanly */
  .booking-widget__inner {
    padding: 1.25rem;
  }
  .booking-field__value {
    font-size: 1.1rem;
  }

  /* Section headers */
  .section-header {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  /* Room preview grid */
  .room-preview-grid {
    gap: 2rem;
  }

  /* Container adjustments */
  .container {
    padding-inline: 1.25rem;
  }

  /* Reduce huge type on mobile */
  .cta-final__title,
  .section-header__title,
  .intro-split__title,
  .editorial__title {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
    line-height: 1.05;
  }

  /* Booking room option: stack on very small */
  .booking-room-option {
    grid-template-columns: 1fr;
  }

  /* Testimonial grid: single column with less padding */
  .testimonial-grid {
    gap: 1rem;
  }
  .testimonial {
    padding: 1.25rem 0;
  }

  /* Site header adjustments */
  .site-header {
    height: calc(var(--header-height-mobile) + 0.6rem);
    padding-top: 0.7rem;
  }
  .brand__mark {
    font-size: 1.25rem;
    letter-spacing: 0.3em;
  }
  .header-cta.btn--sm {
    padding: 0.7rem 1rem;
    font-size: 0.65rem;
  }

  /* Small tag pinned to the very top-right corner, above the menu button */
  .demo-badge {
    top: 0.45rem;
    right: 0.5rem;
    left: auto;
    font-size: 0.46rem;
    padding: 0.18rem 0.38rem;
  }

  /* Footer contact/newsletter form */
  .newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    border-bottom: none;
  }
  .newsletter input {
    border-bottom: 1px solid rgba(235, 226, 209, 0.25);
  }

  /* Footer grid better spacing */
  .site-footer__grid {
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
  .site-footer {
    padding: 3rem 1.25rem 1.5rem;
  }

  /* Room detail body */
  .room-detail__body {
    padding: 2rem 1.25rem;
    gap: 2rem;
  }
  .room-specs {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* Room mobile bar - readable */
  .room-mobile-bar {
    padding: 0.65rem 1rem;
    gap: 0.75rem;
  }
  .room-mobile-bar__price strong {
    font-size: 1.05rem;
  }

  /* Legal content padding */
  .legal-content {
    padding: 0 1.25rem 3rem;
  }
  .legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
  }

  /* Booking flow */
  .booking-progress {
    margin-bottom: 1.5rem;
  }
  .booking-step {
    padding: 0.65rem 0.85rem;
    font-size: 0.68rem;
  }
  .booking-title {
    font-size: 1.75rem;
  }
  .booking-panel-container {
    gap: 2rem;
  }
  .booking-summary {
    position: static;
    padding: 1.5rem;
  }

  /* FAQ items mobile */
  .faq-item__question {
    padding: 1.25rem 0;
    gap: 1rem;
  }
  .faq-item__question h3 {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  /* Prevent horizontal scroll from anything */
  body { overflow-x: hidden; }
  .container, .container--wide, .container--narrow { overflow-x: hidden; }
}

/* Prevent iframe/map from breaking layout */
iframe {
  max-width: 100%;
}

/* Filter chips scroll on mobile */
@media (max-width: 640px) {
  .filters__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters__inner::-webkit-scrollbar { display: none; }
  .filter-chip {
    flex-shrink: 0;
  }
}

/* Ensure body has bottom padding for mobile book bar */
@media (max-width: 979px) {
  body.has-mobile-bar {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}
