/* ═══════════════════════════════════════════════════════════════
   CIELO AZZURRO — Design System
   Palette: cool stone + teal + navy (distinct from Villa Aora)
   Type: Playfair Display + Space Grotesk
═══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --bg:           #f7f5f2;
  --bg-deep:      #edeae5;
  --dark:         #1b2a35;
  --dark-rich:    #131e27;
  --white:        #fafaf8;
  --teal:         #6ecdc8;
  --teal-deep:    #4db8b2;
  --teal-subtle:  rgba(110, 205, 200, 0.12);
  --sand:         #c9a882;
  --text:         #2c3540;
  --text-muted:   #7a8a95;
  --border:       rgba(44, 53, 64, 0.1);
  --border-light: rgba(250, 250, 248, 0.12);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Space Grotesk', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 84px;
  --container: 1280px;
  --section-pad: clamp(5rem, 10vw, 9rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; cursor: text; }

/* ── Custom cursor ── */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(110,205,200,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth),
              border-color 0.3s, background 0.3s, opacity 0.3s;
  mix-blend-mode: normal;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor.cursor--hover {
  width: 56px; height: 56px;
  background: rgba(110,205,200,0.08);
  border-color: var(--teal);
}
.cursor.cursor--drag {
  width: 64px; height: 64px;
  background: rgba(110,205,200,0.1);
  border-color: var(--teal);
}
@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
  body, button { cursor: auto; }
}

/* ── Typography base ── */
.label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
}
.label--light { color: var(--teal); opacity: 0.85; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* Stagger inside amenity rows */
.amenity-row__icon.reveal { transition-delay: 0s; }
.amenity-row__name.reveal { transition-delay: 0.1s; }
.amenity-row__desc.reveal { transition-delay: 0.2s; }
.amenity-row__list.reveal { transition-delay: 0.3s; }

/* ── Hero fade-in classes ── */
.fi-0 { opacity: 0; transform: translateY(1.25rem); animation: fadeUp 0.9s var(--ease-out) 0.2s forwards; }
.fi-1 { opacity: 0; transform: translateY(1.25rem); animation: fadeUp 1s var(--ease-out) 0.45s forwards; }
.fi-2 { opacity: 0; transform: translateY(1.25rem); animation: fadeUp 0.9s var(--ease-out) 0.7s forwards; }
.fi-3 { opacity: 0; transform: translateY(1.25rem); animation: fadeUp 0.9s var(--ease-out) 0.95s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FIXED NAV (mobile + post-hero on desktop)
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}
.nav.scrolled {
  opacity: 1;
  pointer-events: all;
  background: rgba(19, 30, 39, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
/* On mobile the nav is always visible */
@media (max-width: 768px) {
  .nav { opacity: 1; pointer-events: all; background: transparent; }
  .nav.scrolled { background: rgba(19, 30, 39, 0.92); }
}

.nav__inner {
  max-width: 100%;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { height: 58px; flex-shrink: 0; }
.nav__logo img { height: 58px; width: auto; object-fit: contain; opacity: 0.9; }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.75);
  position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.35s var(--ease-spring);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(110,205,200,0.4);
  border-radius: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.nav__cta:hover { color: var(--white); border-color: rgba(250,250,248,0.35); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(19,30,39,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay__close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.nav-overlay__close span {
  position: absolute; width: 22px; height: 1.5px; background: var(--white);
}
.nav-overlay__close span:first-child { transform: rotate(45deg); }
.nav-overlay__close span:last-child  { transform: rotate(-45deg); }
.nav-overlay__links { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.nav-overlay__item {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  color: rgba(250,250,248,0.85);
  transition: color 0.25s;
}
.nav-overlay__item:hover { color: var(--teal); }
.nav-overlay__item--cta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Split layout: photo left / brand panel right
═══════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 58fr 42fr;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}

/* ── Photo side ── */
.hero__photo {
  position: relative;
  overflow: hidden;
}
.hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.v-ready { opacity: 1; }
.hero__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(19,30,39,0.1) 0%, rgba(19,30,39,0.45) 100%);
}

/* Live badge — bottom left of video */
.hero__dots {
  position: absolute;
  bottom: 2rem; left: 2rem;
  z-index: 2;
}
.hero__dot--video {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.55);
  border: 1px solid rgba(250,250,248,0.15);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}
.hero__dot--video svg { color: var(--teal); }

/* Scroll cue — bottom center of photo */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}
.hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(110,205,200,0.8), transparent);
  animation: scrollDrop 2.2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  25%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── Brand panel ── */
.hero__panel {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 2.5rem clamp(2rem, 4vw, 4rem);
  border-left: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* Panel nav (desktop only, hidden on mobile) */
.hero__panel-nav {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: auto;
}
.hero__panel-nav a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
.hero__panel-nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--teal);
  transition: width 0.3s var(--ease-spring);
}
.hero__panel-nav a:hover { color: var(--text); }
.hero__panel-nav a:hover::after { width: 100%; }

/* Panel body — centered */
.hero__panel-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 3rem 0;
}
.hero__panel-logo-wrap {
  width: min(540px, 98%);
  margin-bottom: 2.5rem;
}
.hero__panel-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__panel-rule {
  width: 40px; height: 1px;
  background: var(--teal);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.hero__panel-location {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.hero__panel-desc {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 26ch;
}
.hero__panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  transition: background 0.3s, transform 0.25s var(--ease-spring);
}
.hero__panel-cta:hover {
  background: var(--teal);
  color: var(--dark-rich);
  transform: translateY(-2px);
}
.hero__panel-cta svg { transition: transform 0.3s var(--ease-spring); }
.hero__panel-cta:hover svg { transform: translate(3px,-2px); }

/* Panel footer — removed */
.hero__panel-score {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.hero__panel-score-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}
.hero__panel-score-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero__panel-score-text span:first-child {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}
.hero__panel-score-text span:last-child {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.hero__panel-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__panel-badge svg { color: var(--teal); }

/* ═══════════════════════════════════════════════════════════════
   TICKER MARQUEE
═══════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--dark);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(110,205,200,0.15);
  border-bottom: 1px solid rgba(110,205,200,0.15);
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  flex-shrink: 0;
}
.ticker__dot {
  color: var(--teal) !important;
  opacity: 0.6 !important;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   OPENING STATEMENT — full cinematic video
═══════════════════════════════════════════════════════════════ */
.statement {
  position: relative;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.statement__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.statement__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.statement__video.v-ready { opacity: 1; }
.statement__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19,30,39,0.55) 0%,
    rgba(19,30,39,0.45) 50%,
    rgba(19,30,39,0.65) 100%
  );
}
.statement__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}
.statement__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2rem;
}
.statement__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(250,250,248,0.92);
  border: none;
  padding: 0;
  margin-bottom: 2.75rem;
}
.statement__score {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  justify-content: center;
}
.statement__score-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}
.statement__score-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250,250,248,0.5);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--bg);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

/* Media */
.about__media { position: relative; }
.about__photo-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(27, 42, 53, 0.14);
}
.about__photo-wrap img {
  transition: transform 0.8s var(--ease-smooth);
}
.about__photo-wrap:hover img { transform: scale(1.04); }

.about__pull-quote {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--dark);
  padding: 1.5rem 1.75rem;
  max-width: 280px;
  border-left: 2px solid var(--teal);
  box-shadow: 0 12px 40px rgba(19, 30, 39, 0.22);
}
.about__pull-quote p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(250,250,248,0.85);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.about__pull-quote cite {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-style: normal;
}

/* Text */
.about__text { padding-bottom: 2rem; }
.about__text .label { margin-bottom: 1.25rem; display: block; }
.about__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.about__headline em {
  font-style: italic;
  color: var(--teal-deep);
}
.about__body {
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  max-width: 46ch;
}
.about__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__stat { flex: 1; text-align: center; }
.about__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about__stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about__stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — Scroll hijack (vertical scroll drives horizontal)
═══════════════════════════════════════════════════════════════ */
.gallery {
  /* height controlled by JS based on track width */
  background: var(--dark);
  position: relative;
}
.gallery__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery__header {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 4rem) 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.gallery__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-top: 0.5rem;
}
.gallery__headline em { font-style: italic; color: rgba(250,250,248,0.55); }
.gallery__progress {
  flex: 0 0 120px;
  height: 1px;
  background: rgba(250,250,248,0.12);
  position: relative;
  align-self: center;
}
.gallery__progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--teal);
  transition: width 0.1s linear;
}

.gallery__track {
  display: flex;
  gap: 10px;
  padding: 0 clamp(1.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
  flex: 1;
  will-change: transform;
}
.gallery__item {
  flex: 0 0 auto;
  width: 340px;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.gallery__item--wide { width: 520px; }
.gallery__item img { transition: transform 0.7s var(--ease-smooth); }
.gallery__item:hover img { transform: scale(1.04); }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(19,30,39,0.75), transparent);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.7);
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   AMENITIES — Sticky left / scrolling right panels
═══════════════════════════════════════════════════════════════ */
.amenities {
  background: var(--bg-deep);
}
.amenities__sticky-wrap {
  display: grid;
  grid-template-columns: 38fr 62fr;
  max-width: 100%;
  min-height: 100dvh;
}

/* Sticky left */
.amenities__sticky-left {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  border-right: 1px solid var(--border);
}
.amenities__label { margin-bottom: 1.5rem; }
.amenities__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 3rem;
}
.amenities__headline em { font-style: italic; color: var(--teal-deep); }
.amenities__tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.amenities__tab {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: left;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition: color 0.3s;
}
.amenities__tab::before {
  content: '';
  position: absolute;
  left: -1.5rem; top: 50%; transform: translateY(-50%);
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.4s var(--ease-spring);
}
.amenities__tab--active {
  color: var(--text);
  font-weight: 400;
}
.amenities__tab--active::before { width: 1rem; }
.amenities__tab:last-child { border-bottom: 1px solid var(--border); }

/* Scrolling right */
.amenities__scroll-right { overflow: hidden; }

.amenity-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border);
  opacity: 0.35;
  transition: opacity 0.6s var(--ease-smooth);
}
.amenity-panel.active { opacity: 1; }

.amenity-panel__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(27,42,53,0.12);
}
.amenity-panel__media img {
  transition: transform 0.8s var(--ease-smooth);
}
.amenity-panel:hover .amenity-panel__media img { transform: scale(1.04); }

.amenity-panel__icon { color: var(--teal); margin-bottom: 1.25rem; }
.amenity-panel__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}
.amenity-panel__desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 38ch;
}
.amenity-panel__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.amenity-panel__list li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.amenity-panel__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════════════════ */
.location {
  position: relative;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.location__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 0s;
}
.location__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(19, 30, 39, 0.78) 0%,
    rgba(19, 30, 39, 0.3) 100%
  );
}
.location__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 720px;
}
.location__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 1rem 0 0.5rem;
}
.location__headline em { font-style: italic; color: rgba(250,250,248,0.75); }
.location__sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(250,250,248,0.5);
  margin-bottom: 3rem;
}
.location__distances {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(250,250,248,0.12);
  padding-top: 2rem;
}
.location__dist { text-align: center; padding: 0 2rem; }
.location__dist-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.location__dist-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.5);
}
.location__dist-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(250,250,248,0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESERVE
═══════════════════════════════════════════════════════════════ */
.reserve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90dvh;
}

/* Form side */
.reserve__form-side {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reserve__form-side .label { margin-bottom: 0.75rem; }
.reserve__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.reserve__headline em { font-style: italic; color: rgba(250,250,248,0.7); }
.reserve__sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,250,248,0.45);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

/* Form fields */
.reserve__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
}
.form-field label span {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,250,248,0.18);
  padding: 0.6rem 0;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250,250,248,0.22); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--teal); }
.form-field select option { background: var(--dark-rich); color: var(--white); }
.form-field textarea { resize: none; }

.reserve__submit {
  margin-top: 0.5rem;
  background: var(--teal);
  color: var(--dark-rich);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.3s, transform 0.25s var(--ease-spring);
}
.reserve__submit:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
}

/* Video side */
.reserve__photo-side {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.reserve__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reserve__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.reserve__video.v-ready { opacity: 1; }
.reserve__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 30, 39, 0.75) 0%,
    rgba(19, 30, 39, 0.2) 60%,
    rgba(19, 30, 39, 0.05) 100%
  );
}
.reserve__contact {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 4vw, 4rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.reserve__contact .label { margin-bottom: 0.5rem; }
.reserve__contact-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(250,250,248,0.1);
  padding-bottom: 0.7rem;
}
.reserve__contact-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
}
.reserve__contact-val {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,250,248,0.8);
}
.reserve__contact-val--teal { color: var(--teal); }
.reserve__contact-link {
  color: rgba(250,250,248,0.8);
  transition: color 0.25s;
}
.reserve__contact-link:hover { color: var(--teal); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-rich);
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer__logo {
  height: 150px;
  opacity: 0.9;
}
.footer__logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,248,0.4);
}
.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
  transition: color 0.25s;
}
.footer__nav a:hover { color: var(--teal); }
.footer__nav-instagram { color: var(--teal) !important; opacity: 0.75; }
.footer__nav-instagram:hover { opacity: 1 !important; }
.footer__divider {
  width: 40px; height: 1px;
  background: rgba(250,250,248,0.1);
}
.footer__copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(250,250,248,0.2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   BENTO FEATURE GRID
═══════════════════════════════════════════════════════════════ */
.bento { background: var(--bg-deep); }

.bento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 260px 88px;
  gap: 2px;
  background: var(--border);
}

/* Cell base */
.bento__cell {
  overflow: hidden;
  position: relative;
}

/* A: tall photo — left col, rows 1+2 */
.bento__cell--a {
  grid-column: 1;
  grid-row: 1 / 3;
}
.bento__cell--a img {
  transition: transform 0.8s var(--ease-smooth);
}
.bento__cell--a:hover img { transform: scale(1.04); }

/* B: score card — center col, row 1 */
.bento__cell--b {
  grid-column: 2;
  grid-row: 1;
  background: var(--dark);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* C: text card — right col, row 1 */
.bento__cell--c {
  grid-column: 3;
  grid-row: 1;
  background: var(--bg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* D: stat card — center col, row 2 */
.bento__cell--d {
  grid-column: 2;
  grid-row: 2;
  background: var(--teal-subtle);
  border: 1px solid rgba(110,205,200,0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* E: small photo — right col, row 2 */
.bento__cell--e {
  grid-column: 3;
  grid-row: 2;
}
.bento__cell--e img {
  transition: transform 0.8s var(--ease-smooth);
}
.bento__cell--e:hover img { transform: scale(1.04); }

/* F: distance strip — full width, row 3 */
.bento__cell--f {
  grid-column: 1 / -1;
  grid-row: 3;
  background: var(--dark-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* Shared label style inside bento */
.bento__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}
.bento__label--muted { color: var(--text-muted); }

/* Score card internals */
.bento__score-num {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-top: 0.25rem;
}
.bento__score-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(250,250,248,0.5);
  margin-bottom: 1rem;
}
.bento__score-bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(250,250,248,0.08);
}
.bento__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.bento__bar > span:first-child {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(250,250,248,0.4);
  width: 68px;
  flex-shrink: 0;
}
.bento__bar > span:last-child {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(250,250,248,0.7);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}
.bento__bar-track {
  flex: 1;
  height: 1px;
  background: rgba(250,250,248,0.1);
  position: relative;
  overflow: hidden;
}
.bento__bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w);
  background: var(--teal);
  opacity: 0.6;
}

/* Text card internals */
.bento__text-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.bento__text-headline em { font-style: italic; color: var(--teal-deep); }
.bento__text-body {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 30ch;
}

/* Stat card internals */
.bento__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.bento__stat-num span {
  font-size: 0.45em;
  color: var(--teal);
  vertical-align: super;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.bento__stat-desc {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* Distance strip */
.bento__dist {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1rem;
}
.bento__dist-num {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}
.bento__dist-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
  text-align: center;
}
.bento__dist-sep {
  width: 1px;
  height: 28px;
  background: rgba(250,250,248,0.08);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 65dvh auto; height: auto; }
  .hero__panel { border-left: none; border-top: 1px solid var(--border); }
  .hero__panel-nav { display: none; }
  .hero__panel-body { padding: 2.5rem 0; }

  /* About: reorder title → photo → text on mobile */
  .about__inner { display: flex; flex-direction: column; }
  .about__text { display: contents; }
  .about__text-top { order: 1; }
  .about__media { order: 2; max-width: 100%; }
  .about__text-bottom { order: 3; padding-bottom: 2rem; }

  /* Gallery: revert to manual horizontal scroll on tablet/mobile */
  .gallery { height: auto !important; }
  .gallery__sticky { position: static; height: auto; }
  .gallery__track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; transform: none !important; }
  .gallery__item { height: 380px; }
  .gallery__progress { display: none; }

  /* Amenities: scroll-driven full-screen panels on mobile */
  .amenities { height: 340dvh; position: relative; }
  .amenities__sticky-wrap { position: sticky; top: 0; height: 100dvh; overflow: hidden; display: block; min-height: unset; }
  .amenities__sticky-left { display: none; }
  .amenities__scroll-right { position: relative; height: 100dvh; overflow: hidden; }
  .amenity-panel { position: absolute; inset: 0; height: 100dvh; min-height: unset; grid-template-columns: 1fr; grid-template-rows: 55% 45%; gap: 0; padding: 0; opacity: 0; pointer-events: none; transition: opacity 0.6s var(--ease-smooth); border-bottom: none; }
  .amenity-panel.active { opacity: 1; pointer-events: all; }
  .amenity-panel__media { aspect-ratio: unset; border-radius: 0; box-shadow: none; height: 100%; }
  .amenity-panel__text { padding: 1.5rem 1.75rem; background: var(--bg-deep); overflow-y: auto; }

  .bento__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 260px 80px; }
  .bento__cell--a { grid-column: 1; grid-row: 1 / 3; }
  .bento__cell--b { grid-column: 2; grid-row: 1; }
  .bento__cell--c { grid-column: 2; grid-row: 2; }
  .bento__cell--d { grid-column: 1; grid-row: 3; }
  .bento__cell--e { grid-column: 2; grid-row: 3; }
  .bento__cell--f { grid-column: 1 / -1; grid-row: 4; }

  .reserve { grid-template-columns: 1fr; }
  .reserve__photo-side { min-height: 480px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .about__pull-quote { position: static; margin-top: 1.5rem; max-width: 100%; }

  /* Gallery header: "The Spaces" dominant, headline as subtitle, same line */
  .gallery__header { flex-direction: row; align-items: center; padding: 1.25rem 1rem 1rem; gap: 1.5rem; }
  .gallery__header .label { font-size: 1rem; letter-spacing: 0.12em; color: rgba(250,250,248,0.92); flex-shrink: 0; }
  .gallery__headline { font-size: 0.7rem; font-weight: 300; letter-spacing: 0.05em; color: rgba(250,250,248,0.4); margin-top: 0; }
  .gallery__headline em { color: rgba(250,250,248,0.3); }

  /* Gallery: clean 2-column grid on phone */
  .gallery__sticky { height: auto; }
  .gallery__track { display: grid !important; grid-template-columns: 1fr 1fr; overflow-x: hidden !important; gap: 4px; padding-bottom: clamp(2rem, 4vw, 3rem); transform: none !important; }
  .gallery__item { width: 100%; height: 200px; scroll-snap-align: unset; }
  .gallery__item--wide { width: 100%; }
  .gallery__caption { opacity: 1; transform: none; }

  .bento__grid { grid-template-columns: 1fr; grid-template-rows: 260px auto auto auto auto; }
  .bento__cell--a { grid-column: 1; grid-row: 1; height: 260px; }
  .bento__cell--b { grid-column: 1; grid-row: 2; }
  .bento__cell--c { grid-column: 1; grid-row: 3; }
  .bento__cell--d { grid-column: 1; grid-row: 4; }
  .bento__cell--e { display: none; }
  .bento__cell--f { grid-column: 1; grid-row: 5; flex-wrap: wrap; height: auto; padding: 1.5rem 1.25rem; gap: 1rem 0; }
  .bento__dist { flex: 0 0 50%; }
  .bento__dist-sep { display: none; }
  /* Heart of Chora: force single line */
  .bento__text-headline br { display: none; }
  /* Distance labels: bigger & more readable */
  .bento__dist-num { font-size: 1.3rem; }
  .bento__dist-label { font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(250,250,248,0.55); }

  .location__distances { flex-wrap: wrap; gap: 1.5rem 0; }
  .location__dist { padding: 0 1.25rem; }

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

@media (max-width: 480px) {
  .location__dist-sep { display: none; }
  .location__dist { width: 50%; padding: 0.5rem 1rem; }

  /* Tighten horizontal padding on very small screens */
  .hero__panel { padding-left: 1.25rem; padding-right: 1.25rem; }
  .reserve__form-side { padding-left: 1.25rem; padding-right: 1.25rem; }
  .statement__inner { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Shorter hero photo on short phones */
  .hero { grid-template-rows: 52dvh auto; }
}

/* ── Visually hidden (accessible H1 for SEO) ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Gallery: snap alignment on touch scroll ── */
.gallery__item { scroll-snap-align: start; }

/* ── Touch targets: minimum 44px tap area ── */
@media (max-width: 1024px) {
  .amenities__tab { min-height: 44px; display: flex; align-items: center; }
}

/* ── Suppress tap highlight on interactive elements ── */
a, button { -webkit-tap-highlight-color: transparent; }

/* ── Mobile hero: reduce whitespace around logo ── */
@media (max-width: 1024px) {
  .hero__panel-body { padding: 1.25rem 0; }
  .hero__panel { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  /* Scroll cue: use opacity-only animation so translateX(-50%) isn't wiped by fadeUp */
  .hero__scroll {
    left: 50%;
    transform: translateX(-50%);
    animation: fadeScrollCue 1s var(--ease-out) 1.6s forwards;
  }
}
@keyframes fadeScrollCue {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Mobile nav logo: bigger ── */
@media (max-width: 768px) {
  .nav__logo { height: 68px; }
  .nav__logo img { height: 68px; }
}

/* ── Amenities scroll-driven: dot indicators ── */
.amenities__dots {
  position: absolute;
  bottom: 1.75rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
}
.amenities__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(250,250,248,0.3);
  transition: background 0.35s, transform 0.35s;
  cursor: pointer;
  border: none;
}
.amenities__dot--active {
  background: var(--teal);
  transform: scale(1.5);
}

/* ── About text wrappers (desktop: stack naturally) ── */
.about__text { display: flex; flex-direction: column; }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(13, 20, 26, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-smooth);
}
.lb.lb--open {
  opacity: 1;
  pointer-events: all;
}

.lb__stage {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 0.5rem;
  overflow: hidden;
}
.lb__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lb__img.lb--fade {
  opacity: 0;
  transform: scale(0.97);
}

/* Close */
.lb__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(250,250,248,0.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.lb__close:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* Prev / Next */
.lb__prev,
.lb__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(250,250,248,0.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.lb__prev { left: 1.25rem; }
.lb__next { right: 1.25rem; }
.lb__prev:hover,
.lb__next:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* Caption */
.lb__caption {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  padding: 0.75rem 1rem 0.5rem;
  text-align: center;
}

/* Dots */
.lb__dots {
  display: flex;
  gap: 6px;
  padding: 0.5rem 1rem 1.25rem;
}
.lb__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(250,250,248,0.22);
  transition: background 0.25s, transform 0.25s;
  border: none;
  cursor: pointer;
}
.lb__dot--active {
  background: var(--teal);
  transform: scale(1.5);
}

/* On mobile: hide prev/next arrows (swipe only) */
@media (max-width: 600px) {
  .lb__prev, .lb__next { display: none; }
  .lb__stage { padding: 3.5rem 0 0.5rem; }
}
