:root {
  --ink: #10252d;
  --ink-soft: #456069;
  --cream: #f5f0e8;
  --sand: #e8dfd2;
  --white: #fffdf8;
  --mist: #eef2f1;
  --deep: #07181e;
  --gold: #b8915b;
  --gold-light: #e5c998;
  --line: rgba(16, 37, 45, .14);
  --shadow-soft: 0 18px 55px rgba(10, 30, 38, .10);
  --shadow: 0 30px 90px rgba(10, 30, 38, .18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  background: var(--white);
  color: var(--ink);
  padding: .8rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.container.narrow { width: min(780px, calc(100% - 40px)); }
.section { padding: clamp(82px, 10vw, 142px) 0; }
.center { text-align: center; }

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, .84);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.042em;
  line-height: .93;
}
h1 { font-size: clamp(4rem, 9.6vw, 9.6rem); }
h2 { font-size: clamp(2.8rem, 5.6vw, 5.9rem); }
h3 { line-height: 1.1; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 50px;
  padding: .92rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .25s ease, background .25s ease, color .25s ease,
    border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, .story-card a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}
.button.primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .12);
}
.button.primary:hover { box-shadow: 0 16px 38px rgba(0, 0, 0, .18); }
.button.secondary { background: var(--ink); color: white; }
.button.secondary:hover { background: #183943; box-shadow: 0 14px 34px rgba(16, 37, 45, .18); }
.button.ghost { border-color: rgba(255, 255, 255, .6); color: white; }
.button.ghost:hover { background: rgba(255, 255, 255, .12); border-color: white; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  color: white;
  transition: padding .3s ease, background .3s ease, color .3s ease,
    box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled,
.site-header.solid {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(255, 253, 248, .88);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(10, 30, 38, .08);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-main {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.045em;
}
.brand-sub {
  margin-top: .24rem;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 1.65rem; font-size: .82rem; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; padding: .45rem 0; }
.site-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .18rem;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { border: 1px solid currentColor; border-radius: 999px; padding: .7rem 1rem; }
.site-header:not(.scrolled):not(.solid) .nav-cta:hover { background: rgba(255, 255, 255, .12); }
.site-header.scrolled .nav-cta:hover, .site-header.solid .nav-cta:hover { background: var(--ink); color: white; }
.nav-toggle { display: none; background: transparent; border: 0; color: inherit; padding: .4rem; cursor: pointer; }
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 3px;
  background: currentColor;
  transform-origin: center;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #081c23;
}
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero img {
  filter: saturate(.94) contrast(1.03);
  animation: hero-breathe 18s ease-out both;
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 20, .75), rgba(4, 15, 20, .30) 52%, rgba(4, 15, 20, .08)),
    linear-gradient(0deg, rgba(4, 15, 20, .66), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(78px, 12vh, 138px);
  color: white;
}
.hero-content h1 { max-width: 820px; margin-bottom: 1rem; text-wrap: balance; }
.hero-copy {
  max-width: 610px;
  margin: 0 0 2.1rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.04rem, 1.8vw, 1.38rem);
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 34px;
  color: rgba(255, 255, 255, .68);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 52px;
  margin: .8rem auto 0;
  background: rgba(255, 255, 255, .5);
}
@keyframes hero-breathe { from { transform: scale(1.04); } to { transform: scale(1); } }

/* Introduction */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: start;
}
.intro-copy h2 { margin-bottom: 0; text-wrap: balance; }
.intro-text { color: var(--ink-soft); font-size: 1.06rem; }
.intro-text p + p { margin-top: 1.25rem; }
.editorial-note {
  position: relative;
  margin-top: 2rem !important;
  padding: 1.25rem 0 0 2rem;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem) !important;
  font-style: italic;
  line-height: 1.05;
}
.editorial-note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* Signature feature */
.feature-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  min-height: 720px;
  padding: clamp(22px, 3vw, 42px);
  background: var(--cream);
  overflow: hidden;
}
.feature-image { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.feature-image img { height: 100%; object-fit: cover; transition: transform 1s ease; }
.feature-band:hover .feature-image img { transform: scale(1.018); }
.feature-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-left: clamp(-80px, -5vw, -44px);
  padding: clamp(2.4rem, 5vw, 4.8rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .96);
  box-shadow: var(--shadow);
}
.feature-panel h2 { margin-bottom: 1.45rem; font-size: clamp(2.65rem, 4.7vw, 5.2rem); }
.feature-panel p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 1.03rem; }

/* Editorial photo story */
.experience-story { background: var(--white); }
.experience-intro {
  width: min(860px, 100%);
  margin: 0 auto clamp(2.8rem, 6vw, 5rem);
  text-align: center;
}
.experience-intro h2 { margin-bottom: .85rem; }
.experience-intro > p:last-child {
  max-width: 740px;
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}
.experience-kicker {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-style: italic;
  line-height: 1.1;
}
.story-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: minmax(410px, 43vw) minmax(275px, 28vw) minmax(230px, 23vw);
  gap: clamp(.85rem, 1.4vw, 1.2rem);
}
.story-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  border-radius: inherit;
}
.story-card a { position: relative; display: block; width: 100%; height: 100%; }
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.03);
  transition: transform .75s cubic-bezier(.2, .7, .2, 1), filter .75s ease;
}
.story-card:hover img { transform: scale(1.035); filter: saturate(1.02) contrast(1.04); }
.story-feature { grid-column: 1 / -1; grid-row: 1; }
.story-medium:nth-of-type(2) { grid-column: 1 / span 3; grid-row: 2; }
.story-medium:nth-of-type(3) { grid-column: 4 / span 3; grid-row: 2; }
.story-small:nth-of-type(4) { grid-column: 1 / span 2; grid-row: 3; }
.story-small:nth-of-type(5) { grid-column: 3 / span 2; grid-row: 3; }
.story-small:nth-of-type(6) { grid-column: 5 / span 2; grid-row: 3; }
.story-feature img { object-position: center 59%; }
.story-medium:nth-of-type(2) img { object-position: center 60%; }
.story-small:nth-of-type(4) img { object-position: center 58%; }
.story-small:nth-of-type(5) img { object-position: center 48%; }
.story-small:nth-of-type(6) img { object-position: center 48%; }
.story-caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  min-height: 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.15rem, 2.4vw, 2.25rem);
  color: white;
  background: linear-gradient(0deg, rgba(4, 15, 20, .78), rgba(4, 15, 20, .40) 48%, transparent 100%);
  pointer-events: none;
}
.story-caption span {
  display: block;
  margin-bottom: .48rem;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.story-caption h3 {
  max-width: 32rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.15vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
  text-wrap: balance;
}
.story-feature .story-caption h3 { font-size: clamp(2rem, 3.5vw, 4.2rem); }
.story-small .story-caption { padding: clamp(1rem, 1.8vw, 1.45rem); }
.story-small .story-caption h3 { font-size: clamp(1.15rem, 1.55vw, 1.62rem); }
.experience-cta { margin-top: clamp(2rem, 4vw, 3.6rem); }

/* Amenities */
.amenities { background: var(--mist); }
.amenities-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.section-heading { position: sticky; top: 120px; max-width: 620px; }
.section-heading h2 { margin-bottom: 1.3rem; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.section-lede { max-width: 520px; color: var(--ink-soft); font-size: 1.03rem; }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.amenity-list > div {
  position: relative;
  min-height: 270px;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid rgba(16, 37, 45, .08);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .68);
  box-shadow: 0 8px 24px rgba(10, 30, 38, .035);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.amenity-list > div:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.amenity-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 145, 91, .35);
  border-radius: 50%;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
}
.amenity-list h3 {
  margin: 2rem 0 .7rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -.025em;
}
.amenity-list p { margin-bottom: 0; color: var(--ink-soft); }

/* Local guide */
.local-guide { background: var(--white); }
.local-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 7vw, 6.5rem); align-items: center; }
.local-photo { position: relative; }
.local-photo::before {
  content: '';
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  border: 1px solid rgba(184, 145, 91, .35);
  border-radius: var(--radius-lg);
}
.local-photo img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.local-copy h2 { margin-bottom: 1.5rem; }
.local-copy p { color: var(--ink-soft); font-size: 1.04rem; }
.guide-tags { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.guide-tags span {
  padding: .58rem .86rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: .78rem;
  font-weight: 700;
}

/* Closing call to action */
.cta-section {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.cta-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 15, 20, .72), rgba(4, 15, 20, .38));
}
.cta-content { position: relative; width: min(840px, calc(100% - 40px)); }
.cta-content h2 { margin-bottom: 1rem; }
.cta-line {
  max-width: 650px;
  margin: 0 auto 1.9rem;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

/* Footer */
.site-footer { padding: 0 0 1.5rem; background: var(--deep); color: white; }
.footer-invite {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-invite h2 { max-width: 720px; margin: 0; font-size: clamp(3rem, 6vw, 6rem); }
.footer-button { flex: 0 0 auto; border-color: rgba(255, 255, 255, .5); color: white; }
.footer-button:hover { background: white; color: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1.1fr .7fr;
  gap: 2.2rem;
  padding-top: 3.2rem;
}
.footer-intro { max-width: 340px; }
.footer-brand { margin-bottom: 1rem; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, .7); }
.site-footer a:hover { color: white; }
.site-footer h3 {
  margin-bottom: .9rem;
  color: var(--gold-light);
  font-size: .72rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .48);
  font-size: .78rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }

/* Existing gallery page support */
.gallery-page { background: var(--white); }
.gallery-hero { padding-top: 150px; padding-bottom: 60px; text-align: center; }
.gallery-hero h1 { margin-bottom: 1rem; font-size: clamp(4rem, 9vw, 8rem); }
.gallery-hero p { color: var(--ink-soft); font-size: 1.1rem; }
.gallery-wall { columns: 3 280px; column-gap: 1rem; padding-bottom: 5rem; }
.gallery-wall img {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 35px rgba(10, 30, 38, .08);
}

@media (max-width: 1000px) {
  .feature-band { grid-template-columns: 1.05fr .95fr; }
  .feature-panel { margin-left: -54px; }
  .story-gallery {
    grid-template-rows: minmax(360px, 48vw) minmax(245px, 31vw) minmax(215px, 27vw);
  }
  .amenities-grid { grid-template-columns: .8fr 1.2fr; gap: 2.5rem; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 74px; }
  .site-header { padding: 16px 20px; }
  .site-header.scrolled, .site-header.solid { padding-top: 13px; padding-bottom: 13px; }
  .brand-main { font-size: 1.42rem; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    padding: .9rem;
    border: 1px solid rgba(16, 37, 45, .08);
    border-radius: 22px;
    background: rgba(255, 253, 248, .98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem .9rem; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: .3rem; text-align: center; }

  .hero-overlay { background: linear-gradient(0deg, rgba(4, 15, 20, .75), rgba(4, 15, 20, .18) 70%); }
  .hero-content { padding-bottom: 90px; }
  .scroll-cue { display: none; }
  .intro-grid, .feature-band, .amenities-grid, .local-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-band { min-height: auto; padding: 18px; }
  .feature-image { aspect-ratio: 4 / 3; }
  .feature-panel { margin: -50px 18px 18px; }
  .section-heading { position: static; max-width: 700px; }
  .amenity-list > div { min-height: 245px; }
  .local-grid { gap: 4rem; }
  .local-photo { width: min(620px, calc(100% - 18px)); }
  .story-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: minmax(330px, 56vw) minmax(250px, 36vw) minmax(210px, 29vw);
  }
  .story-feature { grid-column: 1 / -1; grid-row: 1; }
  .story-medium:nth-of-type(2) { grid-column: 1 / span 3; grid-row: 2; }
  .story-medium:nth-of-type(3) { grid-column: 4 / span 3; grid-row: 2; }
  .story-small:nth-of-type(4) { grid-column: 1 / span 2; grid-row: 3; }
  .story-small:nth-of-type(5) { grid-column: 3 / span 2; grid-row: 3; }
  .story-small:nth-of-type(6) { grid-column: 5 / span 2; grid-row: 3; }
  .story-small .story-caption h3 { font-size: clamp(1.1rem, 2.8vw, 1.55rem); }
  .footer-invite { align-items: flex-start; flex-direction: column; }
  .footer-button { flex: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(3.75rem, 16vw, 5.5rem); }
  h2 { font-size: clamp(2.55rem, 11vw, 3.8rem); }
  .button { width: 100%; }
  .hero-content { width: calc(100% - 28px); padding-bottom: 70px; }
  .hero-actions { width: 100%; }
  .intro-grid { gap: 2.25rem; }
  .editorial-note { padding-left: 1.6rem; }
  .feature-band { padding: 0; background: var(--cream); }
  .feature-image { border-radius: 0; box-shadow: none; }
  .feature-panel { margin: -34px 14px 14px; padding: 2rem 1.35rem; border-radius: 22px; }
  .experience-intro { text-align: left; }
  .experience-intro > p:last-child { margin-left: 0; }
  .story-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: .85rem;
  }
  .story-feature,
  .story-medium:nth-of-type(2),
  .story-medium:nth-of-type(3),
  .story-small:nth-of-type(4),
  .story-small:nth-of-type(5),
  .story-small:nth-of-type(6) {
    display: block;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .story-feature { aspect-ratio: 16 / 10; }
  .story-card { border-radius: 18px; }
  .story-caption { min-height: 58%; padding: 1.15rem; }
  .story-caption h3,
  .story-small .story-caption h3 { font-size: clamp(1.45rem, 7vw, 2rem); }
  .story-feature .story-caption h3 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .amenity-list { grid-template-columns: 1fr; }
  .amenity-list > div { min-height: auto; }
  .local-photo::before { inset: -10px 10px 10px -10px; }
  .cta-section { min-height: 560px; }
  .footer-invite { padding-top: 3.5rem; }
  .footer-invite h2 { font-size: clamp(3rem, 13vw, 4.3rem); }
  .gallery-wall { columns: 1; }
  .gallery-hero { text-align: left; }
}

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


/* Dining guide */
.site-nav a[aria-current='page']::after { right: 0 !important; }
.local-guide-button { margin-top: 1.5rem; }
.guide-page { background: var(--white); }
.guide-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
  color: white;
}
.guide-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(.85) contrast(1.04);
  animation: hero-breathe 18s ease-out both;
}
.guide-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 20, .84), rgba(4, 15, 20, .38) 58%, rgba(4, 15, 20, .20)),
    linear-gradient(0deg, rgba(4, 15, 20, .72), transparent 58%);
}
.guide-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: clamp(72px, 10vw, 120px);
}
.guide-hero-content h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(4.6rem, 10.5vw, 10rem);
}
.guide-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.04rem, 1.7vw, 1.32rem);
}
.guide-intro { background: var(--white); }
.guide-intro-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2.8rem, 7vw, 7rem);
  align-items: start;
}
.guide-intro h2 { margin-bottom: 0; }
.guide-intro-copy { color: var(--ink-soft); font-size: 1.06rem; }
.guide-note {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  color: var(--ink-soft);
}
.guide-note strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.guide-note p { margin: 0; }
.guide-jump {
  position: sticky;
  top: 76px;
  z-index: 20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.guide-jump .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.guide-jump a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.guide-jump a:first-child { border-left: 1px solid var(--line); }
.guide-jump a:hover { background: var(--ink); color: white; }
.guide-jump a span {
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .64;
}
.dining-section { background: var(--white); scroll-margin-top: 140px; }
.dining-section-alt { background: var(--mist); }
.dining-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.6rem, 5vw, 4.4rem);
}
.dining-heading h2 { margin-bottom: 0; }
.dining-heading > p { margin-bottom: .35rem; color: var(--ink-soft); font-size: 1.03rem; }
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.restaurant-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.45rem, 2.4vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(10, 30, 38, .05);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease, color .3s ease;
}
.restaurant-card:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}
.restaurant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: .55;
}
.restaurant-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 145, 91, .48);
  box-shadow: var(--shadow-soft);
}
.restaurant-card.featured {
  grid-column: span 2;
  min-height: 410px;
  background:
    radial-gradient(circle at 88% 10%, rgba(229, 201, 152, .19), transparent 35%),
    var(--ink);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
.restaurant-card.is-selected {
  background:
    radial-gradient(circle at 88% 10%, rgba(229, 201, 152, .19), transparent 35%),
    var(--ink);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
.restaurant-card.featured::after {
  content: 'LOCAL FAVORITE';
  position: absolute;
  right: -1.1rem;
  bottom: -.4rem;
  color: rgba(255, 255, 255, .035);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: .75;
  white-space: nowrap;
  pointer-events: none;
}
.restaurant-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .10em;
  line-height: 1.4;
  text-transform: uppercase;
}
.restaurant-card.featured .restaurant-meta,
.restaurant-card.is-selected .restaurant-meta { color: rgba(255, 255, 255, .62); }
.restaurant-meta span:last-child { text-align: right; }
.restaurant-badge {
  align-self: flex-start;
  margin: 0 0 1rem;
  padding: .36rem .62rem;
  border: 1px solid rgba(184, 145, 91, .42);
  border-radius: 999px;
  color: #8f6b39;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.restaurant-card.featured .restaurant-badge,
.restaurant-card.is-selected .restaurant-badge {
  border-color: rgba(229, 201, 152, .45);
  color: var(--gold-light);
}
.restaurant-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -.035em;
}
.restaurant-card.featured h3 { font-size: clamp(2.8rem, 5vw, 5.1rem); }
.restaurant-description {
  position: relative;
  z-index: 1;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: .95rem;
}
.restaurant-card.featured .restaurant-description,
.restaurant-card.is-selected .restaurant-description {
  max-width: 690px;
  color: rgba(255, 255, 255, .74);
  font-size: 1.02rem;
}
.restaurant-tags, .family-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: auto;
  margin-bottom: 1.35rem;
}
.restaurant-tags span, .family-tags span {
  padding: .38rem .56rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: .65rem;
  font-weight: 700;
}
.restaurant-card.featured .restaurant-tags span,
.restaurant-card.is-selected .restaurant-tags span {
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .72);
}
.restaurant-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.restaurant-card.featured .restaurant-actions,
.restaurant-card.is-selected .restaurant-actions { border-color: rgba(255, 255, 255, .14); }
.restaurant-actions a {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.restaurant-actions a:hover { color: var(--gold); }
.restaurant-card.featured .restaurant-actions a,
.restaurant-card.is-selected .restaurant-actions a { color: rgba(255, 255, 255, .82); }
.restaurant-card.featured .restaurant-actions a:hover,
.restaurant-card.is-selected .restaurant-actions a:hover { color: var(--gold-light); }
.action-divider { width: 1px; height: 16px; background: var(--line); }
.restaurant-card.featured .action-divider,
.restaurant-card.is-selected .action-divider { background: rgba(255, 255, 255, .18); }
.family-section { background: var(--cream); scroll-margin-top: 140px; }
.family-callout {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: clamp(2.4rem, 7vw, 6.5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 15%, rgba(229, 201, 152, .22), transparent 35%),
    linear-gradient(135deg, #0f2a33, #07181e);
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.family-callout-copy { position: relative; z-index: 2; max-width: 760px; }
.family-callout h2 { margin-bottom: .7rem; font-size: clamp(3.4rem, 7vw, 7.2rem); }
.family-callout-copy > p:not(.eyebrow):not(.family-meta) { color: rgba(255, 255, 255, .72); font-size: 1.04rem; }
.family-meta { margin-bottom: 1.5rem; color: var(--gold-light); font-weight: 700; }
.family-tags { margin-top: 1.5rem; margin-bottom: 1.7rem; }
.family-tags span { background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .75); }
.family-number {
  position: absolute;
  right: -1rem;
  bottom: -2.1rem;
  color: rgba(255, 255, 255, .035);
  font-family: var(--serif);
  font-size: clamp(12rem, 27vw, 26rem);
  font-weight: 700;
  line-height: .65;
}
.guide-closing {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}
.guide-closing > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.guide-closing-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 15, 20, .82), rgba(4, 15, 20, .32)); }
.guide-closing-content { position: relative; z-index: 1; }
.guide-closing-content h2 { max-width: 850px; margin-bottom: 1rem; }
.guide-closing-content > p:not(.eyebrow) { max-width: 650px; color: rgba(255, 255, 255, .80); font-size: 1.08rem; }

@media (max-width: 1000px) {
  .restaurant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .restaurant-card.featured { grid-column: span 2; }
  .restaurant-card { min-height: 365px; }
  .guide-jump a { font-size: 1.12rem; }
}

@media (max-width: 820px) {
  .guide-intro-grid, .dining-heading { grid-template-columns: 1fr; }
  .guide-jump { top: 68px; }
  .guide-jump .container { width: 100%; }
  .guide-jump a { justify-content: center; padding: .9rem .55rem; text-align: center; font-family: var(--sans); font-size: .74rem; }
  .guide-jump a span { display: none; }
  .guide-jump a:first-child { border-left: 0; }
  .guide-jump a:last-child { border-right: 0; }
  .dining-heading { align-items: start; gap: 1.5rem; }
}

@media (max-width: 560px) {
  .guide-hero { min-height: 78svh; }
  .guide-hero-content { padding-top: 130px; padding-bottom: 64px; }
  .guide-hero-content h1 { font-size: clamp(4.2rem, 20vw, 6.1rem); }
  .restaurant-grid { grid-template-columns: 1fr; }
  .restaurant-card, .restaurant-card.featured { grid-column: auto; min-height: 0; }
  .restaurant-card { padding: 1.35rem; border-radius: 19px; }
  .restaurant-card.featured h3 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
  .restaurant-meta { align-items: flex-start; flex-direction: column; gap: .3rem; }
  .restaurant-meta span:last-child { text-align: left; }
  .family-callout { min-height: 620px; padding: 2.25rem 1.35rem; border-radius: 22px; }
  .family-actions { width: 100%; }
  .family-number { right: -1rem; bottom: -1rem; }
  .guide-closing { min-height: 620px; }
}


/* v1.6 guide refinements */
.restaurant-card.featured {
  grid-column: auto;
  min-height: 390px;
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(10, 30, 38, .05);
}
.restaurant-card.featured::after { display: none; }
.restaurant-card.featured .restaurant-meta { color: var(--ink-soft); }
.restaurant-card.featured .restaurant-badge { border-color: rgba(184, 145, 91, .42); color: #8f6b39; }
.restaurant-card.featured h3 { font-size: clamp(2rem, 3vw, 3rem); }
.restaurant-card.featured .restaurant-description { max-width: none; color: var(--ink-soft); font-size: .95rem; }
.restaurant-card.featured .restaurant-tags span { background: var(--mist); color: var(--ink-soft); }
.restaurant-card.featured .restaurant-actions { border-color: var(--line); }
.restaurant-card.featured .restaurant-actions a { color: inherit; }
.restaurant-card.featured .action-divider { background: var(--line); }
.restaurant-card.featured.is-selected {
  background: radial-gradient(circle at 88% 10%, rgba(229, 201, 152, .19), transparent 35%), var(--ink);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
.restaurant-card.featured.is-selected .restaurant-meta { color: rgba(255,255,255,.62); }
.restaurant-card.featured.is-selected .restaurant-badge { border-color: rgba(229,201,152,.45); color: var(--gold-light); }
.restaurant-card.featured.is-selected .restaurant-description { color: rgba(255,255,255,.74); }
.restaurant-card.featured.is-selected .restaurant-tags span { background: rgba(255,255,255,.10); color: rgba(255,255,255,.72); }
.restaurant-card.featured.is-selected .restaurant-actions { border-color: rgba(255,255,255,.14); }
.restaurant-card.featured.is-selected .restaurant-actions a { color: rgba(255,255,255,.82); }
.restaurant-card.featured.is-selected .action-divider { background: rgba(255,255,255,.18); }
.guide-destination-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.85rem; margin-top:2rem; }
.guide-destination-card { min-height:235px; display:flex; flex-direction:column; padding:1.45rem; border:1px solid var(--line); border-radius:20px; background:var(--cream); transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.guide-destination-card:hover { transform:translateY(-4px); border-color:rgba(184,145,91,.5); box-shadow:var(--shadow-soft); }
.guide-card-kicker { color:#8f6b39; font-size:.67rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.guide-destination-card h3 { margin:.75rem 0 .65rem; font-family:var(--serif); font-size:clamp(1.65rem,2.2vw,2.35rem); line-height:1; }
.guide-destination-card p { color:var(--ink-soft); font-size:.9rem; }
.guide-card-link { margin-top:auto; padding-top:1rem; color:var(--ink); font-size:.76rem; font-weight:700; letter-spacing:.03em; }
@media (max-width: 980px) { .guide-destination-grid { grid-template-columns:1fr; } .guide-destination-card { min-height:0; } }

/* Guest reviews */
.guest-love {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(184, 145, 91, .12), transparent 28%),
    linear-gradient(135deg, #f7f2ea 0%, #eef2f1 100%);
}
.guest-love::after {
  content: '';
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 145, 91, .18);
  border-radius: 50%;
  pointer-events: none;
}
.guest-love-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}
.guest-love-copy h2 {
  max-width: 720px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}
.guest-love-lede {
  max-width: 610px;
  margin-bottom: 1.55rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.review-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .58rem;
  margin: 0 0 2rem;
}
.review-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .78rem;
  border: 1px solid rgba(16, 37, 45, .12);
  border-radius: 999px;
  background: rgba(255, 253, 248, .65);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .025em;
}
.review-trust-row span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 145, 91, .12);
}
.airbnb-review-panel {
  position: relative;
  padding: clamp(1.15rem, 2.8vw, 2rem);
  border: 1px solid rgba(16, 37, 45, .09);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.airbnb-review-panel::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid rgba(184, 145, 91, .26);
  border-radius: var(--radius-lg);
}
.airbnb-panel-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.airbnb-embed-wrap {
  width: 100%;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
}
.airbnb-embed-frame {
  width: min(450px, 100%) !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
.airbnb-load-note {
  margin: .9rem 0 0;
  color: var(--ink-soft);
  font-size: .72rem;
  text-align: center;
}

@media (max-width: 900px) {
  .guest-love-grid { grid-template-columns: 1fr; }
  .guest-love-copy { max-width: 760px; }
  .airbnb-review-panel { width: min(100%, 620px); }
}

@media (max-width: 560px) {
  .guest-love-copy h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .review-trust-row { gap: .45rem; }
  .review-trust-row span { padding: .5rem .68rem; font-size: .68rem; }
  .airbnb-review-panel { padding: .9rem; border-radius: 22px; }
  .airbnb-review-panel::before { inset: 8px -8px -8px 8px; border-radius: 22px; }
  .airbnb-embed-wrap { min-height: 300px; }
}

/* v1.6 — Stay details and homepage facts */
@media (min-width: 821px) and (max-width: 1280px) {
  .site-nav { gap: 1rem; font-size: .76rem; }
  .site-header { padding-left: 24px; padding-right: 24px; }
}

.home-facts {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  color: white;
}
.home-facts-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.home-facts-grid > div,
.home-facts-grid > a {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.home-facts-grid > :first-child { border-left: 1px solid rgba(255, 255, 255, .12); }
.home-facts-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}
.home-facts-grid span {
  margin-top: .55rem;
  color: rgba(255, 255, 255, .62);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}
.home-facts-grid > a {
  background: rgba(255, 255, 255, .045);
  transition: background .25s ease, color .25s ease;
}
.home-facts-grid > a:hover { background: var(--gold); color: var(--deep); }
.home-facts-grid > a:hover span { color: rgba(7, 24, 30, .72); }

.stay-hero > img { object-position: center 58%; }
.stay-hero .guide-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 15, 20, .88), rgba(4, 15, 20, .48) 58%, rgba(4, 15, 20, .25)),
    linear-gradient(0deg, rgba(4, 15, 20, .76), transparent 64%);
}
.stay-overview { background: var(--cream); }
.stay-overview-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.6rem, 5vw, 4.4rem);
}
.stay-overview-heading h2 { margin-bottom: 0; }
.stay-overview-heading > p {
  margin-bottom: .35rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.stay-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.stay-stat-grid > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}
.stay-stat-grid > div:last-child { border-right: 0; }
.stay-stat-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .9;
}
.stay-stat-grid span {
  margin-top: .75rem;
  color: var(--ink-soft);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.stay-jump .container { grid-template-columns: repeat(4, 1fr); }
.sleep-section { background: var(--white); scroll-margin-top: 140px; }
.sleep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.sleep-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(10, 30, 38, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sleep-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.sleep-image { aspect-ratio: 4 / 3; overflow: hidden; }
.sleep-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.sleep-card:hover .sleep-image img { transform: scale(1.025); }
.sleep-copy { padding: 1.6rem 1.65rem 1.8rem; }
.sleep-copy > span,
.space-card figcaption > span {
  display: block;
  margin-bottom: .6rem;
  color: var(--gold);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sleep-copy h3 {
  margin-bottom: .75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -.035em;
}
.sleep-copy p { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; }

.spaces-section { background: var(--mist); scroll-margin-top: 140px; }
.spaces-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 29vw);
  gap: 1rem;
}
.space-card {
  position: relative;
  grid-column: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.space-card.space-wide { grid-column: span 3; }
.space-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.space-card:hover img { transform: scale(1.025); }
.space-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 15, 20, .82), rgba(4, 15, 20, .04) 64%);
}
.space-card figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  color: white;
}
.space-card figcaption > span { color: var(--gold-light); }
.space-card figcaption strong {
  display: block;
  max-width: 470px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.amenity-detail { background: var(--white); scroll-margin-top: 140px; }
.amenity-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.amenity-detail-card {
  position: relative;
  min-height: 430px;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.amenity-detail-card:nth-child(2),
.amenity-detail-card:nth-child(3) { background: var(--ink); color: white; border-color: transparent; }
.amenity-number {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.amenity-detail-card:nth-child(2) .amenity-number,
.amenity-detail-card:nth-child(3) .amenity-number { color: var(--gold-light); }
.amenity-detail-card h3 {
  margin-bottom: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -.045em;
}
.amenity-detail-card ul { margin: 0; padding: 0; list-style: none; }
.amenity-detail-card li {
  position: relative;
  padding: .72rem 0 .72rem 1.45rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .94rem;
}
.amenity-detail-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.28rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.amenity-detail-card:nth-child(2) li,
.amenity-detail-card:nth-child(3) li { border-color: rgba(255,255,255,.13); color: rgba(255,255,255,.73); }
.amenity-detail-card:nth-child(2) li::before,
.amenity-detail-card:nth-child(3) li::before { background: var(--gold-light); }

.know-section { background: var(--cream); scroll-margin-top: 140px; }
.know-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.know-summary { position: sticky; top: 130px; }
.know-summary h2 { margin-bottom: 2rem; }
.rule-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.rule-list > div { min-height: 112px; padding: 1.15rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rule-list > div:nth-child(2n) { border-right: 0; }
.rule-list > div:nth-last-child(-n+2) { border-bottom: 0; }
.rule-list strong { display: block; font-family: var(--serif); font-size: 1.65rem; line-height: 1; }
.rule-list span { display: block; margin-top: .55rem; color: var(--ink-soft); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booking-note { color: var(--ink-soft); font-size: .88rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 1.55rem 3rem 1.55rem 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: .2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { max-width: 720px; padding: 0 2.5rem 1.6rem 0; color: var(--ink-soft); }
.stay-closing > img { object-position: center 58%; }

@media (max-width: 1000px) {
  .home-facts-grid { grid-template-columns: repeat(3, 1fr); }
  .home-facts-grid > div,
  .home-facts-grid > a { border-bottom: 1px solid rgba(255,255,255,.12); }
  .stay-stat-grid { grid-template-columns: repeat(3, 1fr); }
  .stay-stat-grid > div { border-bottom: 1px solid var(--line); }
  .stay-stat-grid > div:nth-child(3n) { border-right: 0; }
  .stay-stat-grid > div:nth-last-child(-n+3) { border-bottom: 0; }
  .spaces-mosaic { grid-auto-rows: minmax(290px, 40vw); }
  .space-card, .space-card.space-wide { grid-column: span 3; }
}

@media (max-width: 820px) {
  .home-facts-grid { width: 100%; }
  .home-facts-grid > div,
  .home-facts-grid > a { min-height: 96px; padding: 1rem; }
  .stay-overview-heading,
  .know-grid { grid-template-columns: 1fr; }
  .stay-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stay-stat-grid > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .stay-stat-grid > div:nth-child(2n) { border-right: 0; }
  .stay-stat-grid > div:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .stay-stat-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .stay-jump .container { grid-template-columns: repeat(2, 1fr); }
  .stay-jump a:nth-child(2) { border-right: 1px solid var(--line); }
  .sleep-grid { grid-template-columns: 1fr; }
  .sleep-card { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
  .sleep-image { aspect-ratio: auto; min-height: 270px; }
  .sleep-copy { display: flex; flex-direction: column; justify-content: center; }
  .amenity-detail-grid { grid-template-columns: 1fr; }
  .amenity-detail-card { min-height: auto; }
  .know-summary { position: static; }
}

@media (max-width: 560px) {
  .home-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .home-facts-grid > div,
  .home-facts-grid > a { min-height: 90px; }
  .home-facts-grid > :nth-child(2n) { border-right: 0; }
  .home-facts-grid > :first-child { border-left: 0; }
  .home-facts-grid strong { font-size: 1.8rem; }
  .stay-stat-grid > div { min-height: 116px; padding: 1rem; }
  .stay-stat-grid strong { font-size: 2.8rem; }
  .stay-jump { top: 67px; overflow-x: auto; }
  .stay-jump .container { width: max-content; min-width: 100%; display: flex; }
  .stay-jump a { min-width: 170px; border-left: 0 !important; border-right: 1px solid var(--line) !important; }
  .sleep-card { display: block; }
  .sleep-image { min-height: 0; aspect-ratio: 4 / 3; }
  .spaces-mosaic { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .space-card, .space-card.space-wide { grid-column: auto; aspect-ratio: 4 / 3; }
  .space-card.space-wide { aspect-ratio: 16 / 11; }
  .amenity-detail-card { padding: 1.6rem 1.25rem; border-radius: 18px; }
  .rule-list { grid-template-columns: 1fr; }
  .rule-list > div { min-height: 92px; border-right: 0; }
  .rule-list > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .rule-list > div:last-child { border-bottom: 0; }
  .faq-list summary { padding-right: 2.2rem; }
}

/* v1.9.1 — safe review carousel and convenience callout */
.review-carousel { min-height: 440px; }
.review-viewport { position: relative; min-height: 330px; }
.review-slide { animation: reviewFade .45s ease; }
.review-slide[hidden] { display: none; }
.review-stars { margin-bottom: 1.25rem; color: var(--gold); font-size: 1rem; letter-spacing: .18em; }
.review-slide blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.review-author { display: flex; flex-direction: column; gap: .25rem; margin: 1.7rem 0 0; }
.review-author strong { color: var(--ink); font-size: .92rem; }
.review-author span { color: var(--ink-soft); font-size: .76rem; }
.review-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; padding-top: 1.15rem; border-top: 1px solid var(--line); }
.review-arrow { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); cursor: pointer; font-size: 1.1rem; transition: transform .2s ease, border-color .2s ease; }
.review-arrow:hover { transform: translateY(-2px); border-color: var(--gold); }
.review-dots { display: flex; gap: .55rem; }
.review-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(16,37,45,.22); cursor: pointer; }
.review-dot.is-active { background: var(--gold); box-shadow: 0 0 0 4px rgba(184,145,91,.14); }
.local-convenience { margin: 1.6rem 0 0; padding: 1rem 1.1rem; border-left: 2px solid var(--gold); background: rgba(184,145,91,.08); color: var(--ink-soft); }
.local-convenience strong { color: var(--ink); }
@keyframes reviewFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 560px) {
  .review-carousel { min-height: 0; }
  .review-viewport { min-height: 420px; }
  .review-slide blockquote { font-size: clamp(1.35rem, 6vw, 1.8rem); }
}
@media (prefers-reduced-motion: reduce) {
  .review-slide { animation: none; }
}
