@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================
   Blacklake Condo Rentals — Warm Coastal Luxury system
   Palette: warm sand/cream + deep ocean-green + terracotta/brass
   Type: Fraunces (display serif) + Inter (body)
   ========================================================= */

:root {
  --paper: #fbf7f0;        /* warm cream page */
  --paper-2: #f7f0e4;      /* sand */
  --soft: #f1e8d8;         /* muted section sand */
  --soft-2: #ece0cd;
  --line: #e4d6c0;         /* warm hairline */
  --line-soft: #efe5d4;

  --ink: #2b2620;          /* espresso near-black */
  --ink-2: #4a4034;
  --muted: #756857;        /* warm grey-brown */

  --green: #2e5e52;        /* deep ocean-green — primary */
  --green-deep: #234a41;
  --green-dark: #18352e;   /* darkest, hero overlays */

  --clay: #bf6f44;         /* terracotta accent */
  --clay-soft: #d08a5c;
  --gold: #b9965c;         /* brass */
  --sky: #5a8f8a;          /* soft coastal teal for tints */

  --white: #ffffff;
  --cream-text: #f6efe2;

  --shadow: 0 26px 60px rgba(43, 38, 32, 0.14);
  --shadow-soft: 0 16px 38px rgba(43, 38, 32, 0.09);
  --shadow-card: 0 18px 44px rgba(43, 38, 32, 0.10);

  --radius: 16px;
  --radius-sm: 11px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle paper texture wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(185, 150, 92, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(90, 143, 138, 0.07), transparent 55%);
}

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

a { color: inherit; text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--green); }

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

h1, h2, h3, h4 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

::selection { background: rgba(191, 111, 68, 0.22); }

.container { width: min(1240px, calc(100% - 56px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 999;
  transform: translateY(-160%);
  background: var(--green-dark); color: var(--cream-text);
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 240, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: saturate(140%) blur(14px);
}

.topbar {
  background: var(--green-dark);
  color: rgba(246, 239, 226, 0.92);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}
.topbar__inner {
  min-height: 40px; display: flex; align-items: center;
  justify-content: flex-end; gap: 20px;
}
.topbar__links { display: flex; gap: 18px; white-space: nowrap; }
.topbar a { color: var(--cream-text); font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar__weather {
  display: inline-flex; align-items: center; gap: 7px; margin-right: auto;
  color: var(--cream-text); font-weight: 600; font-size: 0.84rem; white-space: nowrap;
}
.topbar__weather svg { width: 18px; height: 18px; flex: 0 0 auto; }
.topbar__weather .tw-loc { opacity: 0.82; font-weight: 500; }
@media (max-width: 620px) { .topbar__weather .tw-loc { display: none; } }

.nav {
  min-height: 84px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 224px; height: 62px; object-fit: contain; }

.footer-brand {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem; line-height: 1; font-weight: 600;
}

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-menu > a, .nav-group > a {
  padding: 10px 14px; border-radius: var(--radius-pill);
  color: var(--ink-2); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.005em;
}
.nav-menu > a:hover, .nav-group:hover > a, .nav-menu .is-active {
  background: rgba(46, 94, 82, 0.09);
  color: var(--green-deep);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: var(--green) !important; color: var(--cream-text) !important;
  padding: 11px 20px !important; box-shadow: 0 10px 22px rgba(46, 94, 82, 0.26);
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

.nav-group { position: relative; }
.nav-group > a::after {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: 0.55;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-group:hover > a::after, .nav-group:focus-within > a::after {
  transform: rotate(225deg) translateY(0); opacity: 0.9;
}
/* invisible hover bridge so the cursor can cross the gap without closing the menu */
.nav-group::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px;
}
.nav-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 286px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav-dropdown a {
  display: block; padding: 10px 12px; border-radius: 9px;
  color: var(--ink-2); font-size: 0.92rem; font-weight: 500;
}
.nav-dropdown a:hover { background: var(--soft); color: var(--green-deep); }

.nav-toggle {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); padding: 11px;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 2px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 80vh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  background: var(--green-dark); color: var(--cream-text);
}
.hero::before {
  content: ""; position: absolute; inset: -18px; z-index: -3;
  background-image:
    linear-gradient(95deg, rgba(24, 53, 46, 0.86), rgba(24, 53, 46, 0.5) 46%, rgba(24, 53, 46, 0.18)),
    var(--hero-image);
  background-position: center; background-size: cover;
  transform: scale(1.03);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero-rotator { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-rotator img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transform: scale(1.03);
  transition: opacity 1300ms ease, transform 7000ms ease;
}
.hero-rotator img.is-active { opacity: 1; transform: scale(1.1); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(24, 53, 46, 0) 55%, rgba(20, 38, 33, 0.62)),
    linear-gradient(90deg, rgba(24, 53, 46, 0.34), rgba(24, 53, 46, 0));
}

.hero-small { min-height: 46vh; }
.hero-property { min-height: 72vh; }

.hero__content {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0, 1fr); gap: 48px; align-items: end;
  padding: 120px 0 104px;
}
.hero-home .hero__content, .hero-property .hero__content {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}
.hero-clean { min-height: 78vh; }
.hero-clean .hero__content {
  grid-template-columns: minmax(0, 860px);
  justify-content: center; text-align: center; padding: 140px 0 168px;
}
.hero-clean .hero__copy { margin: 0 auto; }
.hero-clean h1 { margin-inline: auto; }
.hero-clean p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
.hero-clean .hero-pulse, .hero-clean .hero__actions { justify-content: center; }

.hero__copy { max-width: 880px; }
.hero h1 {
  max-width: 880px; margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1.02;
  font-weight: 500; letter-spacing: -0.02em; color: #fff;
}
.hero p:not(.eyebrow) {
  max-width: 640px; margin: 22px 0 0;
  color: rgba(246, 239, 226, 0.92); font-size: 1.18rem; font-weight: 400;
}
.hero-clean p:not(.eyebrow) { max-width: 660px; }

.hero-pulse { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-pulse span {
  min-height: 36px; display: inline-flex; align-items: center;
  border: 1px solid rgba(246, 239, 226, 0.32);
  border-radius: var(--radius-pill);
  background: rgba(20, 38, 33, 0.38);
  color: #f3ead9; padding: 7px 15px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-pulse span:first-child {
  background: rgba(191, 111, 68, 0.34);
  border-color: rgba(208, 138, 92, 0.5);
}

.eyebrow {
  margin: 0 0 14px; color: var(--clay);
  font-weight: 700; text-transform: uppercase;
  font-size: 0.76rem; letter-spacing: 0.18em;
}
.hero .eyebrow { color: #e7b48d; }

.hero__actions, .card-actions, .owner-links, .social-row, .link-band {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
}
.hero__actions { margin-top: 36px; }

/* hero side feature card */
.hero-feature {
  position: relative; align-self: end; overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.26); border-radius: var(--radius);
  background: rgba(24, 53, 46, 0.42); box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px); animation: featureRise 700ms ease both;
}
.hero-feature::before {
  content: ""; position: absolute; inset: 0; border-top: 3px solid var(--clay); pointer-events: none;
}
.hero-feature__media {
  display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: 118px 118px;
  gap: 8px; padding: 10px 10px 0;
}
.hero-feature__media img { width: 100%; height: 100%; min-width: 0; object-fit: cover; border-radius: 9px; }
.hero-feature__media img:first-child { grid-row: 1 / span 2; }
.hero-feature__body { padding: 20px; }
.hero-feature__tag {
  display: inline-flex; align-items: center; min-height: 28px; padding: 6px 12px;
  border-radius: var(--radius-pill); background: rgba(191, 111, 68, 0.3);
  border: 1px solid rgba(208, 138, 92, 0.42);
  color: #f3ead9; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-feature h2 { margin: 14px 0 0; font-size: 1.7rem; line-height: 1.08; color: #fff; }
.hero-feature__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0 0; }
.hero-feature__stats--stacked { grid-template-columns: 1fr; }
.hero-feature__stats div {
  min-width: 0; padding: 12px 14px; border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: 11px; background: rgba(20, 38, 33, 0.5);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.hero-feature__stats dt { color: rgba(246, 239, 226, 0.7); font-size: 0.74rem; letter-spacing: 0.08em; }
.hero-feature__stats dd { color: #fff; font-size: 1.05rem; line-height: 1.14; font-weight: 600; }
.hero-feature__link {
  display: inline-flex; margin-top: 18px; color: #e7b48d; font-weight: 600;
  border-bottom: 1px solid rgba(231, 180, 141, 0.55); padding-bottom: 2px;
}
.hero-feature__link:hover { color: #fff; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; width: 1px; height: 48px;
  overflow: hidden; background: rgba(246, 239, 226, 0.26);
}
.hero__scroll span { display: block; width: 100%; height: 18px; background: var(--clay); animation: linePulse 2s ease-in-out infinite; }

@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(-6px, -4px, 0); }
  to { transform: scale(1.08) translate3d(8px, 5px, 0); }
}
@keyframes featureRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes linePulse {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(50px); }
}

/* ---------------- Booking dock ---------------- */
.booking-dock-wrap { position: relative; z-index: 5; margin-top: -62px; padding-bottom: 38px; }
.booking-dock {
  min-height: 118px; display: grid; grid-template-columns: 1.3fr 1fr 1fr auto;
  align-items: center; gap: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97); box-shadow: var(--shadow); backdrop-filter: blur(18px);
}
.booking-dock__item, .booking-dock__button { min-height: 90px; display: flex; justify-content: center; }
.booking-dock__item {
  flex-direction: column; gap: 5px; padding: 20px 28px; border-right: 1px solid var(--line-soft);
}
.booking-dock__item span { color: var(--clay); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.booking-dock__item strong { color: var(--ink); font-size: 1.02rem; line-height: 1.24; font-weight: 600; }
.booking-dock__item:hover strong { color: var(--green-deep); }
.booking-dock__button {
  align-items: center; margin: 16px; border-radius: var(--radius-sm);
  background: var(--green); color: var(--cream-text); padding: 0 28px;
  font-weight: 600; white-space: nowrap; box-shadow: 0 12px 24px rgba(46, 94, 82, 0.26);
}
.booking-dock__button:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border: 1px solid transparent;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.005em; cursor: pointer; white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--cream-text); box-shadow: 0 12px 26px rgba(46, 94, 82, 0.28); }
.btn-primary:hover { background: var(--green-dark); color: #fff; box-shadow: 0 16px 32px rgba(46, 94, 82, 0.34); }
.btn-light { background: rgba(251, 247, 240, 0.92); color: var(--green-deep); border-color: rgba(255, 255, 255, 0.5); }
.btn-light:hover { background: #fff; color: var(--green-dark); }
.btn-quiet { border-color: var(--line); color: var(--green-deep); background: var(--white); }
.btn-quiet:hover { border-color: var(--green); background: var(--soft); }
.btn-small { min-height: 42px; padding: 9px 16px; font-size: 0.92rem; }

/* ---------------- Quick strip ---------------- */
.quick-strip { background: var(--green-dark); color: var(--cream-text); }
.quick-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(246, 239, 226, 0.14); }
.quick-strip__grid div { min-height: 108px; padding: 24px; background: var(--green-dark); }
.quick-strip strong { display: block; font-family: Fraunces, serif; font-size: 2.1rem; line-height: 1; }
.quick-strip span { color: rgba(246, 239, 226, 0.78); }

/* ---------------- Sections ---------------- */
.section { position: relative; padding: 98px 0; }
.section-muted { background: var(--soft); }
.section-showcase { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.section-split { overflow: hidden; background: linear-gradient(135deg, var(--soft) 0 46%, var(--paper) 46% 100%); }
.section-split > .container { position: relative; }
.section-mapline { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-cta { background: var(--green-dark); color: var(--cream-text); }
.section-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(900px 400px at 85% -10%, rgba(191, 111, 68, 0.2), transparent 60%);
}
.section-cta > .container { position: relative; z-index: 1; }
.section-cta .section-heading p, .section-cta p { color: rgba(246, 239, 226, 0.84); }
.section-cta .eyebrow { color: #e7b48d; }

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .copy-block h2, .booking-panel h2, .contact-panel h2,
.legal-copy h2, .feature-grid h2 {
  margin: 0; font-family: Fraunces, serif; font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  line-height: 1.1; font-weight: 600;
}
.section-cta h2 { color: #fff; }
.section-heading > p:not(.eyebrow) { color: var(--muted); margin: 14px 0 0; font-size: 1.08rem; }

/* ---------------- Condo cards ---------------- */
.condo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; align-items: stretch; }
.condo-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.condo-card, .booking-panel, .contact-panel, .gallery-card, .inquiry-form {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
}

.condo-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 100%;
  background: var(--white); box-shadow: var(--shadow-card);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.condo-card:hover {
  transform: translateY(-6px); border-color: rgba(46, 94, 82, 0.4); box-shadow: var(--shadow);
}
.condo-card__media {
  position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-dark);
}
.condo-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24, 53, 46, 0) 45%, rgba(24, 53, 46, 0.5));
  pointer-events: none;
}
.condo-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms ease; }
.condo-card:hover .condo-card__media img { transform: scale(1.05); }

.condo-card__badge, .condo-card__rate { position: absolute; z-index: 1; }
.condo-card__badge {
  left: 16px; top: 16px; border-radius: var(--radius-pill);
  background: rgba(251, 247, 240, 0.94); color: var(--green-deep);
  padding: 7px 13px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
.condo-card__rate {
  right: 16px; bottom: 16px; display: grid; gap: 0; min-width: 104px;
  background: rgba(24, 53, 46, 0.92); color: #fff; padding: 11px 14px; text-align: right;
  border-radius: var(--radius-sm); backdrop-filter: blur(4px);
}
.condo-card__rate strong { font-family: Fraunces, serif; font-size: 1.4rem; line-height: 1; font-weight: 600; }
.condo-card__rate small { color: rgba(246, 239, 226, 0.78); font-weight: 500; }

.condo-card__body { display: flex; flex: 1; flex-direction: column; gap: 15px; padding: 26px; }
.condo-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.condo-card__kicker { margin: 0 0 5px; color: var(--clay); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.condo-card h3 { margin: 0; font-size: 1.6rem; line-height: 1.12; }
.condo-card h3 a:hover { color: var(--green-deep); }
.condo-card__owner {
  flex: 0 0 auto; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: var(--soft); color: var(--green-deep); padding: 6px 12px; font-size: 0.76rem; font-weight: 700;
}
.condo-card__summary {
  margin: 0; color: var(--muted); font-size: 1rem;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}
.condo-card__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.condo-card__chips span {
  min-height: 30px; display: inline-flex; align-items: center;
  border: 1px solid rgba(46, 94, 82, 0.22); border-radius: var(--radius-pill);
  background: rgba(46, 94, 82, 0.07); color: var(--green-deep); padding: 5px 11px; font-size: 0.78rem; font-weight: 600;
}

.mini-specs, .spec-grid { display: grid; gap: 10px; }
.mini-specs {
  display: flex; flex-wrap: wrap; gap: 10px 18px; margin: auto 0 0; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.mini-specs div { min-width: max-content; display: inline-flex; align-items: baseline; gap: 6px; }

dt { color: var(--muted); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
dd { margin: 0; font-weight: 600; overflow-wrap: normal; word-break: normal; line-height: 1.18; }
.mini-specs dd { color: var(--ink); font-size: 0.96rem; }
.mini-specs div:last-child dd { white-space: nowrap; }

.condo-card__actions { margin-top: 4px; }
.condo-card__actions .btn { flex: 1 1 120px; }

/* ---------------- Feature split ---------------- */
.feature-split, .property-layout, .cta-grid, .contact-grid { display: grid; gap: 36px; }
.feature-split { grid-template-columns: minmax(0, 1fr) 440px; align-items: center; }
.feature-list { display: grid; gap: 18px; }
.feature-list div, .feature-grid div {
  border-left: 3px solid var(--clay); padding-left: 20px;
}
.feature-list h3, .feature-grid h2 { margin: 0 0 6px; font-size: 1.24rem; font-weight: 600; }
.feature-list p, .feature-grid p { margin: 0; color: var(--muted); }

.image-stack { display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: 16px; }
.image-stack img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-stack img:nth-child(2) { aspect-ratio: 1 / 1; margin-bottom: -40px; }

/* ---------------- Link band ---------------- */
.link-band { align-items: stretch; }
.link-band a {
  flex: 1 1 220px; min-height: 88px; display: flex; align-items: center; gap: 12px;
  padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); font-weight: 600; font-size: 1.02rem; color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.link-band a::before {
  content: "→"; color: var(--clay); font-weight: 700; transition: transform 180ms ease;
}
.link-band a:hover { border-color: var(--green); box-shadow: var(--shadow-soft); transform: translateY(-2px); color: var(--green-deep); }
.link-band a:hover::before { transform: translateX(4px); }

/* ---------------- Facts ---------------- */
.section-facts { background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%); }
.facts-layout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 40px; align-items: start; }
.facts-list, .facts-panel ul { margin: 0; padding: 0; list-style: none; }
.facts-list { display: grid; gap: 12px; }
.facts-list li, .facts-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.facts-list li { padding: 16px 18px; color: var(--muted); }
.facts-list strong { color: var(--ink); }
.facts-panel { padding: 26px; box-shadow: var(--shadow-soft); }
.facts-panel h3 { margin: 0 0 16px; font-family: Fraunces, serif; font-size: 1.45rem; }
.facts-panel li { padding: 13px 0; border-top: 1px solid var(--line-soft); color: var(--muted); font-weight: 500; }
.facts-panel a:not(.btn) { color: var(--green-deep); font-weight: 700; }
.facts-panel .btn { margin-top: 20px; }

/* ---------------- CTA ---------------- */
.cta-grid { grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.68fr); align-items: start; }
.cta-grid h2 { margin: 0; font-family: Fraunces, serif; font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.06; color: #fff; }

/* ---------------- Forms ---------------- */
.inquiry-form { display: grid; gap: 15px; padding: 26px; color: var(--ink); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--ink); font-size: 0.84rem; font-weight: 700; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); padding: 12px 14px; min-height: 48px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--gold); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus,
.nav-toggle:focus-visible, .btn:focus-visible, .gallery-card button:focus-visible, .filterbar button:focus-visible {
  outline: none; border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 3px rgba(46, 94, 82, 0.18);
}
.form-status { margin: 0; min-height: 22px; color: var(--green-deep); font-weight: 600; }
.form-status.is-error { color: var(--clay); }

/* nights summary (JS) */
.stay-summary {
  display: none; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(46, 94, 82, 0.08); border: 1px solid rgba(46, 94, 82, 0.18);
  color: var(--green-deep); font-weight: 600; font-size: 0.92rem;
}
.stay-summary.is-visible { display: flex; }
.stay-summary__line strong { font-family: Fraunces, serif; font-size: 1.02rem; }
.stay-summary__price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  padding-top: 6px; border-top: 1px dashed rgba(46, 94, 82, 0.28); width: 100%;
}
.stay-summary__total { font-family: Fraunces, serif; font-size: 1.28rem; color: var(--green-deep); }
.stay-summary__price .tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--clay); background: rgba(191, 111, 68, 0.12); border-radius: var(--radius-pill); padding: 3px 9px;
}
.stay-summary small { color: var(--muted); font-weight: 500; font-size: 0.76rem; line-height: 1.4; }
.stay-summary__warn { margin-top: 4px; padding: 9px 12px; border-radius: var(--radius-sm); background: rgba(191, 111, 68, 0.12); border: 1px solid rgba(191, 111, 68, 0.3); color: #9a5226; font-size: 0.82rem; font-weight: 600; line-height: 1.4; }

/* guest-count flag */
.guest-flag {
  display: none; margin: 2px 0 0; padding: 11px 14px; border-radius: var(--radius-sm);
  background: rgba(191, 111, 68, 0.12); border: 1px solid rgba(191, 111, 68, 0.32);
  color: #9a5226; font-size: 0.88rem; font-weight: 600; line-height: 1.45;
}
.guest-flag.is-visible { display: block; }

/* inquiry sent confirmation */
.inquiry-success {
  text-align: center; padding: 32px 26px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft);
}
.inquiry-success__badge {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(46, 94, 82, 0.12); color: var(--green-deep);
}
.inquiry-success__badge svg { width: 28px; height: 28px; }
.inquiry-success h3 { font-family: Fraunces, serif; font-size: 1.5rem; margin: 0 0 8px; color: var(--green-deep); }
.inquiry-success p { margin: 0; color: var(--muted); line-height: 1.6; }
.inquiry-success a { color: var(--green-deep); font-weight: 600; border-bottom: 1px solid var(--line); }
/* Booking success: hole-in-one celebration */
.inquiry-success__golf svg { width: 210px; max-width: 100%; height: auto; display: block; margin: 0 auto 8px; }
.inquiry-success__golf .isg-ball { animation: isg-roll 1.5s ease-in forwards; }
@keyframes isg-roll { 0% { transform: translate(16px, 74px); opacity: 0; } 8% { opacity: 1; } 68% { transform: translate(150px, 74px); } 82% { transform: translate(158px, 73px); } 100% { transform: translate(158px, 80px); opacity: 0; } }
.inquiry-success__golf .isg-flagcloth { transform-box: fill-box; transform-origin: 0% 50%; animation: isg-flag 1.4s ease-in-out infinite; }
@keyframes isg-flag { 0%, 100% { transform: skewX(0); } 50% { transform: skewX(-12deg) scaleX(0.92); } }
.inquiry-success__golf .isg-confetti { opacity: 0; transform-box: fill-box; transform-origin: center; animation: isg-burst 1.3s ease-out forwards; animation-delay: 1.35s; }
@keyframes isg-burst { 0% { opacity: 0; transform: translateY(4px) scale(0.6); } 20% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-22px) scale(1.25); } }
.inquiry-success__golf .isg-txt { opacity: 0; animation: isg-txt 1.7s ease-out forwards; animation-delay: 1.4s; }
@keyframes isg-txt { 0% { opacity: 0; transform: translateY(6px); } 30% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; } }
/* Golf-flag icon on Request Dates buttons */
.cta-flag { width: 14px; height: 14px; margin: 0; flex: 0 0 auto; }
/* Konami golf-ball shower */
.bl-shower { position: fixed; inset: 0; z-index: 4000; pointer-events: none; overflow: hidden; }
.bl-gball { position: absolute; top: -40px; animation: bl-drop linear forwards; }
.bl-gball svg { width: 100%; height: 100%; display: block; }
@keyframes bl-drop { to { transform: translateY(112vh) rotate(340deg); } }
.bl-fore { position: absolute; top: 36%; left: 0; right: 0; text-align: center; font-family: Fraunces, Georgia, serif; font-weight: 700; font-size: clamp(2rem, 8vw, 5rem); color: #bf6f44; text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25); animation: bl-fore 4.1s ease forwards; }
@keyframes bl-fore { 0% { opacity: 0; transform: scale(0.6); } 15% { opacity: 1; transform: scale(1); } 80% { opacity: 1; } 100% { opacity: 0; transform: scale(1.05); } }
/* Scroll-progress golf ball */
.bl-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; }
.bl-progress__bar { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #b9965c, #bf6f44); }
.bl-progress__ball { position: absolute; top: -4px; left: 0; width: 11px; height: 11px; margin-left: -6px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, #e7e1d3); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }
/* Putt-to-top button */
.bl-totop { position: fixed; right: 20px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--green); box-shadow: 0 10px 24px rgba(24, 53, 46, 0.28); cursor: pointer; opacity: 0; transform: translateY(12px); transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease; z-index: 150; display: grid; place-items: center; }
.bl-totop.show { opacity: 1; transform: none; }
.bl-totop:hover { background: var(--green-dark); transform: translateY(-2px); }
.bl-totop svg { width: 26px; height: 26px; }
@media (max-width: 620px) { .bl-totop { right: 14px; bottom: 86px; width: 42px; height: 42px; } }
/* Amenity pill hover bounce */
.pill-list span { transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease; }
.pill-list span:hover { transform: translateY(-2px); border-color: rgba(46, 94, 82, 0.4); box-shadow: 0 6px 14px rgba(46, 94, 82, 0.12); }
.pill-list span:hover::before { animation: bl-ballbounce 0.5s ease; }
@keyframes bl-ballbounce { 0%, 100% { transform: translateY(0); } 40% { transform: translateY(-3px); } }
@media (prefers-reduced-motion: reduce) { .pill-list span:hover::before { animation: none; } }
/* Scroll putt divider */
.putt-divider { padding: 10px 0 2px; overflow: hidden; }
.putt-divider svg { display: block; width: 100%; height: auto; }
.putt-divider .pd-ball { opacity: 0; }
.putt-divider.is-putt .pd-ball { animation: pd-roll 2.3s cubic-bezier(0.25, 0.7, 0.25, 1) forwards; }
@keyframes pd-roll { 0% { opacity: 0; transform: translateX(0); } 6% { opacity: 1; } 88% { transform: translateX(1076px); } 96% { transform: translateX(1080px); } 100% { transform: translateX(1080px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .inquiry-success__golf .isg-ball, .inquiry-success__golf .isg-flagcloth, .inquiry-success__golf .isg-confetti { animation: none; }
  .inquiry-success__golf .isg-ball, .inquiry-success__golf .isg-confetti { opacity: 0; }
  .inquiry-success__golf .isg-txt { animation: none; opacity: 1; }
  .putt-divider .pd-ball { opacity: 0; }
}

/* ---------------- Property page ---------------- */
.property-overview { padding-top: 52px; }
.spec-grid { grid-template-columns: repeat(6, 1fr); margin-bottom: 48px; }
.spec-grid div {
  min-height: 100px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  display: flex; flex-direction: column; justify-content: center; gap: 4px; box-shadow: var(--shadow-soft);
}
.spec-grid dd { font-family: Fraunces, serif; font-size: 1.3rem; color: var(--green-deep); }

.property-layout { grid-template-columns: minmax(0, 1fr) 400px; align-items: start; }
.copy-block p { color: var(--ink-2); font-size: 1.06rem; }
.copy-block h2 { margin-bottom: 8px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill-list span {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--soft);
  padding: 9px 15px 9px 31px; font-weight: 600; font-size: 0.9rem; color: var(--ink-2);
}
.pill-list span::before {
  content: ""; position: absolute; left: 12px; top: 50%; width: 12px; height: 12px; margin-top: -6px;
  border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, #e7e1d3);
  box-shadow: inset -1px -1px 1.5px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
/* Desktop-only "A look inside" photo preview that fills the left column beside the booking form */
.property-peek { margin-top: 32px; }
.property-peek .eyebrow { margin-bottom: 12px; }
.property-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.property-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); display: block; }
@media (max-width: 1060px) { .property-peek { display: none; } }
/* Lazy YouTube video tour facade */
.video-facade { position: relative; width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-soft); background: #0d221c; }
.video-facade img, .video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.video-facade__play { position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; display: grid; place-items: center; background: rgba(191, 111, 68, 0.92); border-radius: 50%; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); transition: transform 0.18s ease, background 0.18s ease; }
.video-facade:hover .video-facade__play, .video-facade:focus-visible .video-facade__play { transform: scale(1.06); background: var(--clay); }
.video-facade__play svg { width: 30px; height: 30px; margin-left: 4px; fill: #fff; }

.booking-panel { padding: 26px; position: sticky; top: 140px; box-shadow: var(--shadow-card); }
.booking-panel h2 { font-size: 1.6rem; }
.booking-panel > p { color: var(--muted); margin-top: 8px; }
.booking-panel .inquiry-form { padding: 0; border: 0; box-shadow: none; margin-top: 18px; }

.owner-links { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.owner-links a { color: var(--green-deep); font-weight: 600; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.owner-links a:hover { border-color: var(--green); }

/* availability embed (JS) */
.availability {
  margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); overflow: hidden; box-shadow: var(--shadow-soft);
}
.availability__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; cursor: pointer; background: var(--soft); border: 0; width: 100%; text-align: left;
}
.availability__head span { font-weight: 700; color: var(--green-deep); display: inline-flex; align-items: center; gap: 8px; }
.availability__head small { color: var(--muted); font-weight: 500; }
.availability__toggle { font-size: 0.86rem; color: var(--clay); font-weight: 700; }
.availability__body { height: 0; overflow: hidden; transition: height 280ms ease; }
.availability__body iframe { width: 100%; height: 480px; border: 0; display: block; }

/* ---------------- Gallery ---------------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filterbar button {
  min-height: 42px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: var(--white); color: var(--muted); padding: 9px 18px; font-weight: 600; cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.filterbar button.is-active, .filterbar button:hover {
  background: var(--green); color: var(--cream-text); border-color: var(--green);
}

.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-card { overflow: hidden; margin: 0; box-shadow: var(--shadow-soft); }
.gallery-card[hidden] { display: none; }
.gallery-card button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 320ms ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card figcaption { padding: 11px 14px; color: var(--muted); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------------- Feature grid / contact ---------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.contact-panel { padding: 28px; box-shadow: var(--shadow-soft); }
.contact-panel h2 { font-size: 1.5rem; }
.contact-panel p { color: var(--muted); }
.contact-panel a { display: block; color: var(--green-deep); font-weight: 600; margin-top: 8px; }

/* ---------------- FAQ ---------------- */
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  padding: 0; overflow: hidden; transition: box-shadow 180ms ease, border-color 180ms ease;
}
.faq-list details[open] { box-shadow: var(--shadow-soft); border-color: rgba(46, 94, 82, 0.3); }
.faq-list summary {
  cursor: pointer; padding: 20px 22px; font-weight: 600; font-size: 1.05rem; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--clay); font-size: 1.5rem; font-weight: 400; transition: transform 200ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

/* ---------------- Legal ---------------- */
.legal-copy { color: var(--muted); }
.legal-copy h2 { color: var(--ink); margin-top: 38px; font-size: 1.6rem; }
.legal-copy h2:first-child { margin-top: 0; }

/* ---------------- Editable content bits ---------------- */
.site-announce { background: var(--green-dark); color: var(--cream, #f6efe2); font-size: 0.9rem; font-weight: 600; text-align: center; padding: 9px 0; letter-spacing: 0.01em; }
.site-announce .container { padding-top: 0; padding-bottom: 0; }
.condo-card__status { margin: 2px 0 0; font-size: 0.82rem; font-weight: 700; color: var(--clay); display: inline-flex; align-items: center; gap: 6px; }
.condo-card__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); display: inline-block; }
.hero-pulse__status { background: rgba(191, 111, 68, 0.16); color: var(--clay); font-weight: 700; border-radius: var(--radius-pill); padding: 4px 12px; }

/* Guest reviews */
.reviews-section { background: var(--cream, #f6efe2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.review-card { background: #fff; border: 1px solid rgba(46, 94, 82, 0.12); border-radius: var(--radius-md, 16px); padding: 24px; box-shadow: 0 10px 30px rgba(24, 53, 46, 0.06); }
.review-card__stars { color: var(--gold, #b9965c); letter-spacing: 2px; font-size: 1rem; margin-bottom: 10px; }
.review-card__text { font-family: Fraunces, Georgia, serif; font-size: 1.02rem; line-height: 1.5; color: var(--green-dark, #18352e); margin: 0 0 14px; }
.review-card__by { margin: 0; font-size: 0.86rem; font-weight: 700; color: var(--muted); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------------- Availability calendar ---------------- */
.bl-cal { margin: 4px 0 18px; border: 1px solid var(--line); border-radius: var(--radius-sm, 12px); padding: 14px; background: var(--paper, #fbf7f0); }
.bl-cal__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.bl-cal__title { font-weight: 700; font-size: 0.9rem; color: var(--green-dark, #18352e); }
.bl-cal__legend { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--muted); }
.bl-cal__legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-left: 6px; }
.bl-cal__legend .dot-open { background: #dfeae4; border: 1px solid #bcd2c8; }
.bl-cal__legend .dot-blocked { background: #e6c9bb; border: 1px solid #d3a48d; }
.bl-cal__months { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bl-cal__mname { text-align: center; font-weight: 700; font-size: 0.82rem; margin-bottom: 6px; color: var(--green-dark, #18352e); }
.bl-cal__dow, .bl-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.bl-cal__dow span { text-align: center; font-size: 0.62rem; color: var(--muted); font-weight: 700; padding-bottom: 2px; }
.bl-cal__grid span { text-align: center; font-size: 0.72rem; padding: 4px 0; border-radius: 5px; }
.bl-cal__day.is-open { background: #eaf1ed; color: var(--green-dark, #18352e); }
.bl-cal__day.is-blocked { background: #e6c9bb; color: #8a4b31; text-decoration: line-through; }
.bl-cal__day.is-past { color: #c9c0b0; }
.bl-cal__note { margin: 10px 0 0; font-size: 0.78rem; color: var(--muted); }
@media (max-width: 380px) { .bl-cal__months { grid-template-columns: 1fr; } }

/* ---------------- Footer ---------------- */
.footer { position: relative; overflow: hidden; background: linear-gradient(180deg, #4a8672 0%, #3c7461 28%, #336154 60%, #2b5546 100%); color: rgba(246, 239, 226, 0.86); padding: 168px 0 126px; }
.footer a { color: rgba(246, 239, 226, 0.92); }
.footer__scene { position: absolute; top: 0; left: 0; width: 100%; height: 168px; pointer-events: none; z-index: 0; }
.footer__scene svg { display: block; width: 100%; height: 100%; }
.footer > .container { position: relative; z-index: 1; }
.bl-flagwrap { pointer-events: auto; cursor: pointer; }
.bl-flag { transform-box: fill-box; transform-origin: 0% 50%; animation: bl-flagwave 3.4s ease-in-out infinite; }
@keyframes bl-flagwave { 0%, 100% { transform: skewX(0) scaleX(1); } 50% { transform: skewX(-11deg) scaleX(0.93); } }
.bl-flag.bl-flag-jiggle { animation: bl-flagjig 0.6s ease; }
@keyframes bl-flagjig { 0%, 100% { transform: skewX(0); } 30% { transform: skewX(-16deg); } 60% { transform: skewX(9deg); } }
/* One cart: drives right across the top, exits, then reappears at the bottom driving left. Never two at once. */
.footer__scene .bl-cart { transform-box: fill-box; transform-origin: center; transform: translate(-160px, 152px); animation: bl-cart-loop-top 24s linear infinite; }
@keyframes bl-cart-loop-top {
  0%   { transform: translate(-160px, 152px); }
  42%  { transform: translate(1560px, 152px); }
  100% { transform: translate(1560px, 152px); }
}
.footer__ground .bl-cart2 { transform-box: fill-box; transform-origin: center; transform: translate(1560px, 46px) scale(-0.6, 0.6); animation: bl-cart-loop-bottom 24s linear infinite; }
@keyframes bl-cart-loop-bottom {
  0%   { transform: translate(1560px, 46px) scale(-0.6, 0.6); }
  50%  { transform: translate(1560px, 46px) scale(-0.6, 0.6); }
  92%  { transform: translate(-210px, 46px) scale(-0.6, 0.6); }
  100% { transform: translate(-210px, 46px) scale(-0.6, 0.6); }
}
.v-gopher { animation: bl-gopher 4.2s ease-in-out forwards; }
@keyframes bl-gopher { 0% { transform: translateY(30px); } 16% { transform: translateY(-4px); } 28% { transform: translateY(-8px); } 40% { transform: translateY(-4px); } 54% { transform: translateY(-8px); } 78% { transform: translateY(-6px); } 100% { transform: translateY(30px); } }
.v-club { transform-box: fill-box; transform-origin: 12% 12%; animation: bl-swing 3s ease-in forwards; }
@keyframes bl-swing { 0%, 20% { transform: rotate(-96deg); } 33% { transform: rotate(34deg); } 52% { transform: rotate(20deg); } 100% { transform: rotate(20deg); } }
.v-flyball { animation: bl-flyball 3s ease-out forwards; }
@keyframes bl-flyball { 0%, 32% { transform: translate(14px, -22px); opacity: 0; } 33% { opacity: 1; } 50% { transform: translate(120px, -74px); } 66% { transform: translate(220px, -82px); } 82% { transform: translate(300px, -44px); } 94% { transform: translate(342px, -6px); } 100% { transform: translate(344px, -2px); opacity: 1; } }
.v-dust { opacity: 0; animation: bl-dust 3s ease-out forwards; }
@keyframes bl-dust { 0%, 92% { opacity: 0; transform: translate(344px, -2px) scale(0.3); } 95% { opacity: 0.6; transform: translate(344px, -2px) scale(1); } 100% { opacity: 0; transform: translate(344px, -2px) scale(1.7); } }
.v-bird { animation: bl-bird 7.6s linear forwards; }
@keyframes bl-bird { 0% { transform: translate(0, 0); } 25% { transform: translate(380px, -7px); } 50% { transform: translate(760px, 0); } 75% { transform: translate(1140px, -7px); } 100% { transform: translate(1520px, 0); } }
.v-putt { animation: bl-putt 1.1s ease-in forwards; }
@keyframes bl-putt { 0% { transform: translate(-64px, -2px); } 70% { transform: translate(-5px, -2px); } 82% { transform: translate(0, -2px); } 100% { transform: translate(0, 6px); opacity: 0; } }
.v-hio { opacity: 0; animation: bl-hio 2.4s ease-out forwards; animation-delay: 0.5s; }
@keyframes bl-hio { 0% { opacity: 0; transform: translateY(8px); } 22% { opacity: 1; transform: translateY(0); } 80% { opacity: 1; } 100% { opacity: 0; transform: translateY(-12px); } }
@media (max-width: 700px) { .footer { padding-top: 138px; } .footer__scene { height: 138px; } }
.bl-skycloud { animation-name: bl-skycloud; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes bl-skycloud { from { transform: translateX(-170px); } to { transform: translateX(1620px); } }
.bl-skyrain { animation-name: bl-skyrain; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes bl-skyrain { 0% { transform: translateY(-10px); opacity: 0; } 12% { opacity: 0.55; } 100% { transform: translateY(150px); opacity: 0; } }
.bl-skysnow { animation-name: bl-skysnow; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes bl-skysnow { 0% { transform: translate(0, -8px); opacity: 0; } 15% { opacity: 0.8; } 100% { transform: translate(16px, 150px); opacity: 0; } }
.bl-skysun { transform-box: fill-box; transform-origin: center; animation: bl-skysun 4.2s ease-out forwards; }
@keyframes bl-skysun { 0% { opacity: 0; transform: scale(0.3); } 18% { opacity: 1; transform: scale(1); } 82% { opacity: 1; transform: scale(1.03); } 100% { opacity: 0; transform: scale(1.12); } }
.bl-skyflash { opacity: 0; }
.bl-skyflash.on { animation: bl-skyflash 0.5s ease; }
@keyframes bl-skyflash { 0%, 100% { opacity: 0; } 20% { opacity: 0.4; } 40% { opacity: 0.1; } 55% { opacity: 0.36; } }
/* Night mode: darkened fairway, moon + stars when clear, cart headlight */
.footer__scene .bl-night-veil { display: none; }
.footer__scene.is-night .bl-night-veil { display: block; opacity: 0.8; }
.bl-headlight { display: none; }
.footer.is-night .bl-headlight { display: block; mix-blend-mode: screen; }
.bl-star { animation: bl-startwinkle 3.4s ease-in-out infinite; }
@keyframes bl-startwinkle { 0%, 100% { opacity: 0.22; } 50% { opacity: 0.95; } }
/* Bottom grass + lake band (fish, lily pads, reeds, fireflies) */
.footer__ground { position: absolute; left: 0; bottom: 0; width: 100%; height: 120px; pointer-events: none; z-index: 0; }
.footer__ground svg { display: block; width: 100%; height: 100%; }
.bl-reed { transform-box: fill-box; transform-origin: 50% 100%; animation: bl-reedsway 4.6s ease-in-out infinite; }
@keyframes bl-reedsway { 0%, 100% { transform: rotate(-3.5deg); } 50% { transform: rotate(3.5deg); } }
.bl-shimmer { opacity: 0.22; animation: bl-shimmermove 5s ease-in-out infinite; }
@keyframes bl-shimmermove { 0%, 100% { opacity: 0.12; transform: translateX(-7px); } 50% { opacity: 0.42; transform: translateX(7px); } }
.footer__ground .bl-firefly { display: none; }
.footer.is-night .footer__ground .bl-firefly { display: block; transform-box: fill-box; animation: bl-fireflymove 7s ease-in-out infinite; }
@keyframes bl-fireflymove { 0% { transform: translate(0,0); opacity: 0; } 15% { opacity: 0.9; } 50% { transform: translate(var(--fx,0), var(--fy,0)); opacity: 0.45; } 85% { opacity: 0.9; } 100% { transform: translate(0,0); opacity: 0; } }
.footer.is-night { background: linear-gradient(180deg, #2e5e52 0%, #1b3a34 12%, #153029 42%, #112622 100%); }
.footer__ground .bl-ground-veil { display: none; }
.footer.is-night .footer__ground .bl-ground-veil { display: block; opacity: 0.72; }
/* Animation on/off toggles (owner-controlled in Settings) */
.footer.bl-off-weather .bl-skycloud, .footer.bl-off-weather .bl-skyrain, .footer.bl-off-weather .bl-skysnow, .footer.bl-off-weather .bl-skysun, .footer.bl-off-weather .bl-skyflash { display: none; }
.footer.bl-off-moon .bl-moon, .footer.bl-off-moon .bl-star { display: none; }
.footer.bl-off-cart .bl-cart, .footer.bl-off-cart .bl-cart2 { display: none; }
.footer.bl-off-flag .bl-flagwrap { display: none; }
.footer.bl-off-trail .bl-grp-trail { display: none; }
.footer.bl-off-lake .bl-grp-lake { display: none; }
.footer.bl-off-fish .bl-grp-fish { display: none; }
.footer.bl-off-fireflies .bl-firefly { display: none; }
.footer.bl-off-critters .bl-stage, .footer.bl-off-critters .bl-stage2 { display: none; }
.footer.bl-scene-off .footer__scene, .footer.bl-scene-off .footer__ground { display: none; }
.footer.bl-scene-off { padding-top: 60px; padding-bottom: 54px; }
/* Holiday decoration animations */
.bl-bat { transform-box: fill-box; animation: bl-bat 6s ease-in-out infinite; }
@keyframes bl-bat { 0%, 100% { transform: translate(0,0) scaleY(1); } 25% { transform: translate(46px,-9px) scaleY(0.66); } 50% { transform: translate(92px,5px) scaleY(1); } 75% { transform: translate(46px,-7px) scaleY(0.66); } }
.bl-xlight { animation: bl-xlight 1.6s ease-in-out infinite; }
@keyframes bl-xlight { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.bl-fall { animation-name: bl-fall; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes bl-fall { 0% { transform: translateY(-16px) rotate(0deg); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(198px) rotate(300deg); opacity: 0; } }
.bl-firework { transform-box: fill-box; transform-origin: center; animation: bl-firework 3.4s ease-out infinite; }
@keyframes bl-firework { 0% { transform: scale(0.1); opacity: 0; } 12% { opacity: 1; } 45% { transform: scale(1); opacity: 0.85; } 62% { opacity: 0; } 100% { opacity: 0; } }
@media (max-width: 700px) { .footer { padding-bottom: 94px; } .footer__ground { height: 90px; } }
@media (prefers-reduced-motion: reduce) {
  .footer__scene .bl-cart { animation: none; transform: translate(150px, 152px); }
  .footer__ground .bl-cart2 { animation: none; display: none; }
  .bl-flag, .v-gopher, .v-club, .v-flyball, .v-dust, .v-bird, .v-putt, .v-hio,
  .bl-skycloud, .bl-skyrain, .bl-skysnow, .bl-skysun, .bl-star,
  .bl-reed, .bl-shimmer, .bl-firefly, .bl-bat, .bl-xlight, .bl-firework { animation: none; }
  .bl-fall { display: none; }
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 38px; }
.footer h2 { margin: 0 0 16px; color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: Inter, sans-serif; font-weight: 700; }
.footer a { display: block; color: rgba(246, 239, 226, 0.84); margin: 9px 0; }
.footer a:hover { color: #fff; }
.footer > .container > .footer__grid > div:first-child p { color: rgba(246, 239, 226, 0.66); }
.footer-brand { color: #fff !important; font-size: 1.5rem; margin-bottom: 6px; }

.social-row { margin-top: 16px; }
.social-row a { margin: 0; }
.social-icon {
  width: auto; min-height: 44px; display: inline-flex !important; align-items: center; gap: 9px;
  border: 1px solid rgba(246, 239, 226, 0.2); border-radius: var(--radius-pill);
  background: rgba(246, 239, 226, 0.07); padding: 9px 15px; font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.social-icon svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
.social-icon:hover { transform: translateY(-1px); border-color: rgba(208, 138, 92, 0.6); background: rgba(191, 111, 68, 0.18); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 12px 18px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(246, 239, 226, 0.14); font-size: 0.9rem;
}
.footer__bottom > span:last-child { display: flex; gap: 18px; }
.footer__bottom a, .footer__credit a { display: inline; margin: 0; }
.footer__credit { font-size: 0.78rem; color: rgba(246, 239, 226, 0.4); white-space: nowrap; }
.footer__credit a { color: rgba(246, 239, 226, 0.58); font-weight: 500; }
.footer__credit a:hover { color: #fff; }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 500; display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px; grid-template-rows: 64px minmax(0, 1fr) 52px;
  gap: 0; background: rgba(18, 30, 26, 0.95); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox__close { grid-column: 3; grid-row: 1; justify-self: end; align-self: start; margin: 14px; }
.lightbox__stage { grid-column: 2; grid-row: 2; display: grid; place-items: center; min-width: 0; min-height: 0; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 130px); object-fit: contain; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.lightbox button {
  border: 1px solid rgba(246, 239, 226, 0.22); border-radius: var(--radius-pill);
  background: rgba(246, 239, 226, 0.1); color: #fff; min-width: 48px; min-height: 48px; cursor: pointer;
  font-weight: 600; transition: background 160ms ease;
}
.lightbox button:hover { background: rgba(191, 111, 68, 0.4); }
.lightbox__prev, .lightbox__next { grid-row: 2; align-self: center; justify-self: center; }
.lightbox__prev { grid-column: 1; }
.lightbox__next { grid-column: 3; }
.lightbox__count {
  grid-column: 2; grid-row: 3; align-self: center; justify-self: center;
  color: rgba(246, 239, 226, 0.8); font-weight: 600; letter-spacing: 0.06em; font-size: 0.9rem;
}

/* ---------------- Sticky mobile booking bar (JS) ---------------- */
.mobile-book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 247, 240, 0.97); border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(43, 38, 32, 0.12); backdrop-filter: blur(12px);
}
.mobile-book-bar__price { line-height: 1.1; }
.mobile-book-bar__price strong { font-family: Fraunces, serif; font-size: 1.3rem; color: var(--green-deep); }
.mobile-book-bar__price span { display: block; color: var(--muted); font-size: 0.78rem; }
.mobile-book-bar .btn { flex: 0 0 auto; }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------------- Inline icons ---------------- */
.ic { width: 1em; height: 1em; flex: 0 0 auto; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.14em; }
.hero-pulse span .ic { width: 14px; height: 14px; margin-right: 7px; color: #e7b48d; }
.booking-dock__item .ic { width: 24px; height: 24px; margin-bottom: 4px; color: var(--clay); }
.mini-specs > div { align-items: center; }
.mini-specs .ic { width: 15px; height: 15px; margin-right: 5px; color: var(--clay); }
.spec-grid .ic { width: 22px; height: 22px; margin-bottom: 8px; color: var(--clay); }
.feature-list h3 .ic, .feature-grid h2 .ic { width: 20px; height: 20px; margin-right: 9px; color: var(--clay); vertical-align: -0.2em; }
.link-band a .ic { width: 20px; height: 20px; margin-right: 8px; color: var(--clay); transition: transform 180ms ease; }
.link-band a::before { content: none; }
.link-band a:hover .ic { transform: translateX(3px); }
.footer a .ic, .contact-panel a .ic, .owner-links a .ic, .host-links a .ic { width: 15px; height: 15px; margin-right: 8px; color: var(--clay); }

/* anchor offset so sticky header doesn't cover targets */
:where([id]) { scroll-margin-top: 104px; }

/* ---------------- Amenities strip ---------------- */
.amenities { background: var(--soft); }
.amenity-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.amenity {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 22px 12px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.amenity .ic { width: 28px; height: 28px; color: var(--clay); }
.amenity span { font-weight: 600; font-size: 0.92rem; color: var(--ink); line-height: 1.25; }

/* ---------------- Meet the hosts ---------------- */
.host-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.host-card {
  display: flex; gap: 18px; padding: 26px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.host-avatar {
  flex: 0 0 auto; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
  background: var(--soft); color: var(--green-deep); font-family: Fraunces, serif;
  font-size: 1.6rem; font-weight: 600; border: 1px solid var(--line);
}
.host-photo { position: relative; flex: 0 0 auto; width: 120px; height: 150px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--soft); display: grid; place-items: center; }
.host-photo__fallback { font-family: Fraunces, serif; font-size: 2rem; font-weight: 600; color: var(--green-deep); }
.host-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.host-zoom { position: fixed; inset: 0; z-index: 3000; background: rgba(12, 31, 25, 0.86); display: flex; align-items: center; justify-content: center; padding: 24px; }
.host-zoom[hidden] { display: none; }
.host-zoom__fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.host-zoom__fig img { max-width: 90vw; max-height: 80vh; border-radius: 14px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); object-fit: contain; }
.host-zoom__fig figcaption { color: #f6efe2; font-weight: 600; }
.host-zoom__close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.16); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.host-zoom__close:hover { background: rgba(255, 255, 255, 0.3); }
@media (max-width: 520px) { .host-photo { width: 96px; height: 120px; } }
.host-card h3 { margin: 0 0 4px; font-size: 1.32rem; }
.host-role { margin: 0 0 10px; color: var(--clay); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }
.host-card p { margin: 0; color: var(--muted); }
.host-links { margin-top: 14px; display: flex; gap: 16px; flex-wrap: wrap; }
.host-links a { color: var(--green-deep); font-weight: 600; display: inline-flex; align-items: center; }

/* ---------------- Reviews ---------------- */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.reviews-rating { display: flex; align-items: center; gap: 12px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .ic { width: 18px; height: 18px; }
.reviews-rating span { color: var(--muted); font-weight: 600; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  display: flex; flex-direction: column; gap: 14px; padding: 26px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.review-card .stars .ic { width: 16px; height: 16px; }
.review-card blockquote { margin: 0; color: var(--ink-2); font-size: 1.04rem; line-height: 1.6; font-family: Fraunces, serif; font-weight: 400; }
.review-card cite { color: var(--muted); font-style: normal; font-weight: 600; font-size: 0.9rem; margin-top: auto; }

/* ---------------- Area guide ---------------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card {
  padding: 24px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.area-card .ic { width: 26px; height: 26px; color: var(--clay); margin-bottom: 12px; }
.area-card h3 { margin: 0 0 6px; font-size: 1.18rem; }
.area-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.area-time {
  display: inline-block; margin-top: 14px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--green-deep);
  background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px 12px;
}

@media (max-width: 980px) {
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .host-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
}

/* ---------------- Hero dove (gentle one-time glide) ---------------- */
.hero-dove {
  position: absolute; top: 20%; left: 0; z-index: 1; width: 62px;
  pointer-events: none; will-change: transform, opacity;
  animation: doveGlide 12s ease-in-out 0.8s both;
}
.hero-dove svg { width: 100%; height: auto; display: block; opacity: 0.94; filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28)); }
.hero-dove .wing { transform-box: fill-box; transform-origin: 78% 88%; animation: doveFlap 1.5s ease-in-out 0.8s 7 both; }
@keyframes doveGlide {
  0% { transform: translate(-16vw, 36px) scale(0.78); opacity: 0; }
  12% { opacity: 0.95; }
  50% { transform: translate(45vw, -6px) scale(1); }
  86% { opacity: 0.95; }
  100% { transform: translate(116vw, -44px) scale(1.06); opacity: 0; }
}
@keyframes doveFlap {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-15deg); }
}
@media (max-width: 620px) { .hero-dove { width: 46px; top: 16%; } }

/* ---------------- Accessibility preferences ---------------- */
html.a11y-text-large { font-size: 18px; }
html.a11y-text-larger { font-size: 20px; }

html.a11y-contrast { --muted: #463d31; --ink-2: #241f19; --line: #9a8769; --line-soft: #c7b596; }
html.a11y-contrast body { background: #ffffff; }
html.a11y-contrast a:not(.btn):not(.nav-cta) { color: var(--green-deep); }

html.a11y-underline a:not(.btn):not(.nav-cta):not(.booking-dock__button):not(.social-icon):not(.brand):not(.condo-card__media) {
  text-decoration: underline; text-underline-offset: 3px;
}

html.a11y-readable,
html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3, html.a11y-readable h4,
html.a11y-readable p, html.a11y-readable a, html.a11y-readable span, html.a11y-readable li,
html.a11y-readable dt, html.a11y-readable dd, html.a11y-readable label, html.a11y-readable button,
html.a11y-readable input, html.a11y-readable textarea, html.a11y-readable select,
html.a11y-readable blockquote, html.a11y-readable cite, html.a11y-readable small {
  font-family: Verdana, "Segoe UI", Arial, sans-serif !important; letter-spacing: 0.01em !important;
}
html.a11y-readable { line-height: 1.85; }

html.a11y-reduce-motion *, html.a11y-reduce-motion *::before, html.a11y-reduce-motion *::after {
  animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important; scroll-behavior: auto !important;
}

.a11y-fab {
  position: fixed; left: 20px; bottom: 20px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: var(--green); color: var(--cream-text); cursor: pointer;
  box-shadow: 0 12px 28px rgba(24, 53, 46, 0.36); display: flex; align-items: center; justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}
.a11y-fab:hover { background: var(--green-dark); transform: translateY(-1px); }
.a11y-fab svg { width: 28px; height: 28px; fill: currentColor; }
.a11y-panel {
  position: fixed; left: 20px; bottom: 84px; z-index: 301; width: min(330px, calc(100vw - 40px));
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; display: none;
}
.a11y-panel.is-open { display: block; }
.a11y-panel h2 { font-size: 1.12rem; margin: 0 0 2px; }
.a11y-panel .a11y-sub { margin: 0 0 14px; color: var(--muted); font-size: 0.8rem; }
.a11y-panel__close {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; font-size: 1rem; line-height: 1;
}
.a11y-opt {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 11px 12px; margin-bottom: 8px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); font-weight: 600; font-size: 0.92rem; cursor: pointer;
}
.a11y-opt:hover { border-color: var(--green); }
.a11y-opt[aria-pressed="true"] { background: rgba(46, 94, 82, 0.12); border-color: var(--green); color: var(--green-deep); }
.a11y-opt .a11y-state { margin-left: auto; font-size: 0.8rem; font-weight: 700; color: var(--clay); }
.a11y-reset {
  width: 100%; margin-top: 6px; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: transparent; color: var(--muted); font-weight: 600; cursor: pointer;
}
.a11y-reset:hover { color: var(--green-deep); border-color: var(--green); }
.a11y-opt:focus-visible, .a11y-fab:focus-visible, .a11y-panel__close:focus-visible, .a11y-reset:focus-visible {
  outline: 3px solid rgba(46, 94, 82, 0.4); outline-offset: 2px;
}
body.has-book-bar .a11y-fab { bottom: 92px; }
body.has-book-bar .a11y-panel { bottom: 156px; }

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

/* ---------------- Responsive ---------------- */
@media (max-width: 1060px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .condo-grid, .condo-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-split, .property-layout, .cta-grid, .facts-layout,
  .hero-home .hero__content, .hero-property .hero__content { grid-template-columns: 1fr; }
  .booking-panel { position: static; }
  .hero-feature { width: min(100%, 520px); }
  .booking-dock { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-dock__item:nth-child(2) { border-right: 0; }
  .booking-dock__item:nth-child(3) { border-top: 1px solid var(--line-soft); }
  .booking-dock__button { min-height: 60px; }
}

@media (max-width: 820px) {
  .topbar__inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 9px 0; gap: 12px; }
  .nav { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; left: 20px; right: 20px; top: calc(100% + 8px);
    display: none; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 12px;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > a, .nav-group > a { border-radius: 10px; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .nav-group { display: grid; }
  .nav-group::after { content: none; }
  .nav-group > a::after { display: none; }
  .nav-dropdown {
    position: static; min-width: 0; opacity: 1; transform: none; pointer-events: auto;
    box-shadow: none; border: 0; padding: 0 0 0 12px;
  }
  .hero { min-height: 72vh; }
  .hero-clean { min-height: 70vh; }
  .hero::before { background-image: linear-gradient(95deg, rgba(24, 53, 46, 0.9), rgba(24, 53, 46, 0.64)), var(--hero-image); }
  .hero__content { padding: 90px 0 78px; }
  .hero-clean .hero__content { padding: 96px 0 124px; }
  .quick-strip__grid, .condo-grid, .condo-grid--compact, .feature-grid, .contact-grid, .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .mini-specs { gap: 8px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }
  .booking-dock-wrap { margin-top: -46px; }
  .mobile-book-bar { display: flex; }
  body.has-book-bar { padding-bottom: 84px; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 30px, 1140px); }
  .brand img { width: 188px; height: 54px; }
  .topbar__links { flex-wrap: wrap; gap: 8px 16px; }
  .hero p:not(.eyebrow) { font-size: 1.04rem; }
  .hero-clean .hero__content { text-align: left; }
  .hero-clean .hero-pulse, .hero-clean .hero__actions { justify-content: flex-start; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero-feature__media { grid-template-rows: 92px 92px; }
  .hero-feature__body { padding: 18px; }
  .hero-feature h2 { font-size: 1.4rem; }
  .section { padding: 66px 0; }
  .quick-strip__grid, .condo-grid, .condo-grid--compact, .feature-grid, .contact-grid, .footer__grid, .spec-grid, .form-row { grid-template-columns: 1fr; }
  .booking-dock { grid-template-columns: 1fr; }
  .booking-dock__item, .booking-dock__item:nth-child(2), .booking-dock__item:nth-child(3) {
    min-height: 72px; border-right: 0; border-top: 1px solid var(--line-soft); padding: 14px 20px;
  }
  .booking-dock__item:first-child { border-top: 0; }
  .booking-dock__button { min-height: 54px; margin: 14px; }
  .quick-strip__grid div { min-height: auto; }
  .condo-card__head { flex-direction: column; gap: 8px; }
  .condo-card__owner { align-self: flex-start; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img:nth-child(2) { margin-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { align-items: center; flex-direction: column; text-align: center; gap: 10px; }
  .footer__credit { display: block; margin-top: 2px; }
  .lightbox { grid-template-columns: 54px minmax(0, 1fr) 54px; }
  .availability__body iframe { height: 420px; }
}
