/* ===========================================================
   Wilpattu Wild Trails — stylesheet
   Bold editorial / nature-magazine system. Earthy, muted palette,
   sharp edges instead of rounded cards, oversized display type,
   ghost folio numerals and pull-quotes as the recurring motifs.
   =========================================================== */

:root {
  --bg: #f6f2e8;
  --bg-alt: #ede5d3;
  --panel: #fffdf8;
  --forest-950: #1c231a;
  --forest-900: #232b1f;
  --forest-800: #313c29;
  --forest-700: #445238;
  --forest-600: #5c6b4b;
  --earth-700: #6b4f36;
  --earth-600: #8a6644;
  --sand-400: #cdbb92;
  --sand-300: #ddd0ab;
  --ink: #2a2620;
  --ink-soft: #59544a;
  --ink-faint: #8a8375;
  --line: #ddd3bd;
  --rust-600: #9c5a34;
  --rust-700: #82492a;
  --whatsapp: #4c7a52;
  --whatsapp-dark: #3d6342;
  --radius-s: 0px;
  --radius-m: 0px;
  --shadow-soft: 0 10px 30px -12px rgba(28, 35, 26, 0.25);
  --shadow-tight: 0 2px 10px rgba(28, 35, 26, 0.12);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Karla", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  color: var(--forest-950);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth-600);
  font-weight: 700;
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--earth-600);
  margin-right: 10px;
  vertical-align: middle;
}

section { padding: 100px 0; position: relative; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
}

.section-head {
  max-width: 640px;
  margin: 0 0 3rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-head p { font-size: 1.05rem; }

/* ghost folio numerals — the recurring editorial motif */
.folio {
  position: absolute;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  color: var(--forest-950);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  top: -0.1em;
  left: -0.02em;
}
.folio-light { color: #fdfaf3; opacity: 0.07; }

/* pull-quote breakout */
.pull-quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.4;
  color: var(--forest-900);
  max-width: 780px;
  padding-left: 26px;
  border-left: 3px solid var(--rust-600);
  margin: 0;
}
.pull-quote.on-dark { color: #fdfaf3; border-left-color: var(--sand-400); }

/* subtle print-grain texture for dark sections */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-s);
  font-family: "Karla", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--whatsapp);
  color: #fdfaf3;
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover { background: var(--whatsapp-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(246, 242, 232, 0.55);
  color: inherit;
}
.btn-outline:hover { background: rgba(246, 242, 232, 0.12); }

.btn-dark {
  background: var(--forest-900);
  color: var(--bg);
}
.btn-dark:hover { background: var(--forest-950); }

.btn svg { width: 18px; height: 18px; flex: none; }

/* text link with underline — used instead of boxy secondary buttons */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.text-link svg { width: 15px; height: 15px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; max-width: 1360px; }
.header-right { display: flex; align-items: center; gap: 28px; }
.brand { white-space: nowrap; }

.site-header.scrolled {
  background: rgba(246, 242, 232, 0.96);
  backdrop-filter: blur(6px);
  padding: 13px 0;
  box-shadow: var(--shadow-tight);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fdfaf3;
}
.site-header.scrolled .brand { color: var(--forest-950); }
.brand svg { width: 26px; height: 26px; flex: none; }
.brand-sub {
  display: block;
  font-family: "Karla", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-300);
  margin-top: 2px;
}
.site-header.scrolled .brand-sub { color: var(--earth-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 250, 243, 0.9);
  transition: color 0.2s ease;
}
.site-header.scrolled .nav-links a { color: var(--forest-800); }
.nav-links a:hover { color: var(--sand-300); }
.site-header.scrolled .nav-links a:hover { color: var(--rust-600); }

.nav-cta { display: none; }
@media (min-width: 1220px) { .nav-cta { display: inline-flex; } }

.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; color: #fdfaf3; }
.site-header.scrolled .nav-toggle svg { color: var(--forest-950); }

@media (max-width: 1219px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--panel);
    padding: 14px 28px 22px;
    box-shadow: var(--shadow-soft);
  }
  .site-header.nav-open .nav-links a {
    color: var(--forest-900);
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .nav-links li.nav-cta-mobile {
    width: 100%;
    border-bottom: none;
  }
  .site-header.nav-open .nav-links li.nav-cta-mobile a {
    border-bottom: none;
    padding: 0;
  }
  .site-header.nav-open .nav-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 12px;
  }
  .site-header.nav-open .nav-cta-mobile .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  color: #fdfaf3;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 42%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 26, 18, 0.5) 0%, rgba(22, 26, 18, 0.2) 32%, rgba(20, 24, 16, 0.78) 100%);
}
.hero-kicker {
  position: absolute;
  top: 138px;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-kicker .wrap {
  font-family: "Karla", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 250, 243, 0.75);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 170px;
  max-width: 900px;
}
.hero h1 {
  color: #fdfaf3;
  margin-bottom: 0.3em;
}
.hero h1 .h1-main {
  display: block;
  font-size: clamp(3.4rem, 11vw, 8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.hero h1 .h1-sub {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--sand-300);
  margin-top: 0.1em;
}
.hero-lede {
  color: rgba(253, 250, 243, 0.88);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-actions .text-link { color: #fdfaf3; }

.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(253, 250, 243, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hero-scroll .line { width: 1px; height: 34px; background: rgba(253, 250, 243, 0.5); animation: pulse-line 2s ease-in-out infinite; }
@keyframes pulse-line { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- intro / about ---------- */
.about { background: var(--bg); overflow: hidden; padding: 0; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; } }

.about-text-col {
  position: relative;
  padding: 100px clamp(24px, 6vw, 80px) 100px clamp(24px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) { .about-text-col { padding: 64px 24px; } }

.about-copy p { font-size: 1.03rem; position: relative; z-index: 1; }
.about-copy .eyebrow, .about-copy h2 { position: relative; z-index: 1; }

.about-stats {
  display: flex;
  margin-top: 2.2em;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.stat { flex: 1; padding-right: 20px; }
.stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--forest-900);
}
.stat span {
  font-size: 0.72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-media-col { position: relative; overflow: hidden; min-height: 340px; }
.about-media-col img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .about-media-col { height: 420px; } }

/* ---------- journey / steps ---------- */
.journey { background: var(--forest-950); color: var(--sand-300); overflow: hidden; }
.journey .section-head h2 { color: #fdfaf3; }
.journey .section-head p { color: rgba(221, 208, 171, 0.8); }
.journey .eyebrow { color: var(--sand-300); }
.journey .eyebrow::before { background: var(--sand-300); }

.steps-editorial {
  margin-top: 10px;
  border-top: 1px solid rgba(221, 208, 171, 0.18);
  position: relative;
  z-index: 1;
}
.step-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid rgba(221, 208, 171, 0.18);
}
@media (max-width: 640px) { .step-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 26px 0; } }

.step-num {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 2.6rem;
  color: rgba(221, 208, 171, 0.32);
}
@media (max-width: 640px) { .step-num { font-size: 1.7rem; } }

.step-body h3 {
  color: #fdfaf3;
  font-size: 1.3rem;
  margin-bottom: 0.35em;
}
.step-body p {
  color: rgba(221, 208, 171, 0.8);
  font-size: 1rem;
  max-width: 620px;
  margin: 0;
}
.step-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sand-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(221, 208, 171, 0.4);
  padding-bottom: 1px;
}
.step-map-link:hover { color: #fdfaf3; border-color: #fdfaf3; }
.step-map-link svg { width: 15px; height: 15px; flex: none; }

/* ---------- service / trips ---------- */
.service { background: var(--bg-alt); }

.trip-list {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.trip-row {
  display: grid;
  grid-template-columns: 90px 1.3fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .trip-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; } }

.trip-num {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--sand-400);
  padding-top: 2px;
}
.trip-row h3 {
  font-size: 1.35rem;
  margin: 0 0 0.3em;
}
.trip-time {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust-600);
  margin-bottom: 0.6em;
}
.trip-row p { margin: 0; font-size: 0.98rem; }
.trip-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
@media (min-width: 781px) { .trip-includes { padding-top: 0.15em; } }
.trip-includes li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.trip-includes li:last-child { margin-bottom: 0; }
.trip-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--forest-600);
}

.service-details {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
}
@media (max-width: 780px) { .service-details { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .service-details { grid-template-columns: 1fr; } }

.service-detail { border-top: 1px solid var(--line); padding-top: 14px; }
.service-detail h4 {
  font-family: "Karla", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-600);
  margin: 0 0 0.5em;
}
.service-detail p { margin: 0; font-size: 0.95rem; }

.service-note {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 22px 0;
}
.service-note p { margin: 0; font-size: 1.05rem; color: var(--ink); font-family: "Fraunces", serif; }
.service-note strong { color: var(--forest-900); }

/* ---------- wildlife ---------- */
.wildlife { background: var(--bg); }

.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 860px) { .wildlife-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wildlife-grid { grid-template-columns: 1fr; } }

.wildlife-tile {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.wildlife-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.wildlife-tile:hover img { transform: scale(1.05); }
.wildlife-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,16,0) 45%, rgba(18,22,14,0.85) 100%);
}
.wildlife-tile .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--sand-300);
}
.wildlife-tile .info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px;
  color: #fdfaf3;
}
.wildlife-tile h3 { color: #fdfaf3; font-size: 1.15rem; margin-bottom: 0.2em; }
.wildlife-tile p { color: rgba(253, 250, 243, 0.82); font-size: 0.85rem; margin: 0; }

.also-look {
  margin-top: 56px;
  padding: 0 clamp(20px, 4vw, 0);
}
.also-look h3 {
  font-size: 1.1rem;
  margin-bottom: 1.1em;
}
.also-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.95rem;
}
.also-list li {
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.also-list li strong { color: var(--forest-900); font-weight: 700; }

/* ---------- nature, unscripted ---------- */
.unscripted { background: var(--bg-alt); }
.unscripted .section-head { max-width: 780px; }
.unscripted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 20px;
}
@media (max-width: 700px) { .unscripted-grid { grid-template-columns: 1fr; } }

.unscripted-grid figure { margin: 0; position: relative; overflow: hidden; }
.unscripted-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.unscripted-grid figcaption {
  padding: 12px 2px 0;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink-faint);
  font-style: italic;
}

/* ---------- sighting story (videos) ---------- */
.story { background: var(--forest-900); color: var(--sand-300); overflow: hidden; }
.story .eyebrow { color: var(--sand-300); }
.story .eyebrow::before { background: var(--sand-300); }
.story .section-head h2 { color: #fdfaf3; }
.story .section-head p { color: rgba(221, 208, 171, 0.82); }

.filmstrip-wrap {
  position: relative;
  margin-top: 44px;
}

.filmstrip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 28px 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filmstrip::-webkit-scrollbar { display: none; height: 0; }

.filmstrip-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(253, 250, 243, 0.3);
  background: rgba(28, 35, 26, 0.55);
  backdrop-filter: blur(3px);
  color: #fdfaf3;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.filmstrip-nav:hover { background: rgba(28, 35, 26, 0.85); }
.filmstrip-nav svg { width: 19px; height: 19px; }
.filmstrip-nav.prev { left: 8px; }
.filmstrip-nav.next { right: 8px; }
@media (min-width: 780px) {
  .filmstrip-nav.prev { left: 16px; }
  .filmstrip-nav.next { right: 16px; }
}
@media (max-width: 560px) { .filmstrip-nav { display: none; } }

.video-card {
  flex: 0 0 auto;
  width: clamp(190px, 24vw, 250px);
  border: 1px solid rgba(221, 208, 171, 0.16);
}
.video-frame {
  position: relative;
  line-height: 0;
}
.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #10140d;
  display: block;
  cursor: pointer;
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 13, 0.32) 0%, transparent 22%, transparent 78%, rgba(16, 20, 13, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(253, 250, 243, 0.92);
  box-shadow: 0 6px 18px rgba(16, 20, 13, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.07);
}
.play-btn svg {
  width: 18px;
  height: 18px;
  color: var(--forest-950);
  margin-left: 3px;
}
.video-frame.is-playing .play-btn {
  display: none;
}

.mute-btn {
  position: absolute;
  right: 10px;
  bottom: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 20, 13, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.mute-btn:hover { background: rgba(16, 20, 13, 0.75); }
.mute-btn svg { width: 15px; height: 15px; color: #fdfaf3; }
.video-frame.is-playing .mute-btn,
.mute-btn.always { display: flex; }

.expand-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 20, 13, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: background 0.2s ease;
}
.expand-btn:hover { background: rgba(16, 20, 13, 0.75); }
.expand-btn svg { width: 14px; height: 14px; color: #fdfaf3; }

.progress-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(253, 250, 243, 0.2);
  z-index: 2;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--sand-300);
}
.video-card .cap {
  padding: 14px 16px 16px;
}
.video-card .cap .step-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-400);
  font-weight: 700;
}
.video-card .cap p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: rgba(221, 208, 171, 0.85);
}

/* ---------- gallery ---------- */
.gallery { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-grid .gallery-extra {
  display: none;
}
.gallery-grid.expanded .gallery-extra {
  display: block;
}

.gallery-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 13px 26px;
  font-family: "Karla", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-900);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.gallery-toggle:hover { background: var(--panel); border-color: var(--earth-600); }
.gallery-toggle svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.gallery-toggle .label-less { display: none; }
.gallery-toggle.is-expanded .label-more { display: none; }
.gallery-toggle.is-expanded .label-less { display: inline; }
.gallery-toggle.is-expanded svg { transform: rotate(180deg); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(16, 20, 13, 0.92);
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 82vh;
  object-fit: contain;
}
.lightbox-video-frame {
  width: auto;
  height: min(82vh, 780px);
  max-width: 90vw;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}
.lightbox-video-frame video {
  height: 100%;
  width: 100%;
}
.lightbox-video-frame .play-btn {
  width: 68px;
  height: 68px;
}
.lightbox-video-frame .play-btn svg { width: 24px; height: 24px; }
.lightbox .lb-cap {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: var(--sand-300);
  font-size: 0.9rem;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(253, 250, 243, 0.08);
  border: 1px solid rgba(253, 250, 243, 0.25);
  color: #fdfaf3;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lb-close svg, .lb-prev svg, .lb-next svg { width: 20px; height: 20px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 10px; right: 10px; }
}

/* ---------- reviews ---------- */
.reviews { background: var(--bg); text-align: center; }

/* ---------- contact ---------- */
.contact {
  background: var(--forest-950);
  color: var(--sand-300);
  text-align: center;
  overflow: hidden;
}
.contact .eyebrow { color: var(--sand-300); }
.contact .eyebrow::before { display: none; }
.contact h2 { color: #fdfaf3; font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 760px; margin: 0 auto 0.5em; }
.contact p.lede {
  max-width: 560px;
  margin: 0 auto 2em;
  color: rgba(221, 208, 171, 0.85);
  font-size: 1.05rem;
}
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.contact-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(221, 208, 171, 0.18);
  position: relative;
  z-index: 1;
}
.contact-meta div { text-align: left; min-width: 190px; }
.contact-meta span.label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-400);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-meta span.val { color: #fdfaf3; font-size: 0.98rem; }

.pickup-map {
  margin-top: 10px;
  width: 200px;
  max-width: 100%;
  height: 100px;
  overflow: hidden;
  opacity: 0.55;
  filter: grayscale(85%) contrast(0.9);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.pickup-map:hover,
.pickup-map:focus-within {
  opacity: 1;
  filter: grayscale(15%) contrast(1);
}
.pickup-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- footer ---------- */
footer {
  background: var(--forest-950);
  color: rgba(221, 208, 171, 0.6);
  padding: 26px 0 34px;
  text-align: center;
  font-size: 0.82rem;
  border-top: 1px solid rgba(221, 208, 171, 0.12);
}
footer a { color: rgba(221, 208, 171, 0.85); text-decoration: none; }
footer a:hover { color: var(--sand-300); }

/* ---------- floating whatsapp ---------- */
.fab-whatsapp {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(20, 24, 16, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.fab-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.fab-whatsapp svg { width: 28px; height: 28px; color: #fdfaf3; }

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 94px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow-tight);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--bg-alt); }
.back-to-top svg { width: 18px; height: 18px; color: var(--forest-800); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
