/* ============================================================
   Akika Adventure & Tours — design system
   Style: editorial luxury-safari
   Type:  Fraunces (display) + Inter (body)
   ============================================================ */

:root {
    --green-950: #0b1210;
    --green-900: #12211a;
    --green-800: #14532d;
    --green-700: #166534;
    --green-600: #16a34a;
    --gold: #38cf7a;
    --gold-600: #0e7c41;
    --gold-100: #e2f5e9;
    --sand-50: #fafbfa;
    --sand-100: #f1f5f2;
    --sand-200: #e2e8e4;
    --ink: #101512;
    --ink-soft: #46504a;
    --ink-mute: #7b847e;
    --white: #ffffff;
    --danger: #b91c1c;
    --success: #15803d;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
    --shadow-sm: 0 2px 10px rgba(10, 15, 12, 0.07);
    --shadow-md: 0 12px 32px rgba(10, 15, 12, 0.12);
    --shadow-lg: 0 24px 60px rgba(7, 13, 10, 0.22);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--sand-50);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--green-700); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-600); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 300;
    background: var(--green-900); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

::selection { background: var(--gold); color: var(--green-950); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-body); font-weight: 600; font-size: 15px;
    padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s ease; text-align: center; line-height: 1.2;
}
.btn--gold { background: var(--gold); color: var(--green-950); }
.btn--gold:hover { background: var(--green-950); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--green { background: var(--green-800); color: var(--white); }
.btn--green:hover { background: var(--green-600); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.6); color: var(--white); background: transparent; }
.btn--ghost:hover { background: var(--white); color: var(--green-950); border-color: var(--white); }
.btn--outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn--outline:hover { background: var(--green-800); color: var(--white); }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }

/* ---------- Topbar ---------- */
.topbar { background: var(--green-950); color: var(--sand-200); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar__contacts { display: flex; gap: 22px; }
.topbar__contacts a { color: var(--sand-200); display: inline-flex; align-items: center; gap: 7px; }
.topbar__contacts a:hover { color: var(--gold); }
.topbar__contacts svg { width: 14px; height: 14px; }
.topbar__note { color: var(--gold); letter-spacing: 0.06em; font-weight: 500; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 120; }
.mainnav { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--sand-200); transition: box-shadow 0.3s ease; }
.site-header.is-stuck .mainnav { box-shadow: var(--shadow-sm); }
.mainnav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); }
.brand__text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--green-900); letter-spacing: 0.01em; }
.brand__text em { font-style: italic; color: var(--gold-600); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a, .nav__drop > a {
    padding: 10px 14px; border-radius: 999px; color: var(--ink); font-weight: 500; font-size: 15px;
    display: inline-flex; align-items: center; gap: 5px;
}
.nav > a:hover, .nav__drop > a:hover, .nav > a.is-active, .nav__drop > a.is-active { color: var(--green-700); background: var(--sand-100); }
.nav__drop { position: relative; }
.nav__drop svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.nav__drop:hover svg { transform: rotate(180deg); }
.nav__menu {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 260px;
    background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
    padding: 10px; display: grid; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.22s ease; max-height: 70vh; overflow: auto;
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a { padding: 9px 14px; border-radius: 8px; font-size: 14px; color: var(--ink-soft); }
.nav__menu a:hover { background: var(--sand-100); color: var(--green-800); }

.mainnav__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.2s; }

/* ---------- Mobile nav ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(7, 13, 10, 0.55); opacity: 0; transition: opacity 0.3s ease; }
.mobile-nav__panel {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 88vw);
    background: var(--sand-50); padding: 26px; display: flex; flex-direction: column; gap: 20px;
    transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1); overflow-y: auto;
}
.mobile-nav.is-open { pointer-events: auto; }
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav__close { background: none; border: 0; font-size: 34px; line-height: 1; cursor: pointer; color: var(--ink); }
.mobile-nav nav { display: grid; gap: 4px; }
.mobile-nav nav a { padding: 12px 14px; border-radius: 10px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--sand-200); }
.mobile-nav nav a:hover { background: var(--sand-100); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--green-950); }
.hero__media, .hero__media video, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 10, 0.55) 0%, rgba(7, 13, 10, 0.25) 40%, rgba(7, 13, 10, 0.78) 100%);
}
.hero__content { position: relative; z-index: 2; color: var(--white); max-width: 760px; padding: 140px 0 120px; }
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.hero__eyebrow::before { content: ""; width: 44px; height: 2px; background: var(--gold); }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--white); font-weight: 600; margin-bottom: 20px; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__text { font-size: 18px; color: rgba(255, 255, 255, 0.88); max-width: 560px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
    color: rgba(255, 255, 255, 0.8); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after { content: ""; width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: drip 2s ease infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* birds flying across the hero */
.birds { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bird { position: absolute; width: 34px; height: 18px; color: rgba(255, 255, 255, 0.85); animation: fly 26s linear infinite; }
.bird svg { width: 100%; height: 100%; }
.bird--2 { width: 24px; animation-duration: 32s; animation-delay: 6s; }
.bird--3 { width: 18px; animation-duration: 38s; animation-delay: 14s; }
.bird__wing { animation: flap 0.7s ease-in-out infinite alternate; transform-origin: center; }
@keyframes fly {
    0% { transform: translate(-6vw, 30vh) rotate(4deg); }
    45% { transform: translate(50vw, 12vh) rotate(-3deg); }
    100% { transform: translate(108vw, 22vh) rotate(3deg); }
}
@keyframes flap { from { transform: scaleY(0.55); } to { transform: scaleY(1.1); } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--tint { background: var(--sand-100); }
.section--dark {
    background:
        radial-gradient(900px 420px at 82% -10%, rgba(56, 207, 122, 0.16), transparent 60%),
        radial-gradient(700px 380px at 8% 112%, rgba(56, 207, 122, 0.09), transparent 60%),
        var(--green-950);
    color: var(--sand-100);
}
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 14px;
}
.section-head--center .eyebrow::before, .section-head--center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--gold); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }
.section--dark .section-head p { color: rgba(242, 239, 232, 0.75); }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-tile {
    position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4;
    display: flex; align-items: flex-end; color: var(--white); box-shadow: var(--shadow-sm);
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(7, 13, 10, 0.85)); transition: background 0.3s; }
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile__body { position: relative; z-index: 2; padding: 26px; }
.cat-tile__body h3 { color: var(--white); font-size: 22px; margin-bottom: 4px; }
.cat-tile__body span { font-size: 13.5px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }
.cat-tile__body p { font-size: 13.5px; color: rgba(255, 255, 255, 0.82); margin: 6px 0 0; }

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tour-card__media { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.tour-card:hover .tour-card__media img { transform: scale(1.08); }
.tour-card__badge {
    position: absolute; top: 14px; left: 14px; background: rgba(7, 13, 10, 0.82); backdrop-filter: blur(6px);
    color: var(--gold); font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em;
    padding: 7px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
}
.tour-card__badge svg { width: 13px; height: 13px; }
.tour-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-card__meta { font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); }
.tour-card__title { font-size: 19.5px; margin: 0; }
.tour-card__title a { color: var(--ink); }
.tour-card__title a:hover { color: var(--green-700); }
.tour-card__foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--sand-200); display: flex; justify-content: space-between; align-items: center; }
.tour-card__dest { font-size: 13.5px; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 6px; }
.tour-card__dest svg { width: 14px; height: 14px; color: var(--green-600); }
.tour-card__link { font-weight: 600; font-size: 14px; color: var(--green-800); display: inline-flex; align-items: center; gap: 6px; }
.tour-card__link svg { width: 15px; height: 15px; transition: transform 0.22s ease; }
.tour-card__link:hover svg { transform: translateX(4px); }

/* ---------- Destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; display: block; box-shadow: var(--shadow-sm); }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, transparent 40%, rgba(7, 13, 10, 0.88)); }
.dest-card:hover img { transform: scale(1.07); }
.dest-card__body { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; padding: 22px; color: var(--white); display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.dest-card__body h3 { color: var(--white); font-size: 20px; margin: 0; }
.dest-card__body span { font-size: 13px; color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ---------- Feature strip ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feat { text-align: center; padding: 34px 22px; background: transparent; border: 1.5px solid var(--green-950); border-radius: var(--radius); transition: transform 0.3s, background 0.3s; }
.feat:hover { transform: translateY(-5px); background: var(--green-950); }
.feat__icon { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-950); color: var(--gold); display: grid; place-items: center; transition: background 0.3s, color 0.3s; }
.feat:hover .feat__icon { background: var(--gold); color: var(--green-950); }
.feat__icon svg { width: 28px; height: 28px; }
.feat h3 { font-size: 18px; transition: color 0.3s; }
.feat p { font-size: 14px; color: var(--ink-soft); margin: 0; transition: color 0.3s; }
.feat:hover h3 { color: var(--white); }
.feat:hover p { color: rgba(255, 255, 255, 0.75); }
.section--dark .feat { border-color: rgba(255, 255, 255, 0.2); }
.section--dark .feat h3 { color: var(--white); }
.section--dark .feat p { color: rgba(255, 255, 255, 0.7); }
.section--dark .feat:hover { background: rgba(56, 207, 122, 0.1); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--gold); }
.stat__label { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242, 239, 232, 0.7); }

/* ---------- Split (about) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split__media { position: relative; }
.split__media > img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%; }
.split__media-tag {
    position: absolute; bottom: -22px; right: -14px; background: var(--green-900); color: var(--white);
    border-radius: var(--radius-sm); padding: 20px 26px; box-shadow: var(--shadow-md); text-align: center;
}
.split__media-tag strong { font-family: var(--font-display); display: block; font-size: 28px; color: var(--gold); }
.split__media-tag span { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.split__list { display: grid; gap: 12px; margin: 22px 0 30px; padding: 0; list-style: none; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.split__list svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote { background: transparent; border-radius: 0; padding: 6px 0 6px 26px; border-left: 2px solid var(--green-950); box-shadow: none; position: relative; }
.quote p { font-size: 16px; font-family: var(--font-display); font-style: italic; color: var(--ink); margin: 0 0 18px; }
.quote footer { font-weight: 600; font-size: 14px; color: var(--ink); }
.quote footer span { display: block; font-weight: 400; font-size: 12.5px; color: var(--ink-mute); }
.quote__stars { color: var(--gold-600); letter-spacing: 3px; font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden; padding: 74px 60px; color: var(--white); background: var(--green-950); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.18; filter: grayscale(1); }
.cta-band::before { content: ""; position: absolute; right: -110px; top: -110px; width: 340px; height: 340px; border: 2px solid rgba(56, 207, 122, 0.4); border-radius: 50%; z-index: 1; }
.cta-band::after { content: ""; position: absolute; right: -40px; top: -40px; width: 340px; height: 340px; border: 2px solid rgba(56, 207, 122, 0.18); border-radius: 50%; z-index: 1; }
.cta-band__inner { position: relative; z-index: 2; max-width: 620px; }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; }

/* ---------- Page header (inner pages) ---------- */
.page-head { position: relative; background: var(--green-950); color: var(--white); overflow: hidden; }
.page-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.page-head::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 13, 10, 0.35), rgba(7, 13, 10, 0.82)); }
.page-head__inner { position: relative; z-index: 2; padding: 110px 0 74px; max-width: 820px; }
.page-head h1 { color: var(--white); font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 12px; }
.page-head p { color: rgba(255, 255, 255, 0.85); font-size: 17px; max-width: 640px; margin: 0; }
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13.5px; margin-bottom: 18px; color: rgba(255, 255, 255, 0.75); }
.crumbs a { color: var(--gold); }
.crumbs span::before { content: "/"; margin-right: 8px; opacity: 0.6; }

/* ---------- Filter bar ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 40px; }
.filterbar select, .filterbar input[type="search"] {
    padding: 12px 18px; border-radius: 999px; border: 1.5px solid var(--sand-200); background: var(--white);
    font-family: var(--font-body); font-size: 14.5px; color: var(--ink); min-width: 170px;
}
.filterbar select:focus, .filterbar input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
    padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; cursor: pointer;
    background: var(--white); border: 1.5px solid var(--sand-200); color: var(--ink-soft); transition: all 0.2s;
}
.chip:hover, .chip.is-active { background: var(--green-800); border-color: var(--green-800); color: var(--white); }

/* ---------- Tour detail ---------- */
.tour-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.tour-hero { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow-md); }
.tour-hero img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }
.tour-hero__badges { position: absolute; bottom: 18px; left: 18px; display: flex; gap: 10px; flex-wrap: wrap; }

.tour-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 40px; }
.tour-fact { background: var(--white); border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px; }
.tour-fact svg { width: 26px; height: 26px; color: var(--gold-600); flex-shrink: 0; }
.tour-fact strong { display: block; font-size: 14.5px; }
.tour-fact span { font-size: 12.5px; color: var(--ink-mute); }

.prose { color: var(--ink-soft); font-size: 16px; }
.prose h2, .prose h3 { color: var(--ink); margin-top: 1.6em; font-size: 22px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 6px; }

.tour-section { margin-bottom: 48px; }
.tour-section > h2 {
    font-size: 26px; display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.tour-section > h2::after { content: ""; flex: 1; height: 1px; background: var(--sand-200); }

.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.inc-exc__col { background: var(--white); border-radius: var(--radius-sm); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.inc-exc__col h3 { font-size: 17px; display: flex; align-items: center; gap: 10px; }
.inc-exc__col ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.inc-exc__col li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.inc-exc__col li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }
.inc-exc__col--yes li svg { color: var(--success); }
.inc-exc__col--no li svg { color: var(--danger); }

.hl-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hl-list li { display: flex; gap: 12px; align-items: flex-start; background: var(--white); border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: var(--shadow-sm); font-size: 14.5px; color: var(--ink-soft); }
.hl-list svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; display: block; position: relative; aspect-ratio: 1; }
.gallery a:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery a:hover img { transform: scale(1.06); }

/* itinerary accordion */
.accordion { display: grid; gap: 14px; }
.acc {
    background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
    overflow: hidden; border-left: 4px solid var(--gold);
}
.acc__head {
    width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 24px;
    background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--font-body);
}
.acc__day {
    background: var(--green-900); color: var(--gold); font-weight: 700; font-size: 12px;
    letter-spacing: 0.08em; border-radius: 8px; padding: 8px 12px; white-space: nowrap;
}
.acc__title { font-weight: 600; font-size: 16px; color: var(--ink); flex: 1; }
.acc__chev { width: 20px; height: 20px; color: var(--ink-mute); transition: transform 0.3s ease; flex-shrink: 0; }
.acc.is-open .acc__chev { transform: rotate(180deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.acc__inner { padding: 4px 26px 24px; color: var(--ink-soft); font-size: 15px; }
.acc__meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--sand-200); font-size: 13.5px; }
.acc__meta span { display: inline-flex; gap: 8px; align-items: center; color: var(--ink-soft); }
.acc__meta svg { width: 16px; height: 16px; color: var(--gold-600); }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* booking sidebar */
.book-card { position: sticky; top: 120px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.book-card__head { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: var(--white); padding: 24px 28px; }
.book-card__head h3 { color: var(--white); margin: 0 0 4px; font-size: 21px; }
.book-card__head p { margin: 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.8); }
.book-card form { padding: 24px 28px 28px; display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--sand-200);
    background: var(--sand-50); font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18); background: var(--white);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12px; color: var(--ink-mute); text-align: center; margin: 0; }
.form-msg { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; }
.form-msg.is-ok { display: block; background: #ecfdf3; color: var(--success); border: 1px solid #bbf7d0; }
.form-msg.is-err { display: block; background: #fef2f2; color: var(--danger); border: 1px solid #fecaca; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* related tours */
.related { margin-top: 20px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(15, 23, 17, 0.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 22px; right: 30px; background: none; border: 0; color: #fff; font-size: 42px; cursor: pointer; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 26px; cursor: pointer; display: grid; place-items: center; transition: background 0.2s; }
.lightbox__nav:hover { background: var(--gold); color: var(--green-950); }
.lightbox__prev { left: 26px; } .lightbox__next { right: 26px; }

/* ---------- Savanna animated strip ---------- */
.savanna {
    position: relative; height: 130px; overflow: hidden;
    background: linear-gradient(180deg, var(--sand-50) 0%, #eaf3ec 55%, #b7d7c1 100%);
    border-bottom: 6px solid var(--green-950);
}
.savanna__sun { position: absolute; width: 88px; height: 88px; right: 12%; bottom: -16px; color: #f59e0b; opacity: 0.85; fill: currentColor; animation: sunset 14s ease-in-out infinite alternate; }
@keyframes sunset { from { transform: translateY(6px); } to { transform: translateY(-10px); } }
.savanna__herd { position: absolute; bottom: -4px; left: 0; display: flex; align-items: flex-end; gap: 90px; animation: herd-walk 60s linear infinite; }
.animal { color: var(--green-950); opacity: 0.92; }
.animal--elephant { width: 84px; height: 54px; animation: bob 1.6s ease-in-out infinite; }
.animal--giraffe { width: 46px; height: 76px; animation: bob 1.9s ease-in-out infinite 0.4s; }
.animal--gazelle { width: 58px; height: 44px; animation: bob 1.3s ease-in-out infinite 0.2s; }
@keyframes herd-walk { from { transform: translateX(-320px); } to { transform: translateX(110vw); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: var(--sand-200); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding: 72px 24px 54px; }
.brand--footer .brand__text { color: var(--white); }
.footer__brand p { font-size: 14.5px; color: rgba(255, 255, 255, 0.75); margin: 18px 0 20px; max-width: 320px; }
.footer__whatsapp { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 600; font-size: 14.5px; }
.footer__whatsapp svg { width: 20px; height: 20px; }
.footer__col h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer__col-sub { margin-top: 22px; }
.footer__col a, .footer__col p { display: block; color: rgba(255, 255, 255, 0.75); font-size: 14.5px; margin: 0 0 10px; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer__meta-links { display: inline-flex; gap: 18px; }
.footer__meta-links a { color: rgba(255, 255, 255, 0.55); }
.footer__meta-links a:hover { color: var(--gold); }

/* ---------- Floating helpers ---------- */
.whatsapp-fab {
    position: fixed; right: 24px; bottom: 24px; z-index: 150; width: 58px; height: 58px;
    background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45); transition: transform 0.25s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; }
.whatsapp-fab svg { width: 30px; height: 30px; }
.to-top {
    position: fixed; right: 28px; bottom: 96px; z-index: 150; width: 46px; height: 46px;
    border-radius: 50%; border: 0; background: var(--green-900); color: var(--gold);
    display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; box-shadow: var(--shadow-md);
}
.to-top.is-show { opacity: 1; visibility: visible; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal animation base (only when JS is running) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(28px); }
html.js .reveal-done[data-reveal] { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-info__item { display: flex; gap: 16px; background: var(--white); padding: 22px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.contact-info__item svg { width: 24px; height: 24px; color: var(--gold-600); flex-shrink: 0; }
.contact-info__item strong { display: block; margin-bottom: 3px; }
.contact-info__item span, .contact-info__item a { font-size: 14.5px; color: var(--ink-soft); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); display: grid; gap: 16px; }

/* ---------- 404 ---------- */
.err-page { text-align: center; padding: 130px 24px; }
.err-page h1 { font-size: clamp(4rem, 10vw, 7rem); color: var(--green-900); margin: 0; }
.err-page p { color: var(--ink-soft); margin-bottom: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .cat-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-grid, .dest-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-layout { grid-template-columns: 1fr; }
    .book-card { position: static; }
    .tour-facts { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 860px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    .topbar__note { display: none; }
    .section { padding: 68px 0; }
    .stats { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .cta-band { padding: 52px 30px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .tour-grid, .dest-grid, .quote-grid, .cat-grid, .feat-grid { grid-template-columns: 1fr; }
    .inc-exc, .hl-list { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .hero__content { padding: 110px 0 100px; }
    .topbar__contacts a:last-child { display: none; }
    .mainnav__actions .btn { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .savanna__herd, .bird { animation: none; }
}
