/* ============ Kareri Hikers — redesign ============ */
:root {
  /* palette drawn from the logo: blue mountains, golden sun, black disc */
  --green: #1b75bc;
  --green-dark: #135d99;
  --forest: #0a141d;
  --forest-2: #142536;
  --cream: #f4f7fa;
  --paper: #ffffff;
  --ink: #16242f;
  --muted: #5a6b78;
  --line: #dde4ea;
  --amber: #f2c230;
  --gold: #f5cf5a;
  --radius: 18px;
  --shadow: 0 10px 35px rgba(10, 20, 29, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 20, 29, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 10px 0 14px; }
.section-head p { color: var(--muted); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s ease;
  font-family: var(--font-body);
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(27,117,188,.35); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-2); transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--ink); background: var(--paper); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-whatsapp { background: #22c15e; color: #fff; }
.btn-whatsapp:hover { background: #18a04c; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(34,193,94,.35); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background .3s ease, box-shadow .3s ease;
  padding: 18px 0;
}
.site-header.scrolled { background: rgba(18,35,24,.92); backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(0,0,0,.25); padding: 12px 0; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; color: #fff; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none;
  background: #000; box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1; }
.brand-tag { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: .75; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,.85); font-weight: 500; font-size: 0.93rem;
  padding: 9px 15px; border-radius: 999px; transition: all .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
.main-nav a.active { color: #fff; background: rgba(255,255,255,.16); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 20px; font-size: 0.88rem; }
.cart-link {
  position: relative; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: #fff; border: 1.5px solid rgba(255,255,255,.35);
  transition: background .2s, border-color .2s;
}
.cart-link:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.cart-link svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--amber); color: var(--forest);
  font-size: .68rem; font-weight: 700; display: grid; place-items: center;
}
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; }
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,13,20,.55) 0%, rgba(6,13,20,.25) 45%, rgba(6,13,20,.78) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 140px 0 90px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
}
.hero-kicker svg { width: 15px; height: 15px; flex: none; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 14ch; margin: 26px 0 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { max-width: 54ch; font-size: 1.08rem; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats {
  display: flex; gap: clamp(24px, 5vw, 64px); margin-top: 64px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.22); padding-top: 30px;
}
.hero-stats .stat strong { display: block; font-family: var(--font-display); font-size: 2rem; }
.hero-stats .stat span { font-size: 0.85rem; color: rgba(255,255,255,.75); }

/* page hero (inner pages) */
.page-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; color: #fff; }
.page-hero.page-hero-sm { min-height: 34vh; }
.page-hero .hero-inner { padding: 150px 0 56px; }
.page-hero.page-hero-sm .hero-inner { padding: 130px 0 44px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 20ch; margin: 14px 0 8px; }
.breadcrumbs { font-size: 0.86rem; color: rgba(255,255,255,.8); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }
.tour-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-media { position: relative; aspect-ratio: 4 / 2.9; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour-card:hover .tour-media img { transform: scale(1.07); }
.tour-badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; gap: 8px; }
.badge {
  padding: 6px 13px; border-radius: 999px; font-size: 0.74rem; font-weight: 700;
  background: rgba(255,255,255,.93); color: var(--ink); backdrop-filter: blur(4px);
}
.badge.green { background: var(--green); color: #fff; }
.tour-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-meta-row { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; }
.tour-meta-row .dotsep { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta-row svg { width: 14px; height: 14px; color: var(--green); }
.tour-card h3 { font-size: 1.28rem; }
.tour-card h3 a:hover { color: var(--green); }
.tour-desc { font-size: 0.9rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tour-foot {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.price small { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.price strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); }
.price strong span { font-size: .85rem; color: var(--muted); font-weight: 500; font-family: var(--font-body); }
.tour-foot .btn { padding: 10px 18px; font-size: 0.85rem; }
.stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 1px; }
.stars .num { color: var(--muted); font-size: 0.78rem; margin-left: 5px; letter-spacing: 0; }

/* ---------- Filters ---------- */
.filter-bar {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 38px;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--paper); font-weight: 600; font-size: 0.86rem; cursor: pointer;
  color: var(--muted); transition: all .2s; font-family: var(--font-body);
}
.pill:hover { border-color: var(--green); color: var(--green); }
.pill.active { background: var(--forest); border-color: var(--forest); color: #fff; }
.filter-search { margin-left: auto; position: relative; }
.filter-search input {
  padding: 12px 18px 12px 44px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--paper); font-size: 0.9rem; width: 250px; outline: none;
  font-family: var(--font-body); transition: border .2s;
}
.filter-search input:focus { border-color: var(--green); }
.filter-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted); }
.no-results { display: none; text-align: center; color: var(--muted); padding: 60px 0; font-size: 1.05rem; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature {
  background: var(--paper); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: transform .3s;
}
.feature:hover { transform: translateY(-5px); }
.feature-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: #e3eefb; color: var(--green); margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Destinations strip ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/3.8; box-shadow: var(--shadow); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,13,20,.82)); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; z-index: 2; color: #fff; }
.dest-info h3 { font-size: 1.25rem; }
.dest-info span { font-size: 0.82rem; opacity: .85; }

/* ---------- Dark CTA band ---------- */
.cta-band { position: relative; border-radius: 26px; overflow: hidden; color: #fff; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content:""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(7,15,23,.92) 20%, rgba(7,15,23,.55)); }
.cta-inner { position: relative; z-index: 2; padding: clamp(40px, 6vw, 80px); max-width: 600px; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 12px 0 16px; }
.cta-inner p { color: rgba(255,255,255,.85); margin-bottom: 28px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--paper); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; border: 1.5px solid transparent; transition: border .2s; }
.faq-item[open] { border-color: var(--green); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--green); font-weight: 400; transition: transform .25s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; color: var(--muted); font-size: 0.94rem; }

/* ---------- Tour detail ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr 370px; gap: 44px; align-items: start; }
.detail-main { min-width: 0; }
.meta-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px;
  background: var(--paper); border-radius: 999px; box-shadow: var(--shadow);
  font-size: 0.86rem; font-weight: 600;
}
.chip svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.chip span { color: var(--muted); font-weight: 500; }
.detail-section { margin-bottom: 52px; }
.detail-section > h2 { font-size: 1.65rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.prose { color: #3c4a40; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--green); font-weight: 600; }

/* ---------- Legal pages ---------- */
.legal-doc { max-width: 780px; margin-inline: auto; }
.legal-updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 28px; }
.legal-doc h2 { font-size: 1.35rem; margin: 36px 0 12px; color: var(--ink); }
.legal-doc h3 { font-size: 1.05rem; margin: 22px 0 10px; color: var(--ink); }
.terms-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--muted); margin: 8px 0 4px;
}
.terms-check input { margin-top: 4px; flex: none; }
.terms-check a { color: var(--green); font-weight: 600; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center;
}
.footer-legal { display: inline-flex; align-items: center; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,.75); font-size: 0.9rem; }
.footer-legal a:hover { color: #fff; }

/* itinerary */
.itinerary { display: grid; gap: 14px; }
.iti-item { background: var(--paper); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.iti-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 16px; font-weight: 600;
}
.iti-item summary::-webkit-details-marker { display: none; }
.iti-num {
  width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: #e3eefb; color: var(--green-dark); font-weight: 700; font-size: 0.82rem;
  font-family: var(--font-body);
}
.iti-item[open] .iti-num { background: var(--green); color: #fff; }
.iti-item summary::after { content: "+"; margin-left: auto; font-size: 1.4rem; color: var(--green); transition: transform .25s; }
.iti-item[open] summary::after { transform: rotate(45deg); }
.iti-body { padding: 0 24px 22px 84px; color: var(--muted); font-size: 0.93rem; }
.iti-body ul { list-style: disc; padding-left: 18px; }
.iti-body li { margin-bottom: 6px; }

/* include / exclude */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.incl-card { background: var(--paper); border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.incl-card h3 { font-size: 1.1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.incl-card ul { display: grid; gap: 10px; }
.incl-card li { display: flex; gap: 10px; font-size: 0.91rem; color: #3c4a40; }
.incl-card li::before { content: "✓"; color: var(--green); font-weight: 700; flex: none; }
.incl-card.excl li::before { content: "✕"; color: #c25555; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.gallery-grid a { border-radius: 14px; overflow: hidden; aspect-ratio: 1; display: block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-grid a:hover img { transform: scale(1.08); }

/* booking sidebar */
.book-card {
  position: sticky; top: 100px; background: var(--paper); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 30px; display: grid; gap: 14px;
}
.book-card .price-row { display: flex; align-items: baseline; gap: 8px; }
.book-card .price-row strong { font-family: var(--font-display); font-size: 2.1rem; color: var(--forest); }
.book-card .price-row span { color: var(--muted); font-size: 0.9rem; }
.book-facts { display: grid; gap: 10px; padding: 16px 0; border-block: 1px solid var(--line); }
.book-facts div { display: flex; justify-content: space-between; font-size: 0.88rem; }
.book-facts dt { color: var(--muted); }
.book-facts dd { font-weight: 600; }
.book-note { font-size: 0.78rem; color: var(--muted); text-align: center; }
.book-form { display: grid; gap: 12px; }
.book-form label { font-size: 0.82rem; font-weight: 600; display: grid; gap: 6px; }
.book-form input {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line);
  border-radius: 10px; font: inherit;
}
.book-form input:focus { border-color: var(--green); outline: none; }
.book-alert { font-size: .82rem; color: #c25555; background: #fdecea; padding: 10px 12px; border-radius: 8px; }

/* cart & checkout */
.cart-layout, .checkout-layout {
  display: grid; grid-template-columns: 1fr minmax(280px, 340px); gap: 28px; align-items: start;
}
.cart-items { display: grid; gap: 18px; }
.cart-item {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 18px;
  background: var(--paper); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
}
.cart-item-img { border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.cart-item-meta { font-size: .88rem; color: var(--muted); margin-bottom: 12px; }
.cart-item-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cart-item-form label { font-size: .8rem; font-weight: 600; display: grid; gap: 5px; }
.cart-item-form input {
  padding: 9px 10px; border: 1px solid var(--line); border-radius: 8px; font: inherit;
}
.cart-item-actions { margin-top: 10px; }
.cart-remove-form { margin-top: 6px; }
.btn-link-danger { background: none; border: none; color: #c25555; font-size: .82rem; cursor: pointer; font-weight: 600; padding: 0; }
.btn-link-danger:hover { text-decoration: underline; }
.cart-item-total { text-align: right; align-self: center; }
.cart-item-total span { display: block; font-size: .78rem; color: var(--muted); }
.cart-item-total strong { font-family: var(--font-display); font-size: 1.3rem; }
.cart-summary h3 { font-size: 1.15rem; margin-bottom: 4px; }
.summary-rows { display: grid; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; font-size: 1rem;
}
.summary-total strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--forest); }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h2 { margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 22px; }
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; font-size: .9rem; }
.alert-success { background: #e8f5e9; color: #2e7d32; }
.alert-error { background: #fdecea; color: #c25555; }
.success-icon {
  width: 72px; height: 72px; margin-inline: auto;
  border-radius: 50%; background: #22c15e; color: #fff;
  font-size: 2rem; display: grid; place-items: center; font-weight: 700;
}
.btn-sm { padding: 8px 14px; font-size: .82rem; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(5,10,15,.93);
  display: none; align-items: center; justify-content: center; padding: 4vmin;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; display: grid; place-items: center;
  transition: background .2s;
}
.lightbox button:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- About / contact ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: 22px; box-shadow: var(--shadow-lg); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.split-media .float-tag {
  position: absolute; bottom: 26px; left: -22px; background: var(--paper); padding: 18px 24px;
  border-radius: 16px; box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center;
}
.float-tag strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--green-dark); }
.float-tag span { font-size: 0.8rem; color: var(--muted); max-width: 14ch; line-height: 1.3; }
.checklist { display: grid; gap: 12px; margin-top: 24px; }
.checklist li { display: flex; gap: 12px; font-weight: 500; }
.checklist li::before { content: "✓"; width: 24px; height: 24px; flex: none; border-radius: 50%; background: #e3eefb; color: var(--green-dark); display: grid; place-items: center; font-size: .75rem; font-weight: 800; }

.about-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px;
  background: var(--paper); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow);
}
.about-stat { text-align: center; }
.about-stat strong {
  display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green); margin-bottom: 6px;
}
.about-stat span { font-size: 0.88rem; color: var(--muted); font-weight: 500; }

/* SEO content blocks */
.seo-trek-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.seo-pill {
  padding: 8px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: var(--paper); border: 1px solid var(--line); color: var(--green-dark);
}
.seo-trek-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.seo-trek-links a {
  font-weight: 600; font-size: 0.95rem; color: var(--green);
  text-decoration: underline; text-underline-offset: 3px;
}
.seo-trek-links a:hover { color: var(--green-dark); }
.seo-content-block {
  background: var(--paper); border-radius: var(--radius); padding: 32px 36px;
  box-shadow: var(--shadow); max-width: 820px;
}
.seo-content-block h2 { font-size: 1.35rem; margin-bottom: 14px; }
.seo-content-block p { color: var(--muted); margin-bottom: 12px; line-height: 1.7; }
.seo-content-block p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-bottom: 60px; }
.contact-card { background: var(--paper); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); text-align: center; }
.contact-card .feature-icon { margin-inline: auto; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--muted); }
.contact-card a:hover { color: var(--green); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

.form-card { background: var(--paper); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 20px; }
.form-grid { display: grid; gap: 16px; }
.form-grid .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { font-size: 0.82rem; font-weight: 600; display: grid; gap: 6px; }
.form-grid input, .form-grid select, .form-grid textarea {
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 0.92rem;
  font-family: var(--font-body); outline: none; background: #fcfbf8; transition: border .2s; width: 100%;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--green); }
.form-grid textarea { resize: vertical; min-height: 110px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; }
.team-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { aspect-ratio: 1/1.05; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-body { padding: 22px 24px 26px; }
.team-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-role {
  display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
}
.team-body p { font-size: 0.88rem; color: var(--muted); }

/* contact form success */
.form-success { display: grid; gap: 18px; padding: 10px 0; }
.form-success p { color: var(--muted); }
.form-success strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,.78); margin-top: 90px; }
.footer-top { padding: 70px 0 50px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.site-footer .brand { margin-bottom: 16px; }
.site-footer p, .site-footer a, .site-footer li { font-size: 0.9rem; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; font-size: 0.82rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* whatsapp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #22c15e; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(34,193,94,.45);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* defer off-screen paint */
.tour-grid, .team-grid, .features-grid, .dest-grid, .footer-top {
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .detail-layout { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 90px 1fr; }
  .cart-item-total { grid-column: 2; text-align: left; }
  .book-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split, .contact-split { grid-template-columns: 1fr; }
  .split-media .float-tag { left: 12px; }
}
@media (max-width: 820px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); z-index: 95;
    background: var(--forest); flex-direction: column; align-items: flex-start;
    padding: 90px 30px 30px; gap: 8px; transform: translateX(100%); transition: transform .3s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
  }
  .main-nav.open { transform: none; }
  .main-nav a { width: 100%; font-size: 1.05rem; }
  .nav-toggle { display: block; position: relative; z-index: 96; }
  .header-cta .btn-primary { display: none; }
  .incl-grid { grid-template-columns: 1fr; }
  .iti-body { padding-left: 24px; }
  .section { padding: 64px 0; }
  .form-grid .row2, .cart-item-form .row2 { grid-template-columns: 1fr; }
  .filter-search { margin-left: 0; width: 100%; }
  .filter-search input { width: 100%; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat strong { font-size: 1.5rem; }
}
