/* ============ Destin To Relax ============ */
:root {
  --ink: #10222e;
  --ink-soft: #3d5361;
  --sand: #f7f2ea;
  --sand-deep: #efe6d8;
  --white: #ffffff;
  --teal: #157f84;
  --teal-deep: #0d5c60;
  --coral: #e8734a;
  --coral-deep: #d4592f;
  --gold: #d9a441;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-lg: 0 30px 60px -18px rgba(16, 34, 46, 0.35);
  --shadow-sm: 0 10px 30px -12px rgba(16, 34, 46, 0.25);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, .band-title { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.6,.2,1), transform 0.9s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.static-mode { scroll-behavior: auto; }
.static-mode .hero { min-height: 900px; max-height: 900px; }
.static-mode .band { background-attachment: scroll; }
.static-mode *, .static-mode *::before, .static-mode *::after { transition: none !important; animation: none !important; }
.static-mode .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: 0;
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }
.btn-book { background: var(--coral); color: #fff; box-shadow: 0 12px 28px -10px rgba(212, 89, 47, 0.55); }
.btn-book:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(212, 89, 47, 0.6); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  color: #fff;
}
.nav.solid { background: rgba(247, 242, 234, 0.92); backdrop-filter: blur(14px); color: var(--ink); box-shadow: 0 6px 24px -12px rgba(16,34,46,0.25); padding-top: 0.7rem; padding-bottom: 0.7rem; }
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; margin-right: auto; }
.nav-brand-mark {
  font-family: var(--serif); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.05em;
  background: var(--teal); color: #fff; border-radius: 50%;
  width: 42px; height: 42px; display: grid; place-items: center;
}
.nav-brand-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a { color: inherit; text-decoration: none; font-size: 0.92rem; font-weight: 500; opacity: 0.92; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--coral); transition: right 0.3s ease; }
.nav-links a:hover::after { right: 0; }
.nav-burger { display: none; background: none; border: 0; width: 40px; height: 34px; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; }
.nav-burger span { display: block; height: 2px; width: 26px; background: currentColor; margin-left: 7px; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0; background: rgba(13, 36, 51, 0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    font-size: 1.3rem; transform: translateY(-100%); transition: transform 0.4s ease;
  }
  .nav-links a { color: #fff; font-size: 1.25rem; }
  .nav.open .nav-links { transform: none; }
  .nav-burger { display: flex; z-index: 95; }
  .nav-cta { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,36,51,0.30) 0%, rgba(13,36,51,0.07) 40%, rgba(13,36,51,0.40) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 7rem 1.4rem 5rem; }
.hero-kicker { text-transform: uppercase; letter-spacing: 0.34em; font-size: 0.78rem; font-weight: 600; opacity: 0.95; margin-bottom: 1.3rem; }
.hero-title { font-size: clamp(2.2rem, 6vw, 4.6rem); font-weight: 500; text-shadow: 0 4px 30px rgba(0,0,0,0.35); margin: 0 auto; }
.hero-title span { display: inline-block; text-wrap: balance; }
.hero-sub { max-width: 620px; margin: 1.5rem auto 0; font-size: clamp(1rem, 1.6vw, 1.18rem); opacity: 0.96; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.8rem; }
.hero-chips span {
  border: 1px solid rgba(255,255,255,0.5); border-radius: 999px;
  padding: 0.4rem 1rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; width: 28px; height: 46px; border: 2px solid rgba(255,255,255,0.7); border-radius: 999px; }
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 9px; margin-left: -2px; background: #fff; border-radius: 2px; animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- hero note ---------- */
.hero-note { margin-top: 1.1rem; font-size: 0.78rem; letter-spacing: 0.04em; opacity: 0.82; }
.band-note { margin-top: 1.2rem; font-size: 0.8rem; opacity: 0.85; }

/* ---------- your week here ---------- */
.section-dark { background: var(--ink); color: #fff; }
.section-dark h2.light { color: #fff; }
.week-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2rem; max-width: 1000px; margin: 0 auto; }
.week-item { border-left: 2px solid rgba(217, 164, 65, 0.55); padding-left: 1.2rem; }
.week-time { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); }
.week-item h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin: 0.3rem 0 0.4rem; }
.week-item p { font-size: 0.92rem; color: rgba(255,255,255,0.78); }
@media (max-width: 860px) { .week-line { grid-template-columns: 1fr; gap: 1.6rem; } }

/* scroll-driven day scene (enhances #week when motion is allowed) */
.week-scrolly { display: none; height: 380vh; position: relative; }
#week.scrolly-on { padding: 0; }
#week.scrolly-on .week-fallback { display: none; }
#week.scrolly-on .week-scrolly { display: block; }
.week-scene { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.ws-sky { position: absolute; inset: 0; background: linear-gradient(#57718c, #f2c9a0); }
.ws-sun { position: absolute; width: 96px; height: 96px; margin: -48px 0 0 -48px; border-radius: 50%;
  left: 12%; top: 55%;
  background: radial-gradient(circle, #fff6d8 0%, #ffd98a 45%, rgba(244,162,89,0) 75%); }
.ws-stars { position: absolute; inset: 0; opacity: 0; }
.ws-stars i { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff;
  animation: ws-twinkle 2.8s ease-in-out infinite alternate; }
@keyframes ws-twinkle { from { opacity: 0.25; } to { opacity: 1; } }
.ws-water { position: absolute; left: 0; right: 0; bottom: 0; height: 24%; background: #3f6d74; }
.ws-head { position: absolute; top: 8vh; left: 0; right: 0; text-align: center; z-index: 2; }
.ws-card { position: absolute; left: 50%; transform: translateX(-50%); bottom: 9vh; z-index: 2;
  background: rgba(16, 34, 46, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius);
  padding: 1.3rem 1.7rem; width: min(520px, 88vw); text-align: center; transition: opacity 0.3s ease; }
.ws-card.swap { opacity: 0; }
.ws-card h4 { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: #fff; margin: 0.35rem 0 0.4rem; }
.ws-card p { font-size: 0.95rem; color: rgba(255,255,255,0.82); min-height: 3.6em; }
.ws-dots { position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.55rem; z-index: 2; }
.ws-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.35);
  transition: background 0.3s ease, transform 0.3s ease; }
.ws-dots i.on { background: var(--gold); transform: scale(1.35); }

/* touchable lake hero (FX - toggle in main.js) */
.hero-media canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero.ripple-on .hero-media img { opacity: 0; animation: none; }

/* drone descent (FX - toggle in main.js) */
.descent { display: none; height: 290vh; position: relative; background: var(--ink); }
.descent-on .descent { display: block; }
.descent-scene { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.descent-scene::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(rgba(13,36,51,0) 0%, rgba(13,36,51,0.42) 62%, rgba(13,36,51,0.72) 100%);
  z-index: 1; pointer-events: none; }
.d-layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; will-change: transform, opacity, filter; }
.d-layer:first-child { opacity: 1; }
.d-hint { margin-top: 0.75rem; color: rgba(255,255,255,0.85); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; animation: d-hint-pulse 2.6s ease-in-out infinite alternate; }
@keyframes d-hint-pulse { from { opacity: 0.55; } to { opacity: 1; } }
.d-cap { position: absolute; left: 50%; transform: translateX(-50%); bottom: 3vh; z-index: 2; text-align: center;
  width: min(680px, 94vw); padding: 0 1rem 0.2rem; color: #fff; transition: opacity 0.3s ease;
  text-shadow: 0 2px 12px rgba(13,36,51,0.92), 0 1px 3px rgba(13,36,51,0.95); }
.d-cap.swap { opacity: 0; }
.d-cap .d-kicker { text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.66rem; font-weight: 600; color: var(--gold); }
.d-cap p { font-family: var(--serif); font-size: clamp(1.05rem, 2.6vw, 1.5rem); margin-top: 0.3rem; }

/* Small screens: same floating treatment, just tighter type. */
@media (max-width: 900px), (max-height: 950px) {
  .d-cap { bottom: 2.2vh; }
  .d-cap p { font-size: clamp(1rem, 4.2vw, 1.3rem); }
  .d-cap .d-kicker { font-size: 0.58rem; }
  .d-hint { margin-top: 0.45rem; font-size: 0.6rem; }
}

/* ---------- sticky mobile bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(247, 242, 234, 0.96); backdrop-filter: blur(12px);
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px -12px rgba(16,34,46,0.35);
  transform: translateY(110%); transition: transform 0.35s ease;
}
.mobile-bar.show { transform: none; }
.mobile-bar-text { display: flex; flex-direction: column; line-height: 1.25; }
.mobile-bar-text strong { font-family: var(--serif); font-size: 1rem; }
.mobile-bar-text span { font-size: 0.75rem; color: var(--ink-soft); }
.mobile-bar .btn { white-space: nowrap; padding: 0.7rem 1.3rem; font-size: 0.88rem; }
@media (min-width: 901px) { .mobile-bar { display: none; } }

/* ---------- stats ---------- */
.stats { background: var(--ink); color: #fff; padding: 2.6rem 1.4rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem; text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 500; color: var(--gold); }
.stat span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.85; }
@media (max-width: 800px) { .stats-inner { grid-template-columns: repeat(3, 1fr); } }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 1.4rem; }
.section-alt { background: var(--sand-deep); }
.container { max-width: 1150px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }
.kicker { text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.76rem; font-weight: 700; color: var(--teal); margin-bottom: 1rem; }
.kicker-light { color: var(--gold); }
.section-head { max-width: 780px; margin: 0 auto 2.2rem; text-align: center; }
.section-sub { margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- editorial ---------- */
.editorial { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.editorial.flip .editorial-text { order: 2; }
.editorial.flip .editorial-media { order: 1; }
.editorial-text p:not(.kicker) { margin-top: 1.15rem; color: var(--ink-soft); }
.editorial-text .btn { margin-top: 1.8rem; }
.editorial-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial.flip .editorial-text { order: 1; }
  .editorial.flip .editorial-media { order: 2; }
}

/* ---------- feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding: 2.6rem 0; }
.feature-row.flip .feature-media { order: 2; }
.feature-row.flip .feature-text { order: 1; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.feature-text p:not(.kicker) { margin-top: 1.1rem; color: var(--ink-soft); }
.feature-list { margin-top: 1.4rem; list-style: none; }
.feature-list li { padding: 0.45rem 0 0.45rem 2rem; position: relative; font-weight: 500; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.72rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 70% no-repeat, linear-gradient(#000 0 0);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center / 70% no-repeat, linear-gradient(#000 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor;
}
@media (max-width: 860px) {
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; }
  .feature-row.flip .feature-media { order: 1; }
  .feature-row.flip .feature-text { order: 2; }
}

/* ---------- gulf proof ---------- */
.gulf-proof { margin: 1rem auto 2.5rem; max-width: 980px; }
.gulf-proof-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.gulf-proof-media img { width: 100%; display: block; }
.gulf-box {
  position: absolute; left: 8%; top: 40%; width: 46%; height: 19%;
  border: 2.5px solid rgba(255,255,255,0.95); border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.gulf-label {
  position: absolute; left: 50%; top: -2.2rem; transform: translateX(-50%);
  background: rgba(247,242,234,0.95); color: var(--ink);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.8rem; border-radius: 999px; white-space: nowrap;
}
.gulf-label::after {
  content: ""; position: absolute; left: 50%; bottom: -0.5rem; transform: translateX(-50%);
  border: 0.28rem solid transparent; border-top-color: rgba(247,242,234,0.95);
}
.gulf-proof figcaption { margin-top: 0.9rem; text-align: center; font-size: 0.95rem; color: var(--ink-soft); font-style: italic; }
@media (max-width: 640px) { .gulf-label { font-size: 0.68rem; top: -1.9rem; } }

/* ---------- bedrooms ---------- */
.bed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.bed-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bed-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bed-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.bed-info { padding: 1.1rem 1.2rem 1.3rem; }
.bed-floor { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); }
.bed-info h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin: 0.25rem 0 0.35rem; }
.bed-info p { font-size: 0.88rem; color: var(--ink-soft); }
.bed-card-note { display: flex; align-items: center; background: var(--ink); color: #fff; }
.bed-card-note .bed-info p { color: rgba(255,255,255,0.82); }
.bed-card-note .bed-floor { color: var(--gold); }
@media (max-width: 1020px) { .bed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bed-grid { grid-template-columns: 1fr; } }

/* ---------- band ---------- */
.band {
  position: relative; padding: clamp(6rem, 13vw, 10rem) 1.4rem; text-align: center; color: #fff;
  background-size: cover; background-position: center;
  background-attachment: scroll; /* fixed attachment forces repaints on every scroll frame */
}
.band-review { background-image: linear-gradient(rgba(13,36,51,0.36), rgba(13,36,51,0.36)), url('../images/hero-68.jpg'); }
/* lift the quote a touch so it clears the rooflines and stays readable.
   `position/top` (not transform) so it never fights the .reveal animation. */
.band-review .band-inner { position: relative; top: -7.4vw; }
@media (max-width: 700px) {
  /* narrow screens wrap the quote to 3 lines and push the stars onto the rooflines:
     tighten the type so it sets in 2 lines, and lift by a share of the band height. */
  .band-review .band-quote { font-size: clamp(1.35rem, 5.9vw, 1.9rem); }
  .band-review .band-inner { top: -4.8rem; }
}
.band-review .band-attr { margin-top: 0.85rem; }
.band-cta {
  background-image: linear-gradient(rgba(13,36,51,0.24), rgba(13,36,51,0.24)), url('../images/full/75.jpg');
  background-attachment: scroll; /* fixed attachment sizes to the viewport and crops the photo */
  aspect-ratio: 2800 / 1707;     /* full width; bottom ~160px trimmed - hides pole bases, keeps the cul-de-sac */
  background-position: top center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem 1.4rem;
}
@media (hover: none) { .band { background-attachment: scroll; } }
.band-quote { font-family: var(--serif); font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 400; font-style: italic; }
.band-attr { margin-top: 1.2rem; letter-spacing: 0.12em; font-size: 0.92rem; color: var(--gold); font-weight: 600; }
.band-tall .band-title { font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 0.6rem 0 2rem; }

/* ---------- amenities ---------- */
.amenity-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.amenity-group { background: var(--white); border-radius: var(--radius); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); }
.amenity-group h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--teal-deep); padding-bottom: 0.8rem; border-bottom: 2px solid var(--sand-deep); margin-bottom: 0.9rem; }
.amenity-group ul { list-style: none; }
.amenity-group li { padding: 0.34rem 0; font-size: 0.93rem; color: var(--ink-soft); }
@media (max-width: 1020px) { .amenity-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .amenity-cols { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.2rem; }
.gf {
  border: 1.5px solid var(--teal); background: transparent; color: var(--teal-deep);
  font-family: var(--sans); font-weight: 600; font-size: 0.88rem;
  padding: 0.5rem 1.25rem; border-radius: 999px; cursor: pointer; transition: all 0.25s ease;
}
.gf:hover { background: rgba(21,127,132,0.1); }
.gf.active { background: var(--teal); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.g-item { position: relative; border-radius: 12px; overflow: hidden; cursor: zoom-in; aspect-ratio: 4 / 3; background: var(--sand-deep); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: attr(data-cap); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.9rem 0.7rem; font-size: 0.8rem; font-weight: 500; color: #fff;
  background: linear-gradient(transparent, rgba(13,36,51,0.75));
  opacity: 0; transition: opacity 0.35s ease;
}
.g-item:hover::after { opacity: 1; }
@media (max-width: 1020px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; } }
.gallery-more { text-align: center; margin-top: 1.8rem; }
.btn-more { background: #fff; color: var(--teal); border: 2px solid var(--teal); }
.btn-more:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

/* ---------- things to do ---------- */
.fun-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.fun-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.fun-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fun-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.fun-body { padding: 1.4rem 1.5rem 1.6rem; }
.fun-body h4 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--teal-deep); padding-bottom: 0.7rem; border-bottom: 2px solid var(--sand-deep); margin-bottom: 0.8rem; }
.fun-body ul { list-style: none; }
.fun-body li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; font-size: 0.93rem; color: var(--ink-soft); }
.fun-body li::before { content: ""; position: absolute; left: 0; top: 0.95rem; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.fun-body a { color: var(--teal-deep); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(21,127,132,0.35); text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.fun-body a:hover { color: var(--coral-deep); text-decoration-color: currentColor; }
@media (max-width: 900px) { .fun-grid { grid-template-columns: 1fr; } }

/* ---------- seasonal events ---------- */
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.event-card { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.event-card h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--ink); margin-bottom: 0.9rem; }
.event-card ul { list-style: none; }
.event-card li { padding: 0.55rem 0; border-top: 1px solid var(--sand-deep); display: flex; flex-direction: column; }
.event-card li strong { font-size: 0.92rem; font-weight: 600; }
.event-card li span { font-size: 0.8rem; color: var(--ink-soft); }
@media (max-width: 1020px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .events-grid { grid-template-columns: 1fr; } }

/* ---------- location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: stretch; }
.loc-list { display: flex; flex-direction: column; gap: 0.6rem; }
.loc-item { background: var(--white); border-radius: 14px; padding: 1rem 1.3rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-item strong { font-weight: 600; }
.loc-item span { font-size: 0.88rem; color: var(--ink-soft); }
.loc-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } .loc-map iframe { min-height: 320px; } }

/* ---------- details ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.detail-card { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--teal); }
.detail-card h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
.detail-card p { font-size: 0.9rem; color: var(--ink-soft); }
@media (max-width: 1020px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .detail-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 3.4rem 1.4rem 2rem; }
.footer-inner { max-width: 1150px; margin: 0 auto; display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { font-family: var(--serif); font-size: 1.7rem; }
.footer-addr { opacity: 0.75; font-size: 0.9rem; margin-top: 0.4rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; text-align: right; }
.footer-links a { color: #fff; opacity: 0.85; text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.footer-legal { max-width: 1150px; margin: 2.4rem auto 0; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.8rem; opacity: 0.6; }
@media (max-width: 640px) { .footer-links { text-align: left; } }

/* ---------- lightbox ---------- */
.lb {
  position: fixed; inset: 0; z-index: 200; background: rgba(10, 22, 30, 0.96);
  display: none; align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb-figure { max-width: min(1400px, 92vw); max-height: 88vh; text-align: center; }
.lb-figure img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 8px; margin: 0 auto; }
.lb-figure figcaption { color: rgba(255,255,255,0.85); margin-top: 0.9rem; font-size: 0.95rem; }
.lb button {
  position: absolute; background: rgba(255,255,255,0.1); color: #fff; border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.9rem; line-height: 1;
  display: grid; place-items: center; transition: background 0.25s ease;
}
.lb button:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb-prev { left: 0.4rem; } .lb-next { right: 0.4rem; }
  .lb button { width: 44px; height: 44px; }
}
