/* ============================================================
   AZTEC SAFARIS & TOUR – SMC LTD
   style.css  |  Production v2.0
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --ink:        #0b1a0c;
  --forest:     #162d18;
  --forest2:    #1f3d22;
  --moss:       #2e5c33;
  --sage:       #4d8a54;
  --cream:      #faf6ee;
  --parch:      #f0e8d5;
  --warm:       #e4d8c0;
  --gold:       #c4882e;
  --gold2:      #dfa040;
  --goldlt:     #f0c060;
  --wa:         #25d366;
  --white:      #ffffff;
  --muted:      #6b7a6d;
  --border:     rgba(11,26,12,.1);
  --nav:        68px;
  --ease:       cubic-bezier(.16,1,.3,1);
  --ease2:      cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.serif { font-family: 'Playfair Display', serif; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
p  { line-height: 1.78; color: var(--muted); font-weight: 300; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap    { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap-sm { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

/* ── EYEBROW LABEL ────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 16px;
}
.label::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal, .reveal-l, .reveal-r, .reveal-up {
  opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal    { transform: translateY(40px); }
.reveal-l  { transform: translateX(-50px); }
.reveal-r  { transform: translateX(50px); }
.reveal-up { transform: translateY(60px); }
.reveal.in, .reveal-l.in, .reveal-r.in, .reveal-up.in {
  opacity: 1; transform: none;
}
/* stagger */
.stagger > *:nth-child(1) { transition-delay: .0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .3s; }
.stagger > *:nth-child(5) { transition-delay: .4s; }
.stagger > *:nth-child(6) { transition-delay: .5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  transition: background .5s var(--ease), box-shadow .5s;
  background: transparent;
}
#topbar.solid {
  background: var(--forest);
  box-shadow: 0 2px 32px rgba(0,0,0,.35);
}
#topbar.solid .nav-links a { color: rgba(255,255,255,.75); }

.logo-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--goldlt); font-weight: 700; letter-spacing: .03em;
}
.logo-sub {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .74rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8); position: relative; padding-bottom: 3px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold2);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--goldlt); }
.nav-links a:hover::after { width: 100%; }

.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: white;
  padding: 10px 18px; border-radius: 100px;
  font-size: .76rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.nav-wa svg { width: 17px; height: 17px; fill: white; }

.ham {
  display: none; flex-direction: column; gap: 5px; padding: 7px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 6px;
}
.ham span { width: 20px; height: 1.5px; background: rgba(255,255,255,.85); transition: .3s; }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* Mobile menu */
#mob {
  display: none; position: fixed; inset: 0; top: var(--nav);
  background: var(--ink); z-index: 290;
  padding: 36px 28px; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
#mob.on { display: flex; }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mob-link:hover { color: var(--goldlt); }
.mob-wa {
  margin-top: 28px; background: var(--wa); color: white;
  padding: 18px; border-radius: 14px; text-align: center;
  font-size: 1.05rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.mob-wa svg { width: 22px; height: 22px; fill: white; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; overflow: hidden;
}

/* Parallax image layer */
.hero-parallax {
  position: absolute; inset: -10%; z-index: 0;
  background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=2200&q=90') center/cover no-repeat;
  animation: heroZoom 14s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.02); } }

/* Gradient veil */
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(115deg, rgba(8,20,10,.94) 0%, rgba(8,20,10,.62) 45%, rgba(8,20,10,.3) 100%),
    linear-gradient(to top, var(--cream) 0%, transparent 25%);
}

/* Animated particles overlay */
#particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

/* Hero content */
.hero-body {
  position: relative; z-index: 3;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav) + 60px) 60px 220px;
  max-width: 900px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  padding: 9px 18px; border-radius: 100px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--goldlt); margin-bottom: 32px; width: fit-content;
  animation: fadeUp .7s .15s both;
}
.hero-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }

.hero-h1 {
  color: white; font-weight: 400; margin-bottom: 22px;
  animation: fadeUp .9s .3s both;
}
.hero-h1 .line2 { display: block; }
.hero-h1 em { font-style: italic; color: var(--goldlt); }

.hero-sub {
  color: rgba(255,255,255,.68); font-size: 1.08rem; font-weight: 300;
  max-width: 520px; line-height: 1.82; margin-bottom: 44px;
  animation: fadeUp .9s .48s both;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .9s .64s both;
}
/* Big WhatsApp CTA */
.cta-wa-hero {
  display: flex; align-items: center; gap: 12px;
  background: var(--wa); color: white;
  padding: 18px 30px; border-radius: 14px;
  font-size: .96rem; font-weight: 600;
  box-shadow: 0 8px 40px rgba(37,211,102,.45);
  transition: transform .25s var(--ease2), box-shadow .25s;
}
.cta-wa-hero:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 48px rgba(37,211,102,.55); }
.cta-wa-hero svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.cta-wa-sub { font-size: .72rem; opacity: .82; font-weight: 400; display: block; margin-top: 1px; }

.cta-plan {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold2); color: var(--ink);
  padding: 17px 26px; border-radius: 12px;
  font-size: .86rem; font-weight: 600;
  transition: all .25s var(--ease2);
}
.cta-plan:hover { background: var(--goldlt); transform: translateY(-2px); }

.cta-ghost {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.32); color: white;
  padding: 17px 26px; border-radius: 12px;
  font-size: .86rem; font-weight: 500;
  transition: all .2s;
}
.cta-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

/* hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 200px; left: 60px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.4); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll::before {
  content: ''; width: 1px; height: 48px; background: rgba(255,255,255,.25);
  animation: scrollLine 2s 2s ease-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats glass bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(10,22,12,.72); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hstat {
  padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
  transition: background .25s;
}
.hstat:last-child { border: none; }
.hstat:hover { background: rgba(255,255,255,.04); }
.hstat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 700; color: var(--goldlt);
  line-height: 1; display: block;
}
.hstat-l { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; display: block; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ============================================================
   QUICK CONTACT STRIP
   ============================================================ */
#quick {
  background: var(--gold2);
  position: relative; overflow: hidden;
}
#quick::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,.04) 0px, rgba(0,0,0,.04) 1px, transparent 1px, transparent 60px);
}
.quick-inner { display: flex; justify-content: center; flex-wrap: wrap; position: relative; }
.qitem {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 24px; border-right: 1px solid rgba(0,0,0,.08);
  font-size: .86rem; font-weight: 500; color: var(--ink);
  transition: background .2s; cursor: pointer;
}
.qitem:last-child { border: none; }
.qitem:hover { background: rgba(0,0,0,.06); }
.qitem .qi { font-size: 1.1rem; }
.qitem strong { display: block; font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; opacity: .55; margin-bottom: 1px; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--cream); }

.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

/* image collage */
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.ai { background-size: cover; background-position: center; border-radius: 14px; overflow: hidden; }
.ai-a { grid-row: 1/3; min-height: 480px; background-image: url('https://images.unsplash.com/photo-1597945161640-5f4e26b91e86?w=700&q=85'); }
.ai-b { min-height: 218px; background-image: url('https://images.unsplash.com/photo-1474511320723-9a56873867b5?w=450&q=80'); }
.ai-c { min-height: 248px; background-image: url('https://images.unsplash.com/photo-1551963831-b3b1ca40c98e?w=450&q=80'); }

/* hover zoom on collage images */
.ai { transition: transform .5s var(--ease), box-shadow .5s; }
.ai:hover { transform: scale(1.025); box-shadow: 0 16px 48px rgba(0,0,0,.18); z-index: 1; }

.yr-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--gold2); color: var(--ink);
  padding: 18px 22px; border-radius: 14px; text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.yr-badge strong { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 700; display: block; line-height: 1; }
.yr-badge span   { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }

.about-text h2         { color: var(--forest); margin-bottom: 18px; }
.about-text h2 em      { color: var(--gold); font-style: italic; }
.about-text > p        { margin-bottom: 14px; }

.checks { display: flex; flex-direction: column; gap: 13px; margin: 28px 0 36px; }
.check  { display: flex; gap: 12px; align-items: flex-start; }
.ck {
  width: 22px; height: 22px; background: var(--forest); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: .6rem; color: var(--goldlt);
}
.check p { font-size: .9rem; margin: 0; }

.btn-forest {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: white;
  padding: 14px 28px; border-radius: 10px;
  font-size: .82rem; font-weight: 600;
  transition: all .25s var(--ease2);
}
.btn-forest:hover { background: var(--moss); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ============================================================
   EXPERIENCE CARDS
   ============================================================ */
#experiences { background: var(--parch); }

.exp-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 52px; }
.exp-intro h2 { color: var(--forest); }

.exp-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 370px 310px;
  gap: 14px;
}
.ecard { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.ecard:first-child { grid-row: 1/3; }

.eimg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
}
.ecard:hover .eimg { transform: scale(1.07); }

.eveil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,12,4,.92) 0%, rgba(4,12,4,.12) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  transition: background .4s;
}
.ecard:hover .eveil { background: linear-gradient(to top, rgba(4,12,4,.95) 0%, rgba(4,12,4,.3) 55%, transparent 100%); }

.ecat    { font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--goldlt); margin-bottom: 8px; font-weight: 600; }
.ename   { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: white; line-height: 1.15; margin-bottom: 0; }
.ecard:first-child .ename { font-size: 2.2rem; }

.emeta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; margin-top: 12px; border-top: 1px solid rgba(255,255,255,.12);
  transform: translateY(8px); opacity: 0;
  transition: all .35s var(--ease);
}
.ecard:hover .emeta { transform: none; opacity: 1; }
.eprice           { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--goldlt); }
.eprice small     { font-size: .68rem; font-family: 'DM Sans', sans-serif; opacity: .6; }

/* WhatsApp book pill */
.ewa-book {
  display: flex; align-items: center; gap: 6px;
  background: var(--wa); color: white;
  padding: 9px 14px; border-radius: 100px;
  font-size: .7rem; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.ewa-book:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(37,211,102,.4); }
.ewa-book svg { width: 13px; height: 13px; fill: white; }

/* tags */
.etag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  color: white; font-size: .66rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
#destinations { background: var(--cream); }

.dest-head { text-align: center; margin-bottom: 52px; }
.dest-head h2 { color: var(--forest); }

.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.dcard { position: relative; height: 420px; border-radius: 18px; overflow: hidden; cursor: pointer; display: block; }
.dimg  {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .65s var(--ease);
}
.dcard:hover .dimg { transform: scale(1.08); }

.dveil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,12,4,.92) 0%, rgba(4,12,4,.25) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.dcountry {
  font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 400; color: white; margin-bottom: 6px;
}
.ddesc { font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }
.dlink {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--goldlt); font-weight: 600;
  transform: translateX(-6px); opacity: 0;
  transition: all .3s var(--ease);
}
.dcard:hover .dlink { transform: none; opacity: 1; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why { background: var(--forest); position: relative; overflow: hidden; }

.why-bg-circle {
  position: absolute; right: -15%; top: -30%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,136,46,.1), transparent 70%);
  pointer-events: none;
}
.why-bg-circle2 {
  position: absolute; left: -10%; bottom: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.06), transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }

.why-left h2 { color: white; margin-bottom: 18px; }
.why-left p  { color: rgba(255,255,255,.48); font-size: .94rem; margin-bottom: 36px; }

.why-award {
  display: flex; gap: 14px; align-items: center;
  padding: 20px 22px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
}
.award-icon { font-size: 1.8rem; }
.award-text strong { color: var(--goldlt); font-size: .84rem; display: block; margin-bottom: 2px; }
.award-text span   { font-size: .73rem; color: rgba(255,255,255,.4); }

.why-right { display: flex; flex-direction: column; }

.why-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s;
  position: relative; overflow: hidden;
}
.why-row::before {
  content: ''; position: absolute; left: -28px; top: 0; bottom: 0;
  width: 3px; background: var(--gold2);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s var(--ease);
}
.why-row:hover::before { transform: scaleY(1); }
.why-row:first-child { padding-top: 0; }
.why-row:last-child  { border: none; padding-bottom: 0; }

.why-ico {
  font-size: 1.3rem; width: 46px; height: 46px;
  background: rgba(200,136,46,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .25s;
}
.why-row:hover .why-ico { background: rgba(200,136,46,.28); }
.why-row h4 { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600; color: white; margin-bottom: 5px; }
.why-row p  { font-size: .82rem; color: rgba(255,255,255,.42); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--parch); }

.test-head { text-align: center; margin-bottom: 56px; }
.test-head h2 { color: var(--forest); }

/* Horizontal scroll on mobile, grid on desktop */
.test-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.tcard {
  background: white; padding: 36px; border-radius: 18px;
  border: 1px solid var(--warm);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.tcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.tcard:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.tcard:hover::before { transform: scaleX(1); }

.tmark { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: .8; color: var(--gold2); opacity: .2; }
.tstars { color: var(--gold2); font-size: .88rem; margin-bottom: 16px; }
.ttext {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.08rem;
  font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 28px;
}
.tauthor { display: flex; gap: 13px; align-items: center; }
.tav {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--goldlt); flex-shrink: 0;
}
.tname  { font-size: .87rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.tplace { font-size: .74rem; color: var(--muted); }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--cream); overflow: hidden; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  grid-template-rows: 270px 220px;
  gap: 10px; margin-top: 40px;
}
.gbox {
  border-radius: 14px; overflow: hidden;
  position: relative; background-size: cover; background-position: center;
  cursor: pointer;
}
.gbox::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .4s;
}
.gbox:hover::after { background: rgba(0,0,0,.22); }

.gcap {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: linear-gradient(to top, rgba(4,12,4,.8), transparent);
  padding: 24px 14px 10px;
  font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: white;
  transform: translateY(100%); transition: transform .35s var(--ease);
}
.gbox:hover .gcap { transform: none; }

/* grid spans */
.g1 { grid-row: 1/3; background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=700&q=85'); }
.g2 { background-image: url('https://images.unsplash.com/photo-1597945161640-5f4e26b91e86?w=500&q=80'); }
.g3 { background-image: url('https://images.unsplash.com/photo-1530026405186-ed1f139313f7?w=500&q=80'); }
.g4 { grid-row: 1/3; background-image: url('https://images.unsplash.com/photo-1474511320723-9a56873867b5?w=700&q=85'); }
.g5 { background-image: url('https://images.unsplash.com/photo-1551963831-b3b1ca40c98e?w=500&q=80'); }
.g6 { background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=500&q=80'); }

/* Gallery lightbox overlay */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.9); align-items: center; justify-content: center;
  cursor: pointer;
}
#lightbox.on { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 0 80px rgba(0,0,0,.8); }
#lb-close { position: absolute; top: 28px; right: 32px; color: white; font-size: 2rem; cursor: pointer; }

/* ============================================================
   BOOKING
   ============================================================ */
#booking { background: var(--forest); position: relative; overflow: hidden; }
#booking::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1547036967-23d11aacaee0?w=1800&q=50') center/cover;
  opacity: .08;
}
.bk-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.bk-left h2 { color: white; margin-bottom: 16px; }
.bk-left p  { color: rgba(255,255,255,.5); font-size: .93rem; margin-bottom: 32px; }

.bk-wa {
  display: flex; align-items: center; gap: 12px;
  background: var(--wa); color: white;
  padding: 18px 26px; border-radius: 14px;
  font-size: .94rem; font-weight: 600;
  box-shadow: 0 8px 36px rgba(37,211,102,.42);
  transition: all .25s var(--ease2); margin-bottom: 14px; width: fit-content;
}
.bk-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(37,211,102,.5); }
.bk-wa svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.bk-wa-note { font-size: .74rem; opacity: .8; font-weight: 400; display: block; }

.bk-promise { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.bkp { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: rgba(255,255,255,.55); }
.bkp span:first-child { color: var(--goldlt); }

/* booking form card */
.bk-form-wrap {
  background: var(--cream); border-radius: 18px; padding: 38px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.bk-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--forest); margin-bottom: 26px; }

.fg          { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label    { font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--forest); }
.fg input,
.fg select,
.fg textarea {
  border: 1.5px solid var(--warm); border-radius: 8px;
  padding: 12px 14px; font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--ink); background: white; outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,136,46,.12); }
.fg textarea { min-height: 80px; resize: vertical; }

.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-submit {
  width: 100%; padding: 16px; border-radius: 10px;
  background: var(--forest); color: white;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s, transform .2s; margin-top: 6px;
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.btn-submit:hover { background: var(--moss); transform: translateY(-1px); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--cream); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 21px 0; font-size: .94rem; font-weight: 400; color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--forest); }
.fqico {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; transition: all .28s var(--ease); color: var(--gold);
}
.faq-item.open .fqico { background: var(--forest); border-color: var(--forest); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 20px; font-size: .87rem; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
  background: var(--gold2); padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
#newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.03) 0px, rgba(0,0,0,.03) 1px, transparent 1px, transparent 8px);
}
#newsletter h2 { color: var(--ink); margin-bottom: 10px; position: relative; }
#newsletter p  { color: rgba(11,26,12,.6); font-size: .92rem; margin-bottom: 36px; position: relative; }

.nl { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; position: relative; }
.nl input {
  flex: 1; padding: 15px 18px; border: none; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--ink);
  background: rgba(255,255,255,.88); outline: none;
}
.nl button {
  padding: 15px 22px; border-radius: 10px;
  background: var(--forest); color: white;
  font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.nl button:hover { background: var(--ink); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--parch); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.ct-h h2     { color: var(--forest); margin-bottom: 14px; }
.ct-h > p    { font-size: .9rem; margin-bottom: 8px; }

.ct-wa-big {
  display: flex; align-items: center; gap: 12px;
  background: var(--wa); color: white;
  padding: 18px 24px; border-radius: 14px;
  font-size: .92rem; font-weight: 600;
  box-shadow: 0 6px 28px rgba(37,211,102,.38);
  transition: all .25s var(--ease2); margin-top: 20px; width: fit-content;
}
.ct-wa-big:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,.48); }
.ct-wa-big svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

.ct-list  { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.ct-row   { display: flex; gap: 14px; align-items: flex-start; }
.ct-ico   {
  width: 42px; height: 42px; border: 1.5px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; background: white;
}
.ct-lbl { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--gold); display: block; margin-bottom: 2px; }
.ct-val { font-size: .88rem; color: var(--ink); }

.ct-hours { margin-top: 22px; background: white; border-radius: 14px; padding: 22px; border: 1px solid var(--border); }
.ct-hours h4 { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--forest); margin-bottom: 14px; }
.hr-row { display: flex; justify-content: space-between; font-size: .82rem; padding: 7px 0; border-bottom: 1px solid var(--parch); color: var(--muted); }
.hr-row:last-child { border: none; }
.hr-row strong { color: var(--ink); font-weight: 500; }

.ct-form-wrap { background: white; padding: 38px; border-radius: 18px; box-shadow: 0 4px 48px rgba(0,0,0,.08); }
.ct-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--forest); margin-bottom: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--ink); padding: 72px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 54px; }
.ft-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--goldlt); margin-bottom: 4px; }
.ft-sub  { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px; display: block; }
.ft-p    { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.78; }
.ft-soc  { display: flex; gap: 6px; margin-top: 22px; }
.fs {
  width: 34px; height: 34px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.4);
  transition: all .2s;
}
.fs:hover { background: var(--gold2); border-color: var(--gold2); color: var(--ink); }
footer h5 { font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--goldlt); margin-bottom: 18px; }
.ft-links { display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: .8rem; color: rgba(255,255,255,.38); transition: color .2s; }
.ft-links a:hover { color: var(--goldlt); }
.ft-bar {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: .7rem; color: rgba(255,255,255,.2);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 200; }
.wa-float-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: white;
  padding: 14px 20px; border-radius: 100px;
  font-size: .86rem; font-weight: 600;
  box-shadow: 0 8px 36px rgba(37,211,102,.5);
  transition: all .25s var(--ease2);
}
.wa-float-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 48px rgba(37,211,102,.6); }
.wa-float-btn svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.wa-text    { font-size: .82rem; }
.wa-ring {
  position: absolute; inset: -8px; border-radius: 100px;
  border: 2px solid rgba(37,211,102,.4);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(.88); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}
.wa-label-float {
  position: absolute; right: calc(100% + 12px); bottom: 0;
  background: white; color: var(--ink);
  font-size: .78rem; font-weight: 500;
  padding: 8px 14px; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  white-space: nowrap;
  opacity: 0; transform: translateX(6px);
  transition: all .25s;
  pointer-events: none;
}
.wa-float:hover .wa-label-float { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-wa { display: none; }
  .ham { display: flex; }
  .about-grid, .bk-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ecard:first-child { grid-column: 1/3; grid-row: auto; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .g1, .g4 { grid-row: auto; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .hero-body { padding: calc(var(--nav) + 48px) 32px 220px; }
  .hero-scroll { left: 32px; }
  .test-track { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .exp-grid, .exp-intro, .exp-grid .ecard:first-child { grid-column: auto; grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .g1, .g4 { grid-row: auto; min-height: 200px; }
  .gbox { min-height: 180px; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bar  { flex-direction: column; gap: 8px; text-align: center; }
  .fr      { grid-template-columns: 1fr; }
  .nl      { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .wa-float-btn .wa-text { display: none; }
  .hero-body { padding-bottom: 260px; }
}
