/* ═══════════════════════════════════════════════
   溪頭新景宏渡假村民宿 — Site Stylesheet
   Aesthetic: Refined Mountain Lodge × Warm Luxury
   ═══════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --forest:       #1b2b20;
  --forest-mid:   #28402e;
  --forest-soft:  #3d5a42;
  --sage:         #5e7d63;
  --sage-light:   #7e9e84;
  --sage-pale:    #c4d4c7;
  --gold:         #b8894a;
  --gold-mid:     #d4a96a;
  --gold-light:   #e8c99a;
  --gold-pale:    #f5e8d4;
  --cream:        #f8f4ee;
  --cream-warm:   #f2ebe0;
  --linen:        #e9dfd2;
  --linen-dark:   #d9ccba;
  --ink:          #17201a;
  --text:         #2a241d;
  --text-mid:     #5a5249;
  --text-light:   #8a7e72;
  --white:        #ffffff;

  --radius-xs:    8px;
  --radius-sm:    14px;
  --radius-md:    22px;
  --radius-lg:    32px;
  --radius-xl:    44px;
  --radius-full:  999px;

  --shadow-xs:    0 2px 8px  rgba(23, 32, 26, 0.05);
  --shadow-sm:    0 6px 20px rgba(23, 32, 26, 0.07);
  --shadow-md:    0 14px 38px rgba(23, 32, 26, 0.10);
  --shadow-lg:    0 26px 64px rgba(23, 32, 26, 0.13);
  --shadow-xl:    0 40px 90px rgba(23, 32, 26, 0.16);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:       0.2s;
  --t-mid:        0.35s;
  --t-slow:       0.6s;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}
body {
  margin: 0;
  font-family: 'DM Sans', 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
  font-size: 17px;
  background: var(--cream);
  color: var(--text);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { padding-left: 18px; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4 {
  margin-top: 0;
  line-height: 1.22;
  font-family: 'Playfair Display', 'Noto Serif TC', serif;
  font-weight: 600;
  color: var(--forest);
}

/* ─── Scroll Progress Bar ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-mid) 100%);
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ─── Full-Page Scroll Snap ─── */
.snap-container > section,
.snap-container > .dark-divider,
.snap-container > .parallax-divider {
  scroll-snap-align: start;
}
.snap-container > section:not(.hero) {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.snap-container > .hero {
  min-height: 100vh;
  min-height: 100svh;
}
.snap-container > .dark-divider {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.snap-container > .parallax-divider {
  min-height: 50vh;
}

/* ─── Layout ─── */
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ─── Scroll Reveal (Enhanced) ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
.reveal-delay-4 { transition-delay: 0.8s; }
.reveal-delay-5 { transition-delay: 1.0s; }

/* Directional reveals */
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(0.92); }
.reveal-fade { transform: none; }

/* Custom cursor */
.cursor-zoom { cursor: zoom-in; }
.dark-divider, .seasonal-section, .parallax-divider { cursor: default; }

/* ─── Navigation ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease, transform .35s ease;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header .brand-logo {
  filter: brightness(0) invert(1);
  transition: filter .4s ease;
}
.site-header .nav-toggle-label {
  color: #fff;
  transition: color .4s ease;
}
.site-header .nav-toggle-bars span {
  background: #fff;
  transition: background .4s ease, transform var(--t-mid) var(--ease-out), opacity var(--t-mid) ease;
}
/* Scrolled state — solid header */
.site-header.scrolled {
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: rgba(184, 137, 74, 0.14);
  box-shadow: 0 4px 24px rgba(23, 32, 26, 0.07);
}
.site-header.scrolled .brand-logo {
  filter: none;
}
.site-header.scrolled .nav-toggle-label {
  color: var(--forest);
}
.site-header.scrolled .nav-toggle-bars span {
  background: var(--forest);
}
.nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
  position: relative;
}
.brand { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.brand-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--t-fast) ease, transform var(--t-mid) var(--ease-out), filter .4s ease;
  border-radius: 6px;
}
.brand-logo:hover {
  opacity: 0.85;
  transform: scale(1.03);
}
.brand-mark {
  font-family: 'Cormorant Garant', serif;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}
.brand-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.site-header nav { display: none; }

/* Menu button — 灣臥 style: text + two lines */
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  z-index: 110;
  position: absolute;
  right: 0;
}
.nav-toggle-label {
  font-family: 'Noto Serif TC', serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .12em;
  transition: color .4s ease, opacity .4s ease;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
}
.nav-toggle-bars span {
  display: block;
  width: 28px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: background .4s ease, transform var(--t-mid) var(--ease-out), opacity var(--t-mid) ease;
  transform-origin: center;
}
.nav-toggle.open .nav-toggle-label { opacity: 0; }
.nav-toggle.open .nav-toggle-bars span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bars span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .nav-toggle-bars span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(23, 35, 27, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mobile-nav a {
  font-family: 'Playfair Display', 'Noto Serif TC', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.06em;
  padding: 14px 32px;
  transition: color var(--t-fast) ease;
}
.mobile-nav a:hover { color: var(--gold-mid); }
.mobile-nav-contact { margin-top: 32px; text-align: center; }
.mobile-nav-line {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06C755, #00a847);
  color: #fff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  letter-spacing: 0.02em !important;
}
.mobile-nav-contact p { color: rgba(255,255,255,.5); font-size: .88rem; margin-top: 14px; }

/* ─── Hero ─── */
.hero, .page-hero {
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero::before, .page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; }
.hero-inner, .page-hero .container, .hero-shell { position: relative; z-index: 1; }
.hero {
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 96px;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-soft));
}
.luxury-hero { background-position: center center; }
.refined-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(10,15,11,0.52));
  pointer-events: none;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
}
.refined-shell, .immersive-shell { align-items: end; }
.hero-copy, .refined-copy, .immersive-copy { max-width: 780px; }
.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold-mid) 0%, rgba(212,169,106,0.18) 100%);
  margin: 10px 0 22px;
  border-radius: 2px;
}
.page-hero {
  padding: 118px 0 78px;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-soft));
}
.compact-hero { padding: 90px 0 62px; }
.immersive-hero { min-height: 96vh; }
.immersive-copy { max-width: 800px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  font-family: 'DM Sans', sans-serif;
}
.eyebrow.dark { color: var(--gold); opacity: 1; }
.eyebrow.soft-light { color: rgba(255,248,232,0.72); }
.lead { max-width: 760px; font-size: 1.08rem; line-height: 1.95; }

.hero h1, .page-hero h1 {
  font-family: 'Playfair Display', 'Noto Serif TC', serif;
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0.14em 0;
  font-weight: 600;
  white-space: pre-line;
  color: #f5efe4;
  text-shadow: 0 4px 30px rgba(0,0,0,.35), 0 1px 3px rgba(0,0,0,.2);
}
.hero .lead {
  font-size: 1.08rem;
  max-width: 680px;
  color: rgba(255,255,255,0.88);
  line-height: 1.82;
}

/* ─── Buttons ─── */
.actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.refined-actions { margin-top: 32px; }
.center-actions { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid var(--white);
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--t-mid) var(--ease-out);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn.primary { background: var(--white); color: var(--forest); border-color: var(--white); }
.btn.primary:hover { background: var(--gold-pale); border-color: var(--gold-pale); }
.btn.ghost { background: transparent; color: var(--white); }
.hero-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(8px);
}
.refined-primary {
  background: linear-gradient(135deg, #faf3e8 0%, var(--white) 100%);
  color: var(--forest);
  border-color: rgba(255,255,255,0.9);
}
.btn.small { padding: 9px 18px; font-size: 0.86rem; }
.dark-btn { background: var(--forest) !important; color: var(--white) !important; border-color: var(--forest) !important; }
.dark-btn:hover { background: var(--forest-mid) !important; border-color: var(--forest-mid) !important; box-shadow: 0 8px 28px rgba(27,43,32,0.28) !important; }

.text-link {
  color: var(--forest-soft);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color var(--t-fast) ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link:hover { color: var(--gold); }
.light-link { color: rgba(255,255,248,0.82); }

/* ─── Hero Badges ─── */
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

/* ─── Side Card ─── */
.luxury-sidecard, .immersive-sidecard {
  align-self: end;
  padding: 26px 26px 22px;
  border-radius: var(--radius-lg);
  background: rgba(18,26,20,0.52);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}
.luxury-sidecard h3, .immersive-sidecard h3 {
  font-family: 'Cormorant Garant', 'Noto Serif TC', serif;
  font-size: 1.42rem;
  margin: 8px 0 14px;
  color: var(--white);
  white-space: pre-line;
  line-height: 1.32;
}
.luxury-sidecard ul, .immersive-sidecard ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(255,255,255,0.84);
  font-size: 0.9rem;
  line-height: 1.9;
}
.glass-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

/* ─── Sections ─── */
.section { padding: 120px 0; }
.alt-section { background: var(--cream-warm); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}
.spacious-head { margin-bottom: 36px; }
.compact-head .section-subtitle { max-width: 420px; }
.section-subtitle { max-width: 640px; color: var(--text-mid); font-size: 1rem; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.4rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* ─── Cards ─── */
.grid { display: grid; gap: 26px; }
.cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid rgba(184,137,74,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid) ease, transform var(--t-mid) ease;
}
.card:hover { box-shadow: var(--shadow-md); }
.soft { background: linear-gradient(180deg, #fdfcfa 0%, #f8f4ee 100%); }
.tall { min-height: 100%; }

/* ─── Tag / Pill ─── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vip-tag {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(184,137,74,0.2);
}

/* ─── Feature List ─── */
.feature-list { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.feature-list span {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: var(--radius-full);
  background: var(--cream-warm);
  color: var(--text-mid);
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid var(--linen);
  transition: background var(--t-fast) ease;
}

/* ─── Price Row ─── */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid var(--linen);
}
.price-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 2px;
}
.price-row strong {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
}

/* ─── Signature Section ─── */
.signature-section { padding-top: 52px; }
.refined-signature-section { padding-top: 60px; }
.signature-grid, .refined-signature-grid, .premium-focus-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}
.signature-copy h2, .premium-focus-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.2;
  white-space: pre-line;
  margin-bottom: 16px;
}
.signature-copy p, .premium-focus-copy p { max-width: 640px; }
.signature-cards { display: grid; gap: 16px; }
.compact-signature-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compact-stat-card { padding: 22px 24px; }
.compact-stat-card h3 { margin: 0 0 6px; font-size: 1rem; }
.compact-stat-card p { margin: 0; color: var(--text-mid); font-size: 0.9rem; }
.milk-bath-card { border-left: 3px solid var(--gold); }
.premium-focus-section { padding-top: 48px; }
.premium-focus-copy h2 { white-space: pre-line; }

/* ─── Atmosphere ─── */
.atmosphere-section { padding-top: 60px; }
.atmosphere-grid, .expanded-atmosphere-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 268px 268px;
  gap: 16px;
}
.atmosphere-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 268px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid) ease;
}
.atmosphere-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.46) 100%);
  transition: opacity var(--t-mid) ease;
}
.atmosphere-card:hover { box-shadow: var(--shadow-lg); }
.atmosphere-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.atmosphere-card:hover img { transform: scale(1.05); }
.atmosphere-card-large { grid-row: span 2; }
.atmosphere-card-wide { grid-column: span 2; }
.atmosphere-copy {
  position: absolute;
  left: 24px; right: 24px; bottom: 20px;
  z-index: 2;
  color: var(--white);
}
.atmosphere-copy h3 {
  color: var(--white);
  margin: 6px 0 0;
  font-size: 1.46rem;
  line-height: 1.28;
  white-space: pre-line;
  text-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* ─── Featured Carousel ─── */
.featured-showcase { background: linear-gradient(180deg, var(--white) 0%, var(--cream-warm) 100%); }
.premium-showcase-section { padding-top: 58px; }
.featured-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.featured-carousel { overflow: hidden; flex: 1; }
.featured-track, .showcase-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  transition: transform 0.42s var(--ease-out);
}
.featured-slide { height: 100%; }
.featured-head-row { align-items: center; }
.featured-actions-wrap { display: flex; align-items: center; gap: 14px; }
.featured-side-btn {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--linen-dark);
  background: var(--white);
  color: var(--forest);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-mid) ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-side-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
  transform: scale(1.06);
}

/* Room Showcase Card */
.room-showcase-card, .premium-showcase-card {
  background: var(--white);
  border: 1px solid rgba(184,137,74,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid) ease, transform var(--t-mid) ease;
  height: 100%;
}
.room-showcase-card:hover, .premium-showcase-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.room-showcase-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.room-showcase-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
}
.room-showcase-image {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.room-showcase-card:hover .room-showcase-image { transform: scale(1.06); }
.room-showcase-content { padding: 28px 28px 24px; }
.room-showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.room-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 4px;
}
.room-showcase-content h3 { font-size: 1.2rem; margin: 4px 0 8px; color: var(--forest); }

/* ─── Story / CTA ─── */
.split-story { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.highlight-block {
  background: linear-gradient(180deg, var(--gold-pale) 0%, #f8f4ea 100%);
  border-color: rgba(184,137,74,0.2);
}
.mini-price-list { display: grid; gap: 10px; margin: 20px 0; }
.mini-price-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184,137,74,0.14);
  font-size: 0.94rem;
}
.mini-price-list div:last-child { border-bottom: none; }
.mini-price-list strong {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--forest);
}

.story-split-section { padding-top: 30px; }
.minimal-story-split-section { padding-top: 20px; }
.story-split-grid, .scenic-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.story-split-copy h2, .minimal-story-copy h2, .scenic-story-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.16;
  white-space: pre-line;
  margin-bottom: 16px;
}
.minimal-story-copy p, .scenic-story-copy p { max-width: 380px; }
.scenic-photo-stack { display: grid; gap: 14px; }

.story-photo-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t-mid) ease;
}
.story-photo-card:hover { box-shadow: var(--shadow-xl); }
.story-photo-card img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.story-photo-card:hover img { transform: scale(1.04); }
.story-photo-tall { min-height: 480px; }
.scenic-side-photo { min-height: 200px; }
.flush-story-photo { line-height: 0; }

/* Final CTA */
.final-cta-section { padding-top: 42px; }
.final-cta, .premium-final-cta {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-radius: var(--radius-xl);
  border: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,74,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.76); max-width: 600px; margin: 0 auto 28px; }
.final-cta .eyebrow.dark { color: var(--gold-mid); }

/* ─── Room Cards (Listing) ─── */
.room-cards { align-items: start; }
.room-card {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(184,137,74,0.1);
  transition: box-shadow var(--t-mid) ease, transform var(--t-mid) ease;
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-cover-wrap { display: block; position: relative; overflow: hidden; }
.room-cover-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.52) 100%);
}
.room-cover {
  display: block;
  width: 100%; height: 290px;
  object-fit: cover;
  background: var(--linen);
  transition: transform var(--t-slow) var(--ease-out);
}
.room-card:hover .room-cover { transform: scale(1.05); }
.room-content, .refined-room-content { padding: 24px; }
.refined-room-cards { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.refined-room-card { border-radius: var(--radius-lg); }
.room-cover-overlay { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: var(--white); }
.room-cover-overlay-rich {
  background: none;
  left: 0; right: 0; bottom: 0;
  padding: 60px 22px 20px;
}
.room-cover-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}
.room-cover-overlay h2, .room-cover-overlay-rich h2 {
  margin: 0;
  font-size: 1.46rem;
  color: var(--white);
  text-shadow: 0 6px 20px rgba(0,0,0,0.26);
}
.room-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.room-summary { margin: 0 0 12px; color: var(--text-mid); font-size: 0.94rem; }
.room-feature-list { margin: 0 0 14px; }
.room-price-row { margin-bottom: 0; }

/* Room intro page */
.room-intro-section { padding-top: 42px; padding-bottom: 20px; }
.minimalist-room-intro-section { padding-top: 30px; padding-bottom: 20px; }
.room-intro-grid, .minimalist-room-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}
.intro-copy-card, .minimal-intro-copy-card { padding: 24px 28px; }
.intro-copy-card h2, .minimal-intro-copy-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  white-space: normal;
  margin-bottom: 12px;
}
.unified-room-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.room-group-section { }
.dynamic-room-group-section { }
.dynamic-room-grid { }
.dynamic-room-grid-featured { }
.featured-room-card { box-shadow: var(--shadow-md); }
.premium-showcase-card { border-radius: var(--radius-lg); }

/* ─── Room Detail ─── */
.room-narrative-section { padding-top: 44px; padding-bottom: 24px; }
.compact-room-narrative-section { padding-top: 28px; padding-bottom: 16px; }
.room-narrative-grid, .compact-room-narrative-grid {
  display: grid;
  grid-template-columns: 1.1fr 360px;
  gap: 28px;
  align-items: start;
}
.room-narrative-copy h2, .compact-room-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.18;
  margin-bottom: 16px;
}
.compact-room-copy h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); white-space: normal; }
.richer-room-copy p { max-width: 760px; }
.room-narrative-notes, .compact-room-notes { padding-top: 24px; }
.toned-room-notes {
  background: linear-gradient(180deg, #fdfcfa 0%, #f8f3ed 100%);
  border-color: rgba(184,137,74,0.15);
  box-shadow: var(--shadow-sm);
}
.narrative-list { padding-left: 16px; }
.narrative-list li + li { margin-top: 10px; }

.room-spotlight-section { padding-top: 32px; }
.room-spotlight-grid, .editorial-room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}
.room-spotlight-media { display: grid; gap: 16px; }
.room-spotlight-main {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--linen);
  min-height: 500px;
}
.room-spotlight-main img {
  display: block; width: 100%; height: 100%;
  min-height: 500px; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.room-spotlight-main:hover img { transform: scale(1.03); }
.room-spotlight-main.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--linen);
  color: var(--text-mid);
  padding: 32px;
}

/* Side carousel */
.room-side-carousel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  box-shadow: var(--shadow-sm);
}
.room-side-slide { position: absolute; inset: 0; display: block; opacity: 0; transition: opacity var(--t-mid) ease; }
.room-side-slide.active { opacity: 1; }
.room-side-slide img { width: 100%; height: 100%; object-fit: cover; }

.room-spotlight-panel, .editorial-room-panel {
  position: sticky;
  top: 110px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-warm) 100%);
  border-color: rgba(184,137,74,0.15);
  box-shadow: var(--shadow-md);
}
.minimal-room-panel { box-shadow: var(--shadow-md); }
.room-lead-copy { color: var(--text-mid); }
.detail-feature-list { margin-top: 18px; }

.room-rate-box { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 22px 0; }
.single-rate-box { grid-template-columns: 1fr; }
.room-rate-box > div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--cream-warm);
  border: 1px solid var(--linen);
}
.room-rate-box strong {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}
.room-inline-note {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f0f6ef 0%, #f6faf4 100%);
  border: 1px solid rgba(94,125,99,0.2);
  color: var(--forest-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}
.room-inline-note p { margin: 0; }
.room-actions { margin-top: 22px; }
.room-ghost-btn {
  background: var(--white) !important;
  color: var(--forest) !important;
  border-color: var(--linen-dark) !important;
}
.room-ghost-btn:hover {
  background: var(--cream-warm) !important;
  border-color: var(--sage-pale) !important;
  color: var(--forest) !important;
}

/* Thumbnails */
.room-thumbnail-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.room-thumbnail { display: block; border-radius: var(--radius-sm); overflow: hidden; background: var(--white); box-shadow: var(--shadow-xs); }
.room-thumbnail img { display: block; width: 100%; height: 140px; object-fit: cover; transition: transform var(--t-mid) var(--ease-out); }
.room-thumbnail:hover img { transform: scale(1.05); }

/* Gallery */
.gallery-section { padding-top: 4px; }
.room-gallery-section { padding-top: 22px; }
.gallery-grid, .refined-gallery-grid, .editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item, .refined-gallery-item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-mid) ease, transform var(--t-mid) ease;
}
.gallery-item:hover, .refined-gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.gallery-item img { display: block; width: 100%; height: 250px; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.gallery-item:hover img { transform: scale(1.04); }
.editorial-gallery-grid .gallery-item:nth-child(3n+2) { transform: translateY(16px); }

/* Editorial room section */
.room-editorial-section { padding-top: 30px; }
.minimalist-room-editorial-section { padding-top: 22px; }
.editorial-story-grid, .compact-editorial-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compact-editorial-story-grid { grid-template-columns: minmax(0, 740px); }
.editorial-story-card h2, .minimal-editorial-story-card h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  white-space: pre-line;
}
.detail-list { display: grid; gap: 12px; padding-left: 18px; margin: 0; }

/* Curated */
.curated-story-section { padding-top: 32px; }
.curated-story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 26px; align-items: stretch; }
.story-copy-card h2 { white-space: pre-line; }

/* Pricing */
.pricing-intro { display: grid; grid-template-columns: minmax(0, 840px); justify-content: center; }
.price-card { display: flex; flex-direction: column; gap: 10px; }
.price-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.86rem;
  border: 1px solid rgba(184,137,74,0.2);
}
.price-pill.muted { background: var(--cream-warm); color: var(--text-mid); border-color: var(--linen); }
.muted-text { color: var(--text-mid); }

/* Two col / photo */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.photo-panel { padding: 0; overflow: hidden; min-height: 420px; background: var(--linen); }
.photo-panel img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  display: flex;
  align-items: center; justify-content: center;
  height: 100%; min-height: 420px;
  background: var(--linen);
  color: var(--text-mid);
}
.room-layout { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.refined-room-layout { gap: 24px; }

/* Dynamic / decorative */
.dynamic-atmosphere-section { position: relative; overflow: hidden; }
.dynamic-atmosphere-section::before {
  content: '';
  position: absolute;
  top: 40px; left: -90px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,74,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero variations */
.landscape-hero { background: linear-gradient(135deg, var(--forest-mid), var(--forest-soft)); }
.editorial-rooms-hero { padding-bottom: 52px; background-size: cover; background-position: center; }
.rooms-hero .lead { max-width: 760px; }
.room-badges span { background: rgba(255,255,255,0.12); }

/* Journey */
.journey-section { padding-top: 42px; }
.journey-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.journey-step { position: relative; padding-top: 56px; }
.journey-index {
  position: absolute; top: 18px; left: 24px;
  font-size: 2.2rem;
  font-family: 'Cormorant Garant', serif;
  color: var(--linen-dark);
  line-height: 1; font-weight: 400;
}

/* Unified room list */
.unified-room-list-section { padding-top: 16px; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .showcase-grid, .journey-grid, .compact-signature-cards { grid-template-columns: 1fr 1fr; }
  .featured-track { grid-auto-columns: calc((100% - 22px) / 2); }
  .signature-grid, .refined-signature-grid, .premium-focus-grid { grid-template-columns: 1fr; }
  .split-story, .story-split-grid, .scenic-story-grid { grid-template-columns: 1fr; }
  .hero-shell, .immersive-shell { grid-template-columns: 1fr; }
  .room-intro-grid, .room-spotlight-grid, .curated-story-grid,
  .room-narrative-grid, .editorial-story-grid, .compact-room-narrative-grid,
  .editorial-room-grid { grid-template-columns: 1fr; }
  .room-spotlight-panel, .editorial-room-panel { position: static; }
  .room-thumbnail-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .atmosphere-grid, .expanded-atmosphere-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 200px 200px;
    gap: 14px;
  }
  .atmosphere-card-large { grid-column: 1 / -1; grid-row: auto; }
  .editorial-gallery-grid .gallery-item:nth-child(3n+2),
  .editorial-thumbnail-grid .room-thumbnail:nth-child(2),
  .editorial-thumbnail-grid .room-thumbnail:nth-child(4) { transform: none; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .photo-panel { min-height: 300px; }
  .hero { min-height: 80vh; }
  .room-spotlight-main, .room-spotlight-main img { min-height: 380px; }
  .room-rate-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-wrap { padding: 16px 0; }

  /* ── Hero ── */
  .hero { padding: 100px 0 60px; min-height: 75vh; }
  .hero h1, .page-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .page-hero { padding: 100px 0 52px; }
  .compact-hero { padding: 80px 0 48px; }
  .luxury-sidecard, .immersive-sidecard { display: none; }
  .hero .lead { font-size: .95rem; line-height: 1.75; }
  .hero-divider { margin: 8px 0 14px; }

  /* ── Sections ── */
  .section { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  h3 { font-size: 1.08rem; }
  .section-subtitle { font-size: .9rem; }
  .container { width: min(1200px, 88%); }

  /* ── Featured Rooms: scroll-snap carousel ── */
  .featured-carousel-shell { gap: 0; }
  .featured-side-btn { display: none; }
  .featured-carousel { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .featured-carousel::-webkit-scrollbar { display: none; }
  .featured-track, .showcase-grid {
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 16px;
    padding: 0 4px 8px;
    align-items: start;
  }
  .featured-slide { scroll-snap-align: center; height: auto; }
  .featured-head-row { align-items: flex-start; }
  .featured-actions-wrap { width: 100%; }
  .room-showcase-image { height: 220px; }
  .room-showcase-card, .premium-showcase-card { height: auto; }
  .room-showcase-content { padding: 18px 18px 16px; }
  .room-showcase-content h3 { font-size: 1.06rem; }
  .room-card-story { font-size: .86rem; margin-bottom: 10px; }
  .room-card-badge { padding: 5px 12px; font-size: .7rem; }

  /* ── Room Cards (rooms listing) — horizontal swipe ── */
  .refined-room-cards, .journey-grid, .compact-signature-cards { grid-template-columns: 1fr; gap: 20px; }
  .unified-room-grid, .dynamic-room-grid-featured {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    gap: 16px; padding: 0 16px 16px;
  }
  .unified-room-grid::-webkit-scrollbar, .dynamic-room-grid-featured::-webkit-scrollbar { display: none; }
  .unified-room-grid .room-card-enhanced, .dynamic-room-grid-featured .room-card-enhanced {
    flex: 0 0 85%; max-width: 85%; scroll-snap-align: center;
  }
  .unified-room-grid::after, .dynamic-room-grid-featured::after { content: ''; flex: 0 0 4px; }
  .room-cover, .room-showcase-image { height: 220px; }
  .room-cover-overlay h2, .room-cover-overlay-rich h2 { font-size: 1.15rem; }
  .room-cover-overlay, .room-cover-overlay-rich { left: 16px; right: 16px; bottom: 14px; }
  .room-content, .refined-room-content { padding: 18px; }
  .room-summary { font-size: .88rem; }
  .room-card-topline { flex-wrap: wrap; gap: 6px; }
  .room-hover-summary { display: none; }

  /* ── Atmosphere Grid ── */
  .atmosphere-grid, .expanded-atmosphere-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .atmosphere-card, .atmosphere-card-large { min-height: 200px; border-radius: var(--radius-md); }

  /* ── Signature / Focus Cards ── */
  .signature-grid, .refined-signature-grid, .premium-focus-grid { grid-template-columns: 1fr; gap: 16px; }
  .focus-features { gap: 14px; }
  .stat-card, .compact-stat-card { padding: 20px; }
  .stat-card h3 { font-size: 1rem; }

  /* ── Stories / Split ── */
  .split-story, .story-split-grid, .scenic-story-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-shell, .immersive-shell { grid-template-columns: 1fr; }

  /* ── Cards ── */
  .card { padding: 20px; border-radius: var(--radius-md); }
  .card.soft.tall { padding: 24px; }
  .final-cta { text-align: center; padding: 36px 22px; }
  .center-actions { justify-content: center; }

  /* ── Dark Divider ── */
  .dark-divider { padding: 64px 20px; }
  .dark-divider-quote { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  /* ── Seasonal ── */
  .seasonal-section { padding: 64px 0; }
  .season-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .season-card { padding: 22px 20px; }
  .season-card h3 { font-size: 1rem; }
  .season-card p { font-size: .84rem; }

  /* ── Parallax ── */
  .parallax-divider { height: 200px; background-attachment: scroll; }
  .parallax-divider-text { font-size: .72rem; letter-spacing: .1em; bottom: 20px; }

  /* ── YouTube Grid ── */
  .yt-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── Room Detail ── */
  .room-intro-grid, .room-spotlight-grid, .curated-story-grid,
  .room-narrative-grid, .editorial-story-grid, .compact-room-narrative-grid,
  .editorial-room-grid { grid-template-columns: 1fr; }
  .room-spotlight-panel, .editorial-room-panel { position: static; }
  .room-thumbnail-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 200px; }
  .editorial-gallery-grid .gallery-item:nth-child(3n+2) { transform: none; }
  .story-photo-tall { min-height: 240px; }
  .scenic-side-photo { min-height: 160px; }

  /* ── Room Spotlight Gallery ── */
  .rg-main, .rg-main-slide img { min-height: 260px; }
  .rg-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .rg-thumb { border-radius: 8px; }

  /* ── Gallery Tabs ── */
  .gallery-mag-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  .gallery-mag-item-1 { grid-row: auto; height: 220px; }
  .gallery-mag-item-4 { grid-column: auto; height: 180px; }
  .gallery-bath-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-bath-item { height: 200px; }

  /* ── Amenity Modal ── */
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-modal-header, .amenity-modal-body { padding-left: 18px; padding-right: 18px; }

  /* ── Price Row ── */
  .price-row, .room-price-row { flex-wrap: wrap; gap: 10px; }
  .room-rate-box { grid-template-columns: 1fr; }
  .feature-list { gap: 6px; }
  .feature-list span { font-size: .76rem; padding: 4px 10px; }

  /* ── Nearby ── */
  .attr-card, .attr-card-reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
  .attr-distance-row { flex-direction: column; gap: 8px; }
  .attr-gallery-main { aspect-ratio: 16/10; }
  .attr-thumbs { gap: 6px; }

  /* ── Offers ── */
  .offers-concept-grid,
  .offers-story-grid,
  .offers-story-grid-reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
  .offers-hero { min-height: 50vh; padding: 90px 0 52px; }
  .offers-steps { flex-direction: column; align-items: center; }
  .offers-step-arrow { transform: rotate(90deg); margin: 0; }
  .offers-step { max-width: 100%; }

  /* ── Sticky Booking Bar (mobile compact) ── */
  .sticky-booking-inner { flex-direction: column; align-items: stretch; gap: 10px; text-align: center; }
  .sticky-booking-info { justify-content: center; }
  .sticky-booking-btn { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-badges { gap: 6px; }
  .hero-badges span { font-size: 0.72rem; padding: 5px 10px; }
  .actions { gap: 8px; flex-wrap: wrap; }
  .btn { padding: 11px 18px; font-size: 0.84rem; }
  .mini-price-list div { flex-direction: column; gap: 2px; }

  .container { width: min(1200px, 92%); }
  .hero { padding: 90px 0 48px; min-height: 68vh; }
  .hero h1, .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .section { padding: 52px 0; }

  .featured-track, .showcase-grid { grid-auto-columns: 90%; gap: 12px; }
  .room-showcase-image { height: 180px; }

  .atmosphere-card, .atmosphere-card-large { min-height: 180px; }

  .dark-divider { padding: 48px 16px; }
  .dark-divider-quote { font-size: 1.2rem; }

  .seasonal-section { padding: 48px 0; }
  .season-card { padding: 18px 16px; }

  .parallax-divider { height: 160px; }
  .parallax-divider-text p { font-size: .68rem; }

  .nearby-cta-card { padding: 32px 20px; }
  .offers-cta-card { padding: 36px 20px; }
}
