/* =====================================================================
   ZEN RELAXING VILLAGE  Design System
   Light & Airy Minimal · Mobile-first
   ===================================================================== */

/* ----------  Fonts (self-hosted, GDPR-friendly)  ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-garamond-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/jost-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ----------  Tokens  ---------- */
:root {
  --bg:        #F7F4EE;
  --bg-card:   #FFFFFF;
  --bg-sand:   #EEE8DD;
  --bg-dark:   #232826;
  --ink:       #232826;
  --ink-soft:  #5E635B;
  --sage:      #6E7A5C;
  --sage-deep: #515B40;
  --clay:      #B07A54;
  --clay-deep: #97653F;
  --line:      rgba(35, 40, 38, .13);
  --line-light:rgba(255, 255, 255, .18);
  --shadow:    0 14px 50px -20px rgba(35, 40, 38, .28);
  --shadow-sm: 0 6px 24px -14px rgba(35, 40, 38, .35);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1240px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4rem, 10vw, 8rem);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------  Reset & base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

::selection { background: var(--sage); color: #fff; }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 2px; }

/* ----------  Typography  ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--ink); letter-spacing: -.01em; }
.display { font-size: clamp(2.7rem, 7.5vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2.05rem, 4.6vw, 3.35rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 600; }
p { text-wrap: pretty; }
.lede { font-size: clamp(1.12rem, 1rem + .6vw, 1.4rem); line-height: 1.6; color: var(--ink); font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before { content: ""; width: 1.8rem; height: 1px; background: currentColor; opacity: .8; }
.eyebrow.is-center::after { content: ""; width: 1.8rem; height: 1px; background: currentColor; opacity: .8; }

/* ----------  Layout  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); }
.section--sand { background: var(--bg-sand); }
.section--dark { background: var(--bg-dark); color: rgba(255,255,255,.72); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 56ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

.stack > * + * { margin-top: 1.1rem; }

/* ----------  Buttons  ---------- */
.btn {
  --btn-bg: var(--clay);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.85em;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 100px;
  border: 1px solid var(--btn-bg);
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  will-change: transform;
}
.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.55); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--sage { --btn-bg: var(--sage); }
.btn--sage:hover { background: var(--sage-deep); border-color: var(--sage-deep); }
.btn--block { width: 100%; }

.textlink { color: var(--sage-deep); font-weight: 500; display: inline-flex; align-items: center; gap: .5em; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: gap .3s var(--ease); }
.textlink:hover { gap: .85em; }
.textlink svg { width: 1em; transition: transform .3s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
  padding-block: clamp(.8rem, 2vw, 1.2rem);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; z-index: 2; }
.brand img { height: clamp(34px, 5vw, 46px); width: auto; transition: opacity .35s; }
.brand .logo-white { position: absolute; }
.site-header .logo-dark { opacity: 0; }
.site-header .logo-white { opacity: 1; }
.site-header.is-solid { background: rgba(247,244,238,.88); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding-block: .6rem; }
.site-header.is-solid .logo-dark { opacity: 1; }
.site-header.is-solid .logo-white { opacity: 0; }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.nav a {
  font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; position: relative; padding-block: .3rem; transition: color .3s;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: currentColor; transition: width .35s var(--ease); }
.nav a:hover::after { width: 100%; }
.site-header.is-solid .nav a { color: var(--ink); }
.site-header.is-solid .nav a:hover { color: var(--sage-deep); }

.header-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; z-index: 2; align-items: flex-end;
}
.nav-toggle span { display: block; height: 1.5px; width: 26px; background: #fff; transition: transform .4s var(--ease), opacity .3s, background .3s; }
.site-header.is-solid .nav-toggle span { background: var(--ink); }
body.menu-open .nav-toggle span { background: var(--ink); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; gap: clamp(.4rem, 2vw, 1rem); }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 3rem); color: var(--ink); display: inline-block; transition: color .3s, transform .3s; }
.mobile-menu a:hover { color: var(--sage); }
.mobile-menu .mm-meta { margin-top: clamp(2rem, 6vw, 3rem); display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.mobile-menu .mm-meta a { font-family: var(--sans); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--line); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(16,20,18,.88) 0%, rgba(16,20,18,.55) 26%, rgba(16,20,18,.32) 56%, rgba(16,20,18,.42) 100%);
}
.hero__inner { padding-bottom: clamp(3.5rem, 10vh, 7rem); padding-top: 8rem; max-width: 60ch; }
.hero .eyebrow { color: rgba(255,255,255,.94); text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.hero h1 { color: #fff; margin: 1.1rem 0 0; text-shadow: 0 2px 32px rgba(0,0,0,.42); }
.hero p { color: rgba(255,255,255,.94); margin-top: 1.4rem; max-width: 46ch; text-shadow: 0 1px 18px rgba(0,0,0,.5); }
.hero .btn-row { margin-top: 2.2rem; }

/* Hero rating strip (trust signal, no links) */
.hero-ratings { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem 1.1rem; margin-top: 2rem; }
.hero-rating { display: inline-flex; align-items: baseline; gap: .4rem; }
.hero-rating .hr-star { color: #F0C56B; font-size: .9rem; line-height: 1; align-self: center; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero-rating .hr-score { font-family: var(--serif); font-size: 1.3rem; color: #fff; line-height: 1; text-shadow: 0 1px 14px rgba(0,0,0,.45); }
.hero-rating .hr-plat { font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.85); white-space: nowrap; }
/* centered rating row inside the dark reserve band */
.booking-band .band-ratings { justify-content: center; margin: 1.6rem auto 0; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 2;
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.scroll-cue span { display: block; width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.85), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* =====================================================================
   INTRO / STATS
   ===================================================================== */
.intro__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.intro__lead .eyebrow { margin-bottom: 1.2rem; }
.intro__lead h2 { margin-bottom: 1.4rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.stat { background: var(--bg); padding: clamp(1.1rem, 3vw, 1.8rem); text-align: center; }
.stat dt { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--ink); line-height: 1; white-space: nowrap; }
.stat dd { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .55rem; }

/* =====================================================================
   STAYS (accommodation cards)
   ===================================================================== */
.stays { display: grid; gap: clamp(1.4rem, 3vw, 2rem); }
.stay-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.stay-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -24px rgba(35,40,38,.4); }
.stay-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.stay-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.stay-card:hover .stay-card__media > img { transform: scale(1.06); }
.stay-card__badge { position: absolute; z-index: 4; top: 1rem; left: 1rem; background: rgba(247,244,238,.92); backdrop-filter: blur(4px); color: var(--ink); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: .45em 1em; border-radius: 100px; font-weight: 500; }
.stay-card__body { padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column; flex: 1; }
.stay-card__body h3 { color: var(--ink); }
.stay-card__specs { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin: .8rem 0 1rem; font-size: .78rem; letter-spacing: .04em; color: var(--sage-deep); text-transform: uppercase; }
.stay-card__specs li { display: inline-flex; align-items: center; gap: .4em; }
.stay-card__body p { font-size: .96rem; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.amenity-tags li { font-size: .74rem; letter-spacing: .05em; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 100px; padding: .35em .9em; }
.stay-card .btn-row { margin-top: auto; padding-top: 1.4rem; }

/* =====================================================================
   FEATURE SPLIT (amenities / experiences)
   ===================================================================== */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--flip .split__media { order: -1; }
.feature-list { display: grid; gap: 1.4rem; margin-top: 1.8rem; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.feature-list .fi-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--sage); flex: none; }
.feature-list .fi-icon svg { width: 20px; height: 20px; }
.feature-list h4 { font-family: var(--sans); font-weight: 500; font-size: .96rem; color: var(--ink); letter-spacing: .01em; }
.feature-list p { font-size: .9rem; margin-top: .15rem; }

/* =====================================================================
   GALLERY PREVIEW (landing)
   ===================================================================== */
.gallery-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.5rem, 1.5vw, 1rem); }
.gallery-preview a { display: block; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1; }
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.gallery-preview a:hover img { transform: scale(1.07); }

/* =====================================================================
   LOCATION / MAP
   ===================================================================== */
.location__grid { display: grid; gap: clamp(1.6rem, 4vw, 2.6rem); }
.map-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--bg-sand); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.18) contrast(1.02); }
.location-info { display: grid; gap: 1.5rem; align-content: start; }
.loc-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.loc-item .li-icon { color: var(--sage); width: 26px; flex: none; }
.loc-item h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.loc-item p { color: var(--ink); margin-top: .2rem; }
.distance-list { display: grid; gap: .7rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.distance-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.distance-list .d-place { color: var(--ink); }
.distance-list .d-val { color: var(--sage-deep); font-weight: 500; white-space: nowrap; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; gap: 0; max-width: 820px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem .25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.45rem); color: var(--ink);
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sage-deep); }
.faq summary .faq-icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq summary .faq-icon::before, .faq summary .faq-icon::after { content: ""; position: absolute; background: var(--sage); transition: transform .35s var(--ease), opacity .3s; }
.faq summary .faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq summary .faq-icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq details[open] summary .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 .25rem 1.6rem; max-width: 68ch; font-size: .98rem; }
.faq details[open] summary { color: var(--sage-deep); }

/* =====================================================================
   BOOKING CTA BAND
   ===================================================================== */
.booking-band { text-align: center; }
.booking-band h2 { color: #fff; }
.booking-band p { max-width: 50ch; margin: 1.2rem auto 0; color: rgba(255,255,255,.75); }
.booking-band .btn-row { justify-content: center; margin-top: 2.2rem; }
.booking-band .band-contact { margin-top: 2.4rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2rem; font-size: .9rem; color: rgba(255,255,255,.7); }
.booking-band .band-contact a { color: #fff; border-bottom: 1px solid var(--line-light); }
.booking-band .band-contact strong { color: #fff; font-weight: 500; }

/* =====================================================================
   CONTACT FORM
   ===================================================================== */
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.contact-aside .stack { margin-top: 1.6rem; }
.contact-aside .ca-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding-block: 1rem; border-bottom: 1px solid var(--line); }
.contact-aside .ca-item:first-of-type { border-top: 1px solid var(--line); }
.contact-aside .ca-icon { color: var(--sage); width: 24px; flex: none; }
.contact-aside h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.contact-aside a, .contact-aside p { color: var(--ink); }
.contact-aside .ca-item a:hover { color: var(--sage-deep); }

.form { display: grid; gap: 1.1rem; }
.form .field { display: grid; gap: .45rem; }
.form .field--row { grid-template-columns: 1fr 1fr; gap: 1.1rem; display: grid; }
@media (max-width: 520px){ .form .field--row { grid-template-columns: 1fr; } }
.form label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.form input, .form select, .form textarea {
  font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85em 1em; width: 100%; transition: border-color .3s, box-shadow .3s;
}
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(110,122,92,.16); }
.form .form-note { font-size: .82rem; color: var(--ink-soft); }
.form button[type="submit"] { margin-top: .4rem; justify-self: start; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.62); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer__top { display: grid; gap: clamp(2rem, 5vw, 3.5rem); padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer__brand img { height: clamp(34px, 5vw, 46px); width: auto; margin-bottom: 1.3rem; }
.footer__brand p { max-width: 34ch; font-size: .92rem; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer__cols h5 { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 1.1rem; }
.footer__cols a, .footer__cols li { font-size: .92rem; line-height: 2; transition: color .3s; }
.footer__cols a:hover { color: #fff; }
.footer__social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: #fff; transition: background .3s, color .3s, border-color .3s; }
.footer__social a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: .8rem; color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: #fff; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.page-hero { padding-top: clamp(7rem, 16vw, 11rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin-top: 1rem; font-size: clamp(2.6rem, 7vw, 4.6rem); }
.page-hero p { max-width: 52ch; margin: 1.2rem auto 0; }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filters button {
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: .7em 1.4em; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-soft);
  transition: background .3s, color .3s, border-color .3s;
}
.filters button:hover { border-color: var(--sage); color: var(--sage-deep); }
.filters button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.masonry { columns: 2 220px; column-gap: clamp(.5rem, 1.5vw, 1rem); }
.masonry .tile { break-inside: avoid; margin-bottom: clamp(.5rem, 1.5vw, 1rem); border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: zoom-in; background: var(--bg-sand); }
.masonry .tile img { width: 100%; transition: transform .8s var(--ease), opacity .6s; }
.masonry .tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,24,21,.28), transparent 55%); opacity: 0; transition: opacity .4s; }
.masonry .tile:hover img { transform: scale(1.05); }
.masonry .tile:hover::after { opacity: 1; }
.masonry .tile.is-hidden { display: none; }

/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(18,20,18,.95); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s var(--ease);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__img { max-width: min(94vw, 1500px); max-height: 86vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.5); user-select: none; }
.lightbox__img.is-loading { opacity: .3; }
.lb-btn { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .3s, transform .3s; }
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb-prev { left: clamp(.6rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.6rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter { position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .8rem; letter-spacing: .15em; }
body.lb-open { overflow: hidden; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
/* Reveals are gated behind .js so content is fully visible without JavaScript */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .stay-card:hover, .btn:hover { transform: none; }
  .scroll-cue span { animation: none; }
}

/* =====================================================================
   RESPONSIVE: tablet & up
   ===================================================================== */
@media (min-width: 640px) {
  .gallery-preview { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 880px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .stays { grid-template-columns: repeat(3, 1fr); }
  .intro__grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .split { grid-template-columns: 1fr 1fr; }
  .location__grid { grid-template-columns: 1.1fr .9fr; }
  .contact__grid { grid-template-columns: .8fr 1.2fr; }
  .footer__top { grid-template-columns: 1.3fr 1.7fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .gallery-preview { grid-template-columns: repeat(4, 1fr); }
  .masonry { columns: 3 260px; }
}
@media (min-width: 1200px) {
  .masonry { columns: 4 260px; }
}

/* Body lock when mobile menu open */
body.menu-open { overflow: hidden; }

/* =====================================================================
   REVIEWS / TRUST
   ===================================================================== */
.reviews .review-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
@media (min-width: 600px) { .reviews .review-cards { grid-template-columns: repeat(3, 1fr); } }
.review-card { display: grid; justify-items: center; gap: .35rem; text-align: center; padding: 1.7rem 1rem 1.5rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.rc-stars { color: #E0A33E; letter-spacing: .14em; font-size: .92rem; }
.rc-score { font-family: var(--serif); font-size: 1.95rem; color: var(--ink); line-height: 1; }
.rc-score small { font-family: var(--sans); font-size: .78rem; color: var(--ink-soft); }
.rc-platform { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.rc-link { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); border-bottom: 1px solid currentColor; padding-bottom: 1px; margin-top: .3rem; }

/* Icon inside buttons */
.btn > svg { width: 1.2em; height: 1.2em; flex: none; }

/* WhatsApp primary button variant */
.btn--wa { --btn-bg: #25D366; --btn-fg: #fff; border-color: #25D366; }
.btn--wa:hover { background: #1eb858; border-color: #1eb858; }

/* =====================================================================
   FLOATING WHATSAPP CTA
   ===================================================================== */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 80; display: inline-flex; align-items: center; gap: .55em;
  padding: .85rem; background: #25D366; color: #fff; border-radius: 100px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .45);
  transition: transform .35s var(--ease), box-shadow .35s, opacity .3s;
}
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float__label { font-size: .82rem; font-weight: 500; letter-spacing: .03em; white-space: nowrap; max-width: 0; overflow: hidden; opacity: 0; transition: max-width .4s var(--ease), opacity .3s; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -8px rgba(0, 0, 0, .5); }
body.menu-open .wa-float, body.lb-open .wa-float { opacity: 0; pointer-events: none; }
@media (min-width: 880px) {
  .wa-float { padding: .7rem 1.3rem .7rem .9rem; }
  .wa-float__label { max-width: 200px; opacity: 1; }
}

/* =====================================================================
   CAROUSEL
   ===================================================================== */
.carousel { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; background: var(--bg-sand); }
.carousel__track { display: flex; height: 100%; transition: transform .6s var(--ease); will-change: transform; }
.carousel__slide { position: relative; flex: 0 0 100%; height: 100%; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.88); color: var(--ink); display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: background .3s, opacity .3s; opacity: 0; }
.carousel__btn svg { width: 18px; height: 18px; }
.carousel__btn.prev { left: .55rem; }
.carousel__btn.next { right: .55rem; }
.carousel:hover .carousel__btn, .carousel:focus-within .carousel__btn { opacity: 1; }
.carousel__btn:hover { background: #fff; }
.carousel__dots { position: absolute; bottom: .65rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .4rem; }
.carousel__dots button { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 1px 3px rgba(0,0,0,.3); transition: background .3s, width .3s, border-radius .3s; }
.carousel__dots button.is-active { background: #fff; width: 17px; border-radius: 4px; }
@media (hover: none) { .carousel__btn { opacity: .82; } }

/* =====================================================================
   AERIAL / DRONE SECTIONS
   ===================================================================== */
.section--aerial { position: relative; isolation: isolate; color: rgba(255,255,255,.85); }
.section--aerial__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.section--aerial::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(14,18,15,.74), rgba(14,18,15,.82)); }
.section--aerial .eyebrow { color: #CBD8B6; }
.section--aerial h2 { color: #fff; }
.section--aerial .lede { color: rgba(255,255,255,.9); }
.section--aerial .feature-list .fi-icon { border-color: rgba(255,255,255,.3); color: #fff; }
.section--aerial .feature-list h4 { color: #fff; }
.section--aerial .feature-list p { color: rgba(255,255,255,.72); }
.section--aerial .textlink { color: #fff; }

.aerial-band { position: relative; isolation: isolate; min-height: 62vh; display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 6rem); }
.aerial-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.aerial-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(14,18,15,.42), rgba(14,18,15,.58)); }
.aerial-band .eyebrow { color: rgba(255,255,255,.9); justify-content: center; }
.aerial-band h2 { color: #fff; margin-top: 1rem; }
.aerial-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 1.1rem auto 0; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
