:root {
  --white: #FFFFFF;
  --sand: #FDFBF7;
  --warm: #FFF8EF;
  --ink: #1F1F1F;
  --muted: #6F6A63;
  --line: #E9E1D6;
  --beige: #F6EFE6;
  --mango: #FDB833;
  --orange: #F37021;
  --red: #D9281E;
  --leaf: #8BCB22;
  --terra: #C7602B;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(79, 55, 28, .075);
  --soft-shadow: 0 14px 42px rgba(79, 55, 28, .055);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  position: relative;
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(253, 184, 51, .045), transparent 23rem),
    linear-gradient(180deg, var(--sand), var(--white) 18rem);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(58px);
  opacity: .18;
}
body::before {
  width: min(48vw, 560px);
  height: 190px;
  top: 18vh;
  right: -12vw;
  background: linear-gradient(90deg, rgba(253,184,51,.34), rgba(199,96,43,.16));
  transform: rotate(-12deg);
  border-radius: 48% 52% 44% 56%;
}
body::after {
  width: min(42vw, 520px);
  height: 160px;
  bottom: 14vh;
  left: -13vw;
  background: linear-gradient(90deg, rgba(139,203,34,.20), rgba(243,112,33,.12));
  transform: rotate(10deg);
  border-radius: 42% 58% 50% 50%;
}
body.menu-open { overflow: hidden; }
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: .96; letter-spacing: 0; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
h1 { font-size: clamp(3.2rem, 5.7vw, 5.8rem); max-width: 11.4ch; }
h1 span { display: block; }
h2 { font-size: clamp(2.65rem, 6vw, 5.2rem); }
h3 { font-size: 1.05rem; line-height: 1.2; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 200;
  padding: .65rem .85rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--sand);
}
.loader-mark { display: grid; place-items: center; gap: 1rem; }
.loader-mark img {
  width: min(250px, 62vw);
  height: auto;
  max-height: 180px;
  object-fit: contain;
}
.optional-lottie {
  width: 58px;
  height: 58px;
  margin: -.45rem 0 -.7rem;
  opacity: .72;
  pointer-events: none;
}
.loader-fallback, .logo-fallback {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
}
.loader-mark i {
  width: 46px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--mango), var(--orange), var(--leaf));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1rem, 3.5vw, 3rem);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(233, 225, 214, .8);
  box-shadow: 0 10px 34px rgba(31, 31, 31, .035);
  backdrop-filter: blur(18px);
}
.logo, .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
}
.logo img {
  width: clamp(210px, 17vw, 280px);
  height: auto;
  max-height: 78px;
  object-fit: contain;
}
.footer-logo img {
  width: clamp(180px, 20vw, 260px);
  height: auto;
  max-height: 118px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(.55rem, 1.35vw, 1.15rem);
  font-size: .8rem;
  font-weight: 600;
}
.main-nav a { color: var(--muted); transition: color .25s ease, transform .25s ease; }
.main-nav a:hover, .main-nav .nav-cta { color: var(--ink); }
.main-nav a:hover { transform: translateY(-1px); }
.nav-cta {
  padding: .72rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 30px rgba(70, 46, 22, .045);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .25s ease;
}
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.section-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.6rem, 7vw, 6.4rem) 0;
}
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.8rem);
  padding-top: 6.6rem;
}
.hero-copy { display: grid; gap: 1rem; }
.eyebrow {
  color: var(--terra);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero-lead { font-size: clamp(1.12rem, 2vw, 1.38rem); color: var(--ink); max-width: 35rem; }
.hero-text, .section-copy > p, .section-heading p, .final-cta p { max-width: 40rem; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: .3rem; }
.button-row.centered { justify-content: center; }
.cta-microcopy {
  font-size: .82rem;
  color: var(--muted);
  margin-top: -.35rem;
}
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .88rem 1.18rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}
.btn span { transition: transform .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(120%); }
.btn:hover span { transform: translateX(3px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #F37021, #D84A24);
  box-shadow: 0 15px 36px rgba(199, 96, 43, .22);
}
.btn-secondary {
  color: var(--ink);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: rgba(199, 96, 43, .34); box-shadow: var(--soft-shadow); }
.text-link {
  color: var(--terra);
  font-size: .9rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(199, 96, 43, .35);
}
.hero-badges { display: flex; flex-wrap: wrap; gap: .45rem; }
.hero-badges span, .trust-points span {
  padding: .47rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}
.handwritten-note {
  font-family: Caveat, cursive;
  font-size: clamp(1.55rem, 4vw, 2.55rem);
  font-weight: 600;
  line-height: 1;
  transform: rotate(-4deg);
}
.mango-note, .orange-note { color: var(--terra); }
.photo-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.hero-media, .hero-photo, .portrait-card, .wide-photo, .map-placeholder, .image-pair figure, .gallery-item, .gallery-slide, .experience-film {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 15%, rgba(253,184,51,.16), transparent 8rem),
    radial-gradient(circle at 85% 80%, rgba(139,203,34,.12), transparent 8rem),
    linear-gradient(135deg, rgba(255,248,239,.96), rgba(246,239,230,.78)),
    var(--warm);
  box-shadow: var(--shadow);
}
.hero-media img,
.hero-media video,
.hero-photo img,
.portrait-card img,
.wide-photo img,
.map-placeholder img,
.image-pair img,
.gallery-item img,
.gallery-item video,
.gallery-slide img,
.gallery-slide video,
.experience-film video {
  position: relative;
  z-index: 1;
}
.media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 1.35rem;
  text-align: center;
  color: rgba(111, 106, 99, .78);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.media-placeholder::before {
  content: "";
  position: absolute;
  width: clamp(72px, 18vw, 142px);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 96, 43, .22);
  border-radius: 44% 56% 48% 52%;
  background:
    linear-gradient(135deg, rgba(253,184,51,.14), rgba(243,112,33,.05)),
    rgba(255,255,255,.38);
}
.media-placeholder::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 12px;
  margin: -70px 0 0 42px;
  border: 2px solid rgba(139, 203, 34, .56);
  border-radius: 100% 0 100% 0;
  transform: rotate(-18deg);
}
.hero-visual {
  position: relative;
  display: block;
  padding-bottom: clamp(4.4rem, 7vw, 6.8rem);
}
.hero-media {
  aspect-ratio: 16 / 10.5;
  min-height: 0;
  border-radius: 30px;
  box-shadow: 0 28px 84px rgba(79, 55, 28, .10);
}
.hero-photo {
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1.1rem, 2.7vw, 2rem);
  aspect-ratio: 5 / 4;
  width: clamp(210px, 32%, 300px);
  min-height: 0;
  border: 7px solid var(--sand);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(79, 55, 28, .13);
  z-index: 3;
}
.hero-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,.36);
}
.hero-media:after, .hero-photo:after, .gallery-item:after, .gallery-slide:after, .experience-film:after, .wide-photo:after, .map-placeholder:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.22));
  z-index: 2;
  pointer-events: none;
}
.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-media.no-video .video-fallback { opacity: 1; }

.about, .drinks, .location-card {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: clamp(1.8rem, 4.5vw, 4.4rem);
}
.section-copy, .section-heading { display: grid; gap: 1rem; }
.section-heading { text-align: center; justify-items: center; margin-bottom: 1.8rem; }
blockquote {
  margin: .5rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}
.soft-callout { color: var(--terra); font-weight: 700; }
.portrait-card { aspect-ratio: 5 / 6; max-height: 620px; }
.portrait-card figcaption { position: absolute; right: 1rem; bottom: 1.2rem; color: var(--white); text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.portrait-card figcaption, .image-pair figcaption, .gallery-item figcaption, .gallery-slide figcaption { z-index: 3; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.experience-card {
  min-height: 174px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199,96,43,.24);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(77, 55, 31, .07);
}
.experience-card .line-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  color: var(--terra);
  background: var(--warm);
}
.line-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.experience-card h3 { margin-bottom: .45rem; }
.experience-film {
  margin-top: 1.1rem;
  aspect-ratio: 16 / 7;
}
.experience-film figcaption { z-index: 3; }

.split-warm {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.image-pair {
  display: grid;
  grid-template-columns: 1fr .72fr;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 1rem;
}
.image-pair figure:first-child { aspect-ratio: 4 / 5; }
.image-pair .small { aspect-ratio: 3 / 4; transform: translateY(2rem); }
.image-pair .wide-accent {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
  transform: none;
}
.image-pair figcaption { position: absolute; left: 1rem; bottom: 1rem; color: var(--white); text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.concept-list {
  display: grid;
  gap: .55rem;
  margin: .35rem 0;
}
.concept-list p {
  padding: .74rem 0 .8rem;
  border-bottom: 1px solid var(--line);
}
.concept-list strong { display: block; color: var(--ink); }
.wide-photo { aspect-ratio: 4 / 5; }
.soft-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  padding: 0;
  margin: .4rem 0 .8rem;
  list-style: none;
}
.soft-list li {
  padding-left: 1rem;
  color: var(--muted);
  border-left: 2px solid rgba(253, 184, 51, .75);
}

.gallery-shell {
  position: relative;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .6rem;
  margin-bottom: 1rem;
}
.gallery-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-arrow:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); }
.gallery-counter {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .2rem .2rem 1rem;
  scrollbar-width: thin;
}
.gallery-slide {
  flex: 0 0 min(72vw, 410px);
  height: clamp(310px, 45vw, 520px);
  scroll-snap-align: start;
  box-shadow: none;
}
.gallery-slide:nth-child(3n + 1) { flex-basis: min(78vw, 480px); }
.gallery-slide:nth-child(4n + 2) { height: clamp(360px, 50vw, 580px); }
.gallery-slide img, .gallery-slide video, .gallery-item img, .gallery-item video, .hero-media video, .hero-media img, .hero-photo img, .wide-photo img, .portrait-card img, .image-pair img, .experience-film video {
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.gallery-slide:hover img, .gallery-slide:hover video, .gallery-item:hover img, .gallery-item:hover video, .hero-photo:hover img, .experience-film:hover video, .wide-photo:hover img, .portrait-card:hover img, .image-pair figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.03);
}
.gallery-slide figcaption, .gallery-item figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,.42);
}

.trust-panel, .final-cta-inner, .location-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 80px rgba(70, 46, 22, .045);
}
.trust-panel, .final-cta-inner {
  padding: clamp(1.6rem, 4vw, 3rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
}
.trust-points { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: .5rem; }
.location-card { padding: clamp(1rem, 2.4vw, 1.35rem); grid-template-columns: .82fr 1.18fr; }
.location-card > div:first-child { padding: clamp(1rem, 3vw, 2.2rem); display: grid; gap: 1rem; }
dl { display: grid; gap: .75rem; margin: .4rem 0; }
dt { color: var(--ink); font-weight: 800; }
dd { margin: 0; color: var(--muted); }
.map-placeholder { min-height: 0; aspect-ratio: 16 / 10; box-shadow: none; }

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: .88rem 1.12rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #F37021, #D84A24);
  box-shadow: 0 18px 42px rgba(199, 96, 43, .23);
  font-size: .88rem;
  font-weight: 800;
  transition: transform .35s ease, box-shadow .35s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(199, 96, 43, .28); }
.mobile-label { display: none; }

.site-footer {
  display: grid;
  gap: 1.5rem;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 7.5rem;
  border-top: 1px solid var(--line);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-weight: 700; font-size: .9rem; }
.copyright { font-size: .84rem; }

.animation-ready .image-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: var(--sand);
  transform: translateX(var(--mask-x, 0));
  transform-origin: right;
  pointer-events: none;
}
.reveal-up { opacity: 0; transform: translateY(60px); }

@media (max-width: 980px) {
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    place-content: center;
    gap: 1.2rem;
    background: rgba(253,251,247,.98);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
    font-size: 1.25rem;
  }
  .menu-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .hero, .about, .drinks, .split-warm, .location-card {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 7rem; gap: 1.5rem; }
  h1 { max-width: 10.5ch; }
  .hero-visual { order: 2; }
  .hero-media { aspect-ratio: 16 / 10; }
  .hero-photo { width: clamp(180px, 34%, 240px); right: 1rem; bottom: 1rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-film { aspect-ratio: 16 / 9; }
  .gallery-slide { flex-basis: min(82vw, 440px); }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 10% 4%, rgba(253, 184, 51, .04), transparent 18rem),
      linear-gradient(180deg, var(--sand), var(--white) 14rem);
  }
  .section-shell { width: min(100% - 1.25rem, 1160px); padding: 3.25rem 0; }
  .site-header { padding: .8rem .75rem; }
  .logo img { width: clamp(170px, 48vw, 205px); max-height: 62px; }
  .footer-logo img { width: clamp(184px, 58vw, 240px); }
  h1 { font-size: clamp(2.55rem, 12.4vw, 3.55rem); max-width: 10ch; }
  h2 { font-size: clamp(2.35rem, 13vw, 3.6rem); }
  .hero {
    padding-top: 6.2rem;
    padding-bottom: 2.6rem;
  }
  .hero-copy { gap: .78rem; }
  .hero-lead { font-size: 1.06rem; line-height: 1.48; }
  .hero-text { font-size: .95rem; line-height: 1.58; }
  .button-row, .button-row.centered { align-items: stretch; }
  .btn { width: 100%; }
  .text-link { margin: .35rem auto 0; }
  .hero-badges span { font-size: .69rem; padding: .4rem .58rem; }
  .mango-note { font-size: 1.5rem; }
  .hero-media { aspect-ratio: 4 / 3; border-radius: 22px; }
  .hero-photo {
    position: relative;
    width: 58%;
    aspect-ratio: 5 / 4;
    margin: -2rem .7rem 0 auto;
    right: auto;
    bottom: auto;
    border-width: 6px;
    border-radius: 18px;
  }
  .hero-photo figcaption { font-size: 1.35rem; }
  .card-grid, .soft-list, .image-pair { grid-template-columns: 1fr; }
  .experience-card { min-height: 132px; }
  .image-pair .small { transform: none; }
  .image-pair .wide-accent { aspect-ratio: 4 / 3; }
  .experience-film { aspect-ratio: 4 / 3; }
  .gallery-controls { justify-content: space-between; margin-bottom: .75rem; }
  .gallery-slide,
  .gallery-slide:nth-child(3n + 1) {
    flex-basis: 86vw;
    height: 360px;
  }
  .gallery-slide:nth-child(4n + 2) { height: 390px; }
  .trust-panel, .final-cta-inner { border-radius: 22px; }
  .mobile-label { display: inline; }
  .desktop-label { display: none; }
  .floating-whatsapp {
    right: .8rem;
    bottom: max(.75rem, env(safe-area-inset-bottom));
    min-height: 44px;
    padding: .72rem .92rem;
    font-size: .78rem;
  }
  .site-footer { padding-bottom: 6.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up { opacity: 1; transform: none; }
  .image-reveal::before { display: none; }
}

/* Surgical visual reset: header, hero, strip, experience video, gallery and CTA. */
body::before,
body::after {
  display: none;
}

.ambient-blur {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .18;
  z-index: -1;
}
.ambient-blur-hero {
  width: 280px;
  height: 280px;
  background: rgba(243, 112, 33, .20);
  top: 120px;
  left: -80px;
}
.ambient-blur-gallery {
  width: 340px;
  height: 340px;
  background: rgba(139, 203, 34, .12);
  right: -120px;
  top: 20%;
}
.gallery { position: relative; }

.logo img {
  width: clamp(140px, 11vw, 180px) !important;
  height: auto !important;
  max-height: 64px !important;
  object-fit: contain !important;
  display: block !important;
  opacity: 1 !important;
}

.hero {
  position: relative;
  width: min(1240px, 100%);
  min-height: auto;
  margin: 0 auto;
  padding: 120px 32px 84px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.hero-content {
  max-width: 560px;
  display: grid;
  gap: 1rem;
}
.hero h1 {
  font-size: clamp(64px, 6vw, 104px);
  line-height: .9;
  letter-spacing: 0;
  margin: 0 0 .35rem;
  max-width: 620px;
}
.hero-lead {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.35;
  max-width: 500px;
}
.hero-support {
  font-size: 16px;
  line-height: 1.65;
  max-width: 500px;
  color: var(--muted);
}
.hero-media {
  width: 100%;
  max-width: 660px;
  justify-self: end;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(31, 31, 31, .10);
}
.hero-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  background: var(--beige);
}

.hero-photo-strip {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 32px 72px;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 20px;
}
.hero-photo-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--warm);
}
.hero-photo-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .85s ease;
}
.hero-photo-strip figure:hover img {
  transform: scale(1.035);
}
.hero-photo-strip figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.experience-card .card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  color: var(--orange);
  background: var(--warm);
}
.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.experience-video video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.gallery-track {
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
  overflow-y: hidden;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery {
  overflow-x: clip;
}
.gallery-slide {
  flex: 0 0 min(72vw, 430px);
}

.final-cta-inner {
  overflow: visible;
}
.final-cta-inner h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  max-width: 100%;
}

@media (max-width: 768px) {
  .logo img {
    width: 132px !important;
    max-height: 56px !important;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 96px 22px 64px;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(48px, 13vw, 58px);
    line-height: .95;
    letter-spacing: 0;
    max-width: 100%;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-support {
    font-size: 15px;
  }
  .hero-media {
    width: 100%;
    max-width: 100%;
  }
  .hero-video,
  .hero-media {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }
  .hero-photo-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 22px 56px;
    gap: 14px;
    scrollbar-width: none;
  }
  .hero-photo-strip::-webkit-scrollbar {
    display: none;
  }
  .hero-photo-strip figure {
    min-width: 78vw;
    scroll-snap-align: start;
  }
  .hero-photo-strip img {
    height: 300px;
  }
}

/* Focused first-fold refinement: header and hero only. */
.site-header {
  padding: .78rem clamp(1rem, 3.2vw, 3rem);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
}
.logo img {
  width: clamp(140px, 12vw, 180px) !important;
  height: auto !important;
  max-height: 68px !important;
  object-fit: contain !important;
}

.hero {
  position: relative;
  width: min(1340px, 100%);
  min-height: min(820px, 100svh);
  padding: clamp(106px, 13vh, 140px) clamp(24px, 4.2vw, 56px) clamp(42px, 7vh, 72px);
  grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(38px, 5.4vw, 86px);
  isolation: isolate;
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(42px);
  opacity: .28;
}
.hero:before {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 20%;
  background: rgba(253, 184, 51, .22);
}
.hero:after {
  width: 320px;
  height: 220px;
  right: 7%;
  bottom: 3%;
  background: rgba(139, 203, 34, .16);
}
.hero-content {
  max-width: 520px;
  gap: .92rem;
  align-self: center;
}
.hero h1 {
  max-width: min(100%, 620px);
  font-size: clamp(54px, 5vw, 82px);
  line-height: .93;
  letter-spacing: 0;
  margin: 0;
}
.hero-lead {
  max-width: 470px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.42;
}
.hero-support {
  max-width: 455px;
  font-size: 15.5px;
  line-height: 1.65;
}
.hero-actions {
  margin-top: .58rem;
}
.hero-media {
  width: 100%;
  max-width: 780px;
  min-height: clamp(480px, 58vh, 680px);
  aspect-ratio: 16 / 10.6;
  border-radius: 34px;
  justify-self: end;
  box-shadow: 0 30px 90px rgba(31, 31, 31, .13);
}
.hero-video,
.hero-media .video-fallback {
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  border-radius: inherit;
  object-fit: cover;
}
.hero-media:after {
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.22));
}
.hero-media .photo-caption {
  left: 1.25rem;
  bottom: 1.15rem;
  padding: .48rem .72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
  font-size: .7rem;
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
}
.ambient-blur-hero {
  opacity: .22;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 104px;
  }
  .hero-content {
    max-width: 680px;
  }
  .hero h1 {
    max-width: min(100%, 620px);
    font-size: clamp(48px, 9vw, 68px);
  }
  .hero-media {
    justify-self: stretch;
    max-width: none;
    min-height: clamp(360px, 54vw, 560px);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: .72rem .88rem;
  }
  .logo img {
    width: clamp(120px, 34vw, 150px) !important;
    max-height: 58px !important;
  }
  .hero {
    padding: 94px 18px 42px;
    gap: 24px;
  }
  .hero-content {
    gap: .78rem;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 48px);
    line-height: .96;
  }
  .hero-lead {
    font-size: 17px;
    line-height: 1.42;
  }
  .hero-support {
    font-size: 14.5px;
    line-height: 1.58;
  }
  .hero-actions {
    gap: .65rem;
    margin-top: .35rem;
  }
  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 4.35;
    border-radius: 26px;
  }
  .hero-video,
  .hero-media .video-fallback {
    aspect-ratio: 4 / 4.35;
    border-radius: 26px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero h1 {
    font-size: clamp(36px, 10.2vw, 43px);
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Cinematic scroll hero inspired by expansion media references, rebuilt in plain CSS/JS. */
.site-header {
  padding: .78rem clamp(1rem, 3.4vw, 3rem);
}
.site-header .logo img {
  width: clamp(150px, 12vw, 180px) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  transform: none !important;
  opacity: 1 !important;
}
.site-header .logo {
  width: clamp(150px, 12vw, 180px);
  height: 72px;
  overflow: hidden;
  align-items: center;
}

.hero-cinematic {
  position: relative;
  overflow: hidden;
  width: min(1440px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(112px, 13vh, 148px) clamp(22px, 4.5vw, 64px) clamp(42px, 7vh, 74px);
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(34px, 5.8vw, 96px);
  background:
    linear-gradient(180deg, rgba(253, 251, 247, .98), rgba(255, 255, 255, .98));
  isolation: isolate;
}
.hero-cinematic:before {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 3vw, 46px) clamp(18px, 3vw, 38px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 96, 43, .22), transparent);
  pointer-events: none;
}
.hero-cinematic-content {
  position: relative;
  z-index: 3;
  max-width: 548px;
  display: grid;
  gap: clamp(.76rem, 1.3vw, 1rem);
  align-self: center;
}
.hero-cinematic-content .eyebrow {
  color: var(--terra);
}
.hero-cinematic-title {
  max-width: 620px;
  margin: 0;
  font-size: clamp(56px, 5.45vw, 92px);
  line-height: .89;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-cinematic .hero-lead {
  max-width: 485px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.38;
  color: var(--ink);
}
.hero-cinematic .hero-support {
  max-width: 450px;
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--muted);
}
.hero-cinematic .hero-actions {
  margin-top: .65rem;
  gap: .72rem;
}

.hero-cinematic-media {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 820px);
  max-width: 820px;
  min-height: clamp(500px, 62vh, 710px);
  aspect-ratio: 16 / 10.25;
  border-radius: clamp(26px, 2.6vw, 38px);
  overflow: hidden;
  background: var(--warm);
  box-shadow:
    0 34px 94px rgba(31, 31, 31, .14),
    0 1px 0 rgba(255, 255, 255, .8) inset;
  transform-origin: 50% 52%;
  will-change: transform;
}
.hero-cinematic-media:before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: calc(clamp(26px, 2.6vw, 38px) - 10px);
  pointer-events: none;
}
.hero-cinematic-media:after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .24)),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .22), transparent 34%);
}
.hero-cinematic-video,
.hero-cinematic-media .video-fallback {
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  object-fit: cover;
  border-radius: inherit;
}
.hero-cinematic-media .photo-caption {
  left: 1.18rem;
  bottom: 1.12rem;
  z-index: 4;
  padding: .5rem .72rem;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  font-family: Inter, system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .32);
}
.hero-scroll-hint {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4.6vw, 66px);
  bottom: clamp(18px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(31, 31, 31, .58);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-scroll-hint:after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.hero-ambient-blur {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(48px);
  opacity: .18;
  will-change: transform;
}
.hero-ambient-blur-one {
  width: 270px;
  height: 270px;
  left: -86px;
  top: 22%;
  background: rgba(253, 184, 51, .46);
}
.hero-ambient-blur-two {
  width: 360px;
  height: 240px;
  right: 8%;
  bottom: 6%;
  background: rgba(139, 203, 34, .28);
}

@media (max-width: 1080px) {
  .hero-cinematic {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 106px;
    gap: 30px;
  }
  .hero-cinematic-content {
    max-width: 720px;
  }
  .hero-cinematic-title {
    font-size: clamp(50px, 8vw, 76px);
    line-height: .93;
  }
  .hero-cinematic-media {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    min-height: clamp(390px, 55vw, 570px);
  }
  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header .logo img {
    width: clamp(120px, 35vw, 140px) !important;
    max-height: none !important;
  }
  .site-header .logo {
    width: clamp(120px, 35vw, 140px);
    height: 62px;
  }
  .hero-cinematic {
    padding: 92px 18px 38px;
    gap: 24px;
    background: linear-gradient(180deg, var(--sand), var(--white));
  }
  .hero-cinematic-content {
    gap: .76rem;
  }
  .hero-cinematic-title {
    font-size: clamp(38px, 10.4vw, 48px);
    line-height: .96;
  }
  .hero-cinematic .hero-lead {
    font-size: 17px;
    line-height: 1.42;
  }
  .hero-cinematic .hero-support {
    font-size: 14.5px;
    line-height: 1.58;
  }
  .hero-cinematic .hero-actions {
    align-items: stretch;
    gap: .65rem;
    margin-top: .32rem;
  }
  .hero-cinematic-media {
    min-height: 0;
    aspect-ratio: 4 / 4.55;
    border-radius: 26px;
    box-shadow: 0 22px 62px rgba(31, 31, 31, .12);
  }
  .hero-cinematic-video,
  .hero-cinematic-media .video-fallback {
    aspect-ratio: 4 / 4.55;
    border-radius: 26px;
  }
  .hero-cinematic-media:before {
    inset: 9px;
    border-radius: 18px;
  }
  .hero-ambient-blur {
    opacity: .13;
    filter: blur(40px);
  }
}

@media (max-width: 430px) {
  .hero-cinematic {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero-cinematic-title {
    font-size: clamp(36px, 10.2vw, 43px);
  }
  .hero-cinematic .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinematic-media,
  .hero-ambient-blur {
    transform: none !important;
  }
}
