/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --turquoise: #1FC9C3;
  --turquoise-deep: #0E8F8A;
  --mint: #65D69E;
  --lime: #A8D85D;
  --lime-deep: #6B8F2E;
  --sun: #F5D43B;
  --ink: #111A1A;
  --ink-soft: #1B2626;
  --paper: #FAF3E7;
  --paper-2: #F1E6D2;
  --cream: #F3F1E4;
  --line: rgba(17,26,26,0.12);
  --line-light: rgba(243,241,228,0.18);
  --text-mute: rgba(17,26,26,0.64);
  --text-mute-on-dark: rgba(243,241,228,0.7);

  --brand-gradient: linear-gradient(120deg, var(--turquoise) 0%, var(--mint) 42%, var(--lime) 75%, var(--sun) 100%);

  --display: "Barlow Condensed", sans-serif;
  --sans: "Manrope", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 96px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
ul, ol { list-style: none; padding: 0; }
iframe { border: 0; }
::selection { background: var(--turquoise); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--turquoise-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px) { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--ink);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: var(--mint); }

.section-title { font-size: clamp(2rem, 4.2vw, 3rem); max-width: 20ch; }

/* Reveal-on-scroll */
[data-reveal], .reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed, .reveal.is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s, border-color .3s;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand-gradient);
  background-size: 160% 160%;
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(31, 201, 195, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background-position: 100% 0;
  box-shadow: 0 20px 40px -14px rgba(31, 201, 195, 0.6);
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-outline {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--turquoise-deep); background: rgba(31,201,195,0.08); transform: translateY(-2px); }

.btn-ghost-light {
  border: 1.5px solid var(--line-light);
  color: var(--cream);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

/* =============================================================
   5. Header / Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .3s var(--ease-out);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.nav.is-scrolled {
  background: rgba(247,248,242,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(17,26,26,0.08);
}
.nav.is-scrolled .nav-link,
.nav.is-scrolled .nav-brand-name { color: var(--ink); }
.nav.is-scrolled .nav-ig { color: var(--ink); }

.nav-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-brand img { border-radius: 50%; width: 74px; height: 74px; transition: width .3s var(--ease-out), height .3s var(--ease-out); }
.nav.is-scrolled .nav-brand img { width: 56px; height: 56px; }
.nav-brand-name {
  font-family: var(--display); font-weight: 700; font-size: 1.6rem;
  letter-spacing: 0.03em; color: var(--cream);
  transition: color .4s var(--ease-out);
}

.nav-links { display: none; align-items: center; gap: 1.9rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding: 0.3rem 0;
  font-weight: 600; font-size: 0.94rem;
  color: var(--cream);
  transition: color .4s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--turquoise);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-ig { color: var(--cream); display: none; transition: color .4s var(--ease-out), transform .3s; }
@media (min-width: 720px) { .nav-ig { display: inline-flex; } }
.nav-ig:hover { color: var(--turquoise); transform: scale(1.1); }
.nav-actions .btn-primary { display: none; }
@media (min-width: 960px) { .nav-actions .btn-primary { display: inline-flex; } }

.nav-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0.5rem;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block; height: 2px; width: 100%; background: var(--cream);
  transition: background .4s var(--ease-out), transform .35s var(--ease-out), opacity .3s;
}
.nav.is-scrolled .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 2.2rem;
  padding: 6rem 2rem 3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; gap: 1.4rem; }
.nav-mobile-link { font-family: var(--display); font-size: 1.9rem; font-weight: 600; }

/* =============================================================
   6. Sections — Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(17,26,26,0.88) 0%, rgba(17,26,26,0.35) 45%, rgba(17,26,26,0.45) 100%),
    linear-gradient(100deg, rgba(17,26,26,0.5), transparent 55%);
}
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: -1;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }
.hero-wave path { fill: var(--paper); }

.hero-inner { position: relative; z-index: 1; padding-block: 7rem 4.5rem; color: var(--cream); }
.hero-title {
  font-size: clamp(2.6rem, 8.5vw, 6rem);
  max-width: 14ch;
  margin-block: 0.4rem 1rem;
  color: var(--cream);
}
.hero-sub { max-width: 42ch; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-mute-on-dark); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.hero-trust { font-size: 0.9rem; font-weight: 600; color: var(--mint); letter-spacing: 0.02em; }

/* =============================================================
   7. Wave dividers (signature effect)
   ============================================================= */
.wave-divider { position: relative; line-height: 0; margin-top: -1px; }
.wave-divider svg { width: 100%; height: 70px; display: block; }
.wave-divider-top path { fill: var(--paper); }
.activities .wave-divider-top path { fill: var(--paper); }
.first-exp .wave-divider-top path { fill: var(--paper-2); }
.faq .wave-divider-top path { fill: var(--paper-2); }

/* =============================================================
   8. Intro section
   ============================================================= */
.intro { padding-block: 5rem; background: var(--paper); }
.intro-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) {
  .intro-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
}
.intro-figure { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; }
.intro-figure img { width: 100%; height: 100%; object-fit: cover; }
.intro-content h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1.1rem; }
.intro-lead { font-size: 1.08rem; color: var(--text-mute); max-width: 46ch; margin-bottom: 1.8rem; }
.intro-pillars { display: flex; flex-direction: column; gap: 0.9rem; }
.intro-pillars li { display: flex; align-items: center; gap: 0.9rem; font-weight: 700; font-size: 1.05rem; }
.intro-pillar-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--brand-gradient); color: var(--ink);
  font-family: var(--display); font-size: 0.95rem; flex-shrink: 0;
}

/* =============================================================
   9. Activities
   ============================================================= */
.activities { padding-block: 2rem 3rem; background: var(--paper); }
.activities > .container { padding-block: 3rem 2rem; text-align: center; }
.activities > .container .eyebrow { }
.activities > .container .section-title { margin-inline: auto; }

.activity-row {
  display: grid; gap: 1.5rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}
.activity-row:first-of-type { border-top: none; }
@media (min-width: 960px) {
  .activity-row { grid-template-columns: 1.15fr 1fr; align-items: center; gap: 3.5rem; padding-inline: 2.5rem; }
  .activity-row-b { grid-template-columns: 1fr 1.15fr; }
  .activity-row-b .activity-photo { order: 2; }
  .activity-row-b .activity-copy { order: 1; }
}
.activity-photo {
  border-radius: 20px; overflow: hidden; aspect-ratio: 16/11;
  margin-inline: 1.25rem;
}
@media (min-width: 960px) { .activity-photo { margin-inline: 0; } }
.activity-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.activity-row:hover .activity-photo img { transform: scale(1.06); }

.activity-copy { padding-inline: 1.25rem; }
@media (min-width: 960px) { .activity-copy { padding-inline: 0; } }
.activity-tag {
  display: inline-block; font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--turquoise-deep); margin-bottom: 0.7rem;
}
.activity-copy h3 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 0.7rem; }
.activity-copy p { color: var(--text-mute); max-width: 42ch; margin-bottom: 1.4rem; }

/* =============================================================
   10. First experience
   ============================================================= */
.first-exp { background: var(--paper-2); padding-block: 1rem 5rem; }
.first-exp-grid { display: grid; gap: 2.5rem; padding-top: 2rem; }
@media (min-width: 960px) {
  .first-exp-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
}
.first-exp-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); max-width: 16ch; margin-bottom: 1.6rem; }
.steps { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.6rem; }
.steps li { display: flex; align-items: baseline; gap: 1rem; }
.step-num { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--turquoise-deep); flex-shrink: 0; width: 2.4ch; }
.step-text { font-weight: 600; font-size: 1.05rem; }
.first-exp-copy p { color: var(--text-mute); max-width: 46ch; margin-bottom: 1.7rem; }
.first-exp-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3.2; }
.first-exp-photo img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   11. Community (dark, photo bg)
   ============================================================= */
.community-section {
  position: relative; padding-block: 6rem;
  isolation: isolate; overflow: hidden;
}
.community-bg { position: absolute; inset: 0; z-index: -2; }
.community-bg img { width: 100%; height: 100%; object-fit: cover; }
.community-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,26,26,0.88), rgba(17,26,26,0.82) 60%, rgba(17,26,26,0.92));
}
.community-inner { color: var(--cream); max-width: 46rem; }
.community-inner h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 1.2rem; }
.community-lead { color: var(--text-mute-on-dark); font-size: 1.05rem; max-width: 52ch; margin-bottom: 1.6rem; }
.community-list {
  display: flex; flex-wrap: wrap; gap: 0.7rem 0.9rem;
  margin-bottom: 2.2rem;
}
.community-list li {
  padding: 0.5rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--line-light);
  font-weight: 600; font-size: 0.92rem;
  color: var(--cream);
}

/* =============================================================
   12. Gallery
   ============================================================= */
.gallery { padding-block: 5rem; background: var(--paper); }
.gallery > .container:first-child { text-align: center; margin-bottom: 2.5rem; }
.gallery > .container:first-child .section-title { margin-inline: auto; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item-wide { aspect-ratio: 1; }
@media (min-width: 720px) { .gallery-item-wide { grid-column: span 2; aspect-ratio: 16/10; } }
.gallery-item-tall { }
@media (min-width: 720px) { .gallery-item-tall { grid-row: span 2; aspect-ratio: 4/6.4; } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-soft), filter .5s; }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.15) brightness(1.03); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17,26,26,0.35));
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-more { text-align: center; margin-top: 2.5rem; }
.gallery-more-handle { font-weight: 700; color: var(--turquoise-deep); margin-bottom: 1rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(17,26,26,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox[data-open="true"] { display: flex; }
.lightbox-img { max-width: min(92vw, 1100px); max-height: 80vh; border-radius: 10px; object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: absolute; color: var(--cream); font-size: 1.6rem;
  width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.08);
  transition: background .3s, transform .3s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--text-mute-on-dark); font-size: 0.9rem; text-align: center; max-width: 90vw;
}

/* =============================================================
   13. FAQ
   ============================================================= */
.faq { background: var(--paper-2); padding-block: 1rem 5rem; }
.faq-grid { display: grid; gap: 2rem; padding-top: 2rem; }
@media (min-width: 960px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; gap: 3.5rem; } }
.faq-heading h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); max-width: 14ch; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; padding-block: 1.3rem;
  font-family: var(--sans); font-weight: 700; font-size: 1.05rem;
}
.faq-icon {
  position: relative; flex-shrink: 0; width: 1.2rem; height: 1.2rem;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--ink); transition: transform .35s var(--ease-out);
}
.faq-icon::before { width: 100%; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 100%; transform: translate(-50%, -50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-answer {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-soft);
}
.faq-answer > p { overflow: hidden; padding-bottom: 0; color: var(--text-mute); max-width: 60ch; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 1.4rem; }
.faq-answer { overflow: hidden; }
.faq-answer > p { min-height: 0; }

/* =============================================================
   16. Location
   ============================================================= */
.location { background: var(--paper); padding-block: 5rem; }
.location-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .location-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; } }
.location-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 0.6rem; }
.location-copy > p { color: var(--text-mute); font-size: 1.05rem; margin-bottom: 1.8rem; }
.location-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.location-map { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.location-map iframe { width: 100%; height: 100%; }

/* =============================================================
   18. Footer (dark)
   ============================================================= */
.footer { background: var(--ink); color: var(--cream); padding-block: 4rem 1.5rem; }
.footer-inner {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr; margin-bottom: 3rem;
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand img { border-radius: 50%; }
.footer-name { font-family: var(--display); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.03em; }
.footer-tag { font-size: 0.85rem; color: var(--text-mute-on-dark); }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; color: var(--text-mute-on-dark); }
.footer-col a:hover { color: var(--turquoise); }
.footer-heading { font-weight: 700; color: var(--cream); margin-bottom: 0.3rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.5rem; border-top: 1px solid var(--line-light);
  font-size: 0.82rem; color: var(--text-mute-on-dark);
}
/* =============================================================
   19. WhatsApp floating button
   ============================================================= */
.whatsapp-float {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 300;
  display: flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #ffffff;
  padding: 0.9rem; border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.55);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft), padding .35s var(--ease-soft);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 36px -8px rgba(37,211,102,0.6); }
.whatsapp-float-label {
  display: none; font-weight: 700; font-size: 0.92rem; padding-right: 0.3rem;
}
@media (min-width: 720px) { .whatsapp-float-label { display: inline; } }

/* =============================================================
   20. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--paper);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .8s, clip-path 1s;
  animation: splashSafety .01s 3.2s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-logo { width: 76px; height: 76px; border-radius: 50%; animation: splashPulse 1.6s ease-in-out infinite; }
@keyframes splashPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.8; } }

/* =============================================================
   22. Decorative blobs (brand gradient, organic motif)
   ============================================================= */
.blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: var(--brand-gradient);
  filter: blur(70px);
  opacity: 0.28;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  animation: blobDrift 22s ease-in-out infinite;
}
@keyframes blobDrift {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; transform: translate(0,0) scale(1) rotate(0deg); }
  33%      { border-radius: 58% 42% 40% 60% / 60% 55% 45% 40%; transform: translate(2%, -3%) scale(1.06) rotate(8deg); }
  66%      { border-radius: 35% 65% 55% 45% / 40% 60% 40% 60%; transform: translate(-2%, 2%) scale(0.97) rotate(-6deg); }
}
.intro { position: relative; overflow: clip; isolation: isolate; }
.intro .blob { width: 420px; height: 420px; top: -10%; right: -8%; opacity: 0.22; }
.first-exp { position: relative; overflow: clip; isolation: isolate; }
.first-exp .blob { width: 380px; height: 380px; bottom: -12%; left: -10%; opacity: 0.2; }
.faq { position: relative; overflow: clip; isolation: isolate; }
.faq .blob { width: 340px; height: 340px; top: -8%; right: -6%; opacity: 0.18; }
.intro-grid, .first-exp-grid, .faq-grid { position: relative; z-index: 1; }

/* =============================================================
   23. Magnetic buttons (desktop, fine pointer only)
   ============================================================= */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform .7s var(--ease-soft);
}

/* =============================================================
   24. Gallery filters
   ============================================================= */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
  margin-bottom: 2rem;
}
.gallery-filter {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-weight: 700; font-size: 0.88rem;
  color: var(--text-mute);
  transition: border-color .3s, color .3s, background .3s, transform .3s var(--ease-soft);
}
.gallery-filter:hover { border-color: var(--turquoise-deep); color: var(--ink); transform: translateY(-1px); }
.gallery-filter[aria-pressed="true"] {
  background: var(--brand-gradient); border-color: transparent; color: var(--ink);
}
.gallery-item.is-hidden { display: none; }

/* =============================================================
   25. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .splash-logo { animation: none; }
}
