:root {
  --ivory: #eef0eb;
  --paper: #fbfbf6;
  --espresso: #202622;
  --charcoal: #101614;
  --forest: #31524c;
  --olive: #6f806d;
  --copper: #a9563f;
  --stone: #cbd0c4;
  --muted: #66706a;
  --shadow: 0 24px 70px rgba(15, 26, 22, .14);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 74px; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 19;
  background: var(--ivory);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 30; background: var(--paper); padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  color: #fff;
  background: transparent;
  box-shadow: none;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  height: 74px;
  color: var(--espresso);
  background: #eef0eb;
  box-shadow: 0 10px 30px rgba(15, 26, 22, .08);
}
.brand { display: inline-flex; align-items: center; font-weight: 700; letter-spacing: 0; }
.brand-logo {
  display: block;
  overflow: hidden;
  background: transparent;
}
.navbar-logo {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
  transition: filter .2s ease;
}
.site-header .brand-logo img { filter: none; }
.site-header.is-scrolled .brand-logo img,
.site-header.is-open .brand-logo img { filter: invert(1) brightness(.45); }
.site-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.5rem); font-size: .9rem; }
.site-nav a { opacity: .9; transition: opacity .18s ease, color .18s ease, background .18s ease, border-color .18s ease; }
.site-nav a:hover { opacity: 1; }
.site-nav a.is-active { color: #e9c3a7; opacity: 1; }
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-open .site-nav a.is-active { color: var(--copper); }
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}
.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}
.nav-toggle { display: none; }
main { padding-top: 0; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 5vw, 5rem) clamp(5.75rem, 12vh, 8.5rem);
  color: #fff;
  overflow: hidden;
}
.hero picture, .hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 50% 50%; z-index: -3; }
.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9,14,12,.74), rgba(9,14,12,.35) 43%, rgba(9,14,12,.08) 78%),
    linear-gradient(0deg, rgba(9,14,12,.50), rgba(9,14,12,.10) 58%, rgba(9,14,12,.28));
}
.hero-content { width: min(690px, 100%); }
.eyebrow, .section-kicker {
  margin: 0 0 .8rem;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero .eyebrow { color: #e9c3a7; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.02; letter-spacing: 0; margin: 0; font-weight: 500; }
h1 { font-size: clamp(5rem, 8.8vw, 8.6rem); max-width: 760px; }
h2 { font-size: 4.35rem; }
h3 { font-size: 2rem; }
p { margin: 0; color: var(--muted); }
.hero-copy { color: rgba(255,255,255,.9); max-width: 560px; font-size: 1.16rem; margin-top: 1.05rem; }
.hero-meta { color: rgba(255,255,255,.78); margin-top: 1rem; font-size: .98rem; font-weight: 800; }
.hero-meta span + span:before { content: " · "; }
.hero-actions, .form-row.full, .footer nav { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-actions { margin-top: 1.7rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}
.button-primary { color: #fff; background: var(--forest); border-color: var(--forest); }
.button-primary:hover { background: #243f3a; }
.button-ghost { color: #fff; border-color: transparent; background: transparent; padding-inline: .25rem; text-decoration: underline; text-underline-offset: 7px; }
.button-outline { border-color: var(--espresso); color: var(--espresso); background: transparent; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.45);
}
.scroll-cue:after { content: ""; position: absolute; bottom: 0; left: -4px; width: 9px; height: 9px; border-right: 1px solid #fff; border-bottom: 1px solid #fff; transform: rotate(45deg); }

.quick-bar {
  display: grid;
  grid-template-columns: repeat(4, max-content) minmax(180px, auto);
  justify-content: center;
  align-items: center;
  gap: .7rem 1rem;
  padding: .9rem clamp(1rem, 5vw, 5rem);
  background: var(--charcoal);
  color: #fff;
}
.quick-bar span {
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 800;
}
.quick-bar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  background: #b76a43;
  color: #fff;
  font-weight: 900;
}

.section { padding: clamp(3.5rem, 7vw, 6.25rem) clamp(1rem, 5vw, 5rem); scroll-margin-top: 76px; }
.intro-grid, .booking, .contact-card, .jacuzzi-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-copy p, .booking-copy p, .section-head p, .nearby-copy p, .reviews-panel p, .jacuzzi-panel p { max-width: 640px; margin-top: 1rem; font-size: 1.04rem; }
.intro-media { position: relative; min-height: 640px; }
.photo { overflow: hidden; box-shadow: var(--shadow); background: var(--stone); }
.photo img, .moment img, .space-row img, .jacuzzi-panel img, .gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo.tall { position: absolute; right: 0; top: 0; width: 72%; height: 78%; }
.photo.small { position: absolute; left: 0; bottom: 5%; width: 48%; height: 34%; }
.photo.second { left: auto; right: 6%; bottom: 0; width: 38%; height: 27%; }

.experience, .nearby, .booking { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; margin-bottom: 3rem; }
.moments {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  align-items: end;
  gap: 1rem;
}
.moment { min-height: 500px; display: grid; align-content: end; gap: .75rem; background: #e2e6dd; padding: 1rem; }
.moment span, .nearby-list span { color: var(--copper); font-weight: 900; font-size: .78rem; letter-spacing: 0; }
.moment p { margin-bottom: .65rem; }
.moment img { height: 310px; }
.moment-wide { min-height: 590px; background: #253831; color: #fff; }
.moment-wide p { color: rgba(255,255,255,.75); }
.moment-wide img { height: 390px; }

.section-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: end; margin-bottom: 2.25rem; }
.section-head .section-kicker { grid-column: 1 / -1; }
.space-list { display: grid; gap: 2rem; }
.space-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}
.space-row.reverse { grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); }
.space-row.reverse img { order: 2; }
.space-row img { aspect-ratio: 16 / 10; object-fit: cover; box-shadow: var(--shadow); }
.space-row div { min-width: 0; padding: clamp(1rem, 2.5vw, 2rem); }
.space-row h3, .space-row p { max-width: 460px; }
.space-row p { margin-top: 1rem; overflow-wrap: anywhere; }

.jacuzzi { background: var(--charcoal); color: #fff; }
.jacuzzi-panel { background: #19221f; }
.jacuzzi-panel img { min-height: 540px; }
.jacuzzi-panel div { padding: clamp(2rem, 5vw, 4rem); }
.jacuzzi-panel p { color: rgba(255,255,255,.72); }
.text-link { display: inline-block; margin-top: 1.35rem; color: #e3b69a; font-weight: 800; border-bottom: 1px solid currentColor; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}
.amenity-grid article { min-height: 260px; padding: 1.35rem; border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 1.5rem; border: 1px solid var(--copper); border-radius: 50%; color: var(--copper); }
.icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.amenity-grid p { margin-top: .8rem; font-size: .94rem; }

.nearby { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 5vw, 4.5rem); }
.nearby-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone); border: 1px solid var(--stone); }
.nearby-list div { background: var(--paper); padding: clamp(1.15rem, 2.2vw, 1.65rem); min-height: 176px; }
.nearby-list p { margin-top: .75rem; }
.nearby-note { grid-column: 2; margin-top: 1rem; font-size: .95rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: .7rem;
}
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(8), .gallery-item:nth-child(13) { grid-column: span 6; grid-row: span 4; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(6), .gallery-item:nth-child(10) { grid-column: span 3; grid-row: span 3; }
.gallery-item { grid-column: span 3; grid-row: span 2; }
.gallery-item.is-hidden { display: none; }
.gallery-item:after { content: attr(data-caption); position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem .9rem .8rem; color: #fff; font-size: .85rem; text-align: left; background: linear-gradient(transparent, rgba(0,0,0,.62)); opacity: 0; transition: opacity .2s ease; }
.gallery-item:hover:after, .gallery-item:focus-visible:after { opacity: 1; }
.gallery-more { margin: 2rem auto 0; display: flex; }

.reviews-panel { width: min(1180px, 100%); margin: auto; padding: clamp(2rem, 5vw, 4rem) 0; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.reviews-heading { width: min(820px, 100%); text-align: center; margin: 0 auto 2rem; }
.reviews-heading p { margin-inline: auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--stone);
}
.review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.review-top strong { display: block; }
.review-top span { display: block; color: var(--muted); font-size: .86rem; margin-top: .15rem; }
.review-top b {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: #ecf0e8;
  color: var(--forest);
  border: 1px solid var(--stone);
  border-radius: 50%;
}
.review-source { color: var(--copper); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.review-card h3 { font-family: var(--sans); font-size: 1.08rem; line-height: 1.25; font-weight: 900; }
.review-card p { color: var(--espresso); font-size: .96rem; margin-top: auto; }

.booking { grid-template-columns: .72fr 1.28fr; align-items: start; border-top: 1px solid var(--stone); }
.booking-early {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2.2rem);
  background: #f4f6f0;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: .35rem; }
.booking-details {
  display: grid;
  grid-template-columns: 1fr 1fr .55fr;
  gap: .8rem;
  padding-bottom: .15rem;
}
.availability-box, .price-estimate, .form-row.full, .form-note, .form-status, .booking-form button[type="submit"] { grid-column: 1 / -1; }
.price-estimate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem 1rem;
  align-items: end;
  padding: .9rem 1rem;
  background: var(--paper);
  border: 1px solid var(--stone);
}
.price-estimate span {
  color: var(--copper);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-estimate strong {
  justify-self: end;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1;
}
.price-estimate small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 800;
}
.availability-box {
  display: grid;
  gap: 1rem;
  padding-bottom: .5rem;
}
.availability-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.availability-head span {
  display: block;
  color: var(--copper);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.availability-head strong {
  display: block;
  margin-top: .18rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}
.calendar-controls { display: flex; gap: .4rem; }
.calendar-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  background: var(--paper);
  color: var(--espresso);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.calendar-month {
  min-width: 0;
}
.calendar-month h3 {
  margin-bottom: .7rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .28rem;
}
.calendar-weekday {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
}
.calendar-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
  color: var(--espresso);
  font: inherit;
  font-size: .86rem;
  cursor: pointer;
}
.calendar-day.is-empty { visibility: hidden; pointer-events: none; }
.calendar-day.is-past,
.calendar-day.is-busy {
  color: #8a9187;
  background: #e0e4da;
  cursor: not-allowed;
  text-decoration: line-through;
}
.calendar-day.is-selected,
.calendar-day.is-range {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  text-decoration: none;
}
.calendar-day.is-range { border-radius: 12px; }
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  color: var(--muted);
  font-size: .84rem;
}
.calendar-legend span { display: inline-flex; align-items: center; gap: .35rem; }
.calendar-legend i {
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  border: 1px solid var(--stone);
  background: var(--paper);
}
.calendar-legend i.is-busy { background: #e0e4da; }
.calendar-legend i.is-selected { background: var(--forest); border-color: var(--forest); }
.booking-summary {
  padding: .75rem .9rem;
  background: rgba(49,82,76,.08);
  border: 1px solid rgba(49,82,76,.18);
  color: var(--forest);
  font-weight: 900;
}
label { font-weight: 800; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9c0b4;
  background: var(--paper);
  color: var(--espresso);
  border-radius: var(--radius);
  padding: .75rem .85rem;
}
textarea { resize: vertical; }
.field-error { min-height: 1rem; color: #8e3328; font-size: .8rem; font-weight: 800; }
.form-note { color: var(--muted); font-size: .9rem; }
.form-status { min-height: 1.4rem; color: var(--forest); font-weight: 800; }
.form-status.is-error { color: #8e3328; }
.booking-form button[type="submit"] { width: 100%; }

.contact-card {
  padding: clamp(1.25rem, 4vw, 3rem);
  background: #17211e;
  color: #fff;
}
.contact-card p { color: rgba(255,255,255,.74); margin-top: 1rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.contact-card .button { color: #fff; border-color: rgba(255,255,255,.55); }
.map-panel {
  min-height: 360px;
  display: grid;
  place-content: center;
  gap: .35rem;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(49,82,76,.92), rgba(21,32,29,.72)),
    repeating-linear-gradient(35deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(255,255,255,.18);
}
.map-panel span { text-transform: uppercase; letter-spacing: 0; color: #e2b98f; font-weight: 900; font-size: .75rem; }
.map-panel strong { font-family: var(--serif); font-size: 4.4rem; font-weight: 500; }
.map-panel small { color: rgba(255,255,255,.72); }

.faq-list { max-width: 980px; margin: auto; border-top: 1px solid var(--stone); }
details { border-bottom: 1px solid var(--stone); padding: .7rem 0; }
summary { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-weight: 900; }
summary:after { content: "+"; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--stone); border-radius: 50%; color: var(--copper); }
details[open] summary:after { content: "-"; }
details p { margin: .25rem 0 0; max-width: 720px; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 2rem clamp(1rem, 5vw, 5rem) calc(2rem + env(safe-area-inset-bottom));
  background: var(--charcoal);
  color: #fff;
}
.footer p { color: rgba(255,255,255,.66); font-size: .9rem; }
.footer > p { text-align: right; }
.footer a { color: rgba(255,255,255,.8); font-size: .9rem; }
.mobile-cta { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 1rem;
  background: rgba(12,10,9,.94);
  color: #fff;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; min-width: 0; }
.lightbox img { width: 100%; max-height: 82svh; object-fit: contain; }
.lightbox figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: .9rem; color: rgba(255,255,255,.78); }
.lightbox button { min-width: 48px; min-height: 48px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: #fff; border-radius: 50%; cursor: pointer; font-size: 2rem; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media (max-width: 1080px) {
  h1 { font-size: 5rem; }
  h2 { font-size: 3.55rem; }
  h3 { font-size: 1.8rem; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .moments, .intro-grid, .booking, .nearby, .contact-card, .jacuzzi-panel, .split-heading, .section-head { grid-template-columns: 1fr; }
  .moment, .moment-wide { min-height: auto; }
  .intro-media { min-height: 560px; }
  .footer { grid-template-columns: 1fr; }
  .footer > p { text-align: left; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 68px; }
  main { padding-top: 0; }
  .site-header { height: 68px; }
  .site-header.is-open, .site-header.is-scrolled { height: 68px; }
  .navbar-logo { height: 48px; }
  .nav-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: inherit;
    z-index: 24;
  }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; }
  .site-header.is-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .site-header.is-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 68px 0 0;
    z-index: 31;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 1.25rem 1.25rem 2rem;
    background: var(--ivory);
    color: var(--espresso);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { min-height: 58px; display: flex; align-items: center; border-bottom: 1px solid var(--stone); font-size: 1.18rem; font-weight: 800; opacity: 1; }
  .nav-cta { margin-top: 1rem; justify-content: center; background: var(--forest); color: #fff; border: 0; backdrop-filter: none; }
  body.nav-open .mobile-cta { display: none; }
  .quick-bar { grid-template-columns: repeat(2, 1fr); text-align: center; }
  .quick-bar span { padding-right: 0; border-right: 0; }
  .quick-bar a { display: none; }
  .hero { min-height: 100svh; padding-top: 7rem; padding-bottom: clamp(4.25rem, 10vh, 6rem); }
  .hero-image { object-position: 50% center; }
  .moments, .reviews-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 84vw);
    grid-template-columns: none;
    gap: .9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: .75rem;
  }
  .moment, .review-card { scroll-snap-align: start; }
  .moment, .moment-wide { min-height: auto; align-content: start; }
  .moment img, .moment-wide img { height: auto; aspect-ratio: 4 / 3; }
  .space-row, .space-row.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .space-row img, .space-row.reverse img { order: 0; }
  .space-row div { order: 0; padding: 0 0 1rem; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 84px; }
  .gallery-item, .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(6), .gallery-item:nth-child(10) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(8), .gallery-item:nth-child(13) { grid-column: span 6; grid-row: span 3; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-details { grid-template-columns: 1fr; }
  .price-estimate { grid-template-columns: 1fr; }
  .price-estimate strong { justify-self: start; }
  .calendar-months { grid-template-columns: 1fr; }
  .calendar-month:nth-child(n+2) { display: none; }
  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenity-grid article { min-height: auto; padding: 1rem; }
  .nearby { display: block; }
  .nearby-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 72vw);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .nearby-list div { scroll-snap-align: start; min-height: 170px; }
  .nearby-note { grid-column: auto; }
  .mobile-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 18;
    min-height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(18,16,14,.28);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
  body.has-mobile-cta { padding-bottom: 76px; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 68px; }
  body { padding-bottom: 0; }
  body.nav-open::before { background: rgba(238,240,235,.98); }
  .site-header {
    height: 68px;
    padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
    color: #fff;
    background: transparent;
    box-shadow: none;
  }
  .site-header.is-open,
  .site-header.is-scrolled {
    height: 68px;
    color: var(--espresso);
    background: #eef0eb;
    box-shadow: 0 10px 30px rgba(15, 26, 22, .08);
  }
  .navbar-logo { height: 46px; }
  .nav-toggle {
    width: 44px;
    height: 44px;
    gap: 5px;
  }
  .nav-toggle span {
    width: 23px;
    height: 2px;
  }
  .site-nav { inset: 68px 0 0; padding-inline: 22px; }
  .hero {
    min-height: 100dvh;
    min-height: 100svh;
    align-items: end;
    padding: calc(88px + env(safe-area-inset-top)) max(22px, env(safe-area-inset-left)) calc(76px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-right));
  }
  .hero-image { object-position: 50% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7,11,10,.08) 0%, rgba(7,11,10,.02) 36%, rgba(7,11,10,.22) 58%, rgba(7,11,10,.88) 100%),
      radial-gradient(ellipse at 24% 82%, rgba(7,11,10,.78) 0%, rgba(7,11,10,.48) 34%, rgba(7,11,10,.08) 66%, transparent 100%);
  }
  .hero-content {
    width: min(100%, 390px);
    padding-bottom: 0;
  }
  .hero .eyebrow {
    margin-bottom: .55rem;
    font-size: .7rem;
  }
  h1 { font-size: clamp(2.85rem, 13.2vw, 4rem); max-width: 9ch; }
  .hero-copy {
    width: min(100%, 360px);
    margin-top: .7rem;
    font-size: clamp(.98rem, 3.8vw, 1.06rem);
    line-height: 1.42;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: .45rem .75rem;
    width: min(100%, 348px);
    margin-top: .95rem;
    color: rgba(255,255,255,.86);
    font-size: .84rem;
    line-height: 1.2;
  }
  .hero-meta span {
    padding: .38rem .5rem;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
  }
  .hero-meta span + span:before { content: none; }
  .hero-rate { display: none; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    width: min(100%, 348px);
    margin-top: 1.05rem;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }
  .hero-actions .button-primary {
    background: #b76a43;
    border-color: #b76a43;
    color: #fff;
    box-shadow: 0 16px 36px rgba(9,14,12,.34);
  }
  .hero-actions .button-ghost {
    justify-self: center;
    width: auto;
    min-height: 34px;
    padding: 0 .2rem;
    color: rgba(255,255,255,.88);
  }
  .scroll-cue {
    height: 34px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: auto;
    right: max(22px, env(safe-area-inset-right));
    opacity: .78;
  }
  .booking-summary { position: sticky; top: 76px; z-index: 3; }
  .reviews-panel { padding-block: 2rem; }
  .footer, .footer > p { text-align: center; }
  .footer nav { justify-content: center; }
}

@media (max-width: 560px) {
  h2 { font-size: 2.55rem; }
  h3 { font-size: 1.55rem; }
  .map-panel strong { font-size: 2.8rem; }
  .section { padding-inline: 1rem; }
  .intro-media { min-height: 440px; }
  .photo.tall { width: 82%; height: 68%; }
  .photo.small { width: 58%; height: 30%; }
  .photo.second { width: 46%; }
  .lightbox { grid-template-columns: 52px minmax(0, 1fr) 52px; padding: .5rem; }
  .lightbox button { min-width: 44px; min-height: 44px; }
  .contact-actions { display: grid; }
  .contact-actions .button { width: 100%; }
}

@media (max-width: 360px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: repeat(2, max-content); }
  .hero { padding-inline: 20px; }
  .hero-copy { max-width: 300px; }
}
