/* ————— Premium family-luxury design system ————— */
:root {
  --paper: #f7f4ec;
  --card: #fffdf9;
  --ink: #23281f;
  --ink-soft: #3d4237;
  --muted: #716c5c;
  --line: #e6dfd0;
  --line-soft: #efe9db;
  --accent: #8a6d3b;
  --accent-deep: #6b5530;
  --pine: #22322a;
  --pine-ink: #eef0e9;
  --ok: #2e6b46;
  --warn: #a05622;
  --err: #a03a2e;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(35,40,31,.05), 0 12px 40px -18px rgba(35,40,31,.25);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* Pin Fraunces to its calm text cut — the display cut's swashy lowercase f reads as broken. Inherits site-wide; Inter has no opsz axis and ignores it. */
  font-variation-settings: 'opsz' 20;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; line-height: 1.18; letter-spacing: -.01em; text-wrap: balance; }
p, li, figcaption, summary { text-wrap: pretty; }
h1 { font-size: clamp(1.9rem, 4.2vw, 2.75rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

.kicker {
  font-size: .72rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent-deep);
  margin-bottom: 14px;
}
.lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: .87rem; }

/* ————— Header ————— */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(20,24,18,.25); }
/* Home: header floats over the hero (hero pulled up underneath; it carries its own scrim) */
body.home-page .site-header { margin-bottom: -69px; }
/* Transparent over the home hero, solid once scrolled */
body.home-page:not(.nav-open) .site-header:not(.scrolled) {
  background: none;
  backdrop-filter: none; border-bottom-color: transparent;
}
body.home-page:not(.nav-open) .site-header:not(.scrolled) .brand,
body.home-page:not(.nav-open) .site-header:not(.scrolled) nav.main a:not(.btn) { color: #fdfcf7; text-shadow: 0 1px 14px rgba(20,24,18,.55); }
body.home-page:not(.nav-open) .site-header:not(.scrolled) .brand small { color: #ecd9ab; text-shadow: 0 1px 10px rgba(20,24,18,.65); }
body.home-page:not(.nav-open) .site-header:not(.scrolled) nav.main a:not(.btn):hover { color: #fff; }
body.home-page:not(.nav-open) .site-header:not(.scrolled) nav.main .btn {
  background: #fdfcf7; color: var(--ink);
}
body.home-page:not(.nav-open) .site-header:not(.scrolled) nav.main .btn:hover { background: #fff; }
body.home-page:not(.nav-open) .site-header:not(.scrolled) .nav-toggle span,
body.home-page:not(.nav-open) .site-header:not(.scrolled) .nav-toggle span::before,
body.home-page:not(.nav-open) .site-header:not(.scrolled) .nav-toggle span::after { background: #fdfcf7; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.brand:hover { text-decoration: none; }
.brand small { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin-top: -2px; }
nav.main { display: flex; gap: 26px; align-items: center; }
nav.main a:not(.btn) { color: var(--ink-soft); font-size: .93rem; font-weight: 500; }
nav.main a:not(.btn):hover { color: var(--ink); text-decoration: none; }
@media (min-width: 961px) {
  nav.main a:not(.btn) { position: relative; }
  nav.main a:not(.btn)::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1.5px;
    background: currentColor; transition: right .22s ease;
  }
  nav.main a:not(.btn):hover::after { right: 0; }
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; margin-right: -10px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease; content: ''; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent !important; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ————— Buttons ————— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: .875rem; font-weight: 600;
  padding: 11px 21px; border-radius: 99px; border: 1px solid transparent;
  cursor: pointer; transition: all .18s ease; text-decoration: none !important;
}
.btn-primary { background: var(--ink); color: #fffdf8; }
.btn-primary:hover { background: var(--pine); transform: translateY(-1px); }
.btn-gold { background: var(--accent-deep); color: #fffdf8; }
.btn-gold:hover { background: #5a4728; transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fdfcf7; color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-outline-light { border-color: rgba(253,252,247,.55); color: #fdfcf7; background: rgba(20,24,18,.12); backdrop-filter: blur(4px); }
.btn-outline-light:hover { border-color: #fdfcf7; }
.btn .ico-svg { width: 15px; height: 15px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ————— Hero ————— */
.hero { position: relative; padding: 84px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/4.4; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .badge-float {
  position: absolute; left: 18px; bottom: 18px;
  background: color-mix(in srgb, var(--card) 92%, transparent); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 12px 18px; font-size: .85rem; box-shadow: var(--shadow);
}
.hero .actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.hero-points div { font-size: .87rem; color: var(--muted); }
.hero-points strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); }

/* ————— Sections ————— */
section.block { padding: clamp(52px, 6.5vw, 84px) 0; }
section.block.tint { background: linear-gradient(180deg, transparent, #f1ecdf 18%, #f1ecdf 82%, transparent); }
.section-head { max-width: 640px; margin-bottom: 34px; }

/* ————— Property cards ————— */
.prop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.prop-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(35,40,31,.06), 0 24px 60px -20px rgba(35,40,31,.35); }
.prop-card a { text-decoration: none; color: inherit; }
.prop-card .media { position: relative; aspect-ratio: 16/10.5; overflow: hidden; }
.prop-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prop-card:hover .media img { transform: scale(1.035); }
.prop-card .tag {
  position: absolute; top: 14px; left: 14px; font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 99px;
  background: color-mix(in srgb, var(--card) 90%, transparent); backdrop-filter: blur(6px); color: var(--ink);
}
.prop-card .tag.soon { background: var(--pine); color: var(--pine-ink); }
.prop-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prop-card .loc { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.prop-card h3 { font-size: 1.3rem; }
.prop-card .specs { font-size: .88rem; color: var(--muted); }
.prop-card .foot { margin-top: auto; padding-top: 14px; display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--line-soft); }
.prop-card .price strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.prop-card .price span { font-size: .82rem; color: var(--muted); }
.rating { font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.rating .star { color: var(--accent); }

/* ————— Value props ————— */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.value-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 26px; }
.value-card .ico { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.value-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.value-card p { font-size: .92rem; color: var(--muted); }

/* ————— Testimonials ————— */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.quote-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 28px; }
.quote-card .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 12px; font-size: .95rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1rem; line-height: 1.55; color: var(--ink-soft); }
.quote-card figcaption { margin-top: 16px; font-size: .84rem; color: var(--muted); }

/* ————— Dark band (story / why direct) ————— */
.band { background: var(--pine); color: var(--pine-ink); border-radius: 26px; padding: 44px 48px; }
.band .kicker { color: #c8a86a; }
.band h2 { color: #fdfcf7; }
.band p { color: #c9cfc2; }
.band .value-card { background: rgba(255,253,248,.05); border-color: rgba(255,253,248,.12); }
.band .value-card h3 { color: #fdfcf7; }
.band .value-card p { color: #b9c0b1; }

/* ————— Forms ————— */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 6px; color: var(--ink-soft); }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number],
input[type=password], input[type=url], select, textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; transition: border-color .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
textarea { min-height: 110px; resize: vertical; }
.inline-form { display: flex; gap: 10px; max-width: 480px; }
.inline-form input { flex: 1; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.alert { border-radius: 10px; padding: 13px 16px; font-size: .92rem; margin-bottom: 18px; }
.alert.ok { background: #e8f2e9; color: var(--ok); border: 1px solid #cfe3d2; }
.alert.err { background: #f7e8e4; color: var(--err); border: 1px solid #ecd2cb; }

/* ————— Footer ————— */
footer.site {
  margin-top: 60px; background: var(--pine); color: #b9c0b1; font-size: .9rem;
}
footer.site .wrap { padding: 56px 24px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
footer.site h4 { color: #fdfcf7; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
footer.site a { color: #c9cfc2; display: block; padding: 3px 0; }
footer.site .brand { color: #fdfcf7; }
footer.site .legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,253,248,.12); padding-top: 22px; font-size: .8rem; color: #9ca691; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ————— Property page ————— */
.prop-hero { padding: 40px 24px 8px; }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.prop-title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 8px; }
.prop-meta { display: flex; gap: 18px; font-size: .92rem; color: var(--ink-soft); flex-wrap: wrap; margin-top: 6px; }
.prop-meta span { display: inline-flex; align-items: center; gap: 7px; }
.prop-meta .ico-svg { width: 18px; height: 18px; color: var(--accent-deep); }

.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 10px; border-radius: 18px; overflow: hidden; margin: 22px 0 14px; }
.gallery a { position: relative; display: block; overflow: hidden; }
.gallery a:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.04); }
.gallery .more {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(35,40,31,.45); color: #fff; font-weight: 600; font-size: .95rem;
}

.prop-layout { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; padding: 26px 24px 60px; }
.prop-main > section { padding: 30px 0; border-top: 1px solid var(--line); }
.prop-main > section:first-child { border-top: 0; padding-top: 8px; }
.prop-main h2 { font-size: 1.32rem; margin-bottom: 18px; }

.hl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.hl { display: flex; gap: 13px; align-items: flex-start; }
.hl .hl-mark { flex: none; width: 9px; height: 9px; margin-top: 7px; background: var(--accent-deep); transform: rotate(45deg); border-radius: 2px; }
.hl strong { display: block; font-size: .95rem; }
.hl span { font-size: .86rem; color: var(--muted); }

.amenity-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.amenity-groups h3 { font-size: .82rem; font-family: var(--sans); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.amenity-groups ul { list-style: none; }
.amenity-groups li { padding: 4px 0 4px 26px; position: relative; font-size: .93rem; color: var(--ink-soft); }
.amenity-groups li::before { content: '✓'; position: absolute; left: 0; top: 4px; line-height: inherit; color: var(--accent); font-weight: 600; }
.amenity-groups ul.plain li { padding-left: 0; }
.amenity-groups ul.plain li::before { content: none; }

.safety-card { background: var(--card); border: 1px solid var(--line-soft); border-left: 3px solid var(--ok); border-radius: var(--radius); padding: 26px 28px; }
.safety-card ul { list-style: none; columns: 2; gap: 30px; }
.safety-card li { padding: 4px 0 4px 26px; position: relative; font-size: .92rem; break-inside: avoid; }
.safety-card li::before { content: '✓'; position: absolute; left: 0; top: 4px; line-height: inherit; color: var(--ok); font-weight: 600; }

details.faq { border-bottom: 1px solid var(--line-soft); padding: 14px 0; }
details.faq summary { cursor: pointer; font-weight: 600; font-size: .93rem; list-style: none; display: flex; justify-content: space-between; }
details.faq summary::after { content: '+'; color: var(--accent); font-size: 1.2rem; }
details.faq[open] summary::after { content: '–'; }
details.faq p { padding-top: 10px; color: var(--ink-soft); font-size: .94rem; }

/* ————— Booking widget ————— */
.book-widget {
  position: sticky; top: 92px;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; box-shadow: var(--shadow);
}
.book-widget .price-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.book-widget .price-line strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
.book-widget .price-line span { color: var(--muted); font-size: .9rem; }
.date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0 10px; }
.guest-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.guest-row.trio { grid-template-columns: 1fr 1fr 1fr; }
.quote-lines { margin: 16px 0 6px; font-size: .93rem; }
.quote-lines .ql { display: flex; justify-content: space-between; padding: 5px 0; color: var(--ink-soft); }
.quote-lines .ql.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.quote-lines .ql.total strong { font-family: var(--serif); font-size: 1.15rem; }
.widget-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 12px; }
.widget-err { font-size: .87rem; color: var(--err); margin-top: 10px; }
.trust-row { display: flex; justify-content: center; gap: 16px; margin-top: 14px; font-size: .76rem; color: var(--muted); }

/* ————— Calendar ————— */
.cal-wrap { position: relative; }
.cal-pop { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; box-shadow: var(--shadow); margin-top: 10px; }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cal-head button { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--accent-deep); padding: 4px 10px; }
.cal-title { font-weight: 600; font-size: .92rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-grid .dow { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; padding: 5px 0; }
.cal-day { font-size: .84rem; padding: 8px 0; border-radius: 8px; cursor: pointer; position: relative; }
.cal-day:hover:not(.off):not(.na) { background: var(--line-soft); }
.cal-day.off { visibility: hidden; }
.cal-day.na { color: #c8c2b2; text-decoration: line-through; cursor: not-allowed; }
.cal-day.past { color: #c8c2b2; cursor: not-allowed; }
.cal-day.sel { background: var(--ink); color: #fffdf8; }
.cal-day.range { background: var(--line-soft); }

/* ————— Checkout / booking pages ————— */
.checkout-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; padding: 48px 0 70px; }
.summary-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 28px; position: sticky; top: 92px; }
.summary-card img { border-radius: 10px; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 16px; }
.status-pill { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 99px; }
.status-pill.pending { background: #f5ead2; color: var(--warn); }
.status-pill.confirmed, .status-pill.completed { background: #e8f2e9; color: var(--ok); }
.status-pill.awaiting_payment { background: #f5ead2; color: var(--warn); }
.status-pill.declined, .status-pill.cancelled, .status-pill.expired { background: #f7e8e4; color: var(--err); }

/* ————— Lightbox ————— */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20,23,18,.93); display: none; align-items: center; justify-content: center; flex-direction: column; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; object-fit: contain; }
.lightbox .lb-cap { color: #c9cfc2; font-size: .88rem; margin-top: 14px; }
.lightbox button { position: absolute; background: rgba(255,253,248,.1); color: #fff; border: none; font-size: 1.5rem; cursor: pointer; border-radius: 99px; width: 48px; height: 48px; }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 22px; top: 50%; }
.lightbox .lb-next { right: 22px; top: 50%; }

/* ————— Sticky mobile CTA ————— */
.mobile-cta { display: none; }

/* ————— Responsive ————— */
@media (max-width: 960px) {
  .hero-grid, .prop-layout, .checkout-layout { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .hero-media { aspect-ratio: 16/11; order: -1; }
  .gallery { grid-template-columns: 2fr 1fr; grid-template-rows: 200px 200px; }
  .gallery a:nth-child(n+4) { display: none; }
  .band { padding: 44px 28px; }
  footer.site .wrap { grid-template-columns: 1fr 1fr; }
  .book-widget { position: static; }
  .mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: color-mix(in srgb, var(--card) 94%, transparent); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    align-items: center; justify-content: space-between; gap: 14px;
  }
  .mobile-cta .p strong { font-family: var(--serif); font-size: 1.15rem; }
  .mobile-cta .p span { font-size: .8rem; color: var(--muted); display: block; }
  body.has-mobile-cta { padding-bottom: 84px; }
  .nav-toggle { display: block; }
  nav.main {
    position: fixed; top: 68px; left: 0; right: 0; z-index: 49;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px; box-shadow: 0 24px 40px -24px rgba(35,40,31,.3);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s;
  }
  body.nav-open nav.main { transform: none; opacity: 1; visibility: visible; }
  nav.main a:not(.btn) { display: block; width: 100%; padding: 13px 0; font-size: 1.02rem; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
  nav.main .btn { margin-top: 16px; }
  .safety-card ul { columns: 1; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: 260px; }
  .gallery a:nth-child(n+2) { display: none; }
  footer.site .wrap { grid-template-columns: 1fr; }
}

/* ————— Homepage 2.0: cinematic hero ————— */
.ico-svg { width: 20px; height: 20px; flex: none; }

.hero-cine { position: relative; min-height: min(92vh, 880px); display: flex; align-items: flex-end; overflow: hidden; color: #fdfcf7; }
.hero-cine-media { position: absolute; inset: 0; }
.hero-cine-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active .hero-cine-media img { animation: hero-zoom 16s ease-out both; }
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce) { .hero-slide.active .hero-cine-media img { animation: none; } }
.hero-cine-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,20,16,.48) 0%, rgba(16,20,16,.08) 30%, rgba(16,20,16,.16) 55%, rgba(16,20,16,.68) 100%),
    linear-gradient(96deg, rgba(16,20,16,.55) 0%, rgba(16,20,16,.18) 42%, rgba(16,20,16,0) 68%);
}
.hero-cine-inner { position: relative; z-index: 1; width: 100%; padding-bottom: 96px; padding-top: 160px; }
.hero-kicker {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: #f0dfb4; margin-bottom: 18px;
  background: rgba(20, 24, 18, .38); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 252, 247, .16); border-radius: 999px; padding: 8px 16px 8px 18px;
}
.hero-cine h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 500; max-width: 17ch; color: #fdfcf7; text-wrap: balance; text-shadow: 0 2px 24px rgba(20,24,18,.4); }
.hero-sub { font-size: 1rem; line-height: 1.6; max-width: 54ch; margin-top: 20px; color: rgba(253,252,247,.92); text-shadow: 0 1px 14px rgba(20,24,18,.5); }
/* Equal-width CTAs: every column sizes to the widest button so the pair looks balanced */
.hero-cine .actions { display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 14px; margin-top: 32px; }
.hero-cine .actions .btn { width: 100%; }
@media (max-width: 700px) { .hero-cine .actions { grid-auto-flow: row; } }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 1.5px solid rgba(253,252,247,.6); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span { width: 3px; height: 8px; border-radius: 2px; background: #fdfcf7; animation: scroll-cue 2.2s ease-in-out infinite; }
@keyframes scroll-cue { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(10px); opacity: 0; } }

/* ————— Trust bar ————— */
.trust-bar { background: var(--card); border-bottom: 1px solid var(--line-soft); }
.trust-bar-inner { display: flex; justify-content: space-between; gap: 18px; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap; }
.trust-bar-inner > div { display: flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.trust-bar-inner .ico-svg { width: 19px; height: 19px; color: var(--accent); }

/* ————— Home features (the two homes) ————— */
.homes-block { padding-top: 92px; }
.homes-block .section-head { margin-bottom: 64px; }
.home-feature {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(32px, 5vw, 72px); align-items: center; padding: 46px 0;
}
.home-feature + .home-feature { border-top: 1px solid var(--line); }
.home-feature.flip .hf-media { order: 2; }
.hf-media { position: relative; padding-bottom: 56px; }
.hf-main { display: block; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.hf-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hf-main:hover img { transform: scale(1.035); }
.hf-thumbs { position: absolute; right: 26px; bottom: 0; display: flex; gap: 14px; }
.home-feature.flip .hf-thumbs { right: auto; left: 26px; }
.hf-thumbs a {
  display: block; width: clamp(110px, 11vw, 150px); aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  border: 4px solid var(--paper); box-shadow: var(--shadow); background: var(--card);
}
.hf-thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hf-thumbs a:hover img { transform: scale(1.06); }
.hf-body h3 { font-size: clamp(1.5rem, 2.2vw, 1.85rem); }
.hf-body h3 a { color: var(--ink); }
.hf-body h3 a:hover { text-decoration: none; color: var(--accent-deep); }
.hf-specs { display: flex; gap: 22px; flex-wrap: wrap; margin: 18px 0 14px; font-size: .88rem; font-weight: 500; color: var(--ink-soft); }
.hf-specs span { display: inline-flex; align-items: center; gap: 8px; }
.hf-specs .ico-svg { width: 18px; height: 18px; color: var(--accent); }
.hf-summary { font-size: .98rem; color: var(--muted); max-width: 52ch; }
.hf-signature { list-style: none; margin: 18px 0 4px; }
.hf-signature li { position: relative; padding: 5px 0 5px 24px; font-size: .93rem; color: var(--ink-soft); }
.hf-signature li::before { content: '◆'; position: absolute; left: 2px; top: 6px; font-size: .55rem; color: var(--accent); }
.hf-signature strong { color: var(--ink); }
.hf-foot { display: flex; align-items: baseline; gap: 20px; margin-top: 16px; }
.hf-foot .price .from { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
.hf-foot .price strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.hf-foot .price span { font-size: .84rem; color: var(--muted); }
.hf-body .actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* ————— Why direct band ————— */
.band-block { padding-top: 30px; }
.band-direct { padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 72px); }
.band-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end; margin-bottom: 20px; }
.band-head h2 { max-width: 22ch; }
.band-lede { font-size: 1rem; line-height: 1.65; }
.direct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 3vw, 44px); margin-top: 38px; }
.direct-item { border-top: 1px solid rgba(253,252,247,.18); padding-top: 22px; position: relative; }
.direct-item .num { font-family: var(--serif); font-size: 1.25rem; color: #c8a86a; letter-spacing: .04em; display: block; margin-bottom: 16px; }
.direct-item h3 { font-size: 1.06rem; color: #fdfcf7; margin-bottom: 8px; }
.direct-item p { font-size: .9rem; color: #b9c0b1; }

/* ————— Host story + mosaic ————— */
.host-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(36px, 5vw, 76px); align-items: center; }
.host-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 14px; }
.host-mosaic figure { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.host-mosaic figure:nth-child(1), .host-mosaic figure:nth-child(2) { grid-row: span 2; }
.host-mosaic figure:nth-child(2) { margin-top: 34px; }
.host-mosaic figure:nth-child(3) { margin-top: 34px; }
.host-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.host-list { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.host-list li { display: flex; gap: 16px; align-items: flex-start; }
.host-list .ico-svg { width: 22px; height: 22px; color: var(--accent); margin-top: 3px; }
.host-list strong { display: block; font-size: .98rem; }
.host-list span { font-size: .9rem; color: var(--muted); }

/* ————— FAQ strip ————— */
.faq-block { padding-top: 20px; }

/* ————— Closing CTA ————— */
.cta-cine { position: relative; overflow: hidden; color: #fdfcf7; margin-top: 40px; }
.cta-cine-media { position: absolute; inset: 0; }
.cta-cine-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-cine-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,24,18,.55), rgba(20,24,18,.72)); }
.cta-cine-inner { position: relative; z-index: 1; text-align: center; padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.cta-cine .kicker { color: #e3cf9f; }
.cta-cine h2 { color: #fdfcf7; font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 22ch; margin: 0 auto; text-wrap: balance; }
.cta-cine .actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.cta-waitlist { margin-top: 44px; padding-top: 34px; border-top: 1px solid rgba(253,252,247,.2); }
.cta-waitlist p:first-child { font-size: .95rem; color: rgba(253,252,247,.85); max-width: 52ch; margin: 0 auto 18px; }
.cta-waitlist .inline-form { margin: 0 auto; }
.cta-waitlist .inline-form input { background: rgba(253,252,247,.12); border-color: rgba(253,252,247,.3); color: #fdfcf7; }
.cta-waitlist .inline-form input::placeholder { color: rgba(253,252,247,.55); }
.cta-waitlist .form-note { color: rgba(253,252,247,.6); }

/* ————— Scroll reveal (js-gated so no-JS still sees content) ————— */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-cine-media img { animation: none; }
  .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ————— Homepage responsive ————— */
@media (max-width: 960px) {
  .hero-cine { min-height: 78vh; }
  .hero-cine-inner { padding-bottom: 76px; padding-top: 120px; }
  .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .home-feature { grid-template-columns: 1fr; gap: 30px; padding: 38px 0; }
  .home-feature.flip .hf-media { order: 0; }
  .hf-media { padding-bottom: 44px; }
  .hf-thumbs a { width: 108px; }
  .band-head { grid-template-columns: 1fr; gap: 16px; }
  .direct-grid { grid-template-columns: 1fr 1fr; }
  .host-grid { grid-template-columns: 1fr; }
  .host-mosaic { grid-auto-rows: 120px; }
  .host-mosaic figure:nth-child(2), .host-mosaic figure:nth-child(3) { margin-top: 0; }
  .cta-cine .actions { justify-content: center; }
}
@media (max-width: 560px) {
  .direct-grid { grid-template-columns: 1fr; }
  .trust-bar-inner > div { font-size: .72rem; }
  .hf-thumbs { position: static; margin-top: 12px; }
  .hf-media { padding-bottom: 0; }
  .hf-thumbs a { flex: 1; width: auto; border-width: 0; }
  .inline-form { flex-direction: column; }
}

/* ————— Area map (property pages) ————— */
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: start; }
.area-map {
  position: relative; border-radius: 16px; overflow: hidden;
  background: linear-gradient(160deg, #fbf9f2, #f2edde);
  border: 1px solid var(--line); aspect-ratio: 4/3;
}
.area-map > svg { width: 100%; height: 100%; display: block; }
.area-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.area-map-live figcaption { bottom: auto; top: 10px; right: 12px; max-width: calc(100% - 70px); text-align: right; }
.area-map .am-label { font-family: var(--sans); font-size: 19px; font-weight: 600; fill: var(--ink); }
.area-map .am-note { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; fill: var(--accent-deep); }
.area-map .am-home { font-family: var(--serif); font-size: 22px; font-weight: 600; fill: var(--pine); }
.area-map figcaption {
  position: absolute; right: 12px; bottom: 10px; font-size: .68rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); background: color-mix(in srgb, var(--card) 80%, transparent);
  padding: 3px 9px; border-radius: 99px;
}
.area-list p { padding: 11px 0; margin: 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem; color: var(--ink-soft); }
.area-list p:first-child { padding-top: 2px; }
.area-list p:last-child { border-bottom: 0; }
.area-list strong { color: var(--ink); }
@media (max-width: 960px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ————— Hero slider (one slide per home) ————— */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-title { font-family: var(--serif); font-weight: 500; line-height: 1.18; letter-spacing: -.01em; font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 17ch; color: #fdfcf7; text-wrap: balance; text-shadow: 0 2px 24px rgba(20,24,18,.4); }
.hero-slider .hero-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility 0s linear .9s; }
.hero-slider .hero-slide.active { opacity: 1; visibility: visible; transition: opacity .9s ease; z-index: 1; }
.btn-outline-light { border-color: rgba(253,252,247,.55); color: #fdfcf7; background: transparent; }
.btn-outline-light:hover { border-color: #fdfcf7; background: rgba(253,252,247,.14); }
.hero-tabs { position: absolute; z-index: 2; right: clamp(20px, 4vw, 56px); bottom: 42px; display: flex; gap: 10px; }
.hero-tab { appearance: none; text-align: left; border: 1px solid rgba(253,252,247,.35); background: rgba(20,24,18,.28); backdrop-filter: blur(6px); color: rgba(253,252,247,.9); font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 10px 18px; border-radius: 14px; cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.hero-tab span { display: block; font-size: .56rem; letter-spacing: .22em; color: #ecd9ab; margin-bottom: 3px; }
.hero-tab:hover { border-color: rgba(253,252,247,.8); }
.hero-tab.active { background: #fdfcf7; border-color: #fdfcf7; color: var(--ink); }
.hero-tab.active span { color: var(--accent-deep); }
@media (max-width: 700px) {
  .hero-slider { min-height: 100svh; }
  .hero-slider .hero-cine-inner { padding-top: 110px; padding-bottom: 128px; }
  .hero-title { font-size: clamp(1.65rem, 7vw, 2.05rem); }
  .hero-slider .hero-sub { font-size: 1rem; margin-top: 14px; }
  /* Mobile switcher: quiet text columns with a divider, so it doesn't compete with the CTAs */
  .hero-tabs { right: auto; left: 24px; transform: none; bottom: 16px; width: calc(100% - 48px); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .hero-tab { background: none; border: none; backdrop-filter: none; -webkit-backdrop-filter: none; border-radius: 0; padding: 6px 10px 12px; font-size: .64rem; color: rgba(253,252,247,.55); text-align: center; position: relative; }
  .hero-tab:first-child { border-right: 1px solid rgba(253,252,247,.28); }
  .hero-tab:hover { border-color: rgba(253,252,247,.28); }
  .hero-tab.active { background: none; border-color: rgba(253,252,247,.28); color: #fdfcf7; }
  .hero-tab.active::after { content: ''; position: absolute; left: 32%; right: 32%; bottom: 4px; height: 2px; border-radius: 2px; background: #ecd9ab; }
  .hero-tab span { display: none; }
  .hero-slider .hero-scroll { display: none; }
}

/* ————— Area map (Google) ————— */
.area-map-canvas { width: 100%; height: 100%; background: #eae6da; }
.area-map-live figcaption { z-index: 5; pointer-events: none; }

/* ————— Prose rhythm (markdown blocks) ————— */
.lead p + p, .wrap.narrow p + p, .wrap.narrow div > p:not(:first-child) { margin-top: 14px; }
.wrap.narrow ul + p, .wrap.narrow p + ul { margin-top: 12px; }

.area-map-wrap { margin: 0; }
.area-map-wrap .area-map { aspect-ratio: 4/3; }
.map-note { font-size: .75rem; color: var(--muted); margin-top: 8px; letter-spacing: .02em; }

/* ————— Property video tour ————— */
.video-frame { border-radius: 16px; overflow: hidden; background: #101410; box-shadow: var(--shadow); }
.video-frame video { display: block; width: 100%; aspect-ratio: 16/9; }

/* Hero intra-slide crossfade (exterior <-> interior) */
.hero-cine-media .hm-alt { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.show-alt .hm-alt { opacity: 1; }

.video-frame { position: relative; }
.video-frame video { cursor: pointer; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; z-index: 2;
  display: grid; place-items: center; cursor: pointer; border: 1.5px solid rgba(253,252,247,.7);
  border-radius: 50%; background: rgba(16,20,16,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease, opacity .35s ease;
}
.video-play:hover { transform: scale(1.07); background: rgba(16,20,16,.68); }
.video-play svg { width: 28px; height: 28px; fill: #fdfcf7; margin-left: 5px; }
.video-frame.playing .video-play { opacity: 0; pointer-events: none; }

/* Hide the mobile price bar while the booking widget itself is on screen */
.mobile-cta { transition: transform .3s ease; }
.mobile-cta.offstage { transform: translateY(110%); }
