/* =========================================================
   Aarohi Nature's Retreat — 2026 redesign
   Self-contained design system (no framework dependency)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --pine:        #143d38;   /* deep forest green   */
  --pine-deep:   #0d2d29;   /* darker forest       */
  --pine-soft:   #2f5d54;   /* muted teal-green    */
  --sage:        #7c8f6f;   /* soft sage           */
  --clay:        #c2683f;   /* warm terracotta     */
  --clay-soft:   #d98a5f;
  --sand:        #f7f2e9;   /* warm cream bg       */
  --sand-deep:   #efe7d8;   /* slightly deeper     */
  --paper:       #fffdf9;   /* near-white          */
  --ink:         #26302c;   /* primary text        */
  --ink-soft:    #57625c;   /* secondary text      */
  --line:        rgba(20,61,56,.12);

  --shadow-sm: 0 4px 14px rgba(20,45,41,.08);
  --shadow-md: 0 18px 40px rgba(20,45,41,.12);
  --shadow-lg: 0 34px 70px rgba(13,45,41,.20);

  --radius:    18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --container: 1180px;
  --header-h: 76px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--pine-deep);
  margin: 0;
  font-optical-sizing: auto;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-sand  { background: var(--sand); }
.bg-deep  { background: var(--sand-deep); }
.bg-paper { background: var(--paper); }
.bg-pine  { background: var(--pine); color: #eaf1ec; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay);
  display: inline-block;
}
.bg-pine .eyebrow { color: var(--clay-soft); }
.bg-pine .eyebrow::before { background: var(--clay-soft); }

.h-sec { font-size: clamp(2rem, 4.2vw, 3.25rem); }
.h-sub { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
}
.bg-pine .lede, .bg-pine p { color: #cdded5; }
.center { text-align: center; }
.center .lede, .center .eyebrow { margin-inline: auto; }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--clay); color: #fff; box-shadow: 0 12px 26px rgba(194,104,63,.32); }
.btn--primary:hover { background: #b35a32; box-shadow: 0 16px 34px rgba(194,104,63,.4); }
.btn--pine { background: var(--pine); color: #fff; }
.btn--pine:hover { background: var(--pine-deep); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--outline { background: transparent; color: var(--pine); border-color: var(--line); }
.btn--outline:hover { border-color: var(--pine); background: var(--pine); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1200;
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { height: 40px; width: auto; transition: filter .35s var(--ease); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: .01em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  transition: color .35s var(--ease), text-shadow .35s var(--ease);
  line-height: 1.05;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .85;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a.nav-link {
  color: #fff;
  font-weight: 500;
  font-size: .96rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  position: relative;
  transition: color .3s;
}
.nav a.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--clay);
  transition: width .3s var(--ease);
}
.nav a.nav-link:hover::after { width: 100%; }

/* booking dropdown */
.book-wrap { position: relative; }
.book-wrap .dropdown {
  position: absolute;
  right: 0; top: calc(100% + 12px);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 230px;
  padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  border: 1px solid var(--line);
}
.book-wrap:hover .dropdown,
.book-wrap:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.book-wrap .dropdown::before {
  content: "Book directly via";
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: .5rem .8rem .35rem;
}
.book-wrap .dropdown a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem .85rem;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.book-wrap .dropdown a:hover { background: var(--sand); color: var(--clay); }
.book-wrap .dropdown a span { color: var(--ink-soft); font-size: 1.1rem; }

/* scrolled state */
.site-header.scrolled {
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(20,45,41,.08);
  height: 66px;
}
.site-header.scrolled .brand__name { color: var(--pine-deep); text-shadow: none; }
.site-header.scrolled .brand img { filter: none; }
.site-header.scrolled .nav a.nav-link { color: var(--ink); text-shadow: none; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px; z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s, background .3s;
}
.site-header.scrolled .hamburger span { background: var(--pine-deep); }
body.menu-open .hamburger span { background: var(--pine-deep); }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 1050;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
/* keep the brand legible over the open (cream) menu */
body.menu-open .brand__name { color: var(--pine-deep); text-shadow: none; }
body.menu-open .brand img { filter: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--pine-deep);
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-book { margin-top: 1.5rem; }
.mobile-menu .mm-book p {
  font-family: var(--font-body); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 .5rem;
}
.mobile-menu .mm-book a {
  font-family: var(--font-body); font-size: 1.05rem; border: 0; padding: .4rem 0;
  display: flex; align-items: center; gap: .5rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13,45,41,.78) 0%, rgba(13,45,41,.25) 38%, rgba(13,45,41,.15) 60%, rgba(13,45,41,.45) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding: 0 24px clamp(3.5rem, 8vw, 6rem);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  color: #f4e9dd; font-weight: 500; font-size: .82rem;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero__eyebrow svg { width: 16px; height: 16px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 400;
  max-width: 16ch;
  text-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.hero h1 em { font-style: italic; color: var(--clay-soft); }
.hero__sub {
  color: #eef2ee;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 46ch;
  margin-top: 1.3rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.8);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll .mouse {
  width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 12px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px;
  background: #fff; border-radius: 2px; transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} 100%{opacity:0} }

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats .stat {
  background: var(--paper);
  padding: 1.8rem 1.3rem;
  text-align: center;
}
.stat__icon { color: var(--clay); margin-bottom: .6rem; display: flex; justify-content: center; }
.stat__icon svg { width: 26px; height: 26px; }
.stat__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--pine-deep); }
.stat__desc { font-size: .85rem; color: var(--ink-soft); margin-top: .15rem; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__media .frame img,
.split__media .frame video { width: 100%; height: clamp(340px, 46vw, 560px); object-fit: cover; display: block; transition: transform 1s var(--ease); }
.split__media:hover .frame img { transform: scale(1.05); }
/* ---------- River video band ---------- */
.river-band { position: relative; min-height: 66vh; display: flex; align-items: center; overflow: hidden; }
.river-band video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.river-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(13,45,41,.78), rgba(13,45,41,.35) 55%, rgba(13,45,41,.55));
}
.river-band__inner { position: relative; z-index: 2; max-width: 640px; }
.river-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.river-band p { color: #dce8e1; margin-top: 1.1rem; }
.river-band .eyebrow { color: var(--clay-soft); }
.river-band .eyebrow::before { background: var(--clay-soft); }
.river-tag {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(13,45,41,.5); backdrop-filter: blur(4px);
  color: #fff; padding: .5rem .95rem; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 500;
}
.river-tag .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--clay-soft);
  animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(217,138,95,.6)} 70%{box-shadow:0 0 0 7px rgba(217,138,95,0)} 100%{box-shadow:0 0 0 0 rgba(217,138,95,0)} }
.split__media .badge {
  position: absolute;
  background: var(--paper);
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.split__media .badge--br { right: -14px; bottom: -22px; }
.split__media .badge--bl { left: -14px; bottom: -22px; }
.split__media .badge strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--clay); display: block; }
.split__media .badge span { font-size: .82rem; color: var(--ink-soft); }
.split__body p + p { margin-top: 1rem; }

/* feature list with check */
.feature-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .85rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--ink); }
.feature-list li svg { width: 20px; height: 20px; color: var(--pine-soft); flex: none; margin-top: 3px; }

/* ---------- Amenities grid ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 3rem;
}
.amenity {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.amenity:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.amenity__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(124,143,111,.16); color: var(--pine-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.amenity__icon svg { width: 24px; height: 24px; }
.amenity h4 { font-size: 1.1rem; margin-bottom: .35rem; }
.amenity p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 3rem;
}
.gallery a {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--sand-deep);
}
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,45,41,.35), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.gallery a:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,22,20,.92);
  display: none; align-items: center; justify-content: center;
  padding: 2.5rem 1.2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff;
  border: 0; cursor: pointer; border-radius: 999px;
  width: 52px; height: 52px; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav.prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ---------- Explore / nearby ---------- */
.explore-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem;
}
.place {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.place:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.place__dist {
  flex: none; font-family: var(--font-display); font-size: 1.5rem; color: var(--clay);
  min-width: 64px; line-height: 1;
}
.place__dist small { display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: .25rem; }
.place h4 { font-size: 1.08rem; margin-bottom: .3rem; }
.place p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Booking CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,45,41,.92), rgba(20,61,56,.72)); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.cta-band p { color: #d3e2da; max-width: 52ch; margin: 1.1rem auto 0; }
.ota-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.2rem; }
.ota-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; padding: .75rem 1.3rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .95rem; transition: background .25s, transform .25s;
}
.ota-chip:hover { background: #fff; color: var(--pine-deep); transform: translateY(-2px); }

/* ---------- Instagram ---------- */
.insta-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }

/* Harmonise the bundled instagram partial with the site palette */
#instagram .ig-row { margin-top: 1.5rem; align-items: center; }
#instagram .ig-card { box-shadow: var(--shadow-md); border-radius: var(--radius); }
#instagram .ig-visit-badge {
  background: var(--clay) !important;
  box-shadow: 0 12px 26px rgba(194,104,63,.28);
}
#instagram .ig-visit-badge:hover { background: #b35a32 !important; }
#instagram .ig-sub { color: var(--ink-soft) !important; }
#instagram .ig-play-badge { background: var(--clay); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: #cdded5; padding: clamp(3.5rem,6vw,5rem) 0 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 2.5rem; }
.site-footer .f-brand img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.site-footer p { color: #b3c8be; font-size: .95rem; margin: 0 0 .7rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 1.2rem; }
.site-footer a { color: #cdded5; transition: color .2s; }
.site-footer a:hover { color: var(--clay-soft); }
.f-contact a { display: inline-flex; }
.f-socials { display: flex; gap: .7rem; margin-top: 1rem; }
.f-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.f-socials a:hover { background: var(--clay); transform: translateY(-3px); }
.f-socials svg { width: 20px; height: 20px; }
.f-map { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); height: 220px; }
.f-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .85rem; color: #93aaa0;
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  background: #25D366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2.4s infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.7);opacity:0} }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__media img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media .frame img { height: clamp(280px, 60vw, 420px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .insta-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .amenities { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .f-bottom { flex-direction: column; }
  .split__media .badge { position: static; margin-top: 1rem; max-width: none; box-shadow: var(--shadow-sm); }
}
