/* ============================================================
   FAIRLINK HOTELS — DESIGN SYSTEM
   "Threaded Light" theme
   ============================================================ */

:root {
  /* Nav heights — used by sticky offsets so sub-headers never overlap */
  --nav-h:      76px;
  --topbar-h:   40px;
  --av-bar-h:   72px;   /* availability bar height (sticky stack offset) */

  /* Ink */
  --ink:        #0B0908;
  --ink-2:      #141110;
  --ink-soft:   #2A2522;

  /* Cream */
  --bone:       #F5EFE6;
  --paper:      #FAF6EE;
  --warm-w:     #EDE6D6;
  --muted:      #9A8E7A;

  /* Gold thread */
  --gold:       #C9A961;
  --gold-2:     #B5933F;
  --gold-deep:  #8C6D2F;

  /* Functional */
  --red:        #B8352A;
  --green:      #4A7C59;
  --line:       rgba(11,9,8,.10);
  --line-strong:rgba(11,9,8,.20);
  --line-light: rgba(245,239,230,.18);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', serif;
  --font-italic:  'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1400px;
  --container-pad: clamp(20px, 4vw, 64px);

  /* Easing */
  --ease: cubic-bezier(.6,.05,.05,.95);
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }  /* clip doesn't break position:sticky like overflow:hidden does */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Smooth fade-in for any lazy-loaded image so they don't pop in jarringly */
img[loading="lazy"] {
  opacity: 0;
  animation: imgFade .55s var(--ease) forwards;
  animation-play-state: paused;
}
img[loading="lazy"].is-loaded,
img[loading="lazy"][complete] { animation-play-state: running; }
@keyframes imgFade { from { opacity: 0; } to { opacity: 1; } }
/* Fallback: if the JS observer never runs, decode-complete makes it visible */
img[loading="lazy"]:not([src=""]) { animation-play-state: running; }
@media (prefers-reduced-motion: reduce) {
  img[loading="lazy"] { animation: none; opacity: 1; }
}
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* Type rhythm */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold); }

.display-xl, .display-lg, .display-md, .display-sm {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.display-xl { font-size: clamp(48px, 7vw, 84px); }
.display-lg { font-size: clamp(40px, 5vw, 64px); }
.display-md { font-size: clamp(28px, 3.5vw, 44px); }
.display-sm { font-size: clamp(22px, 2.5vw, 32px); }
.on-dark { color: var(--bone); }

.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
}

.body-lede {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(11,9,8,.78);
  max-width: 64ch;
}

/* Grain overlay */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Section spacing — tightened so sections feel related, not isolated */
.section { padding: clamp(56px, 6vw, 88px) 0; }
.section-tight { padding: clamp(36px, 4vw, 56px) 0; }
.section + .section { padding-top: clamp(40px, 4vw, 64px); }
.section + .section-tight { padding-top: clamp(28px, 3vw, 44px); }
.section-tight + .section { padding-top: clamp(40px, 4vw, 64px); }

/* ============================================================
   TOPBAR + MAIN NAV
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--bone);
  font-size: 12.5px;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--line-light);
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;   /* all content pushed right */
  align-items: center;
  padding: 9px 0;
  gap: 22px;
  min-height: 40px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a { color: rgba(245,239,230,.78); transition: color .25s var(--ease); }
.topbar a:hover { color: var(--gold); }
.topbar-divider { color: rgba(245,239,230,.25); }
.topbar-divider--vert {
  display: inline-block;
  width: 1px; height: 18px;
  background: rgba(245,239,230,.18);
  margin: 0 4px;
}

/* Social icon row */
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  color: rgba(245,239,230,.7);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.topbar-social a:hover { color: var(--gold); transform: translateY(-1px); }
.topbar-social svg { display: block; }

/* Phone + email link with leading icon */
.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(245,239,230,.85);
  white-space: nowrap;
}
.topbar-contact svg { color: var(--gold); }
.topbar-contact:hover svg { color: var(--gold); }
.topbar-contact span { font-weight: 400; }

/* Mobile: keep contacts; collapse social */
@media (max-width: 720px) {
  .topbar-inner { padding: 7px 0; gap: 14px; min-height: 36px; }
  .topbar-social { gap: 10px; }
  .topbar-social a { width: 22px; height: 22px; }
  .topbar-social a:nth-child(n+4) { display: none; }   /* keep only IG, FB, YT on phone */
  .topbar-contact span { font-size: 11px; }
  .topbar-contact:nth-of-type(2) span { display: none; }  /* email collapses to icon-only */
  .topbar-divider--vert { display: none; }
}
@media (max-width: 480px) {
  .topbar-social { display: none; }
  .topbar-divider--vert { display: none; }
}

.mainnav {
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid var(--line-light);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: padding .35s var(--ease);
  min-height: var(--nav-h);
}
.mainnav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
  position: relative;
}
.mainnav-left, .mainnav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.mainnav-right { justify-content: flex-end; }
.mainnav-link {
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.mainnav-link:hover { color: var(--gold); }
.mainnav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.mainnav-link:hover::after { width: 100%; }

.brand-mark {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand-mark .word {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: .01em;
}
.brand-mark .sub {
  font-size: 9px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: .85;
  margin-top: 4px;
}

/* Image logo (used when /assets/img/logo.png exists) */
.brand-mark .brand-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  transition: opacity .25s var(--ease);
}
.brand-mark:hover .brand-img { opacity: .85; }
.mainnav.is-scrolled .brand-mark .brand-img { height: 36px; }
@media (max-width: 720px) {
  .brand-mark .brand-img { height: 36px; max-width: 140px; }
}

.footer-brand-img {
  height: 52px; width: auto; max-width: 200px;
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .25s var(--ease);
  border: 1px solid var(--gold);
}
.cta-btn:hover {
  background: transparent;
  color: var(--gold);
}
.cta-btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.cta-btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}
.cta-btn-light {
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--bone);
}
.cta-btn-light:hover {
  background: transparent;
  color: var(--bone);
}

/* ============================================================
   PROPERTY HERO  (asymmetric collage)
   ============================================================ */
.hero-property {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(48px, 6vw, 90px) 0 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-top: 32px;
}
.hero-text { padding-bottom: 60px; }
.hero-text .display-lg { color: var(--bone); margin: 18px 0 24px; }
.hero-text .body-lede { color: rgba(245,239,230,.78); }

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
}
.hero-meta-item .lab {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,230,.6);
  margin-top: 2px;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  position: relative;
}
.hero-collage .img-main {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.hero-collage .img-secondary {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
  overflow: hidden;
}
.hero-collage .img-tertiary {
  grid-column: 5 / 7;
  grid-row: 2 / 3;
  overflow: hidden;
}
.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-collage > div:hover img { transform: scale(1.04); }
.hero-stamp {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}

/* Availability Bar — scrolls away naturally with the page (no sticky) */
.availability-bar {
  background: var(--ink-2);
  color: var(--bone);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 18px 0;
  position: relative;
  z-index: 40;
}
.availability-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.av-field { display: flex; flex-direction: column; }
.av-field .label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.av-field .value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--bone);
}
.av-divider { width: 1px; height: 30px; background: var(--line-light); }
.av-cta { margin-left: auto; }

/* Sub-nav — sticky on all detail pages.
   .is-stacked = sits below mainnav + availability bar (hotel + room pages).
   Default   = sits directly below mainnav (gallery, etc.) */
.subnav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--nav-h);
  z-index: 35;
}
/* `.is-stacked` used to mean "below the sticky availability bar". Now that the
   availability bar scrolls away, the subnav just docks under the mainnav. */
.subnav.is-stacked { top: var(--nav-h); }
.availability-bar, .room-availability { min-height: var(--av-bar-h); }
.subnav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  overflow-x: auto;
}
.subnav-crumbs {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.subnav-crumbs a:hover { color: var(--gold-deep); }
.subnav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  white-space: nowrap;
}
.subnav-links a {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.subnav-links a:hover { color: var(--gold-deep); }

/* ============================================================
   STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.story-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-caption {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.story-text .display-lg { margin: 16px 0 32px; }
.story-text p {
  margin-bottom: 20px;
  color: rgba(11,9,8,.82);
  line-height: 1.8;
}
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 20px 0 20px 24px;
  margin: 36px 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.pull-quote-author {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   WHY STAY (4 cells)
   ============================================================ */
.why-stay {
  background: var(--bone);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone);
  transition: background .35s var(--ease);
}
.why-cell:hover { background: var(--paper); }
.why-cell .icon {
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.why-cell h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.why-cell p {
  font-size: 14px;
  color: rgba(11,9,8,.7);
  line-height: 1.65;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
}
.room-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px -16px rgba(0,0,0,.18);
}
.room-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.room-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.room-card:hover .room-image img { transform: scale(1.04); }
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.room-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-cat {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.room-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.room-desc {
  font-size: 14px;
  color: rgba(11,9,8,.7);
  line-height: 1.65;
  margin-bottom: 24px;
}
.room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.room-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.room-feature svg { color: var(--gold-deep); flex: 0 0 auto; }
.room-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}
.room-price-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.room-price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink);
  margin-top: 4px;
}
.room-price small { font-size: 13px; color: var(--muted); margin-left: 4px; }

/* ============================================================
   DINING
   ============================================================ */
.dining-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.dining-feature-img { aspect-ratio: 4 / 3; overflow: hidden; }
.dining-feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* Dining section — mobile responsive */
@media (max-width: 1024px) {
  .dining-feature { grid-template-columns: 1fr; }
  .dining-feature-img { aspect-ratio: 16 / 10; }
}
@media (max-width: 720px) {
  .dining-feature {
    gap: 22px;
    margin-bottom: 36px;
  }
  .dining-feature-img { aspect-ratio: 4 / 3; }
  .dining-feature .display-md { font-size: clamp(24px, 6vw, 30px); margin-bottom: 6px; }
  .dining-feature .italic-accent { font-size: 16px; margin-bottom: 14px; }
  .dining-feature p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
  .dining-feature .dining-hours,
  .dining-feature [style*="border-top: 1px solid var(--line)"] {
    font-size: 12px;
    padding: 12px 0;
    margin-bottom: 16px;
  }
  .dining-feature .cta-btn { width: 100%; justify-content: center; }

  .dining-rest-grid { grid-template-columns: 1fr; gap: 20px; }
  .dining-card-body { padding: 18px 18px 20px; }
  .dining-card h3 { font-size: 20px; }
  .dining-card-img { aspect-ratio: 16 / 10; }
}

.dining-rest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.dining-card {
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.dining-card:hover { border-color: var(--gold); }
.dining-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.dining-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dining-card:hover .dining-card-img img { transform: scale(1.04); }
.dining-card-body { padding: 24px; }
.dining-card-type {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.dining-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.dining-cuisine {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.dining-desc {
  font-size: 13px;
  color: rgba(11,9,8,.72);
  line-height: 1.65;
  margin-bottom: 14px;
}
.dining-hours {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   WELLNESS
   ============================================================ */
.wellness {
  background: var(--ink);
  color: var(--bone);
}
.wellness .display-lg { color: var(--bone); }
.wellness .body-lede { color: rgba(245,239,230,.78); }

.wellness-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-light);
}
.wellness-item {
  display: grid;
  grid-template-columns: 1fr 120px 140px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
  gap: 24px;
}
.wellness-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
}
.wellness-dur {
  font-size: 12px;
  color: rgba(245,239,230,.6);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.wellness-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  text-align: right;
}
.wellness-price.free { font-size: 13px; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.experience-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.experience-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity .4s var(--ease), transform 1s var(--ease);
}
.experience-card:hover img { opacity: 1; transform: scale(1.04); }
.experience-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(11,9,8,.85), rgba(11,9,8,0) 60%);
  color: var(--bone);
}
.experience-dur {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.experience-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 10px;
}
.experience-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245,239,230,.72);
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s var(--ease);
}
.experience-card:hover p { opacity: 1; transform: translateY(0); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
.location-list .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.location-list .icon-cell {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  flex: 0 0 auto;
}
.location-list .body { flex: 1; }
.location-list h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 4px;
}
.location-list p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.location-list .distance {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.location-map {
  background: var(--bone);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.location-map svg { width: 100%; height: 100%; }

/* ============================================================
   GALLERY TEASER (hotel detail page — feature + thumbs + "+N more")
   ============================================================ */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-auto-rows: 0;            /* never grow past 2 rows even if items overflow */
  gap: 10px;
  aspect-ratio: 5 / 2;
  max-height: 520px;
  overflow: hidden;
}
.gallery-teaser-tile {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--ink);
  min-height: 0;                /* let object-fit do its job inside grid */
}
.gallery-teaser-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), opacity .4s var(--ease);
  display: block;
}
.gallery-teaser-tile:hover img { transform: scale(1.04); }
.gallery-teaser-tile.is-feature {
  grid-column: 1 / 3;            /* spans 2 of the 4 columns */
  grid-row: 1 / 3;               /* spans both rows */
}

.gallery-teaser-more img { opacity: .55; }
.gallery-teaser-more-overlay {
  position: absolute; inset: 0;
  background: rgba(11,9,8,.55);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--bone);
  text-align: center;
  transition: background .3s var(--ease);
  gap: 4px;
}
.gallery-teaser-more:hover .gallery-teaser-more-overlay { background: rgba(11,9,8,.7); }
.gallery-teaser-more-overlay .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.gallery-teaser-more-overlay .lab {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,230,.85);
}

@media (max-width: 980px) {
  .gallery-teaser-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    aspect-ratio: 4 / 3;
    max-height: 600px;
  }
  .gallery-teaser-tile.is-feature { grid-column: 1 / -1; grid-row: 1; }
}
@media (max-width: 560px) {
  .gallery-teaser-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
    aspect-ratio: auto;
    max-height: none;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.review-card {
  padding: 32px 28px;
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.review-source {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  font-weight: 600;
}
.review-stars {
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}
.review-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.review-body {
  font-size: 14px;
  color: rgba(11,9,8,.78);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-author img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.review-author .meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  gap: 24px;
}
.faq-q .toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all .3s var(--ease);
}
.faq-item.open .faq-q .toggle {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,9,8,.78);
  max-width: 70ch;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(64px, 8vw, 110px) 0;
}
.cta-band-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-band h2 { color: var(--bone); margin-bottom: 24px; }
.cta-band p { color: rgba(245,239,230,.78); max-width: 56ch; margin-bottom: 32px; }
.reservations-card {
  border: 1px solid var(--line-light);
  padding: 36px 32px;
}
.reservations-card .label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.reservations-card .num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--bone);
  font-weight: 300;
  margin-bottom: 18px;
}
.reservations-card .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-light);
  font-size: 13px;
  color: rgba(245,239,230,.85);
}
.reservations-card .row:first-of-type { padding-top: 18px; margin-top: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-deep {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 0;
  border-top: 1px solid var(--line-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-light);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  color: rgba(245,239,230,.75);
}
.footer-col a:hover { color: var(--gold); }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand-tag {
  font-size: 13px;
  color: rgba(245,239,230,.7);
  line-height: 1.7;
  max-width: 36ch;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 12px;
  color: rgba(245,239,230,.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* WhatsApp FAB */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  z-index: 100;
  transition: transform .3s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.06); }

/* ============================================================
   HOMEPAGE-SPECIFIC
   ============================================================ */
.home-hero {
  height: 88vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.home-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--bone);
}
.home-hero h1 { color: var(--bone); max-width: 18ch; margin: 24px 0; }
.home-hero p { color: rgba(245,239,230,.85); max-width: 56ch; }

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.hotel-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
}
.hotel-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 48px -16px rgba(0,0,0,.18);
}
.hotel-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.hotel-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hotel-card:hover .hotel-card-img img { transform: scale(1.05); }
.hotel-card-loc {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(11,9,8,.85);
  color: var(--bone);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hotel-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.hotel-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hotel-card p {
  font-size: 14px;
  color: rgba(11,9,8,.7);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.hotel-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.hotel-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink);
}
.hotel-card-rating svg { color: var(--gold); }
.hotel-card-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-deep);
}
.hotel-card-price small { font-size: 11px; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-collage { grid-template-rows: 280px 280px; }
  .story-grid, .location-grid, .cta-band-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid, .dining-rest-grid, .reviews-grid, .hotels-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.large, .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
}

@media (max-width: 720px) {
  /* Mobile: hide the entire topbar — phone/email/social already in footer + contact page */
  .topbar { display: none; }

  /* Mainnav: keep 3-col grid so brand stays centred; toggle is positioned absolute */
  .mainnav-inner { padding: 12px 0; }
  .mainnav-left, .mainnav-right { display: none; }

  /* Availability bar stacks vertically */
  .availability-inner { gap: 14px; padding: 4px 0; }
  .av-divider { display: none; }
  .av-cta { width: 100%; margin: 4px 0 0; }
  .av-cta .cta-btn { width: 100%; justify-content: center; }

  /* Section grids collapse */
  .why-grid { grid-template-columns: 1fr; }
  .experiences-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 240px; }
  .gallery-item.large, .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .wellness-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .wellness-price { text-align: left; }

  /* Mobile: hide the availability bar (it's too dense for small screens —
     the floating Book Now in the nav still gets you there). */
  .availability-bar { display: none; }

  /* Mobile: subnav becomes a clean horizontal scroller showing breadcrumbs
     + jump links so visitors can hop straight to Rooms / Gallery / etc. */
  .subnav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 0 12px;
  }
  .subnav-crumbs {
    font-size: 11px;
    padding: 0 var(--container-pad);
  }
  .subnav-links {
    display: flex;
    gap: 18px;
    margin-left: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px var(--container-pad) 4px;
    border-top: 1px solid var(--line);
    margin: 0 calc(var(--container-pad) * -1);
    scrollbar-width: none;
  }
  .subnav-links::-webkit-scrollbar { display: none; }
  .subnav-links a {
    flex: 0 0 auto;
    font-size: 11px;
    padding: 8px 0;
    letter-spacing: .1em;
  }
  .hero-collage { grid-template-columns: 1fr; grid-template-rows: 240px 160px 160px; }
  .hero-collage .img-main { grid-column: 1 / -1; grid-row: 1; }
  .hero-collage .img-secondary { grid-column: 1 / -1; grid-row: 2; }
  .hero-collage .img-tertiary { grid-column: 1 / -1; grid-row: 3; }
}

/* ============================================================
   TRUST STRIP (homepage band)
   ============================================================ */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 32px var(--container-pad);
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}
.trust-item .trust-src {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-item .trust-score {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-deep);
  font-weight: 500;
}
.trust-item .trust-scale {
  font-size: 11px;
  color: var(--muted);
}

/* ============================================================
   SISTER PROPERTIES strip (hotel page bottom)
   ============================================================ */
.sister-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.sister-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sister-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 36px -12px rgba(0,0,0,.14);
}
.sister-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sister-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.sister-card:hover .sister-card-img img { transform: scale(1.04); }
.sister-card-body { padding: 20px 22px 22px; }
.sister-card-loc {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 6px;
}
.sister-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin: 0;
  line-height: 1.25;
}

/* ============================================================
   BREADCRUMB on subnav
   ============================================================ */
.breadcrumb-divider { opacity: 0.4; margin: 0 8px; }

/* ============================================================
   LIGHTBOX (gallery)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(11,9,8,0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--bone);
  font-size: 24px; cursor: pointer; opacity: 0.85;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { opacity: 1; }

/* ============================================================
   SCROLL REVEAL (driven by site.js IntersectionObserver)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   COMMON: section heads, links, dots
   ============================================================ */
.muted { color: var(--muted); }
.muted-dot { color: var(--muted); margin: 0 6px; opacity: .65; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .body-lede { margin: 16px auto 0; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: 12px; color: var(--ink); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   STICKY NAV: shrink on scroll, active link
   ============================================================ */
.mainnav.is-scrolled .mainnav-inner { padding: 10px 0; }
.mainnav.is-scrolled .brand-mark .word { font-size: 22px; }
.mainnav.is-scrolled .brand-mark .sub { font-size: 8px; margin-top: 2px; }

/* ============================================================
   HAMBURGER (mainnav-toggle bars)
   ============================================================ */
.mainnav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line-light);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  position: absolute;
  right: var(--container-pad);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.mainnav-toggle:hover { border-color: var(--gold); background: rgba(201,169,97,.08); }
.mainnav-toggle .bars {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 18px;
}
.mainnav-toggle .bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer {
  position: fixed; inset: 0;
  z-index: 120;   /* above WhatsApp FAB (z:100) and sticky nav (z:50) */
  pointer-events: none;
  visibility: hidden;
}
/* Hide the WhatsApp FAB while the drawer is open so it doesn't bleed over */
.drawer.open ~ .fab-whatsapp,
body:has(.drawer.open) .fab-whatsapp { display: none; }
.drawer.open { pointer-events: auto; visibility: visible; }
.drawer-scrim {
  position: absolute; inset: 0;
  background: rgba(11,9,8,.55);
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: 1;          /* below the panel — fixes click-through bug */
}
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(92vw, 380px);
  background: var(--ink);
  color: var(--bone);
  padding: 22px 24px 24px;
  display: flex; flex-direction: column;
  transform: translateX(102%);
  transition: transform .42s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -24px 0 64px -16px rgba(0,0,0,.55);
  z-index: 2;          /* above the scrim so taps inside register on links */
}
.drawer.open .drawer-panel { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  flex: 0 0 auto;
}
.drawer-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
  font-size: 26px;
  line-height: 1;
  border: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.drawer-close:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.drawer-list {
  list-style: none;
  flex: 1 1 auto;
  margin: 0; padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-list li { border-bottom: 1px solid var(--line-light); }
.drawer-list li:first-child { border-top: 0; }
.drawer-list a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--bone);
  text-decoration: none;
  transition: color .25s var(--ease), padding-left .3s var(--ease);
}
.drawer-list a:hover, .drawer-list a:focus { color: var(--gold); padding-left: 6px; }
.drawer-foot {
  flex: 0 0 auto;
  padding-top: 18px;
  margin-top: 14px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-foot .cta-btn { justify-content: center; width: 100%; }
.drawer-contact {
  display: flex; flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  color: rgba(245,239,230,.65);
}
.drawer-contact a { color: rgba(245,239,230,.85); text-decoration: none; }
.drawer-contact a:hover { color: var(--gold); }

/* Make sure phones with short viewport heights don't clip the drawer */
@media (max-height: 640px) {
  .drawer-list a { padding: 11px 0; font-size: 20px; }
  .drawer-head { margin-bottom: 12px; padding-bottom: 10px; }
}

/* ============================================================
   PAGE HERO (contact / offers / etc)
   ============================================================ */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero h1, .page-hero h2 { margin: 14px 0 18px; }
.page-hero .body-lede { max-width: 64ch; }
.page-hero--tall {
  padding: clamp(120px, 14vw, 200px) 0 clamp(72px, 8vw, 120px);
  min-height: 56vh;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;          /* show the image fully */
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,8,0) 0%, rgba(11,9,8,.15) 65%, rgba(11,9,8,.42) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }

/* Page-hero showcase rule — image is the showcase across all page heros.
   Short hero: only eyebrow visible. Tall hero: eyebrow + h1 visible. Both
   variants hide the body lede, meta strip, and CTA buttons. */
.page-hero .body-lede,
.page-hero .hero-slider-tagline,
.page-hero .hero-slider-meta,
.page-hero .hero-slider-ctas,
.page-hero > .container > div[style*="display: flex"],
.page-hero > .container > div[style*="display:flex"] {
  display: none;
}

/* Short hero (no --tall): also hides the h1 */
.page-hero:not(.page-hero--tall) h1 { display: none; }
.page-hero:not(.page-hero--tall) {
  padding: clamp(36px, 5vw, 64px) 0;
  min-height: clamp(180px, 32vw, 320px);
}
.page-hero:not(.page-hero--tall) > .container {
  display: flex;
  align-items: flex-end;
  min-height: clamp(140px, 26vw, 280px);
}
.page-hero:not(.page-hero--tall) .eyebrow {
  background: rgba(11,9,8,.55);
  padding: 8px 14px;
  display: inline-block;
}

/* Tall hero — title stays visible, sits at the bottom-left over the image */
.page-hero--tall { display: flex; align-items: flex-end; }
.page-hero--tall > .container { position: relative; z-index: 2; }
.page-hero--tall .eyebrow { display: inline-block; margin-bottom: 14px; }

/* ============================================================
   FILTER BAR (hotels, stories)
   ============================================================ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.filter-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-right: 8px;
}
.filter-chip {
  display: inline-flex;
  padding: 9px 18px;
  font-size: 12px; letter-spacing: .08em;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-chip.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ============================================================
   NEWSLETTER BAND (pre-footer)
   ============================================================ */
.newsletter-band {
  background: var(--ink-2);
  color: var(--bone);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line-light);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
}
.newsletter-text h2 { margin: 12px 0 14px; }
.newsletter-text p { color: rgba(245,239,230,.72); max-width: 50ch; }
.newsletter-form {
  display: flex; gap: 0;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.02);
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bone);
  outline: none;
  min-width: 0;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(245,239,230,.45); }
.newsletter-form button { flex: 0 0 auto; border-radius: 0; }

/* ============================================================
   FORMS (contact, etc.)
   ============================================================ */
.form-success, .form-error {
  padding: 16px 20px;
  margin-bottom: 22px;
  border-left: 3px solid;
  font-size: 14px;
  line-height: 1.6;
}
.form-success { background: rgba(74,124,89,.08); border-color: var(--green); color: var(--ink); }
.form-error   { background: rgba(184,53,42,.08); border-color: var(--red);   color: var(--ink); }

.contact-form { margin-top: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
}
.field .req { color: var(--gold-deep); }
.field .muted { font-size: 10px; letter-spacing: .04em; text-transform: none; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: var(--bone); }
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); background: rgba(184,53,42,.04); }
.field-error { font-size: 12px; color: var(--red); }
input.is-invalid, select.is-invalid, textarea.is-invalid { border-color: var(--red) !important; }
.form-foot {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.form-fine { font-size: 12px; color: var(--muted); line-height: 1.55; max-width: 52ch; margin: 0; }
button.is-loading { position: relative; opacity: .7; cursor: progress; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  padding: 32px 28px;
  background: var(--bone);
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card-eyebrow {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 14px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.contact-card p { font-size: 14px; color: rgba(11,9,8,.72); line-height: 1.65; margin-bottom: 20px; }
.contact-card-rows { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.contact-card-rows a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink);
}
.contact-card-rows a:hover { color: var(--gold-deep); }
.contact-card-rows svg { color: var(--gold-deep); }
.contact-card-foot { margin-top: 16px; font-size: 12px; color: var(--muted); letter-spacing: .04em; }

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact-form-text .display-md { margin: 14px 0 22px; }

.contact-aside { display: flex; flex-direction: column; gap: 24px; }
.contact-aside-block {
  padding: 28px 26px;
  background: var(--bone);
  border: 1px solid var(--line);
}
.contact-aside-block h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 12px;
}
.contact-aside-block p { font-size: 14px; color: rgba(11,9,8,.78); line-height: 1.65; }
.house-lines { list-style: none; margin-top: 8px; }
.house-lines li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.house-lines li:last-child { border-bottom: 0; }
.house-lines-contact { margin-top: 4px; color: var(--muted); }
.house-lines-contact a { color: var(--ink); }
.house-lines-contact a:hover { color: var(--gold-deep); }

.map-band {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bone);
}
.map-band iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   OFFERS
   ============================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.offer-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 18px 48px -16px rgba(0,0,0,.14); }
.offer-card-img { aspect-ratio: 16 / 9; overflow: hidden; }
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.offer-card:hover .offer-card-img img { transform: scale(1.04); }
.offer-card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.offer-badge {
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 12px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 12px;
}
.offer-meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.offer-card h3 { font-family: var(--font-display); font-weight: 300; font-size: 24px; line-height: 1.25; margin-bottom: 12px; }
.offer-card p { font-size: 14px; color: rgba(11,9,8,.72); line-height: 1.65; margin-bottom: 16px; }
.offer-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.offer-price .strike { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.offer-price .now { font-family: var(--font-display); font-size: 24px; color: var(--ink); }
.offer-price small { color: var(--muted); font-size: 11px; letter-spacing: .04em; }
.offer-validity { padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }

/* ============================================================
   EXPERIENCES (group + by-house)
   ============================================================ */
.house-experiences { display: flex; flex-direction: column; gap: 56px; margin-top: 32px; }
.house-group .house-group-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}
.house-group-head h3 {
  font-family: var(--font-display); font-weight: 300; font-size: 28px;
}

/* ============================================================
   WEDDINGS
   ============================================================ */
.wedding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 12px;
}
.wedding-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.wedding-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.wedding-card-img { overflow: hidden; }
.wedding-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.wedding-card:hover .wedding-card-img img { transform: scale(1.04); }
.wedding-card-body { padding: 26px 24px; display: flex; flex-direction: column; }
.wedding-loc { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.wedding-card h3 { font-family: var(--font-display); font-weight: 300; font-size: 26px; line-height: 1.2; margin-bottom: 10px; }
.wedding-card p { font-size: 13px; color: rgba(11,9,8,.72); line-height: 1.6; margin-bottom: 16px; }
.wedding-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.wedding-stats > div { display: flex; flex-direction: column; }
.wedding-stats strong { font-family: var(--font-display); font-size: 20px; font-weight: 300; color: var(--ink); }
.wedding-stats span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   BUSINESS
   ============================================================ */
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.business-card {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.business-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.business-card-icon { color: var(--gold-deep); margin-bottom: 20px; }
.business-card h3 { font-family: var(--font-display); font-weight: 300; font-size: 26px; line-height: 1.25; margin-bottom: 12px; }
.business-card p { font-size: 14px; color: rgba(11,9,8,.74); line-height: 1.65; margin-bottom: 18px; }
.business-list { list-style: none; padding-top: 14px; border-top: 1px solid var(--line); }
.business-list li {
  font-size: 13px;
  padding: 8px 0 8px 22px;
  color: var(--ink-soft);
  position: relative;
}
.business-list li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 10px; height: 1px; background: var(--gold);
}

.business-houses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.business-house {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.business-house:hover { border-color: var(--gold); transform: translateY(-2px); }
.business-house-img { width: 80px; height: 64px; flex: 0 0 auto; overflow: hidden; }
.business-house-img img { width: 100%; height: 100%; object-fit: cover; }
.business-house-body { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.business-house-body strong { font-family: var(--font-display); font-weight: 500; font-size: 16px; }
.business-house-body .muted { font-size: 11px; letter-spacing: .04em; }

/* ============================================================
   STORIES (listing + detail)
   ============================================================ */
.story-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.story-featured-img { aspect-ratio: 4 / 3; overflow: hidden; }
.story-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-featured:hover .story-featured-img img { transform: scale(1.04); }
.story-subtitle { font-family: var(--font-italic); font-style: italic; font-size: 18px; color: var(--muted); margin-bottom: 14px; }
.story-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; margin-top: 18px; font-size: 12px; letter-spacing: .04em; color: var(--muted); }
.story-byline a { color: var(--ink); }
.story-byline a:hover { color: var(--gold-deep); }

.story-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  overflow: hidden;
}
.story-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.story-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.story-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.story-card:hover .story-card-img img { transform: scale(1.04); }
.story-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.story-card-meta {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 10px;
}
.story-card h3 { font-family: var(--font-display); font-weight: 300; font-size: 22px; line-height: 1.25; margin-bottom: 10px; }
.story-card p { font-size: 13.5px; color: rgba(11,9,8,.72); line-height: 1.6; margin-bottom: 14px; flex: 1; }

.story-article-head { background: var(--paper); padding: clamp(48px, 8vw, 96px) 0 clamp(36px, 5vw, 56px); border-bottom: 1px solid var(--line); }
.story-crumbs { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.story-crumbs a:hover { color: var(--gold-deep); }
.story-title { max-width: 22ch; margin: 16px 0 12px; }
.story-cover { width: 100%; aspect-ratio: 21 / 9; max-height: 70vh; overflow: hidden; }
.story-cover img { width: 100%; height: 100%; object-fit: cover; }
.story-body-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(40px, 6vw, 80px);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.story-body { max-width: 68ch; font-size: 17px; line-height: 1.85; color: rgba(11,9,8,.85); }
.story-body p { margin-bottom: 1.1em; }
.story-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 96px; align-self: start; }
.story-aside-block { padding: 18px 20px; border: 1px solid var(--line); background: var(--bone); }
.story-aside-block p { font-size: 14px; margin-top: 2px; }
.story-aside-block a:hover { color: var(--gold-deep); }

/* ============================================================
   FOOTER reservations
   ============================================================ */
.footer-reserve .r-num a { font-family: var(--font-display); font-size: 18px; color: var(--gold); }
.footer-reserve .r-num a:hover { color: var(--bone); }
.footer-reserve .r-hours { font-size: 12px; color: rgba(245,239,230,.55); letter-spacing: .04em; }

/* ============================================================
   BUTTON: shimmer animation on hover (cta-btn variant)
   ============================================================ */
.cta-btn { position: relative; overflow: hidden; }
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.cta-btn:hover::before { transform: translateX(130%); }
.cta-btn:active { transform: translateY(1px); }
@media (prefers-reduced-motion: reduce) {
  .cta-btn::before { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, ::before, ::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   RESPONSIVE — new components
   ============================================================ */
@media (max-width: 1024px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .contact-cards, .business-grid, .business-houses { grid-template-columns: repeat(2, 1fr); }
  .contact-form-grid { grid-template-columns: 1fr; }
  .offers-grid, .story-grid-list { grid-template-columns: repeat(2, 1fr); }
  .wedding-grid { grid-template-columns: 1fr; }
  .story-featured { grid-template-columns: 1fr; }
  .story-body-wrap { grid-template-columns: 1fr; }
  .story-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .story-aside-block { flex: 1 1 200px; }
}

@media (max-width: 720px) {
  .mainnav-toggle { display: inline-flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-foot { grid-template-columns: 1fr; }
  .form-foot .cta-btn { width: 100%; justify-content: center; }
  .contact-cards, .business-grid, .business-houses, .offers-grid, .story-grid-list { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; padding: 14px; }
  .wedding-card { grid-template-columns: 1fr; }
  .wedding-card-img { aspect-ratio: 16 / 10; }
  .page-hero, .page-hero--tall { padding-top: 64px; }
  .filter-bar { gap: 6px; }
  .filter-chip { padding: 8px 14px; font-size: 11px; }
  .house-group-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .map-band { aspect-ratio: 4 / 5; }
}

@media (max-width: 420px) {
  .topbar-left a + .topbar-divider + a { display: none; }
  .topbar-left .topbar-divider { display: none; }
  .display-xl { font-size: clamp(40px, 9vw, 56px); }
  .display-lg { font-size: clamp(32px, 8vw, 44px); }
  .display-md { font-size: clamp(24px, 6vw, 32px); }
  .container { padding-left: 20px; padding-right: 20px; }
  .body-lede { font-size: 16px; }
  .field input, .field select, .field textarea { font-size: 16px; } /* prevents iOS zoom-on-focus */
}

/* ============================================================
   FOG EFFECT (per-hotel toggle in admin → has_fog)
   Two SVG-turbulence layers drift at different speeds for parallax depth.
   Sits above the hero image, below the content.
   ============================================================ */
.fog {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  mix-blend-mode: screen;
}
.fog-layer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.008' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.65 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 800px 800px;
  will-change: transform;
}
.fog-layer-1 {
  opacity: .28;
  animation: fogDriftA 90s linear infinite;
}
.fog-layer-2 {
  opacity: .18;
  background-size: 1400px 1400px;
  animation: fogDriftB 140s linear infinite reverse;
}
@keyframes fogDriftA {
  0%   { transform: translate(0,    0); }
  50%  { transform: translate(-400px, -120px); }
  100% { transform: translate(-800px, 0); }
}
@keyframes fogDriftB {
  0%   { transform: translate(0,    0)    scale(1.15); }
  50%  { transform: translate(700px, 80px) scale(1.2);  }
  100% { transform: translate(1400px, 0)   scale(1.15); }
}
/* Fog above hero image but below the text overlay + dots/arrows */
.hero-slider.has-fog .fog,
.home-hero.has-fog .fog { z-index: 2; }
.hero-slider.has-fog .hero-slider-mask,
.hero-slider.has-fog .hero-slider-content,
.hero-slider.has-fog .hero-slider-prev,
.hero-slider.has-fog .hero-slider-next,
.hero-slider.has-fog .hero-slider-dots { z-index: 3; }
.home-hero.has-fog .home-hero-content { z-index: 3; position: relative; }

@media (prefers-reduced-motion: reduce) {
  .fog-layer-1, .fog-layer-2 { animation: none; }
  .fog-layer-1 { opacity: .2; }
  .fog-layer-2 { opacity: .12; }
}

/* ============================================================
   HERO SLIDER (hotel detail) — full-bleed, minimal overlay
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  isolation: isolate;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  margin: 0;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 8s linear;
}
.hero-slide.is-active img { transform: scale(1); }
.hero-slider-mask {
  position: absolute; inset: 0;
  /* Much lighter overlay — image stays crisp, only a soft vignette at the
     bottom-left so the title + CTAs stay legible. */
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(11,9,8,.55) 100%),
    linear-gradient(90deg,  rgba(11,9,8,.25) 0%, transparent 55%);
  pointer-events: none;
}
.hero-slider-content {
  position: absolute;
  left: 0; right: 0; bottom: clamp(80px, 10vh, 140px);
  z-index: 2;
}
.hero-slider-content .display-xl {
  color: var(--bone);
  max-width: 14ch;
  margin: 14px 0 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-slider-tagline {
  max-width: 56ch;
  color: rgba(245,239,230,.88);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}
.hero-slider-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,230,.18);
  max-width: 760px;
}
.hero-slider-meta > div { display: flex; flex-direction: column; }
.hero-slider-meta strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--gold);
}
.hero-slider-meta span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,230,.6);
  margin-top: 2px;
}
.hero-slider-ctas {
  display: flex; gap: 14px; margin-top: 28px;
  flex-wrap: wrap;
}
.hero-slider-ctas .cta-btn-outline { color: var(--bone); border-color: rgba(245,239,230,.55); }
.hero-slider-ctas .cta-btn-outline:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* Arrow buttons */
.hero-slider-prev, .hero-slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,239,230,.4);
  color: var(--bone);
  background: rgba(11,9,8,.28);
  backdrop-filter: blur(4px);
  transition: all .3s var(--ease);
}
.hero-slider-prev { left: clamp(16px, 3vw, 36px); }
.hero-slider-next { right: clamp(16px, 3vw, 36px); }
.hero-slider-prev:hover, .hero-slider-next:hover {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold);
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 3;
}
.hero-slider-dot {
  width: 34px; height: 2px;
  background: rgba(245,239,230,.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .35s var(--ease), width .35s var(--ease);
}
.hero-slider-dot:hover { background: rgba(245,239,230,.7); }
.hero-slider-dot.is-active { background: var(--gold); width: 56px; }

@media (max-width: 1024px) {
  .hero-slider { height: clamp(520px, 74vh, 720px); }
  .hero-slider-meta { gap: 24px; }
  .hero-slider-meta strong { font-size: 24px; }
}
@media (max-width: 720px) {
  .hero-slider { height: 86vh; min-height: 560px; }
  .hero-slider-content { bottom: 96px; }
  .hero-slider-prev, .hero-slider-next { width: 42px; height: 42px; }
  .hero-slider-prev { left: 12px; }
  .hero-slider-next { right: 12px; }
  .hero-slider-meta { gap: 18px; padding-top: 18px; margin-top: 24px; }
  .hero-slider-meta strong { font-size: 20px; }
  .hero-slider-meta span { font-size: 10px; }
  .hero-slider-tagline { font-size: 15px; }
  .hero-slider-ctas .cta-btn, .hero-slider-ctas .cta-btn-outline { padding: 10px 16px; font-size: 11px; }
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.google-reviews { background: var(--paper); }
.g-reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}
.g-star { display: inline-flex; align-items: center; gap: 10px; }
.g-star strong { color: var(--ink); font-family: var(--font-display); font-size: 32px; font-weight: 300; }
.g-star .muted { font-size: 14px; }

.g-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g-review {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.g-review:hover { border-color: var(--gold); transform: translateY(-2px); }
.g-review-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.g-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  overflow: hidden;
}
.g-avatar img { width: 100%; height: 100%; object-fit: cover; }
.g-meta { display: flex; flex-direction: column; min-width: 0; }
.g-meta strong { font-size: 14px; color: var(--ink); }
.g-meta .muted { font-size: 12px; }
.g-stars { display: inline-flex; gap: 1px; align-self: center; }
.g-body { font-size: 14px; line-height: 1.65; color: rgba(11,9,8,.78); }

@media (max-width: 1024px) {
  .g-reviews-head { grid-template-columns: 1fr; }
  .g-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .g-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING PAGE — form + summary aside
   ============================================================ */
.book-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.book-form { display: flex; flex-direction: column; gap: 12px; }
.book-form .eyebrow { display: block; margin-bottom: 14px; }
.book-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h) + 24px); }
.book-summary {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 26px 24px;
}
.book-summary ul { list-style: none; margin: 14px 0 18px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.book-summary li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 6px 0;
  font-size: 13px;
}
.book-summary li span { color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-size: 11px; }
.book-summary li strong { color: var(--ink); font-weight: 500; text-align: right; max-width: 60%; }
.book-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display); font-weight: 300;
  font-size: 22px;
  color: var(--ink);
}
.book-summary-total span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.book-summary-fine { font-size: 11px; color: var(--muted); line-height: 1.55; margin-top: 10px; }

.book-aside-block {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 22px;
}
.book-aside-tel {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--gold-deep);
  margin-top: 6px;
}
.book-aside-tel:hover { color: var(--ink); }

@media (max-width: 1024px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-aside { position: static; }
}

/* ============================================================
   HOLIDAY PACKAGES — listing + detail
   ============================================================ */
.pkg-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pkg-featured:hover { border-color: var(--gold); box-shadow: 0 24px 64px -24px rgba(0,0,0,.18); }
.pkg-featured-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pkg-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pkg-featured:hover .pkg-featured-img img { transform: scale(1.04); }
.pkg-featured-body { padding: 32px 36px 36px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pkg-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 16px 44px -16px rgba(0,0,0,.16); }
.pkg-card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pkg-card:hover .pkg-card-img img { transform: scale(1.04); }
.pkg-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }

.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.pkg-duration {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(11,9,8,.75);
  color: var(--bone);
  padding: 5px 11px;
  font-size: 11px;
  letter-spacing: .04em;
  z-index: 2;
}
.pkg-meta {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.pkg-card h3, .pkg-featured-body h2 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 10px;
}
.pkg-card h3 { font-size: 22px; }
.pkg-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}
.pkg-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pkg-price-label {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.pkg-price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink);
}
.pkg-price small { font-size: 12px; color: var(--muted); margin-left: 4px; }

/* Detail */
.pkg-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.pkg-detail-body p { margin-bottom: 16px; line-height: 1.8; color: rgba(11,9,8,.82); }
.pkg-detail-body h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 3.5vw, 40px); }

.pkg-itinerary {
  list-style: none;
  margin-top: 16px;
  padding-left: 0;
  border-top: 1px solid var(--line);
}
.pkg-itinerary li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.pkg-day-no {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--gold-deep);
}
.pkg-day-body h4 { font-family: var(--font-display); font-weight: 400; font-size: 19px; margin-bottom: 6px; }
.pkg-day-body p { font-size: 14px; color: rgba(11,9,8,.78); line-height: 1.65; margin: 0; }

.pkg-sidecard {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 30px 28px 28px;
  display: flex; flex-direction: column;
}
.pkg-sidecard .label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 8px;
}
.pkg-sidecard .price-big {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300;
  color: var(--ink);
  margin-bottom: 22px;
}
.pkg-sidecard .price-big small { font-size: 13px; color: var(--muted); margin-left: 4px; }

.pkg-included { padding: 16px 0 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.pkg-included-title {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft); margin-bottom: 12px;
}
.pkg-included ul { list-style: none; padding: 0; }
.pkg-included li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.pkg-included li svg { margin-top: 4px; flex: 0 0 auto; }

.pkg-best-for {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.pkg-best-for strong {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}
.pkg-best-for span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 1024px) {
  .pkg-featured { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .pkg-sidecard { position: static; }
}
@media (max-width: 560px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-itinerary li { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   LOCATION MAP IFRAME (replacing old SVG)
   ============================================================ */
.location-map { padding: 0; }
.location-map-frame { width: 100%; height: 100%; border: 0; display: block; min-height: 360px; }
.location-map-link {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 8px 14px;
  background: rgba(11,9,8,.85);
  color: var(--bone) !important;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .3s var(--ease);
}
.location-map-link:hover { background: var(--gold); color: var(--ink) !important; }
.location-map-fallback { padding: 24px; }

/* ============================================================
   YOUTUBE REVIEWS (lite-embed — thumbnail then iframe on click)
   ============================================================ */
.yt-section { background: var(--paper); }
.yt-section.on-ink { background: var(--ink); color: var(--bone); }
.yt-section.on-ink .display-md,
.yt-section.on-ink .display-lg { color: var(--bone); }
.yt-section.on-ink .body-lede { color: rgba(245,239,230,.78); }

.yt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.yt-grid.size-3 { grid-template-columns: repeat(3, 1fr); }

.yt-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.on-ink .yt-card { background: var(--ink-2); border-color: var(--line-light); }
.yt-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 18px 48px -16px rgba(0,0,0,.18); }

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.yt-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity .35s var(--ease), transform 1s var(--ease);
}
.yt-thumb:hover img { opacity: 1; transform: scale(1.03); }
.yt-thumb iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(11,9,8,.78);
  border: 1px solid var(--gold);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  z-index: 2;
}
.yt-thumb:hover .yt-play { background: var(--gold); color: var(--ink); transform: translate(-50%, -50%) scale(1.05); }
.yt-play svg { margin-left: 4px; }
.yt-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  padding: 3px 8px;
  background: rgba(11,9,8,.78);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: .04em;
  z-index: 2;
}
.yt-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.on-ink .yt-body { color: var(--bone); }
.yt-body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.yt-body .yt-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
}
.on-ink .yt-body .yt-meta { color: rgba(245,239,230,.55); }
.yt-body .yt-meta strong { color: var(--gold-deep); font-weight: 600; }
.on-ink .yt-body .yt-meta strong { color: var(--gold); }
.yt-body p {
  font-size: 13px;
  color: rgba(11,9,8,.7);
  line-height: 1.55;
  margin-top: 10px;
}
.on-ink .yt-body p { color: rgba(245,239,230,.7); }

/* Featured card: same size as others, just a subtle gold accent + small badge */
.yt-grid .yt-card.is-feature { border-color: var(--gold); }
.yt-grid .yt-card.is-feature .yt-thumb::after {
  content: 'Featured';
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 3px 8px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}

/* Scroll-reveal stagger on YouTube cards */
.yt-card.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.yt-card.reveal:nth-child(1) { transition-delay: 0s; }
.yt-card.reveal:nth-child(2) { transition-delay: .08s; }
.yt-card.reveal:nth-child(3) { transition-delay: .16s; }
.yt-card.reveal:nth-child(4) { transition-delay: .24s; }

/* Pulse ring around the play button (slows when card is hovered) */
@keyframes yt-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(201,169,97,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(201,169,97,0);   }
  100% { box-shadow: 0 0 0 0   rgba(201,169,97,0);   }
}
.yt-play { animation: yt-pulse 2.4s ease-out infinite; }
.yt-thumb:hover .yt-play { animation-duration: 1.6s; }
@media (prefers-reduced-motion: reduce) {
  .yt-play { animation: none; }
}

@media (max-width: 1024px) {
  .yt-grid, .yt-grid.size-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .yt-grid, .yt-grid.size-3 { grid-template-columns: 1fr; }
  .yt-play { width: 52px; height: 52px; }
}

/* ============================================================
   ROOM DETAIL PAGE
   ============================================================ */
.room-hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(40px, 5vw, 72px) 0 0;
}
.room-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  margin-top: 24px;
}
.room-hero-text { padding-bottom: 56px; }
.room-hero-text h1 { color: var(--bone); margin: 14px 0 18px; }
.room-hero-text .body-lede { color: rgba(245,239,230,.78); }
.room-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 22px;
  margin-top: 24px;
  border-top: 1px solid var(--line-light);
}
.room-hero-meta .stat { display: flex; flex-direction: column; }
.room-hero-meta .stat strong {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 300;
  color: var(--gold);
}
.room-hero-meta .stat span {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,239,230,.6);
  margin-top: 2px;
}
.room-hero-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.room-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-hero-img:hover img { transform: scale(1.04); }

.room-availability {
  background: var(--ink-2);
  color: var(--bone);
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  position: sticky;
  top: var(--nav-h);
  z-index: 30;
}
.room-availability-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.room-availability .price {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--bone);
  font-weight: 300;
}
.room-availability .price small {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-left: 6px;
}
.room-availability .nights { font-size: 12px; color: rgba(245,239,230,.55); letter-spacing: .06em; }
.room-availability .cta-btn { margin-left: auto; }

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 32px;
}
.room-detail-text p { margin-bottom: 16px; line-height: 1.8; color: rgba(11,9,8,.82); }
.room-detail-text h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 3.5vw, 40px); margin: 8px 0 18px; }

.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-top: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.room-amenity { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.room-amenity svg { color: var(--gold-deep); flex: 0 0 auto; }

.room-sidecard {
  position: sticky;
  top: calc(var(--nav-h) + 80px);
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 28px 26px;
}
.room-sidecard .label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 12px;
}
.room-sidecard .price-big {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 300;
  color: var(--ink);
}
.room-sidecard .price-big small { font-size: 13px; color: var(--muted); margin-left: 4px; }
.room-sidecard .row { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink); }
.room-sidecard .row svg { color: var(--gold-deep); flex: 0 0 auto; }
.room-sidecard .row:first-of-type { padding-top: 18px; margin-top: 10px; }
.room-sidecard .cta-btn { width: 100%; justify-content: center; margin-top: 16px; }

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.room-gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.room-gallery a:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 4 / 3; }
.room-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.room-gallery a:hover img { transform: scale(1.04); }
.room-gallery figcaption {
  position: absolute; bottom: 10px; left: 10px;
  padding: 4px 10px;
  background: rgba(11,9,8,.7);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: .04em;
}

.room-related {
  background: var(--bone);
  border-top: 1px solid var(--line);
}
.room-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .room-hero-grid { grid-template-columns: 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .room-sidecard { position: static; }
  .room-related-grid { grid-template-columns: repeat(2, 1fr); }
  .room-gallery { grid-template-columns: repeat(2, 1fr); }
  .room-gallery a:first-child { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .room-amenities { grid-template-columns: 1fr; }
  .room-related-grid, .room-gallery { grid-template-columns: 1fr; }
  .room-gallery a:first-child { grid-column: auto; }
  .room-availability-inner { gap: 12px; }
  .room-availability .cta-btn { width: 100%; margin-left: 0; justify-content: center; }
}
