:root {
  --paper: #fbfaf5;
  --paper-soft: #f3efe6;
  --white: #ffffff;
  --ink: #202219;
  --muted: #626650;
  --olive: #33421f;
  --olive-2: #56683a;
  --teal: #0d6a62;
  --accent: #ead27a;
  --accent-hover: #f4df91;
  --accent-border: #c9a64a;
  --rose: #bf756d;
  --brass: #a77b35;
  --clay: #8f5048;
  --stone: #d8d0bf;
  --line: rgba(51, 66, 31, 0.18);
  --line-strong: rgba(51, 66, 31, 0.32);
  --shadow: 0 22px 60px rgba(32, 34, 25, 0.14);
  --radius: 8px;
  --wrap: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fs-body: 1rem;
  --lh-body: 1.62;
  --fs-hero-title: clamp(2.9rem, 5vw, 4.8rem);
  --fs-page-title: clamp(2.25rem, 3.65vw, 3.35rem);
  --fs-hero-lede: clamp(1.3rem, 1.85vw, 1.58rem);
  --fs-page-lede: clamp(1.22rem, 1.62vw, 1.58rem);
  --fs-section-title: clamp(1.85rem, 2.7vw, 2.85rem);
  --fs-subtitle: clamp(1.44rem, 2.05vw, 2.05rem);
  --fs-lead: clamp(1.14rem, 1.3vw, 1.26rem);
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: 0;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 80;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding-block: 18px;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-solid,
.site-header.is-menu-open,
html:not([data-page="home"]) .site-header {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
  text-decoration: none;
}

.brand-wordmark {
  display: block;
  min-width: 0;
}

.brand-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.57vw, 1.36rem);
  line-height: 1.05;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: currentColor;
  font-size: 0.875rem;
  opacity: 0.78;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
  min-width: 0;
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  transform: translateY(-7px);
}

.menu-toggle-lines::after {
  transform: translateY(7px);
}

.site-header.is-menu-open .menu-toggle-lines {
  background: transparent;
}

.site-header.is-menu-open .menu-toggle-lines::before {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-lines::after {
  transform: rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent-border);
  font-size: 0.84rem;
}

.site-header.is-solid .nav-cta,
html:not([data-page="home"]) .site-header .nav-cta {
  color: var(--ink);
  border-color: var(--accent-border);
  background: var(--accent);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-hover);
  border-color: var(--accent-border);
  color: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero .button.secondary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.light:hover {
  color: var(--ink);
  background: var(--paper-soft);
  border-color: var(--line-strong);
}

.button[disabled],
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.lang-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.lang-control > svg {
  display: none;
}

.lang-select {
  width: 86px;
  min-width: 86px;
  min-height: 40px;
  padding: 8px 24px 8px 12px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.site-header.is-solid .lang-select,
.site-header.is-menu-open .lang-select,
html:not([data-page="home"]) .site-header .lang-select {
  background: var(--white);
  border-color: var(--line-strong);
}

.hero {
  position: relative;
  display: block;
  --hero-media-height: clamp(420px, calc(100svh - 210px), 660px);
  padding-top: 0;
  overflow: visible;
  color: var(--white);
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: var(--hero-media-height);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 24, 17, 0.68), rgba(20, 24, 17, 0.38) 44%, rgba(20, 24, 17, 0.16)),
    linear-gradient(0deg, rgba(20, 24, 17, 0.62), rgba(20, 24, 17, 0) 54%);
}

.hero-media,
.page-hero-media {
  position: relative;
  width: 100%;
  margin: 0;
}

.hero-media {
  height: var(--hero-media-height);
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--wrap);
  height: var(--hero-media-height);
  margin: 0;
  padding: 0 0 clamp(28px, 5.5svh, 58px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-hero-title);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: var(--fs-hero-lede);
  font-weight: 700;
  line-height: 1.4;
}

.hero-address {
  display: none;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3svh, 30px);
}

.page-hero {
  position: relative;
  display: block;
  --page-hero-media-height: clamp(340px, 38vw, 520px);
  padding-top: 0;
  overflow: visible;
  margin-top: 0;
  color: var(--white);
  background: var(--paper);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: var(--page-hero-media-height);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 24, 17, 0.66), rgba(20, 24, 17, 0.34) 48%, rgba(20, 24, 17, 0.12)),
    linear-gradient(0deg, rgba(20, 24, 17, 0.58), rgba(20, 24, 17, 0) 54%);
}

.page-hero-media {
  height: var(--page-hero-media-height);
}

.page-hero-inner {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--wrap);
  height: var(--page-hero-media-height);
  margin: 0;
  padding: 0 0 clamp(36px, 6vh, 70px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-page-title);
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: var(--fs-page-lede);
  font-weight: 700;
  line-height: 1.42;
}

@media (min-width: 641px) {
  html[data-page="location"] .page-hero-media img {
    object-position: 50% 15%;
  }
}

html[data-page="availability"] .page-hero {
  --page-hero-media-height: clamp(300px, 30vw, 410px);
}

.fact-strip {
  position: relative;
  z-index: 3;
  width: var(--wrap);
  margin: clamp(18px, 2.6svh, 28px) auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

html[data-page="home"] .hero + .fact-strip {
  margin-top: 0;
  padding: clamp(18px, 2.4svh, 26px) 0 clamp(16px, 2svh, 22px);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.booking-button svg {
  flex: 0 0 auto;
}

.sticky-booking-cta {
  display: none;
}

html[data-page="availability"] .sticky-booking-cta,
html[data-page="contact"] .sticky-booking-cta {
  display: none;
}

.fact {
  min-height: clamp(120px, 16svh, 150px);
  padding: clamp(16px, 2.2svh, 22px) 20px;
  background: var(--paper);
  border: 1px solid rgba(95, 98, 75, 0.2);
  border-radius: 12px;
}

.fact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--olive);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.fact-icon svg {
  width: 34px;
  height: 34px;
}

.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.15;
}

.fact span:not(.fact-icon) {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section {
  padding: clamp(66px, 8vw, 116px) 0;
}

.section.band,
.section.alt {
  background: var(--paper-soft);
}

.section h2,
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-section-title);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-subtitle);
  font-weight: 400;
  line-height: 1.12;
}

.section p {
  color: var(--muted);
  line-height: var(--lh-body);
}

.section p + p {
  margin-top: 18px;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.split.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}

.split > *,
.split.reverse > * {
  min-width: 0;
}

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-lightbox-image {
  cursor: zoom-in;
}

.js-lightbox-image:focus-visible {
  outline: 3px solid rgba(34, 113, 104, 0.55);
  outline-offset: 4px;
}

.media-frame.wide {
  aspect-ratio: 3 / 2;
}

html[data-page="home"] .home-intro .media-frame.wide,
html[data-page="home"] .home-location .media-frame.wide {
  width: 100%;
  max-width: 100%;
  min-height: 0;
}

.media-frame.tall {
  aspect-ratio: 3 / 2;
}

.house-spaces {
  overflow: hidden;
}

.house-zones {
  display: grid;
  gap: clamp(56px, 8vw, 104px);
}

.house-zone {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.house-intro.no-section-title .split {
  align-items: center;
}

.home-intro.no-section-title .split {
  align-items: center;
}

.house-intro.no-section-title p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: var(--fs-page-lede);
  line-height: 1.5;
}

.home-intro.no-section-title .house-statement {
  margin-top: 0;
}

.home-intro.no-section-title .button,
.house-intro.no-section-title .button {
  margin-top: 28px;
}

.house-intro .split > div > h2 {
  max-width: 560px;
  font-size: var(--fs-section-title);
  line-height: 1.08;
}

.house-statement {
  max-width: 700px;
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--fs-page-lede);
  line-height: 1.38;
}

.house-spaces.no-section-title {
  padding-top: clamp(56px, 8vw, 108px);
}

.house-spaces.no-section-title .house-zones {
  display: grid;
  gap: clamp(64px, 8vw, 104px);
}

.house-zone:nth-child(even) {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
}

.house-zone:nth-child(even) .house-zone-copy {
  order: 2;
}

.house-zone-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.house-zone-copy h2 {
  margin-bottom: 20px;
  font-size: var(--fs-section-title);
}

.home-location h2 {
  margin-bottom: 20px;
  font-size: var(--fs-section-title);
}

.home-location .button {
  margin-top: 28px;
}

.source-link {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.source-link a {
  color: var(--teal);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.house-zone-copy p:not(.eyebrow) {
  max-width: 560px;
}

.house-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.house-photo {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.house-photo.gallery-item.feature {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 3 / 2;
}

.house-photo .gallery-caption {
  display: none;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.photo-card {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(32, 34, 25, 0.12);
}

.photo-card figcaption {
  max-width: 96%;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  background: transparent;
  border: 0;
}

.amenity {
  display: flex;
  flex-direction: column;
  min-height: 164px;
  padding: 24px 22px;
  background: rgba(243, 239, 230, 0.42);
  border: 1px solid rgba(95, 98, 75, 0.2);
  border-radius: 12px;
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--olive);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.amenity-icon svg {
  width: 34px;
  height: 34px;
}

.amenity b {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.24;
}

.amenity small {
  display: block;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.5;
}

.section-head {
  margin-bottom: 38px;
}

.section-head.no-section-title .lead {
  margin-top: 0;
}

.gallery-sections {
  display: grid;
  gap: clamp(42px, 7vw, 80px);
}

.gallery-section h2 {
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.gallery-item {
  position: relative;
  grid-column: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  min-width: 0;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  cursor: zoom-in;
  background: var(--stone);
  box-shadow: 0 12px 34px rgba(32, 34, 25, 0.1);
}

.gallery-item.feature {
  grid-column: auto;
  grid-row: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 16px 16px;
  color: var(--white);
  text-align: left;
  background: linear-gradient(0deg, rgba(13, 18, 9, 0.72), rgba(13, 18, 9, 0));
  font-size: 0.9rem;
  line-height: 1.3;
}

.distance-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.distance {
  padding: 24px;
  background: var(--white);
}

.distance strong {
  display: block;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.distance span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.availability-section {
  padding-top: clamp(28px, 4.2vw, 52px);
}

.booking-panel {
  display: block;
  width: min(980px, var(--wrap));
}

.booking-overlay[hidden] {
  display: none;
}

.booking-overlay {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.6vw, 38px);
  background: transparent;
}

.booking-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 9, 0.62);
  backdrop-filter: blur(8px);
}

.booking-overlay-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 252, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.booking-overlay-header {
  position: sticky;
  top: 0;
  z-index: 12;
}

.booking-step-heading {
  display: grid;
  gap: 2px;
}

.booking-step-count {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.booking-step-header h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.booking-overlay-close {
  flex: 0 0 auto;
}

.booking-panel-overlay {
  width: 100%;
  padding: 0;
}

@media (min-width: 761px) {
  .booking-overlay-dialog {
    height: min(680px, calc(100dvh - 32px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .booking-overlay-header {
    position: relative;
    flex: 0 0 auto;
  }

  .booking-panel-overlay {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
  }
}

.booking-overlay .booking-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-overlay .calendar-card {
  max-width: 100%;
  margin: 0;
  padding: clamp(18px, 2.2vw, 28px) clamp(20px, 3vw, 40px) clamp(18px, 2.4vw, 30px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

html.booking-overlay-open,
body.booking-overlay-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.booking-overlay-open .sticky-booking-cta {
  display: none;
}

.booking-copy p:first-child {
  margin-top: 0;
  font-size: 1.02rem;
  line-height: 1.32;
}

.booking-copy p {
  max-width: 700px;
}

.booking-copy .sync-note {
  display: none;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-top {
  margin-bottom: 12px;
}

.booking-form {
  margin: 0;
  padding: 0;
  border: 0;
}

.calendar-picker[hidden] {
  display: none;
}

.calendar-picker {
  margin-top: 16px;
}

.calendar-mobile-summary {
  display: none;
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field {
  min-width: 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-left: 1px solid var(--line);
  text-align: left;
}

.field:first-child {
  border-left: 0;
}

.date-control {
  appearance: none;
  cursor: pointer;
}

.date-control:hover,
.date-control.is-active {
  background: var(--paper);
}

.date-control.is-active {
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 2px var(--ink);
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.field-label {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.field-value,
.field select {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.field-value.is-empty {
  color: rgba(98, 102, 80, 0.68);
}

.selection-helper {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
}

.calendar-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(16px, 2vw, 24px);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
}

.calendar-toolbar button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.calendar-toolbar button:hover {
  background: var(--paper-soft);
}

.icon-button:hover {
  color: var(--white);
  background: var(--olive);
}

.calendar-toolbar strong {
  min-width: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.16;
}

.calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3.2vw, 38px);
}

.month {
  min-width: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.month-title {
  padding: 2px 0 10px;
  color: var(--ink);
  background: transparent;
  font-family: var(--sans);
  font-weight: 700;
  text-align: center;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekdays span {
  padding: 2px 2px 7px;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: transparent;
}

.days {
  row-gap: 0;
}

.day {
  position: relative;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
}

.day.outside {
  color: rgba(98, 102, 80, 0.34);
  background: transparent;
}

.day.outside.empty {
  color: transparent;
  cursor: default;
  pointer-events: none;
}

.day.available:hover {
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px var(--ink);
}

.day.busy,
.day.edge-start,
.day.edge-end {
  color: rgba(32, 34, 25, 0.36);
  background: transparent;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  cursor: not-allowed;
}

.day.busy::after,
.day.edge-start::after,
.day.edge-end::after {
  display: none;
}

.day.selected {
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  z-index: 1;
  text-decoration: none;
  box-shadow: 0 0 0 2px var(--white);
}

.day.in-range {
  color: var(--ink);
  background: #f1f0ec;
}

.day.in-range:not(.selected) {
  border-radius: 0;
}

.day.past {
  color: rgba(32, 34, 25, 0.32);
  opacity: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  cursor: not-allowed;
}

.calendar-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 8px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.swatch {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.swatch.busy {
  position: relative;
  background: #f4f2ed;
}

.swatch.busy::after {
  content: "";
  position: absolute;
  right: 3px;
  left: 3px;
  top: 50%;
  height: 1px;
  background: rgba(32, 34, 25, 0.38);
  transform: rotate(-12deg);
}

.swatch.selected {
  background: var(--ink);
  border-radius: 999px;
}

.sync-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-meta-row .sync-note {
  margin: 0;
}

.calendar-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.calendar-bottom-copy {
  min-width: 0;
}

.calendar-bottom-copy .sync-note {
  min-height: 1.2em;
  margin-top: 6px;
}

.calendar-clear {
  appearance: none;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calendar-clear:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.booking-actions .button {
  min-width: 180px;
}

.contact-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-details-column .contact-list {
  margin-top: 0;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 400;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.contact-item a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.map-card {
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.map-card iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.map-card .button {
  margin-top: 18px;
}

.faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-weight: 700;
}

.faq-item p {
  max-width: 820px;
  margin-top: 0;
}

.site-footer {
  color: var(--white);
  background: var(--olive);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 1fr;
  gap: 28px;
}

.footer-brand,
.footer-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
}

.footer-brand {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.footer-grid h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-address-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.footer-contact-lines {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px 32px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: inherit;
}

.site-credit {
  margin-inline-start: auto;
}

@media (max-width: 640px) {
  :root {
    --fs-page-lede: clamp(1.16rem, 5vw, 1.38rem);
  }

  .footer-bottom {
    display: grid;
    justify-content: stretch;
  }

  .site-credit {
    margin-inline-start: 0;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 12, 7, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.popup-close {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease;
}

.popup-close:hover {
  color: var(--ink);
  background: var(--paper-soft);
  border-color: var(--line-strong);
}

.popup-close:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

.inquiry-step[hidden] {
  display: none;
}

.inquiry-step {
  position: relative;
  width: 100%;
}

.inquiry-step-panel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-step-body {
  width: 100%;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 32px);
}

.inquiry-entry > p {
  margin-top: 0;
  margin-bottom: 16px;
}

.inquiry-entry[hidden],
.inquiry-success[hidden] {
  display: none;
}

.inquiry-step.is-success .inquiry-step-panel {
  min-height: clamp(380px, 54vh, 520px);
  display: grid;
}

.inquiry-step.is-success .inquiry-step-body {
  display: grid;
  place-items: center;
}

.booking-panel-overlay .inquiry-step.is-success,
.booking-panel-overlay .inquiry-step.is-success .inquiry-step-panel {
  min-height: 100%;
}

.inquiry-success {
  width: min(100%, 720px);
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: auto;
  text-align: center;
  outline: none;
}

.inquiry-success-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #365f25;
  background: #eef3e9;
  border: 1px solid #cbd8c1;
  border-radius: var(--radius);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.inquiry-success-message {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  text-wrap: balance;
}

.inquiry-success-contact {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.inquiry-success-contact > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.inquiry-success-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.inquiry-success-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--olive);
  font-weight: 700;
  text-decoration: none;
}

.inquiry-success-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-success-links a:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 4px;
  border-radius: 2px;
}

.inquiry-success-links svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.inquiry-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inquiry-summary div {
  min-width: 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 9px 12px;
  border-left: 1px solid var(--line);
}

.inquiry-summary div:first-child {
  border-left: 0;
}

.inquiry-summary div:nth-child(n + 3) {
  border-top: 0;
}

.inquiry-summary dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.inquiry-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.inquiry-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.inquiry-form {
  display: grid;
  gap: 10px;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.inquiry-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.inquiry-field span {
  font-size: 0.84rem;
}

.inquiry-field-wide {
  grid-column: 1 / -1;
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font: inherit;
  font-weight: 400;
}

.inquiry-field input {
  min-height: 48px;
}

.inquiry-field textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.45;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
  border-color: var(--olive);
}

.inquiry-privacy,
.inquiry-form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.inquiry-form-status {
  min-height: 1.4em;
  font-weight: 700;
}

.inquiry-form-status.is-success {
  color: #365f25;
}

.inquiry-form-status.is-error {
  color: #9a2f24;
}

.inquiry-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquiry-dialog-actions .button {
  min-width: 180px;
}

.booking-overlay .inquiry-step-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-overlay .inquiry-step-header {
  display: none;
}

.booking-overlay .inquiry-step-body {
  padding: clamp(24px, 3vw, 34px) clamp(20px, 3vw, 40px);
}

.booking-panel.is-inquiry-open > .calendar-card,
.booking-panel.is-inquiry-open .calendar-bottom-bar {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
    padding-inline: 20px;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .nav-cta {
    color: var(--ink);
    border-color: var(--accent-border);
    background: var(--accent);
  }

  .lang-select {
    color: var(--olive);
    border-color: var(--line-strong);
    background: var(--white);
  }

  .hero,
  .page-hero {
    padding-top: 0;
  }

  .hero::before,
  .hero-content,
  .page-hero::before,
  .page-hero-inner {
    top: 82px;
  }
}

@media (max-width: 980px) {
  :root {
    --wrap: min(100% - 32px, 720px);
  }

  .fact-strip,
  .amenities,
  .distance-row,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .page-hero + .section {
    padding-top: 40px;
  }

  .booking-top {
    margin-bottom: 10px;
  }

  .house-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .house-photo {
    grid-column: auto;
  }

  .photo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field:nth-child(2n + 1) {
    border-left: 0;
  }

  .field:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .booking-panel.is-picker-open {
    padding-bottom: 88px;
  }

  .booking-panel.is-picker-open.is-inquiry-open {
    padding-bottom: 0;
  }

  .booking-panel.is-picker-open .booking-copy,
  .booking-panel.is-picker-open .booking-form {
    display: none;
  }

  .calendar-mobile-summary {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    margin: 0;
    background: rgba(255, 255, 252, 0.98);
    border: 1px solid var(--line);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(32, 34, 25, 0.08);
    backdrop-filter: blur(14px);
  }

  .booking-panel.is-picker-open .calendar-picker {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .mobile-summary-field {
    min-width: 0;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 9px 10px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-left: 1px solid var(--line);
    text-align: left;
  }

  .mobile-summary-field:first-child {
    border-left: 0;
  }

  .mobile-summary-field.date-control {
    appearance: none;
    cursor: pointer;
  }

  .mobile-summary-field.date-control.is-active {
    background: var(--paper);
    box-shadow: inset 0 0 0 2px var(--teal);
  }

  .mobile-summary-field select {
    width: 100%;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    font: inherit;
  }

  .calendar-months {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .calendar-toolbar {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
    position: relative;
    z-index: 2;
    margin: 2px 0 -34px;
  }

  .calendar-toolbar button,
  .icon-button {
    width: 36px;
    height: 36px;
  }

  .calendar-toolbar strong {
    visibility: hidden;
    font-size: 0.98rem;
  }

  .month-title {
    padding: 8px 44px 10px;
  }

  .calendar-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: calc(100vw - 28px);
  }

  html[data-page="home"] .hero {
    background: var(--paper);
  }

  body {
    padding-bottom: 78px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
    padding: 11px 10px;
    color: var(--ink);
    background: rgba(251, 250, 245, 0.98);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(18px);
  }

  .brand {
    min-width: 0;
    max-width: min(44vw, 210px);
  }

  .brand-title {
    font-size: 1.14rem;
  }

  .brand-subtitle {
    font-size: 0.66rem;
    white-space: normal;
  }

  .header-actions {
    min-width: 0;
    gap: 6px;
  }

  .lang-control {
    min-width: 0;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
  }

  .lang-select {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    padding: 7px 18px 7px 8px;
    font-size: 0.78rem;
  }

  .nav {
    position: fixed;
    z-index: 60;
    top: 78px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: rgba(251, 250, 245, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100svh - 96px);
    overflow: auto;
    font-size: 1rem;
  }

  .site-header.is-menu-open .nav {
    display: flex;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav a::after {
    display: none;
  }

  .nav a[aria-current="page"] {
    color: var(--white);
    background: var(--olive);
  }

  .hero {
    padding-top: 0;
    color: var(--ink);
  }

  .hero::before {
    display: none;
  }

  .hero-media,
  .page-hero-media {
    height: auto;
  }

  .hero-media img,
  .page-hero-media img {
    height: auto;
  }

  html[data-page="home"] .hero-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  html[data-page="home"] .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(20, 24, 17, 0.24), rgba(20, 24, 17, 0) 20%),
      linear-gradient(0deg, rgba(20, 24, 17, 0.26), rgba(20, 24, 17, 0) 24%);
  }

  html[data-page="home"] .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    width: var(--wrap);
    max-width: var(--wrap);
    height: auto;
    padding: 24px 0 0;
    color: var(--ink);
    margin: 0 auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 7.25vw, 2.12rem);
    line-height: 1;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 7.25vw, 2.12rem);
    line-height: 1.02;
  }

  .hero-lede,
  .page-hero p {
    color: var(--muted);
    max-width: 100%;
    line-height: 1.42;
  }

  .hero-lede {
    margin-top: 12px;
    font-size: clamp(1.14rem, 4.55vw, 1.32rem);
  }

  .page-hero p {
    margin-top: 12px;
    font-size: var(--fs-page-lede);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .hero-actions .booking-button {
    display: none;
  }

  .hero .button.secondary {
    color: var(--ink);
    background: transparent;
    border-color: var(--line-strong);
  }

  .hero .button.secondary:hover {
    color: var(--ink);
    background: var(--paper-soft);
    border-color: var(--line-strong);
  }

  .fact-strip {
    margin-top: 36px;
  }

  .page-hero {
    padding-top: 0;
    color: var(--ink);
  }

  .page-hero::before {
    display: none;
  }

  .page-hero-inner {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    width: var(--wrap);
    max-width: var(--wrap);
    height: auto;
    margin: 0 auto;
    padding: 26px 0 0;
    color: var(--ink);
  }

  .sticky-booking-cta {
    position: fixed;
    z-index: 85;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 18px max(15px, env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--accent);
    border: 1px solid var(--accent-border);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 14px 34px rgba(32, 34, 25, 0.22);
    text-decoration: none;
    font-weight: 800;
    line-height: 1.1;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero + .section {
    padding-top: 28px;
  }

  .section h2,
  .section-head h2,
  .house-zone-copy h2,
  .home-location h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.16rem);
    line-height: 1.08;
  }

  .section h3 {
    font-size: clamp(1.38rem, 5.8vw, 1.72rem);
    line-height: 1.14;
  }

  .lead,
  .booking-copy p:first-child {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .booking-copy p:first-child {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .booking-copy .sync-note {
    display: none;
  }

  .house-intro.no-section-title p:first-child {
    font-size: var(--fs-page-lede);
    line-height: 1.5;
  }

  .house-statement {
    font-size: var(--fs-page-lede);
    line-height: 1.42;
  }

  .distance-row,
  .photo-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fact-strip {
    margin-top: 16px;
  }

  .fact {
    min-height: 0;
    padding: 12px 10px 11px;
  }

  .fact-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }

  .fact-icon svg {
    width: 25px;
    height: 25px;
  }

  .fact strong {
    font-size: 1rem;
    line-height: 1.12;
  }

  .fact span:not(.fact-icon) {
    margin-top: 3px;
    font-size: 0.76rem;
    line-height: 1.26;
  }

  .amenity {
    min-height: 0;
    padding: 18px 14px 16px;
  }

  .amenity-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .amenity-icon svg {
    width: 28px;
    height: 28px;
  }

  .house-zone,
  .house-zone:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .house-zone:nth-child(even) .house-zone-copy {
    order: 0;
  }

  .house-zone-copy {
    align-self: start;
    position: static;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.feature {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }

  .house-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .house-photo,
  .house-photo.feature {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }

  .house-photo.gallery-item.feature {
    grid-column: auto;
    aspect-ratio: 3 / 2;
  }

  .gallery-caption {
    padding: 42px 12px 12px;
    font-size: 0.82rem;
  }

  .calendar-card {
    padding: 12px;
    max-width: 100%;
    overflow: visible;
  }

  .booking-top {
    margin-bottom: 8px;
  }

  .calendar-picker {
    margin-top: 10px;
  }

  .calendar-mobile-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-panel.is-picker-open .calendar-picker {
    padding-top: 128px;
    padding-bottom: 104px;
  }

  .mobile-summary-field {
    min-height: 58px;
    padding: 9px 12px;
  }

  .mobile-summary-field,
  .mobile-summary-field:first-child {
    border-left: 0;
  }

  .mobile-summary-field:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .mobile-summary-field:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .booking-form {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .booking-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field {
    min-height: 52px;
    padding: 8px 9px;
  }

  .field,
  .field:nth-child(2n + 1) {
    border-left: 0;
  }

  .field:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .field:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .booking-actions {
    justify-content: space-between;
    gap: 12px;
  }

  .booking-actions .button {
    width: auto;
    min-width: 148px;
    flex: 1 1 auto;
  }

  .calendar-bottom-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin: 0;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 252, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 34px rgba(32, 34, 25, 0.12);
    backdrop-filter: blur(14px);
  }

  .calendar-bottom-copy {
    display: none;
  }

  .booking-actions {
    width: min(100%, 520px);
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(150px, 1fr);
    align-items: center;
    gap: 12px;
    margin: 0 auto;
  }

  .calendar-clear {
    min-height: 48px;
    padding: 10px 0;
    white-space: nowrap;
  }

  .booking-actions .button {
    min-height: 52px;
    min-width: 0;
  }

  .inquiry-step-body,
  .booking-overlay .inquiry-step-body {
    padding: 18px 16px calc(98px + env(safe-area-inset-bottom));
  }

  .inquiry-step.is-success .inquiry-step-body {
    min-height: 360px;
    padding: 28px 20px max(28px, env(safe-area-inset-bottom));
  }

  .booking-overlay .inquiry-step.is-success .inquiry-step-body {
    min-height: calc(100dvh - 56px);
  }

  .booking-overlay .inquiry-step.is-success .inquiry-step-panel {
    min-height: 100%;
  }

  .inquiry-success {
    gap: 16px;
  }

  .inquiry-success-links {
    align-items: center;
    flex-direction: column;
  }

  .inquiry-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiry-summary div {
    min-height: 52px;
    padding: 8px 9px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .inquiry-summary div:nth-child(2n + 1) {
    border-left: 0;
  }

  .inquiry-summary div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .inquiry-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiry-field-name {
    grid-column: 1 / -1;
  }

  .booking-panel.is-inquiry-open .inquiry-dialog-actions {
    position: fixed;
    z-index: 99;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(150px, 1.1fr);
    gap: 12px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 252, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 34px rgba(32, 34, 25, 0.12);
    backdrop-filter: blur(14px);
  }

  .booking-panel.is-inquiry-open .inquiry-dialog-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .weekdays span {
    padding: 3px 2px 5px;
  }

  .selection-helper {
    font-size: 0.86rem;
  }

  .field-label {
    font-size: 0.68rem;
  }

  .field-value,
  .field select {
    font-size: 0.92rem;
  }

  .day {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .calendar-legend {
    gap: 8px;
    margin-top: 2px;
    font-size: 0.76rem;
  }

  .swatch {
    width: 16px;
    height: 16px;
  }

  .sync-note {
    margin-top: 6px;
    font-size: 0.78rem;
  }

  .calendar-meta-row .sync-note {
    display: none;
  }

  html[data-page="availability"] body,
  html[data-page="contact"] body {
    padding-bottom: 0;
  }
}

@media (max-width: 360px) {
  .fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .booking-overlay {
    display: block;
    padding: 0;
    background: transparent;
  }

  .booking-overlay-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    overflow: auto;
    background: var(--paper);
    border: 0;
    border-radius: 0;
  }

  .booking-overlay-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    min-height: 56px;
    padding: 8px 12px;
    z-index: 100;
  }

  .popup-close {
    width: 40px;
    height: 40px;
  }

  .booking-panel-overlay {
    width: 100%;
    padding: 56px 0 0;
  }

  .booking-overlay .booking-card {
    border: 0;
    border-radius: 0;
  }

  .booking-overlay .calendar-card {
    padding: 0;
  }

  .booking-overlay .booking-panel.is-picker-open {
    padding-bottom: 92px;
  }

  .booking-overlay .booking-panel.is-picker-open.is-inquiry-open {
    padding-bottom: 0;
  }

  .booking-overlay .booking-panel.is-picker-open .calendar-mobile-summary {
    top: 56px;
    z-index: 96;
  }

  .booking-overlay .booking-panel.is-picker-open .calendar-picker {
    padding-top: 184px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .booking-overlay .booking-panel.is-picker-open .calendar-bottom-bar {
    z-index: 98;
  }

  .booking-overlay .calendar-toolbar {
    margin-top: 0;
  }
}

/* Final responsive layout contract */
.brand-title {
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

.sticky-booking-bar {
  display: none;
}

.fact,
.amenity {
  background: rgba(243, 239, 230, 0.58);
  border: 1px solid rgba(95, 98, 75, 0.2);
  border-radius: 12px;
  box-shadow: none;
}

.arrival-intro {
  max-width: 880px;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.arrival-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.arrival-grid h3 {
  margin: 0 0 12px;
}

.arrival-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: clamp(48px, 7vw, 86px) 0;
}

.arrival-photo img {
  width: 100%;
  max-height: min(72svh, 760px);
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.arrival-map {
  padding-top: 4px;
}

.arrival-map iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  margin-top: 24px;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.arrival-map .button {
  margin-top: 18px;
}

.booking-overlay-dialog {
  border: 1px solid var(--line);
}

.booking-overlay .booking-card,
.booking-overlay .calendar-card,
.booking-overlay .booking-form,
.booking-overlay .calendar-picker {
  border: 0;
  box-shadow: none;
}

@media (min-width: 641px) {
  html[data-page="home"] {
    --home-facts-height: clamp(180px, 21svh, 208px);
  }

  html[data-page="home"] .hero {
    height: calc(100svh - var(--home-facts-height));
    min-height: 480px;
    --hero-media-height: 100%;
  }

  html[data-page="home"] .hero::before,
  html[data-page="home"] .hero-media,
  html[data-page="home"] .hero-content {
    top: 0;
    height: 100%;
  }

  html[data-page="home"] .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 18, 12, 0.46) 0%, rgba(15, 18, 12, 0.08) 30%, rgba(15, 18, 12, 0.08) 58%, rgba(15, 18, 12, 0.64) 100%),
      linear-gradient(90deg, rgba(15, 18, 12, 0.38), rgba(15, 18, 12, 0.08) 58%, rgba(15, 18, 12, 0.03));
  }

  html[data-page="home"] .hero-content {
    padding-bottom: clamp(24px, 3.8svh, 42px);
  }

  html[data-page="home"] .hero h1 {
    max-width: 900px;
    font-size: clamp(2.75rem, 4.8vw, 4.55rem);
    line-height: 1;
  }

  html[data-page="home"] .hero-lede {
    max-width: 860px;
    margin-top: clamp(14px, 2svh, 22px);
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
    line-height: 1.42;
  }

  html[data-page="home"] .hero-actions {
    margin-top: clamp(16px, 2.2svh, 24px);
  }

  html[data-page="home"] .hero + .fact-strip {
    width: var(--wrap);
    height: var(--home-facts-height);
    margin: 0 auto;
    padding: clamp(14px, 1.8svh, 20px) 0 clamp(16px, 2svh, 22px);
    align-items: stretch;
    background: var(--paper);
    box-shadow: 0 0 0 100vmax var(--paper);
    clip-path: inset(0 -100vmax);
  }

  html[data-page="home"] .hero + .fact-strip .fact {
    height: 100%;
    min-height: 0;
    padding: clamp(14px, 1.8svh, 20px);
  }

  .hero::before,
  .hero-content,
  .page-hero::before,
  .page-hero-inner {
    top: 0;
  }
}

@media (min-width: 641px) and (max-height: 700px) {
  html[data-page="home"] {
    --home-facts-height: 180px;
  }

  html[data-page="home"] .hero {
    min-height: 0;
  }

  html[data-page="home"] .hero h1 {
    font-size: clamp(2.35rem, 4vw, 3.35rem);
  }

  html[data-page="home"] .hero-lede {
    font-size: 1rem;
    line-height: 1.34;
  }

  html[data-page="home"] .hero + .fact-strip .fact {
    padding: 12px 14px;
  }

  html[data-page="home"] .fact-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  html[data-page="home"] {
    --home-facts-height: 304px;
  }

  html[data-page="home"] .hero + .fact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: var(--home-facts-height);
    min-height: 0;
    padding-block: 14px;
  }

  html[data-page="home"] .hero + .fact-strip .fact {
    height: 100%;
    min-height: 0;
  }

  html[data-page="home"] .fact-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  html[data-page="home"] .fact-icon svg {
    width: 29px;
    height: 29px;
  }

  html[data-page="home"] .fact strong {
    font-size: 1.08rem;
  }

  html[data-page="home"] .fact span:not(.fact-icon) {
    font-size: 0.82rem;
  }

  html[data-page="home"] .hero {
    height: calc(100svh - var(--home-facts-height));
    min-height: 360px;
  }
}

@media (max-width: 980px) and (min-width: 641px) and (max-height: 700px) {
  html[data-page="home"] {
    --home-facts-height: 250px;
  }

  html[data-page="home"] .hero {
    min-height: 320px;
  }

  html[data-page="home"] .hero + .fact-strip .fact {
    padding: 10px 12px;
  }

  html[data-page="home"] .fact-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
  }

  html[data-page="home"] .fact-icon svg {
    width: 23px;
    height: 23px;
  }

  html[data-page="home"] .fact strong {
    font-size: 1rem;
  }

  html[data-page="home"] .fact span:not(.fact-icon) {
    margin-top: 3px;
    font-size: 0.78rem;
    line-height: 1.25;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  html[data-page="home"] {
    --home-facts-height: 180px;
  }

  html[data-page="home"] .hero h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 4.55vw, 3.65rem);
  }

  html[data-page="home"] .hero-lede {
    max-width: 760px;
    font-size: 1rem;
  }

  html[data-page="home"] .hero + .fact-strip .fact {
    padding: 12px;
  }

  html[data-page="home"] .fact-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 7px;
  }

  html[data-page="home"] .fact-icon svg {
    width: 28px;
    height: 28px;
  }

  html[data-page="home"] .fact strong {
    font-size: 1.08rem;
  }

  html[data-page="home"] .fact span:not(.fact-icon) {
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: calc(100vw - 32px);
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header,
  .site-header.is-solid,
  .site-header.is-menu-open,
  html:not([data-page="home"]) .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 78px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: none;
  }

  .brand {
    max-width: min(50vw, 220px);
  }

  .brand-title {
    font-size: 1.2rem;
    line-height: 1;
  }

  .brand-subtitle {
    margin-top: 5px;
    font-size: 0.875rem;
    line-height: 1.12;
    letter-spacing: 0.035em;
  }

  .menu-toggle,
  .lang-select,
  .site-header.is-solid .lang-select,
  .site-header.is-menu-open .lang-select,
  html:not([data-page="home"]) .site-header .lang-select {
    height: 44px;
    min-height: 44px;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .menu-toggle {
    width: 44px;
    border-radius: 0;
  }

  .lang-select {
    width: 66px;
    min-width: 66px;
    max-width: 66px;
    padding: 6px 18px 6px 4px;
    font-size: 0.78rem;
  }

  .nav {
    top: 78px;
  }

  html[data-page="home"] .hero {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr) 16px;
    grid-template-rows: 100vw auto;
    padding: 0;
    color: var(--ink);
    background: var(--paper);
  }

  html[data-page="home"] .hero::before {
    display: none;
  }

  html[data-page="home"] .hero-media {
    grid-row: 1;
    grid-column: 1 / -1;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  html[data-page="home"] .hero-media::after {
    background:
      linear-gradient(180deg, rgba(15, 18, 12, 0.52) 0%, rgba(15, 18, 12, 0.2) 17%, rgba(15, 18, 12, 0.04) 34%, rgba(15, 18, 12, 0) 42%),
      linear-gradient(0deg, rgba(15, 18, 12, 0.84) 0%, rgba(15, 18, 12, 0.54) 25%, rgba(15, 18, 12, 0.16) 47%, rgba(15, 18, 12, 0) 62%);
  }

  html[data-page="home"] .hero-content {
    display: contents;
  }

  html[data-page="home"] .hero h1 {
    z-index: 3;
    grid-row: 1;
    grid-column: 2;
    align-self: end;
    max-width: 94%;
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(2rem, 9.6vw, 2.72rem);
    line-height: 1.04;
    text-shadow: 0 2px 20px rgba(8, 10, 7, 0.3);
  }

  html[data-page="home"] .hero-lede {
    grid-row: 2;
    grid-column: 2;
    max-width: 100%;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(1.06rem, 4.45vw, 1.22rem);
    line-height: 1.48;
  }

  html[data-page="home"] .hero-actions {
    display: none;
  }

  html[data-page="home"] .hero + .fact-strip,
  .fact-strip {
    width: var(--wrap);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 26px auto 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    clip-path: none;
  }

  .fact {
    min-height: 128px;
    padding: 16px 14px;
  }

  .page-hero-media {
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-inner {
    padding-top: 24px;
  }

  .sticky-booking-bar {
    position: fixed;
    z-index: 85;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .sticky-booking-cta {
    position: static;
    display: inline-flex;
    width: min(100%, 560px);
    min-height: 56px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    color: var(--ink);
    background: var(--accent);
    border: 1px solid var(--accent-border);
    border-radius: 10px;
    box-shadow: none;
    text-decoration: none;
    font-weight: 800;
  }

  .amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arrival-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }

  .arrival-photo img {
    aspect-ratio: 4 / 3;
  }

  .arrival-photo {
    aspect-ratio: 4 / 3;
  }

  .arrival-map iframe {
    min-height: 360px;
  }

  .booking-overlay-dialog {
    border: 0;
    box-shadow: none;
  }

  .booking-overlay .booking-card,
  .booking-overlay .calendar-card {
    background: var(--paper);
  }
}

@media (max-width: 340px) {
  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 640px) {
  .page-hero {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr) 16px;
    grid-template-rows: auto auto;
    padding: 0;
    color: var(--ink);
    background: var(--paper);
  }

  .page-hero::before {
    display: none;
  }

  .page-hero-media {
    position: relative;
    grid-row: 1;
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(15, 18, 12, 0.52) 0%, rgba(15, 18, 12, 0.2) 17%, rgba(15, 18, 12, 0.04) 34%, rgba(15, 18, 12, 0) 42%),
      linear-gradient(0deg, rgba(15, 18, 12, 0.84) 0%, rgba(15, 18, 12, 0.54) 25%, rgba(15, 18, 12, 0.16) 47%, rgba(15, 18, 12, 0) 62%);
  }

  .page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-inner {
    display: contents;
  }

  .page-hero h1 {
    z-index: 3;
    grid-row: 1;
    grid-column: 2;
    align-self: end;
    max-width: 94%;
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(2rem, 9.6vw, 2.72rem);
    line-height: 1.04;
    text-shadow: 0 2px 20px rgba(8, 10, 7, 0.3);
  }

  .page-hero p {
    grid-row: 2;
    grid-column: 2;
    max-width: 100%;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: var(--fs-page-lede);
    line-height: 1.48;
  }
}

@media (max-width: 640px) {
  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-field-wide {
    grid-column: auto;
  }

  html[data-page="availability"] .sticky-booking-cta,
  html[data-page="contact"] .sticky-booking-cta {
    display: inline-flex;
  }
}

@media (min-width: 761px) {
  .sticky-booking-bar {
    position: fixed;
    z-index: 85;
    right: clamp(18px, 2.5vw, 34px);
    bottom: clamp(18px, 2.5vw, 30px);
    left: auto;
    display: block;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .sticky-booking-cta,
  html[data-page="availability"] .sticky-booking-cta,
  html[data-page="contact"] .sticky-booking-cta {
    display: inline-flex;
    width: auto;
    min-width: 178px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    color: var(--ink);
    background: var(--accent);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(32, 34, 25, 0.2);
    text-decoration: none;
    font-weight: 800;
  }

  .sticky-booking-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(32, 34, 25, 0.24);
  }
}

body.booking-overlay-open .sticky-booking-bar,
body.calendar-picker-open .sticky-booking-bar {
  display: none;
}
