@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --bg:          #f8f8f8;
  --white:       #ffffff;
  --black:       #111111;
  --text:        #111111;
  --muted:       #888888;
  --light:       #bbbbbb;
  --border:      #e2e2e2;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', -apple-system, sans-serif;
  --nav-h:       72px;
  --xl:          120px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover:  cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: var(--scroll-pct, 0%);
  background: rgba(0,0,0,0.12);
  transition: none;
  pointer-events: none;
}

nav.transparent::after { background: rgba(255,255,255,0.2); }

nav.transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav.solid {
  background: rgba(248,248,248,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.nav-logo:hover { opacity: 0.6; }

nav.transparent .nav-logo { color: #fff; }

.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: filter 0.5s var(--ease);
}

nav.transparent .nav-logo-img { filter: invert(1); mix-blend-mode: screen; }
nav.solid .nav-logo-img      { filter: invert(0); mix-blend-mode: multiply; }

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: invert(1);
  margin-bottom: 18px;
  opacity: 0.85;
}

.footer-brand .nav-logo-img {
  filter: invert(1);
  mix-blend-mode: screen;
  height: 28px;
  margin-bottom: 18px;
}

.hero-logo {
  height: clamp(80px, 11vw, 150px);
  width: auto;
  margin: 0 auto 32px;
  display: block;
  animation: heroFadeUp 1.2s var(--ease) 0.4s both;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.72;
  transition: opacity 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active { opacity: 1; }

nav.transparent .nav-links a { color: #fff; }

.nav-book {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 24px;
  text-decoration: none;
  border: 1px solid;
  transition: background 0.35s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s;
  background: linear-gradient(to right, currentColor 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right;
}

nav.transparent .nav-book { color: #fff; border-color: rgba(255,255,255,0.45); }
nav.transparent .nav-book:hover { background-position: left; color: #111; border-color: #fff; }

nav.solid .nav-book { color: #111; border-color: #111; }
nav.solid .nav-book:hover { background-position: left; color: #fff; }

.nav-book:active { transform: scale(0.97); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
}

.nav-mobile span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.35s var(--ease);
}

nav.transparent .nav-mobile { color: #fff; }

.nav-mobile.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-drawer a:hover { opacity: 1; }

.nav-drawer-book {
  font-size: 11px !important;
  font-family: var(--sans) !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 36px;
  border: 1px solid rgba(255,255,255,0.35);
  opacity: 1 !important;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: screen;
}

.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.52) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-eye {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 32px;
  animation: heroFadeUp 1.2s var(--ease) 0.2s both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  animation: heroFadeUp 1.2s var(--ease) 0.4s both;
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.14em;
  opacity: 0.72;
  margin-bottom: 56px;
  animation: heroFadeUp 1.2s var(--ease) 0.6s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}

.hero-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 56px 40px;
  animation: heroFadeUp 1.4s var(--ease) 0.8s both;
}

.hero-meta-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta-side span,
.hero-meta-center span {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-meta-side--right {
  text-align: right;
}

.hero-meta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.22);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.85; transform: scaleY(0.6); }
}

/* ─── LAYOUT ──────────────────────────────────────────── */
.wrap   { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.wrap-w { max-width: 1440px; margin: 0 auto; padding: 0 56px; }

section { padding: var(--xl) 0; }

.label {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.022em;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-ghost-light {
  display: inline-block;
  padding: 13px 40px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.45s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s;
  animation: heroFadeUp 1.2s var(--ease) 0.8s both;
}

.btn-ghost-light:hover {
  background-position: left;
  color: #111;
  border-color: #fff;
}

.btn-ghost-light:active { transform: scale(0.97); }

.btn-ghost-dark {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(to right, #111 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.45s var(--ease), color 0.2s, transform 0.15s;
  width: fit-content;
}

.btn-ghost-dark:hover { background-position: left; color: #fff; }
.btn-ghost-dark:active { transform: scale(0.97); }

.btn-ghost-white {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.45s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s;
  width: fit-content;
}

.btn-ghost-white:hover { background-position: left; color: #111; border-color: #fff; }
.btn-ghost-white:active { transform: scale(0.97); }

/* ─── INTRO ───────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.intro-text { max-width: 480px; }

.intro-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-top: 28px;
  font-size: 15px;
}

.intro-stats {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  display: block;
  transition: opacity 0.3s;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.intro-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.intro-image img,
.parallax-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}

/* ─── ROOM CARDS (home) ───────────────────────────────── */
.rooms-home { background: var(--white); }

.rooms-home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.rooms-home-header a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.rooms-home-header a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--text);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s var(--ease), background 0.2s;
}

.rooms-home-header a:hover { color: #111; }
.rooms-home-header a:hover::after { transform: scaleX(1); }

.room-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.room-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.room-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--border);
  margin-bottom: 20px;
  position: relative;
}

.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

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

.room-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
}

.room-card:hover .room-card-img::after { background: rgba(0,0,0,0.1); }

.room-card-hover-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 22px;
  opacity: 0;
  white-space: nowrap;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.room-card:hover .room-card-hover-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.room-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}

.room-card:hover .room-card-name { opacity: 0.7; }

.room-card-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

/* ─── RESTAURANT SPLIT ────────────────────────────────── */
.rest-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.rest-split-img {
  overflow: hidden;
  position: relative;
}

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

.rest-split:hover .rest-split-img img { transform: scale(1.03); }

.rest-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px;
  background: #111;
  color: #fff;
}

.rest-split-content .label { color: rgba(255,255,255,0.35); }

.rest-split-content .section-title {
  color: #fff;
  margin-bottom: 24px;
}

.rest-split-content p {
  color: rgba(255,255,255,0.55);
  line-height: 1.88;
  margin-bottom: 44px;
  font-size: 15px;
}

/* ─── QUOTE ───────────────────────────────────────────── */
.quote-sec {
  background: var(--white);
  text-align: center;
  padding: var(--xl) 0;
  position: relative;
  overflow: hidden;
}

.quote-sec::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 280px;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(24px, 3.8vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: #111;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.quote-by {
  margin-top: 36px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── PRESS STRIP ─────────────────────────────────────── */
.press-strip {
  background: #111;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.press-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}

.press-marquee {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.press-item {
  display: inline-flex;
  align-items: center;
  padding: 20px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
  transition: color 0.2s;
}

.press-item:hover { color: rgba(255,255,255,0.7); }

.press-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin: 0 40px;
  flex-shrink: 0;
}

/* ─── AMENITIES ───────────────────────────────────────── */
.amenities { background: var(--bg); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.amenity {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.amenity:hover { background: var(--white); }

.amenity svg {
  width: 26px; height: 26px;
  margin: 0 auto 16px;
  display: block;
  stroke: var(--light);
  transition: stroke 0.25s;
}

.amenity:hover svg { stroke: var(--text); }

.amenity-name {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.amenity:hover .amenity-name { color: var(--text); }

/* ─── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  height: 52vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%; height: 110%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.page-hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: heroFadeUp 1s var(--ease) 0.1s both;
}

.page-hero-content .label { color: rgba(255,255,255,0.38); }

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.022em;
}

/* ─── ROOMS PAGE ──────────────────────────────────────── */
.room-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.room-entry:nth-child(even) .room-entry-img  { order: 2; }
.room-entry:nth-child(even) .room-entry-body { order: 1; }

.room-entry-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room-entry-img img {
  width: 100%; height: 110%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}

.room-entry:hover .room-entry-img img { transform: scale(1.04) translateY(-2%); }

.room-entry-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.room-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 18px;
}

.room-entry-name {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 20px;
}

.room-entry-desc {
  color: var(--muted);
  line-height: 1.88;
  margin-bottom: 40px;
  font-size: 14px;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 36px;
}

.room-spec {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.room-spec-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  display: block;
}

.room-spec-lab {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-price-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-price-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  margin: 4px 0 28px;
}

/* ─── RESTAURANT PAGE ─────────────────────────────────── */
.rest-about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
}

.rest-about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

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

.rest-about-text .section-title { margin-bottom: 32px; }

.rest-about-text p {
  color: var(--muted);
  line-height: 1.88;
  margin-bottom: 20px;
  font-size: 15px;
}

.rest-hours { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }

.rest-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.rest-hours-row span:last-child { color: var(--muted); }

.menu-section { background: var(--white); }
.menu-section .section-title { margin-bottom: 64px; }

.menu-cat { margin-bottom: 72px; }

.menu-cat-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.menu-row:last-child { border-bottom: none; }
.menu-row:hover { background: transparent; }

.menu-item-name { font-size: 14px; }

.menu-item-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.menu-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--muted);
}

/* ─── ABOUT PAGE ──────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.about-story-text p {
  color: var(--muted);
  line-height: 1.92;
  margin-bottom: 24px;
  font-size: 15px;
}

.about-img-tall {
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding-top: var(--xl);
  border-top: 1px solid var(--border);
}

.value-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--light);
  line-height: 1;
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 14px;
}

.value-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.82;
}

.activities { background: var(--white); }

.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.act-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.act-card img {
  width: 100%; height: 110%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}

.act-card:hover img { transform: scale(1.06) translateY(-2%); }

.act-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: background 0.4s ease;
}

.act-card:hover .act-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%); }

.act-label {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.act-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}

/* ─── BOOKING ─────────────────────────────────────────── */
.booking-top {
  height: 38vh;
  min-height: 300px;
  background: #111;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
}

.booking-top .wrap { padding-bottom: 64px; width: 100%; }

.booking-top h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.booking-top .label { color: rgba(255,255,255,0.38); }

.booking-body { padding: 88px 0 120px; }
.booking-form { max-width: 840px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-row.one   { grid-template-columns: 1fr; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--text);
  font-family: var(--sans);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.field textarea { resize: vertical; min-height: 100px; }

.room-picker {
  margin: 48px 0 40px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.room-picker-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.room-opt {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  margin-bottom: 2px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.2s;
  user-select: none;
}

.room-opt:hover { background: rgba(0,0,0,0.02); }
.room-opt.active { border-color: #111; }

.room-opt input[type="radio"] { display: none; }

.room-opt-img { width: 110px; height: 80px; overflow: hidden; flex-shrink: 0; }
.room-opt-img img { width: 100%; height: 100%; object-fit: cover; }

.room-opt-info { flex: 1; padding: 20px 24px; }

.room-opt-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 4px;
}

.room-opt-features { font-size: 12px; color: var(--muted); }

.room-opt-price { padding: 20px 28px; text-align: right; }

.room-opt-price .price-main {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  display: block;
}

.room-opt-price .price-per { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }

.price-box {
  background: #111;
  color: #fff;
  padding: 36px;
  margin: 40px 0;
  display: none;
}

.price-box.show { display: block; }

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.price-line:last-child { border-bottom: none; }

.price-line.total {
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s, transform 0.15s;
}

.btn-submit:hover { background: #2a2a2a; }
.btn-submit:active { transform: scale(0.99); }
.btn-submit:disabled { background: #555; cursor: default; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 88px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  color: #fff;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.78;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.sholm-credit {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.sholm-credit:hover { color: rgba(255,255,255,0.5); }

/* ─── REVEAL ANIMATION SYSTEM ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(5px);
  transition:
    opacity  0.65s var(--ease),
    transform 0.65s var(--ease),
    filter   0.65s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger: observe the parent, children animate with offsets */
.stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity  0.6s var(--ease),
    transform 0.6s var(--ease),
    filter   0.6s var(--ease);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 90ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 180ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 270ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 360ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 450ms; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ─── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .stagger-children > * {
    transition: opacity 0.3s ease !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-eye, .hero-title, .hero-sub, .btn-ghost-light,
  .hero-meta, .page-hero-content { animation: none !important; opacity: 1 !important; filter: none !important; transform: none !important; }

  .scroll-line, .hero-bg, .marquee-track { animation: none; }
  .room-entry-img img, .parallax-img, .intro-image img { transform: none !important; }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  nav, .wrap, .wrap-w { padding-left: 36px; padding-right: 36px; }
  .hero-meta { padding: 0 36px 36px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-grid { gap: 56px; }
}

@media (max-width: 768px) {
  :root { --xl: 72px; }

  nav { padding: 0 24px; }
  .nav-links, .nav-book { display: none; }
  .nav-mobile { display: flex; }
  .wrap, .wrap-w { padding: 0 24px; }
  .hero-meta { padding: 0 24px 32px; }
  .hero-meta-side { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-text { max-width: 100%; }
  .room-cards { grid-template-columns: 1fr; gap: 2px; }
  .rest-split { grid-template-columns: 1fr; }
  .rest-split-content { padding: 52px 32px; }

  .room-entry { grid-template-columns: 1fr; }
  .room-entry:nth-child(even) .room-entry-img,
  .room-entry:nth-child(even) .room-entry-body { order: unset; }
  .room-entry-body { padding: 40px 28px; }

  .rest-about { grid-template-columns: 1fr; gap: 48px; }
  .rest-about-img { position: relative; top: auto; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .act-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .booking-form { max-width: 100%; }
  .room-opt-img { width: 80px; height: 64px; }
  .press-label { display: none; }
  .rooms-home-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
