/* ============================================================
   THE DARLING — Sydney · Forbes Five-Star
   Cinematic luxury hotel site. Single theme — Nocturne —
   driven by [data-theme="nocturne"]; accents/nav/motion via data-attrs + vars.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Prata&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ---------- Theme tokens ---------- */
:root {
  --container: 1380px;
  --pad: clamp(20px, 5vw, 84px);
  --gap: clamp(24px, 4vw, 64px);

  --grotesk: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --display-weight: 500;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-y: 34px;
}

/* Nocturne: warm near-black + copper — the only theme this site uses */
:root[data-theme="nocturne"] {
  --bg:      #100D0E;
  --bg-2:    #161113;
  --bg-3:    #1D1618;
  --ink:     #EFE7E2;
  --ink-2:   #CDC2BB;
  --muted:   rgba(239, 231, 226, 0.55);
  --faint:   rgba(239, 231, 226, 0.30);
  --line:    rgba(239, 231, 226, 0.13);
  --line-2:  rgba(239, 231, 226, 0.07);
  --accent:  #F66538;          /* brand orange */
  --accent-ink: #100D0E;
  --display: 'Prata', Georgia, serif;
  --display-weight: 500;
  --ph-a: rgba(246,101,56,0.07);
  --ph-b: rgba(239,231,226,0.04);
}

/* Display-font override (Tweaks) */
:root[data-display="cormorant"] { --display: 'Cormorant Garamond', Georgia, serif; }
:root[data-display="playfair"]  { --display: 'Prata', Georgia, serif; }
:root[data-display="prata"]     { --display: 'Prata', Georgia, serif; }
:root[data-display="garamond"]  { --display: 'EB Garamond', Georgia, serif; --display-weight: 500; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* Grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--display);
  font-weight: var(--display-weight);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.kicker {
  font-family: var(--grotesk);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.kicker--accent { color: var(--accent); }
.lede {
  color: var(--ink-2);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.75;
  max-width: 46ch;
}
.serif-italic { font-family: var(--display); font-style: italic; font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: clamp(80px, 11vw, 180px); }
.section--tight { padding-block: clamp(56px, 7vw, 110px); }
.bg-2 { background: var(--bg-2); }
.eyebrow-row {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.eyebrow-row .idx { color: var(--accent); font-size: 0.7rem; letter-spacing: 0.2em; }
.section-title {
  font-family: var(--display); font-weight: var(--display-weight);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem); line-height: 1.05;
  letter-spacing: -0.015em;
}
.hr { height: 1px; background: var(--line); border: 0; }

/* ---------- Placeholders ---------- */
.ph {
  position: relative; overflow: hidden;
  background-color: var(--bg-3);
  background-image:
    repeating-linear-gradient(135deg, var(--ph-a) 0 2px, transparent 2px 11px),
    repeating-linear-gradient(45deg, var(--ph-b) 0 2px, transparent 2px 11px);
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.ph::before {
  content: attr(data-label);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint);
  margin: 14px 16px;
  border: 1px solid var(--line);
  padding: 5px 9px; border-radius: 2px;
  backdrop-filter: blur(2px);
}
.ph--center { align-items: center; justify-content: center; }
.ph--center::before { margin: 0; }
.media { overflow: hidden; }
.media .ph { width: 100%; height: 100%; transition: transform 1.1s var(--ease); }
.media:hover .ph { transform: scale(1.045); }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  padding: 15px 26px;
  border: 2px solid rgba(242, 237, 231, 0.7);
  border-radius: 999px;
  color: var(--ink);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn--solid { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn--solid:hover { background: transparent; color: var(--ink); border-color: var(--line); }

.link-underline {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); position: relative; padding-bottom: 6px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--line); transform-origin: right; transition: transform .5s var(--ease), background .5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(0); }
.link-underline .arrow { color: var(--accent); transition: transform .5s var(--ease); }
.link-underline:hover .arrow { transform: translateX(6px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 22px var(--pad);
  transition: background .6s var(--ease), padding .6s var(--ease), border-color .6s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: color-mix(in oklab, var(--bg) 95%, transparent);
  backdrop-filter: blur(20px) saturate(1.1);
  padding-block: 16px;
  border-bottom: 1px solid var(--line-2);
}
.nav__brand {
  font-family: var(--display); font-weight: var(--display-weight);
  font-size: 1.4rem; letter-spacing: 0.02em; line-height: 1;
  justify-self: start; grid-column: 1;
}
.nav__brand small { display: block; font-family: var(--grotesk); font-size: 0.52rem; letter-spacing: 0.34em; color: var(--muted); margin-top: 5px; }
.nav__center { grid-column: 2; display: flex; gap: 34px; }
.nav__center a { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); transition: color .4s; }
.nav__center a:hover { color: var(--accent); }
.nav__right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav__reserve {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  background: var(--accent); color: var(--accent-ink); border: 1px solid var(--accent);
  border-radius: 999px; padding: 11px 22px; white-space: nowrap;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.nav__reserve:hover { background: transparent; color: var(--ink); border-color: var(--line); }
.nav__menu {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.nav__menu .bars { display: inline-flex; flex-direction: column; gap: 4px; width: 22px; }
.nav__menu .bars span { height: 1px; background: var(--ink); transition: transform .4s var(--ease); }
.nav__menu:hover .bars span:first-child { transform: translateX(4px); }

/* Nav style B — centered wordmark */
:root[data-nav="center"] .nav { grid-template-columns: 1fr auto 1fr; }
:root[data-nav="center"] .nav__brand { grid-column: 2; justify-self: center; text-align: center; font-size: 1.55rem; }
:root[data-nav="center"] .nav__center { grid-column: 1; justify-self: start; }
:root[data-nav="center"] .nav__right { grid-column: 3; }
@media (min-width: 941px) { .nav__menu { display: none !important; } }
@media (max-width: 940px) { .nav__center { display: none !important; } }
@media (max-width: 600px) { .nav__reserve { font-size: 0.6rem; padding: 8px 14px; letter-spacing: 0.12em; white-space: nowrap; } }
@media (max-width: 768px) { .hero__lede-single { white-space: normal !important; max-width: 32ch !important; } }

/* ---------- Fullscreen menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: var(--bg);
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease);
  pointer-events: none;
}
.menu-overlay.open { clip-path: inset(0 0 0% 0); pointer-events: auto; }
.menu-overlay__nav { padding: clamp(80px, 11vw, 150px) var(--pad) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.menu-overlay__close { position: absolute; top: 24px; right: var(--pad); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; gap: 10px; align-items: center; }
.menu-list { list-style: none; display: flex; flex-direction: column; gap: clamp(4px, 1vw, 12px); }
.menu-list li { overflow: hidden; }
.menu-list a {
  font-family: var(--display); font-weight: var(--display-weight);
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.12; letter-spacing: -0.01em;
  color: var(--ink-2); display: inline-flex; align-items: baseline; gap: 18px;
  transition: color .4s var(--ease), transform .6s var(--ease);
  transform: translateY(110%);
}
.menu-overlay.open .menu-list a { transform: translateY(0); }
.menu-list a:hover { color: var(--accent); }
.menu-list a .num { font-family: var(--grotesk); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--faint); }
.menu-overlay__aside { position: relative; }
.menu-overlay__aside .ph { width: 100%; height: 100%; }
.menu-overlay__foot { margin-top: auto; padding-top: 40px; display: flex; gap: 30px; flex-wrap: wrap; }
.menu-overlay__foot a { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.menu-overlay__foot a:hover { color: var(--accent); }
@media (max-width: 820px) { .menu-overlay { grid-template-columns: 1fr; } .menu-overlay__aside { display: none; } }

/* Stagger delays for menu items */
.menu-list li:nth-child(1) a { transition-delay: .08s; }
.menu-list li:nth-child(2) a { transition-delay: .14s; }
.menu-list li:nth-child(3) a { transition-delay: .20s; }
.menu-list li:nth-child(4) a { transition-delay: .26s; }
.menu-list li:nth-child(5) a { transition-delay: .32s; }
.menu-list li:nth-child(6) a { transition-delay: .38s; }
.menu-list li:nth-child(7) a { transition-delay: .44s; }
.menu-list li:nth-child(8) a { transition-delay: .50s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; display: flex; }
.hero__media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; }
.hero__media .ph { width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, color-mix(in oklab, var(--bg) 96%, transparent) 2%, transparent 42%),
    linear-gradient(to bottom, color-mix(in oklab, var(--bg) 60%, transparent), transparent 30%),
    radial-gradient(120% 90% at 20% 90%, color-mix(in oklab, var(--bg) 70%, transparent), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; align-self: center; padding-bottom: 0; text-align: center; }
.hero__kicker { display: flex; gap: 16px; align-items: center; margin-bottom: 26px; }
.hero__kicker .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero__title { font-size: clamp(2.2rem, 7vw, 6.4rem); white-space: nowrap; }
.hero__break { display: inline; }
@media (max-width: 600px) {
  .hero__title { font-size: clamp(2.6rem, 11vw, 3.6rem); white-space: normal; }
  .hero__break { display: block; }
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero__meta { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; margin-top: clamp(14px, 2vw, 24px); }
.hero__meta .lede { text-align: center; max-width: 38ch; }
.hero__stars { display: flex; align-items: center; gap: 10px; justify-content: center; }
.hero__stars .stars { letter-spacing: 3px; color: var(--accent); font-size: 0.85rem; }
.hero__stars span { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hero__scroll {
  position: absolute; bottom: clamp(28px, 4vw, 44px); right: var(--pad); z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll .rule { width: 54px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll .rule::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%); animation: scrollrule 2.6s var(--ease) infinite; }
@keyframes scrollrule { 0% { transform: translateX(-100%); } 55%,100% { transform: translateX(100%); } }

/* ============================================================
   OVERVIEW
   ============================================================ */
.overview { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--gap); align-items: start; }
.overview__statement { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(1.7rem, 3.4vw, 3.15rem); line-height: 1.16; letter-spacing: -0.01em; max-width: 18ch; }
.overview__statement em { font-style: italic; color: var(--accent); }
.overview__side { padding-bottom: 8px; }
.overview__side .lede { margin-bottom: 30px; }
.overview__media { margin-top: clamp(48px, 6vw, 96px); display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.overview__media .media:first-child { aspect-ratio: 4/5; }
.overview__media .media:last-child { aspect-ratio: 4/5; margin-top: clamp(40px, 6vw, 90px); }
@media (max-width: 860px) { .overview { grid-template-columns: 1fr; gap: 36px; } .overview__media { grid-template-columns: 1fr; overflow: visible; row-gap: 24px; } .overview__media .media:last-child { margin-top: 0; } }

/* ============================================================
   ROOMS
   ============================================================ */
.room { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center; padding-block: clamp(34px, 4vw, 60px); }
.room + .room { border-top: 1px solid var(--line-2); }
.room__media { aspect-ratio: 11/9; }
.room:nth-child(even) .room__text { order: -1; }
.room__name { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.02; margin-bottom: 18px; }
.room__desc { color: var(--muted); max-width: 42ch; margin-bottom: 30px; }
.meta-grid { display: grid; grid-template-columns: repeat(4, auto); gap: 26px 38px; margin-bottom: 34px; justify-content: start; }
.meta-grid .m-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.meta-grid .m-val { font-family: var(--display); font-size: 1.25rem; white-space: nowrap; }
@media (max-width: 860px) { .room { grid-template-columns: 1fr; gap: 26px; } .room:nth-child(even) .room__text { order: 0; } .meta-grid { grid-template-columns: repeat(3, auto); gap: 16px 20px; } .meta-grid .m-val { font-size: 1rem; } }

/* ============================================================
   DINING (grid of venues)
   ============================================================ */
.venue-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); align-items: start; }
.venue { grid-column: span 4; position: relative; }
.venue:nth-child(1) { grid-column: span 7; }
.venue:nth-child(2) { grid-column: span 5; }
.venue:nth-child(3) { grid-column: span 5; }
.venue:nth-child(4) { grid-column: span 7; }
.venue__media { aspect-ratio: 16/11; margin-bottom: 36px; overflow: hidden; }
.venue__media img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; transition: opacity 0.5s var(--ease), transform 0.6s var(--ease); }
.venue:hover .venue__media img { opacity: 1; transform: scale(1.03); }
@media (max-width: 860px) { .venue__media img { opacity: 1; } }
.venue:nth-child(2) .venue__media, .venue:nth-child(3) .venue__media { aspect-ratio: 4/3; }
.venue__head { display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 9px; margin-bottom: 12px; }
.venue__name { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.05; }
.venue__tag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.venue__desc { color: var(--muted); max-width: 50ch; }
@media (max-width: 860px) { .venue, .venue:nth-child(1n) { grid-column: span 12 !important; } }

/* ============================================================
   SPA (full-bleed immersive band)
   ============================================================ */
.band { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.band__media { position: absolute; inset: -10% 0; z-index: 0; }
.band__media .ph { width: 100%; height: 100%; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 100% at 30% 50%, color-mix(in oklab, var(--bg) 78%, transparent), color-mix(in oklab, var(--bg) 32%, transparent) 70%); }
.band__inner { position: relative; z-index: 2; max-width: min(92vw, 600px); }
.band__title { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.0; margin: 22px 0 26px; }
.band__title em { font-style: italic; color: var(--accent); }

/* ============================================================
   EXPERIENCES (hover-preview list)
   ============================================================ */
.exp { display: grid; grid-template-columns: 1fr 0.7fr; gap: var(--gap); align-items: start; }
.exp__list { border-top: 1px solid var(--line); }
.exp__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: clamp(20px, 2.4vw, 32px) 4px; border-bottom: 1px solid var(--line); cursor: pointer; position: relative; transition: padding-left .5s var(--ease); }
.exp__row:hover { padding-left: 22px; }
.exp__row .num { position: absolute; left: 0; font-size: 0.62rem; letter-spacing: 0.2em; color: var(--accent); opacity: 0; transition: opacity .4s; }
.exp__row:hover .num { opacity: 1; }
.exp__row h4 { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(1.5rem, 3vw, 2.5rem); color: var(--ink-2); transition: color .4s; }
.exp__row:hover h4 { color: var(--ink); }
.exp__row .tag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.exp__preview { position: sticky; top: 18vh; aspect-ratio: 3/4; }
.exp__preview .frame { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); }
.exp__preview .frame.active { opacity: 1; }
.exp__preview .ph { width: 100%; height: 100%; }
@media (max-width: 860px) { .exp { grid-template-columns: 1fr; } .exp__preview { display: none; } }
@media (max-width: 860px) {
  .exp__row .num { position: static; opacity: 1; margin-right: 10px; flex-shrink: 0; vertical-align: middle; }
  .exp__row .tag { display: none; }
  .exp__row__arrow { display: inline-block; color: var(--accent); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
  .exp__row.open .exp__row__arrow { transform: rotate(180deg); }
}
@media (min-width: 861px) {
  .exp__row__arrow { display: none; }
}

.exp__inline-img { display: none; }
@media (max-width: 860px) {
  .exp__row { flex-wrap: wrap; }
  .exp__inline-img {
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
  }
  .exp__row.open .exp__inline-img {
    max-height: 800px;
    opacity: 1;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .exp__inline-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
  }
}

/* ============================================================
   NEIGHBOURHOOD
   ============================================================ */
.hood { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--gap); align-items: center; }
.hood__list { list-style: none; margin-top: 30px; border-top: 1px solid var(--line); }
.hood__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line-2); }
.hood__list .place { font-family: var(--display); font-size: 1.35rem; }
.hood__list .dist { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hood__map { aspect-ratio: 5/6; position: relative; }
.hood__map .ph { width: 100%; height: 100%; }
@media (max-width: 860px) { .hood { grid-template-columns: 1fr; } }

/* ============================================================
   OFFERS
   ============================================================ */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.offer { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 26px; }
.offer__media { aspect-ratio: 3/4; margin-bottom: 24px; order: -1; }
.offer__tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.offer__name { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.08; margin-bottom: 12px; }
.offer__desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; flex: 1; }
@media (max-width: 860px) { .offers-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(120px, 14vw, 220px); gap: clamp(10px, 1.2vw, 18px); }
.gallery .media { grid-column: span 4; grid-row: span 2; }
.gallery .media:nth-child(1) { grid-column: span 5; grid-row: span 3; }
.gallery .media:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.gallery .media:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery .media:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery .media:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.gallery .media:nth-child(6) { grid-column: span 5; grid-row: span 2; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .media, .gallery .media:nth-child(1n) { grid-column: span 1 !important; grid-row: span 1 !important; } }

/* ============================================================
   PRESS & AWARDS (marquee)
   ============================================================ */
.awards { overflow: hidden; padding-top: clamp(40px, 5vw, 90px); }
.marquee { display: flex; gap: 0; white-space: nowrap; will-change: transform; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__group span { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(1.3rem, 3.3vw, 2.6rem); padding-left: clamp(20px, 3vw, 44px); color: var(--ink-2); }
.marquee__group span::after { content: "●"; color: var(--accent); font-size: 0.35em; vertical-align: middle; margin-left: clamp(20px, 3vw, 44px); }
.press-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin-top: clamp(48px, 6vw, 90px); border-top: 1px solid var(--line); padding-top: clamp(34px, 4vw, 56px); }
.press { }
.press__year { font-size: 0.64rem; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 14px; }
.press__name { font-family: var(--display); font-size: 1.3rem; line-height: 1.2; margin-bottom: 8px; }
.press__src { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) { .press-row { grid-template-columns: 1fr 1fr; gap: 30px; } }

/* ============================================================
   RESERVE CTA
   ============================================================ */
.reserve { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.reserve__media { position: absolute; inset: -10% 0; z-index: 0; }
.reserve__media .ph { width: 100%; height: 100%; }
.reserve__scrim { position: absolute; inset: 0; z-index: 1; background: color-mix(in oklab, var(--bg) 64%, transparent); }
.reserve__inner { position: relative; z-index: 2; max-width: min(96vw, 1000px); }
.reserve__title { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(2.6rem, 5.6vw, 5rem); line-height: 0.98; margin: 10px 0 160px; white-space: nowrap; }
.reserve__title em { font-style: italic; color: var(--accent); }
.reserve__contact { margin-top: 30px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.reserve__contact a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-top: clamp(70px, 8vw, 120px); padding-bottom: 40px; background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--gap); padding-bottom: clamp(56px, 7vw, 96px); border-bottom: 1px solid var(--line); }
.footer__brand { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(2rem, 3vw, 2.6rem); line-height: 1; }
.footer__brand small { display: block; font-family: var(--grotesk); font-size: 0.56rem; letter-spacing: 0.34em; color: var(--muted); margin-top: 10px; }
.footer__addr { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-top: 24px; }
.footer__col h5 { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: 20px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer__col a { font-size: 0.92rem; color: var(--ink-2); transition: color .4s; }
.footer__col a:hover { color: var(--accent); }
.footer__news p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; max-width: 32ch; }
.news-form { display: flex; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 12px; gap: 12px; }
.news-form input { flex: 1; background: none; border: none; color: var(--ink); font-size: 0.92rem; letter-spacing: 0.02em; }
.news-form input::placeholder { color: var(--faint); }
.news-form input:focus { outline: none; }
.news-form button { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 32px; }
.footer__bottom .copy { font-size: 0.66rem; letter-spacing: 0.12em; color: var(--faint); text-transform: uppercase; }
.footer__social { display: flex; gap: 24px; }
.footer__social a { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.footer__social a:hover { color: var(--accent); }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(var(--reveal-y)); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* Line-mask reveal for big headings */
.mask { overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.mask > * { transform: translateY(102%); transition: transform 1.1s var(--ease); }
.mask.in > * { transform: translateY(0); }

/* Slide-in overrides for overview images */
.reveal.slide-left  { transform: translateX(-80px); opacity: 0; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.slide-right { transform: translateX( 80px); opacity: 0; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.slide-left.in,
.reveal.slide-right.in { opacity: 1; transform: translateX(0); }

/* Cross-image hover — hovered image grows, sibling shrinks */
.overview__media { overflow: hidden; }
@media (max-width: 860px) { .overview__media { overflow: visible; } }
.overview__media .slide-left,
.overview__media .slide-right {
  transition: opacity 1s var(--ease), transform 1s var(--ease), scale 0.5s var(--ease);
  scale: 1;
}
.overview__media:has(.slide-left:hover) .slide-left  { scale: 1.04; }
.overview__media:has(.slide-left:hover) .slide-right { scale: 0.96; opacity: 0.3; }
.overview__media:has(.slide-right:hover) .slide-right { scale: 1.04; }
.overview__media:has(.slide-right:hover) .slide-left  { scale: 0.96; opacity: 0.3; }

@media (max-width: 860px) {
  .reveal.slide-left, .reveal.slide-right { transform: translateY(36px); }
  .reveal.slide-left.in, .reveal.slide-right.in { transform: translateY(0); }
}

/* ---- Facilities ---- */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.facility-card { display: flex; flex-direction: column; }
.facility-card__media { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 28px; }
.facility-card__media .ph { width: 100%; height: 100%; }
.facility-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; transition: transform 0.6s var(--ease), opacity 0.5s var(--ease); }
.facility-card:hover .facility-card__media img { transform: scale(1.04); opacity: 1; }
@media (max-width: 860px) { .facility-card__media img { opacity: 1; } }
.facility-card__tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 14px; }
.facility-card__name { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.1; margin-bottom: 16px; }
.facility-card__desc { font-size: 0.88rem; line-height: 1.8; color: var(--muted); }
@media (max-width: 860px) { .facility-grid { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 60px); } }

/* Room slide-in — explicit direction classes, re-trigger on scroll */
.room-slide,
.room-text-slide { opacity: 0; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.room-slide { overflow: hidden; transform: none !important; } /* container stays in place — image slides inside */
.room-text-slide { transition-delay: 0.12s; }

/* Direction */
.from-left  { transform: translateX(-90px); }
.from-right { transform: translateX( 90px); }

/* Revealed state */
.room-slide.in,
.room-text-slide.in { opacity: 1 !important; transform: translateX(0) !important; }

/* Hover: image scales */
.room-slide img { transition: transform 1s var(--ease), opacity 0.9s var(--ease); display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.room-slide.from-left  img { transform: translateX(-40px); }
.room-slide.from-right img { transform: translateX( 40px); }
.room-slide.in img { opacity: 0.7 !important; transform: translateX(0) !important; }
.room-slide.in:hover img { transform: scale(1.05) !important; opacity: 1 !important; }
@media (max-width: 860px) { .room-slide img { opacity: 1; } }

/* Mobile: fade only, no horizontal slide */
@media (max-width: 860px) {
  .from-left, .from-right { transform: none; }
  .room-slide.in, .room-text-slide.in { opacity: 1 !important; transform: none !important; }
}

/* Motion off */
:root[data-motion="off"] .reveal,
:root[data-motion="off"] .mask > * { opacity: 1 !important; transform: none !important; transition: none !important; }
:root[data-motion="off"] .hero__scroll .rule::after { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .mask > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
