/* ================================================================
   SOHO SUITES — 2026
   Mobile-perfect · Animated · Luxury
   ================================================================ */

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

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --cream:      #F0E8DC;
  --sand:       #D6BFA6;
  --sand-lt:    #E8D8C4;
  --dark:       #0C0B09;
  --dark2:      #141210;
  --ink:        #1C1916;
  --muted:      #6E6459;
  --white:      #FDFAF6;
  --gold:       #C9A96E;
  --gold-lt:    #DFC090;
  --border:     rgba(201,169,110,.18);
  --border-dk:  rgba(255,255,255,.07);
  --nav-h:      72px;
  --side:       clamp(16px, 5vw, 48px);  /* safe horizontal padding */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-size: clamp(15px, 1vw + 12px, 17px);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* subtle grain ------------------------------------------------ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  opacity: .025;
  mix-blend-mode: multiply;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--side);
}
.section         { padding: clamp(64px,10vw,120px) 0; }
.section--dark   { background: var(--dark);  color: var(--white); }
.section--dark2  { background: var(--dark2); color: var(--white); }
.section--sand   { background: var(--sand); }
.section--white  { background: var(--white); }

/* ── Typography ─────────────────────────────────────────────── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: .92;
  letter-spacing: -.02em;
}
.h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: .97;
  letter-spacing: -.015em;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.01em;
}
.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.2;
}
em { font-style: italic; }
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 24px; height: 1px;
  background: currentColor;
}
.lead {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  line-height: 1.85;
  font-weight: 300;
  color: var(--muted);
}
.lead--light { color: rgba(253,250,246,.58); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px clamp(22px,4vw,36px);
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s var(--ease), color .01s .22s; /* color flips mid-fill */
  flex-shrink: 0;
  cursor: pointer;
  white-space: nowrap;
}
/* slide-fill layer */
.btn::after {
  content: '';
  position: absolute; inset: 0;
  transform: translateX(-102%);
  transition: transform .42s var(--ease);
  z-index: 0;
}
.btn:hover::after { transform: translateX(0); }
.btn > *, .btn i, .btn span { position: relative; z-index: 1; }

.btn--primary  { background: var(--ink);  color: var(--white); }
.btn--primary::after  { background: var(--gold); }

.btn--outline  { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline::after  { background: var(--ink); }
.btn--outline:hover   { color: var(--white); }

.btn--outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.38); }
.btn--outline-light::after { background: var(--white); }
.btn--outline-light:hover  { color: var(--ink); }

.btn--gold { background: var(--gold); color: var(--white); box-shadow: 0 2px 20px rgba(201,169,110,.28); }
.btn--gold::after { background: var(--ink); }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--nav-h);
  z-index: 500;
  transition: background .5s var(--ease), border-bottom .5s var(--ease);
}
.nav.scrolled {
  background: rgba(240,232,220,.95);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  height: 44px;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
  position: absolute;
  left: 0; top: 0;
  transition: opacity .5s var(--ease);
}
.brand .logo-white { opacity: 1; filter: brightness(0) invert(1) sepia(0.15) saturate(0.8) brightness(1.05); }
.brand .logo-dark  { opacity: 0; }
.nav.scrolled .brand .logo-white { opacity: 0; }
.nav.scrolled .brand .logo-dark  { opacity: 1; }
.brand::after {
  content: ''; display: block;
  height: 44px; width: 130px;
}
@media (max-width: 600px) {
  .brand { height: 36px; }
  .brand img { height: 36px; }
  .brand::after { height: 36px; width: 106px; }
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  position: relative; white-space: nowrap;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -5px; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--ink); }

.nav-book {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  transition: all .35s var(--ease);
  white-space: nowrap; flex-shrink: 0;
}
.nav-book:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.nav.scrolled .nav-book { border-color: rgba(28,25,22,.3); color: var(--ink); }
.nav.scrolled .nav-book:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* burger */
.burger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 6px; width: 36px; height: 36px; padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  flex-shrink: 0;
  transition: all .4s var(--ease);
}
.burger span:nth-child(2) { width: 65%; }
.nav.scrolled .burger span { background: var(--ink); }
.nav.is-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .burger span:nth-child(2) { opacity: 0; width: 100%; transform: scaleX(0); }
.nav.is-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile panel */
.nav-panel {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream);
  padding: clamp(32px,6vw,56px) var(--side);
  flex-direction: column;
  z-index: 490;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  overflow-y: auto;
}
.nav-panel.open { transform: translateX(0); }
.nav-panel a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,8vw,2.6rem); font-weight: 300;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding: clamp(14px,3vw,22px) 0;
  display: block;
  transition: padding-left .3s var(--ease), color .3s;
}
.nav-panel a:hover { padding-left: 12px; color: var(--gold); }
.nav-panel .nav-panel-book {
  margin-top: 32px;
  font-family: 'Jost', sans-serif;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  text-align: center; padding: 16px 32px;
  background: var(--ink); color: var(--white) !important;
  border: none !important; display: block;
  transition: background .3s;
}
.nav-panel .nav-panel-book:hover { padding-left: 32px; background: var(--gold); }

/* desktop: hide burger */
@media (min-width: 901px) {
  .nav-links { display: flex; }
  .nav-book  { display: inline-flex; }
  .burger    { display: none; }
  .nav-panel { display: none !important; }
}
/* mobile: hide links */
@media (max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .burger    { display: flex; }
  .nav-panel { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; min-height: 580px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(56px,8vw,100px);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.07);
  animation: heroZoom 14s var(--ease) forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(12,11,9,.88) 0%, rgba(12,11,9,.3) 45%, transparent 72%),
    linear-gradient(105deg, rgba(12,11,9,.2) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; }

/* staggered entrance */
.hero-content .eyebrow {
  color: var(--sand-lt); margin-bottom: clamp(16px,3vw,28px);
  opacity: 0; transform: translateY(14px);
  animation: fadeUp .8s var(--ease-out) .35s forwards;
}
.hero-content .eyebrow::before { background: var(--sand-lt); }
.hero-content .display {
  color: var(--white); margin-bottom: clamp(12px,2vw,24px);
  opacity: 0; transform: translateY(24px);
  animation: fadeUp .9s var(--ease-out) .55s forwards;
}
.hero-content .lead {
  color: rgba(255,255,255,.62);
  margin-bottom: clamp(28px,4vw,48px);
  max-width: min(480px, 90vw);
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .8s var(--ease-out) .8s forwards;
}
.hero-cta {
  display: flex; gap: clamp(10px,2vw,14px); flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .7s var(--ease-out) 1s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* scroll indicator */
.hero-scroll {
  position: absolute; bottom: clamp(24px,4vw,40px); right: clamp(20px,4vw,44px);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.35);
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  opacity: 0; animation: fadeUp .6s var(--ease-out) 1.35s forwards;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: rgba(255,255,255,.12); position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.2s var(--ease-out) infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 200%; } }

/* ghost number watermark */
.hero-index {
  position: absolute; bottom: clamp(24px,5vw,44px); left: var(--side);
  z-index: 2; pointer-events: none; user-select: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem,12vw,8rem); font-weight: 300; line-height: 1;
  color: rgba(255,255,255,.04); letter-spacing: -.04em;
}

/* suite-page small hero */
.hero--small {
  height: clamp(320px,65vw,75vh);
  align-items: center; padding-bottom: 0;
}
.hero--small .hero-overlay {
  background: linear-gradient(to bottom,
    rgba(12,11,9,.5) 0%, rgba(12,11,9,.22) 50%, rgba(12,11,9,.58) 100%);
}
.hero--small .hero-content { text-align: center; width: 100%; }
.hero--small .hero-content .eyebrow { justify-content: center; }
.hero--small .hero-content .eyebrow::before { display: none; }
.hero--small .hero-content .h1 { color: var(--white); }
.hero--small .hero-content .lead { margin: 0 auto clamp(24px,4vw,40px); max-width: min(520px,90vw); }
.hero--small .hero-cta { justify-content: center; }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden; white-space: nowrap;
  padding: 14px 0; background: var(--dark2);
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
}
.marquee-track { display: inline-block; animation: marquee 28s linear infinite; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: .6rem; font-weight: 500; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  padding: 0 clamp(16px,3vw,36px);
}
.marquee-track span.sep { color: var(--gold); font-size: .45rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px); align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-photo-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 55%; aspect-ratio: 1;
  border: 1px solid rgba(201,169,110,.38); pointer-events: none;
}
.about-photo-wrap::after {
  content: '01';
  position: absolute; top: -20px; left: -14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem,8vw,6rem); font-weight: 300; line-height: 1;
  color: rgba(201,169,110,.1); pointer-events: none; letter-spacing: -.04em;
}
.about-text .eyebrow { margin-bottom: clamp(16px,2vw,24px); }
.about-text .h2      { margin-bottom: clamp(16px,2vw,28px); }
.about-text .lead    { margin-bottom: clamp(24px,3vw,36px); }
.about-checks { display: flex; flex-direction: column; gap: clamp(12px,1.5vw,16px); margin-bottom: clamp(28px,4vw,48px); }
.about-checks li {
  display: flex; align-items: center; gap: 16px;
  font-size: clamp(.82rem,.9vw,.9rem); color: var(--muted);
}
.about-checks li::before {
  content: ''; display: block; flex-shrink: 0; width: 22px; height: 1px;
  background: var(--gold); opacity: .7;
}

/* ── SUITES GRID ─────────────────────────────────────────────── */
.suites-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: clamp(40px,5vw,72px);
}
.suite-card {
  position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer;
}
.suite-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease); will-change: transform;
}
.suite-card:hover img { transform: scale(1.07); }
.suite-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(12,11,9,.9) 0%, rgba(12,11,9,.28) 50%, rgba(12,11,9,.06) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px,3vw,36px); transition: background .5s;
}
.suite-card:hover .suite-card-overlay {
  background: linear-gradient(to top,
    rgba(12,11,9,.94) 0%, rgba(12,11,9,.5) 60%, rgba(12,11,9,.12) 100%);
}
.suite-card-eyebrow {
  font-size: .58rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 8px;
}
.suite-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem,3vw,2rem); font-weight: 300;
  color: var(--white); margin-bottom: 8px; line-height: 1;
}
.suite-card p {
  font-size: clamp(.75rem,.85vw,.82rem); color: rgba(255,255,255,.52);
  line-height: 1.55; margin-bottom: clamp(14px,2vw,22px);
}
.suite-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.suite-card-link::after { content: '→'; transition: transform .3s var(--ease); }
.suite-card:hover .suite-card-link { opacity: 1; transform: none; }
.suite-card:hover .suite-card-link::after { transform: translateX(4px); }
/* gold sweep bottom line */
.suite-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transition: width .65s var(--ease); z-index: 3;
}
.suite-card:hover::after { width: 100%; }

/* ── AMENITIES ───────────────────────────────────────────────── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: clamp(40px,5vw,72px);
}
.amenity-item {
  background: var(--white); padding: clamp(24px,3vw,40px) clamp(16px,2vw,28px);
  transition: background .3s var(--ease); position: relative; overflow: hidden;
}
.amenity-item::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease);
}
.amenity-item:hover { background: var(--cream); }
.amenity-item:hover::before { width: 100%; }
.amenity-item i {
  font-size: .95rem; color: var(--gold); margin-bottom: 14px; display: block;
  transition: transform .35s var(--ease-spring);
}
.amenity-item:hover i { transform: translateY(-3px); }
.amenity-item p { font-size: clamp(.78rem,.85vw,.86rem); line-height: 1.5; color: var(--muted); }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-intro { text-align: center; margin-bottom: clamp(40px,5vw,72px); }
.gallery-intro .eyebrow { justify-content: center; margin-bottom: 18px; }
.gallery-intro .eyebrow::before { display: none; }
.gallery-intro .h2 { margin-bottom: 14px; }

.masonry { columns: 3; column-gap: 3px; }
.masonry figure {
  break-inside: avoid; margin-bottom: 3px;
  position: relative; overflow: hidden; cursor: pointer;
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.masonry figure.in-view { opacity: 1; transform: none; }
.masonry figure img {
  width: 100%; display: block;
  transition: transform .7s var(--ease); will-change: transform;
}
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 44px 16px 14px;
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: linear-gradient(to top, rgba(12,11,9,.6), transparent);
  opacity: 0; transform: translateY(4px);
  transition: opacity .35s, transform .35s var(--ease);
}
.masonry figure:hover figcaption { opacity: 1; transform: none; }

/* ── SUITE DETAIL ────────────────────────────────────────────── */
.suite-detail-wrap {
  display: grid; grid-template-columns: 1fr 360px;
  gap: clamp(40px,5vw,80px); align-items: start;
}
.suite-detail-sticky {
  position: sticky; top: calc(var(--nav-h) + 28px);
  background: var(--white); border: 1px solid var(--border);
  padding: clamp(24px,3vw,40px) clamp(20px,3vw,32px);
}
.suite-detail-sticky .eyebrow { margin-bottom: 18px; }
.suite-detail-sticky .h3 { margin-bottom: 10px; }
.suite-detail-sticky .lead { font-size: .88rem; line-height: 1.7; margin-bottom: 24px; }

.suite-stat-row {
  display: flex; margin-bottom: 24px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.suite-stat {
  flex: 1; text-align: center; padding: 18px 6px;
  border-right: 1px solid var(--border);
}
.suite-stat:last-child { border-right: none; }
.suite-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem,3vw,2.2rem); font-weight: 300;
  color: var(--ink); display: block; line-height: 1; margin-bottom: 4px;
}
.suite-stat-label { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.suite-book-btns { display: flex; flex-direction: column; gap: 8px; }
.suite-book-btns .btn { width: 100%; }

.suite-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(24px,3vw,40px); }
.suite-chips li {
  padding: 7px 16px; border: 1px solid var(--border);
  font-size: .7rem; letter-spacing: .05em; color: var(--muted);
  transition: border-color .3s, color .3s, background .3s;
}
.suite-chips li:hover { border-color: var(--gold); color: var(--ink); background: rgba(201,169,110,.06); }

.suite-features { display: flex; flex-direction: column; }
.suite-features li {
  display: flex; align-items: baseline; gap: clamp(12px,2vw,20px);
  font-size: clamp(.82rem,.9vw,.9rem); color: var(--muted); line-height: 1.65;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  transition: color .25s;
}
.suite-features li:first-child { border-top: 1px solid var(--border); }
.suite-features li:hover { color: var(--ink); }
.suite-features li strong {
  color: var(--ink); font-weight: 500;
  min-width: 140px; flex-shrink: 0;
  font-size: clamp(.76rem,.82vw,.82rem); letter-spacing: .04em;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px,5vw,80px); align-items: start; }
.contact-links { display: flex; flex-direction: column; }
.contact-link {
  display: flex; align-items: center; gap: 18px;
  font-size: clamp(.82rem,.9vw,.9rem); color: var(--muted);
  padding: 18px 0; border-bottom: 1px solid var(--border);
  transition: color .3s, padding-left .3s var(--ease);
}
.contact-link:first-child { border-top: 1px solid var(--border); }
.contact-link:hover { color: var(--ink); padding-left: 8px; }
.contact-link i { color: var(--gold); width: 18px; text-align: center; }

.form-card { background: var(--white); border: 1px solid var(--border); padding: clamp(24px,4vw,48px) clamp(20px,4vw,40px); }
.form-row { margin-bottom: clamp(16px,2vw,24px); }
.form-row label {
  display: block; font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; padding: 13px 15px;
  font-family: 'Jost', sans-serif;
  font-size: clamp(.88rem,1vw,.94rem);
  color: var(--ink); background: var(--cream);
  border: 1px solid var(--border); border-radius: 0;
  outline: none; appearance: none;
  transition: border-color .3s, background .3s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--gold); background: rgba(201,169,110,.04); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark); color: var(--white);
  padding: clamp(56px,8vw,96px) 0 clamp(32px,4vw,48px);
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(600px,80vw); height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,.2), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,56px);
  padding-bottom: clamp(40px,5vw,72px);
  border-bottom: 1px solid var(--border-dk);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 300;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-tagline {
  font-size: clamp(.76rem,.85vw,.82rem); color: rgba(255,255,255,.3);
  line-height: 1.7; max-width: 240px; font-weight: 300;
}
.footer-col h4 {
  font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: clamp(14px,2vw,24px);
}
.footer-col a {
  display: block; font-size: clamp(.8rem,.88vw,.86rem); font-weight: 300;
  color: rgba(255,255,255,.42); margin-bottom: clamp(8px,1vw,14px);
  transition: color .3s, padding-left .3s var(--ease);
}
.footer-col a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: clamp(24px,3vw,40px);
  font-size: .68rem; color: rgba(255,255,255,.2); letter-spacing: .06em;
}

/* ── THANK YOU ───────────────────────────────────────────────── */
.thanks-page {
  min-height: 100svh; display: flex; align-items: center;
  justify-content: center; background: var(--cream);
  padding: 80px var(--side);
}
.thanks-card { text-align: center; max-width: 560px; width: 100%; }
.thanks-icon {
  width: 64px; height: 64px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); margin: 0 auto 32px;
}
.thanks-card .h2 { margin-bottom: 14px; }
.thanks-card .lead { margin-bottom: 36px; }
.thanks-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(18px);
  background: var(--ink); color: var(--white);
  padding: 13px 28px; font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  z-index: 9999; white-space: nowrap;
  border-bottom: 1px solid var(--gold);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: #5a2020; border-color: #c44; }

/* ── MOBILE FAB ──────────────────────────────────────────────── */
.book-fab {
  display: none; position: fixed;
  bottom: 20px; right: 16px; z-index: 400;
  padding: 13px 22px;
  background: var(--ink); color: var(--white);
  font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 8px 36px rgba(0,0,0,.32);
  transition: transform .3s var(--ease), box-shadow .3s;
  border-bottom: 1px solid rgba(201,169,110,.38);
}
.book-fab:active { transform: scale(.97); }

/* ── SCROLL REVEALS (JS adds .visible) ────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .42s; }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(12,11,9,.97);
  align-items: center; justify-content: center; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90svh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  color: rgba(255,255,255,.4); font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: color .2s, transform .25s var(--ease);
}
.lightbox-close:hover { color: var(--white); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); font-size: 1.5rem; cursor: pointer;
  border: 1px solid rgba(255,255,255,.1); transition: color .2s, border-color .2s;
}
.lightbox-nav:hover { color: var(--white); border-color: rgba(255,255,255,.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* map embed */
.map-embed { width: 100%; aspect-ratio: 4/3; border: none; display: block; }

/* location buttons */
.loc-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 600px) {
  .loc-btns { flex-direction: column; }
  .loc-btns .btn { width: 100%; }
}

/* section heading helpers used with inline style */
.section-center { text-align: center; }
.section-center .eyebrow { justify-content: center; }
.section-center .eyebrow::before { display: none; }

/* ================================================================
   RESPONSIVE — TABLET 1024
   ================================================================ */
@media (max-width: 1024px) {
  .suite-detail-wrap { grid-template-columns: 1fr; }
  .suite-detail-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   RESPONSIVE — TABLET 860
   ================================================================ */
@media (max-width: 860px) {
  /* Hero CTAs — stack on most tablets */
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero--small .hero-cta { align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }

  /* About grid — single column */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap img { aspect-ratio: 16/10; }
  .about-photo-accent { display: none; }
  .about-photo-wrap::after { display: none; }

  /* Suites — stacked */
  .suites-grid { grid-template-columns: 1fr; }
  .suite-card { aspect-ratio: 4/3; }
  .suite-card-link { opacity: 1; transform: none; }   /* always visible on touch */

  /* Amenities 2 col */
  .amenities-grid { grid-template-columns: repeat(2,1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Gallery 2 col */
  .masonry { columns: 2; }

  /* Show mobile FAB */
  .book-fab { display: inline-flex; }

  /* Footer 2 col */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Location section about-grid (dark bg) — force single col */
  #location .about-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   RESPONSIVE — MOBILE 600
   ================================================================ */
@media (max-width: 600px) {
  :root { --nav-h: 62px; }

  /* ---- Base ---- */
  .section { padding: clamp(48px,10vw,72px) 0; }

  /* ---- Hero (home) ---- */
  .hero { height: 100svh; min-height: 480px; }
  .hero-scroll, .hero-index { display: none; }
  .hero-content .display { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-content .lead { font-size: .88rem; line-height: 1.7; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; max-width: 100%; }

  /* ---- Hero (suite pages) ---- */
  .hero--small { height: clamp(260px, 65vw, 400px); }
  .hero--small .hero-cta { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero--small .hero-cta .btn { flex: 1 1 140px; max-width: 100%; }
  .hero-content .h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero-content .eyebrow { font-size: .6rem; }

  /* ---- Marquee ---- */
  .marquee-track span { font-size: .54rem; padding: 0 16px; }

  /* ---- About ---- */
  .about-photo-wrap img { aspect-ratio: 4/3; }
  .about-text .h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .about-checks li { font-size: .84rem; }

  /* ---- Suites section heading (dark bg) ---- */
  .suites-grid { margin-top: 32px; }
  .suite-card { aspect-ratio: 3/2; }
  .suite-card h3 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .suite-card p { display: none; }
  .suite-card-overlay { padding: 18px; }

  /* ---- Suite detail page ---- */
  .suite-detail-sticky { padding: 24px 18px; }
  .suite-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .suite-chips li { text-align: center; padding: 8px 8px; font-size: .68rem; }
  .suite-features li { flex-direction: column; gap: 3px; padding: 12px 0; }
  .suite-features li strong { min-width: unset; color: var(--muted); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
  .suite-stat-num { font-size: 1.7rem; }

  /* ---- Amenities ---- */
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .amenity-item { padding: 22px 14px; }
  .amenity-item p { font-size: .78rem; }

  /* ---- Gallery ---- */
  .masonry { columns: 1; }
  .gallery-intro .h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  /* ---- Contact form ---- */
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .form-row input,
  .form-row textarea,
  .form-row select { font-size: .9rem; padding: 12px 13px; }

  /* ---- Map ---- */
  .map-embed { aspect-ratio: 1; }

  /* ---- Location section buttons ---- */
  #location .hero-cta,
  #location [style*="display:flex"] { flex-direction: column; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-brand { font-size: 1.6rem; }

  /* ---- Toast — wrap on small screens ---- */
  .toast { white-space: normal; text-align: center; max-width: calc(100vw - 32px); }

  /* ---- Thank you ---- */
  .thanks-cta { flex-direction: column; }
  .thanks-cta .btn { width: 100%; }

  /* ---- Book FAB — avoid overlap with suite hero buttons ---- */
  .hero--small ~ * .book-fab,
  .book-fab { bottom: 16px; right: 14px; padding: 12px 18px; font-size: .62rem; }
}

/* ================================================================
   RESPONSIVE — SMALL PHONES 400
   ================================================================ */
@media (max-width: 400px) {
  :root { --nav-h: 58px; }

  .hero-content .display { font-size: clamp(2.1rem, 13vw, 2.8rem); }
  .hero--small { height: 72vw; min-height: 240px; }
  .hero--small .hero-cta .btn { font-size: .6rem; padding: 11px 14px; }

  /* Single col amenities on very small */
  .amenities-grid { grid-template-columns: 1fr; }

  /* Buttons tighter */
  .btn { padding: 12px 16px; font-size: .63rem; letter-spacing: .14em; }

  /* Suite chips 2 col stays but smaller */
  .suite-chips li { font-size: .64rem; padding: 7px 6px; }

  /* Nav brand smaller */
  .brand { font-size: 1.1rem; }
}

/* ================================================================
   TOUCH / HOVER:NONE — disable hover-only states
   ================================================================ */
@media (hover: none) {
  .masonry figcaption { opacity: 1; transform: none; }
  .suite-card-link { opacity: 1; transform: none; }
  .masonry figure:hover img,
  .suite-card:hover img { transform: none; }
  .suite-card::after { display: none; }
  .amenity-item:hover i { transform: none; }
  .contact-link:hover { padding-left: 0; }
  .footer-col a:hover { padding-left: 0; }
}

/* ── HERO LOGO ───────────────────────────────────────────────── */
.hero-logo {
  display: block;
  width: clamp(240px, 38vw, 440px);
  margin-bottom: clamp(20px, 3vw, 36px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .6s forwards;
  filter: brightness(0) invert(1) sepia(0.15) saturate(0.8) brightness(1.05);
}
.hero-logo svg { width: 100%; height: auto; display: block; }
@media (max-width: 600px) {
  .hero-logo { width: clamp(200px, 65vw, 300px); }
}
