/* July88 Travels — public site
   Tokens: Forest #0F3D22 · Palm #1E7D33 · Kente Gold #F9C80E · Ink #16211A · Shea #FBF9F4
   Type:   Fraunces (editorial display) · Plus Jakarta Sans (headings/UI) · DM Sans (body)
   Signature: woven kente strip (gold/green/red/black) at header, footer, modal edges */

:root {
    --forest: #0F3D22;
    --forest-2: #14532D;
    --palm: #1E7D33;
    --palm-dark: #16632A;
    --gold: #F9C80E;
    --gold-dark: #D9AC00;
    --kente-red: #CE1126;
    --ink: #16211A;
    --muted: #5C6B60;
    --shea: #FBF9F4;
    --card: #FFFFFF;
    --line: #E7E2D5;
    --shadow: 0 10px 30px rgba(15, 61, 34, 0.10);
    --shadow-sm: 0 4px 14px rgba(15, 61, 34, 0.08);
    --radius: 14px;
    --font-display: "Fraunces", Georgia, serif;
    --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--shea);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }

a { color: var(--palm); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Kente strip (signature device) ---------- */
.kente-strip {
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0 28px,
        var(--forest-2) 28px 56px,
        var(--kente-red) 56px 70px,
        var(--ink) 70px 84px
    );
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { background: var(--line); color: var(--muted); cursor: not-allowed; transform: none; box-shadow: none; }

.btn-primary { background: var(--palm); color: #fff; }
.btn-primary:hover { background: var(--palm-dark); box-shadow: var(--shadow-sm); }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: var(--shadow-sm); }

.btn-ghost { background: transparent; color: var(--palm); border-color: var(--palm); }
.btn-ghost:hover { background: rgba(30, 125, 51, 0.08); }

.btn-whatsapp { background: #1FAF38; color: #fff; }
.btn-whatsapp:hover { background: #178A2C; }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; white-space: nowrap; }
.btn-block { width: 100%; }

/* ---------- Cart button ---------- */
.cart-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--forest);
    cursor: pointer;
}
.cart-btn:hover { border-color: var(--palm); }
.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--kente-red);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.8rem 0;
}

.logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.logo span { color: var(--palm); }
.logo small { font-weight: 600; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.logo-light, .logo-light small { color: #fff; }
.logo-light span { color: var(--gold); }

.logo-img { display: flex; align-items: center; }
.logo-img img { height: 46px; width: auto; display: block; }
.logo-img .logo-text { display: none; }
.logo:not(.logo-img) img { display: none; }

.main-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.main-nav a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    text-decoration: none;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--palm); border-bottom-color: var(--gold); }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(60rem 30rem at 85% -10%, rgba(249, 200, 14, 0.14), transparent 60%),
        radial-gradient(50rem 26rem at -10% 110%, rgba(30, 125, 51, 0.35), transparent 55%),
        var(--forest);
    color: #fff;
    padding: 5.5rem 0 8.5rem;
}

.hero-bg { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 42s linear infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-slide:nth-child(6) { animation-delay: 30s; }
.hero-slide:nth-child(7) { animation-delay: 36s; }

@keyframes heroFade {
    0% { opacity: 0; }
    4% { opacity: 1; }
    16% { opacity: 1; }
    22% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 61, 34, 0.92) 25%, rgba(15, 61, 34, 0.62) 65%, rgba(15, 61, 34, 0.38));
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide { animation: none !important; }
    .hero-slide:first-child { opacity: 1; }
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 17ch;
}

.akwaaba {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
    font-size: 1.18em;
}

.hero-sub {
    margin-top: 1.2rem;
    max-width: 52ch;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Search dock (overlaps hero bottom) ---------- */
.search-dock {
    margin-top: 2.8rem;
    margin-bottom: -6.2rem;
    position: relative;
    z-index: 5;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0;
    overflow: hidden;
}

.dock-tabs { display: flex; border-bottom: 1px solid var(--line); }
.dock-tab {
    flex: 0 0 auto;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--muted);
    background: none;
    border: 0;
    border-bottom: 3px solid transparent;
    padding: 0.9rem 1.4rem;
    cursor: pointer;
}
.dock-tab.active { color: var(--forest); border-bottom-color: var(--gold); }

.dock-form { display: flex; gap: 1rem; align-items: end; padding: 1.1rem 1.4rem 1.3rem; flex-wrap: wrap; }
.dock-field { display: flex; flex-direction: column; gap: 0.3rem; min-width: 10rem; }
.dock-grow { flex: 1 1 16rem; }
.dock-field span { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dock-field input, .dock-field select {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.65rem 0.8rem;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
}
.dock-field input:focus, .dock-field select:focus { border-color: var(--palm); outline: none; }
.dock-submit { flex: 0 0 auto; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); padding: 8rem 0 1.1rem; }
.trust-inner { display: flex; flex-wrap: wrap; gap: 0.6rem 2.4rem; justify-content: center; }
.trust-inner p { font-size: 0.9rem; color: var(--muted); }
.trust-inner strong { color: var(--forest); font-family: var(--font-head); }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }

.section-eyebrow {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--palm);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--forest);
    margin-bottom: 0.6rem;
}

/* ---------- Regions ---------- */
.regions { padding-bottom: 1.5rem; }
.region-row { display: flex; gap: 0.9rem; overflow-x: auto; padding: 1.2rem 0.2rem 0.6rem; scrollbar-width: thin; }
.region-chip {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: var(--card);
    border: 1.5px solid var(--line);
    border-left: 5px solid var(--gold);
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    font-family: var(--font-head);
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.region-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--palm); }
.region-chip.active { border-color: var(--palm); border-left-color: var(--kente-red); background: #F2FAF4; }
.region-chip strong { font-size: 0.95rem; color: var(--forest); }
.region-chip small { font-size: 0.75rem; color: var(--muted); font-family: var(--font-body); }

/* ---------- Products ---------- */
.products { padding-top: 2rem; }

.products-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }

.sort-field { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.sort-field select { font-family: var(--font-body); padding: 0.45rem 0.7rem; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); }

.tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.tab {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.tab:hover { border-color: var(--palm); }
.tab.active { background: var(--forest); border-color: var(--forest); color: #fff; }
.tab-count { font-weight: 600; font-size: 0.8em; opacity: 0.7; margin-left: 0.25rem; }

.active-filter { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.active-filter button { background: none; border: 0; color: var(--palm); font-weight: 700; cursor: pointer; text-decoration: underline; font-size: inherit; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.6rem;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, var(--forest-2), var(--palm));
}
.card-media.stays { background: linear-gradient(135deg, #14403A, #1E7D6B); }
.card-media.cars { background: linear-gradient(135deg, #2A2118, #7A5A18); }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-media .media-initial {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 3.4rem;
    opacity: 0.55;
}

.card-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}
.card-badge.urgent { background: var(--kente-red); color: #fff; }

.card-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }

.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.card-region { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--palm); }

.card-rating { font-size: 0.85rem; color: var(--ink); white-space: nowrap; }
.card-rating .star { color: var(--gold-dark); }
.card-rating small { color: var(--muted); }

.card h3 { font-size: 1.12rem; font-weight: 800; color: var(--ink); }

.card-desc {
    font-size: 0.92rem;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.82rem; color: var(--muted); }
.card-meta span::before { content: "· "; color: var(--gold-dark); font-weight: 800; }

.card-foot { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 0.8rem; padding-top: 0.6rem; border-top: 1px solid var(--line); }
.card-price small { display: block; font-size: 0.72rem; color: var(--muted); }
.card-price strong { font-family: var(--font-head); font-size: 1.18rem; color: var(--forest); }
.card-price em { font-style: normal; font-size: 0.75rem; color: var(--muted); }

.card-actions { display: flex; gap: 0.5rem; }

.empty-state { text-align: center; color: var(--muted); padding: 3rem 1rem; }

.policy-note {
    margin-top: 2.2rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 62ch;
    margin-inline: auto;
}

/* ---------- Why us ---------- */
.why-us { background: #fff; border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; margin-top: 1.6rem; }
.why-card { padding: 1.4rem 1.5rem; background: var(--shea); border-radius: var(--radius); border: 1px solid var(--line); }
.why-card h3 { font-size: 1.02rem; font-weight: 800; color: var(--forest); margin-bottom: 0.45rem; }
.why-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 1.6rem; }
.testimonial {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
}
.testimonial .stars { color: var(--gold-dark); letter-spacing: 0.15em; font-size: 0.9rem; margin-bottom: 0.6rem; }
.testimonial p { font-size: 0.96rem; }
.testimonial cite { display: block; margin-top: 0.9rem; font-style: normal; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: var(--palm); }

/* ---------- FAQ ---------- */
.faq { background: #fff; border-block: 1px solid var(--line); }
.faq-inner { max-width: 760px; }
.faq-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
    background: var(--shea);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}
.faq-item summary {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
    padding: 1rem 3rem 1rem 1.2rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--palm);
    font-weight: 600;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.2rem 1.1rem; font-size: 0.93rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info > p { color: var(--muted); max-width: 44ch; }
.contact-list { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.95rem; }
.contact-list strong { color: var(--forest); font-family: var(--font-head); }

.contact-form, .modal form { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-form {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.8rem;
}
.contact-form h3 { font-size: 1.15rem; font-weight: 800; color: var(--forest); }

.contact-form label, .modal label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
}
.contact-form input, .contact-form textarea, .modal input, .modal textarea, .modal select {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.65rem 0.8rem;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
    resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus, .modal input:focus, .modal textarea:focus, .modal select:focus { border-color: var(--palm); outline: none; }
.modal input:disabled { background: var(--shea); color: var(--muted); cursor: not-allowed; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.form-msg { padding: 0.75rem 1rem; border-radius: 9px; font-size: 0.92rem; }
.form-msg.success { background: #E5F5E9; color: var(--palm-dark); border: 1px solid #BFE5CA; }
.form-msg.error { background: #FBEAEA; color: #A3271F; border: 1px solid #F0C8C5; }

.form-reassure { text-align: center; font-size: 0.78rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: rgba(255, 255, 255, 0.85); padding-top: 3.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.site-footer h4 { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem; }
.site-footer a { display: block; color: rgba(255, 255, 255, 0.85); text-decoration: none; margin-bottom: 0.45rem; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer p { font-size: 0.92rem; margin-bottom: 0.35rem; }
.copyright { text-align: center; font-size: 0.8rem; padding: 1.2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.55); }

/* ---------- Floating & sticky ---------- */
.whatsapp-fab {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 70;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #1FAF38;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.07); }

.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    background: var(--forest);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}
.sticky-bar[hidden] { display: none; }
.sticky-bar strong { font-family: var(--font-head); font-size: 0.92rem; display: block; }
.sticky-bar span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.75); }

.back-to-top {
    position: fixed;
    right: 1.45rem;
    bottom: 5.4rem;
    z-index: 60;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--card);
    color: var(--forest);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ---------- Trip list drawer ---------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 85;
    background: rgba(15, 33, 22, 0.5);
    display: flex;
    justify-content: flex-end;
}
.drawer-overlay[hidden] { display: none; }

.drawer {
    width: min(420px, 100%);
    height: 100%;
    background: var(--card);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem 0.6rem; }
.drawer-head h3 { font-size: 1.2rem; font-weight: 800; color: var(--forest); }
.drawer-head .modal-close { position: static; }

.drawer-items { padding: 0 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.drawer-empty { padding: 2.5rem 1.4rem; text-align: center; color: var(--muted); font-size: 0.92rem; }

.cart-row { border-bottom: 1px solid var(--line); padding-bottom: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cart-row-main { display: flex; flex-direction: column; gap: 0.15rem; }
.cart-row-main strong { font-family: var(--font-head); font-size: 0.95rem; color: var(--ink); }
.cart-row-main small { font-size: 0.8rem; color: var(--muted); }

.cart-item-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.cart-item-fields.cart-item-fields-single { grid-template-columns: 1fr; }
.cart-item-fields label, .cart-field-full {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}
.cart-item-fields input, .cart-item-fields select, .cart-field-full input, .cart-field-full select {
    font-family: var(--font-body);
    font-size: 0.88rem;
    padding: 0.45rem 0.6rem;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}
.cart-item-fields input:focus, .cart-item-fields select:focus, .cart-field-full select:focus { border-color: var(--palm); outline: none; }
.cart-item-fields input:disabled, .cart-field-full input:disabled { background: var(--shea); color: var(--muted); cursor: not-allowed; }

.cart-row-controls { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; flex-wrap: wrap; }

.qty-stepper { display: flex; align-items: center; gap: 0.6rem; border: 1.5px solid var(--line); border-radius: 999px; padding: 0.2rem 0.5rem; }
.qty-stepper button { width: 24px; height: 24px; border-radius: 50%; border: 0; background: var(--shea); color: var(--forest); font-size: 1rem; font-weight: 800; cursor: pointer; line-height: 1; }
.qty-stepper button:hover { background: var(--line); }
.qty-stepper span { font-size: 0.8rem; font-family: var(--font-head); font-weight: 700; color: var(--ink); white-space: nowrap; }

.cart-line-total { font-family: var(--font-head); color: var(--forest); font-size: 0.92rem; }
.cart-remove { background: none; border: 0; color: var(--muted); font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0.2rem; }
.cart-remove:hover { color: var(--kente-red); }

.drawer-foot { padding: 1rem 1.4rem 1.4rem; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-head); font-weight: 800; color: var(--forest); font-size: 1.15rem; margin-bottom: 0.3rem; }
.cart-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.9rem; }

/* ---------- Checkout summary ---------- */
.checkout-summary { background: var(--shea); border: 1px solid var(--line); border-radius: 10px; padding: 0.9rem 1.1rem; margin-bottom: 1.1rem; }
.checkout-summary p { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.88rem; padding: 0.35rem 0; }
.checkout-summary p:not(:last-child) { border-bottom: 1px dashed var(--line); }
.checkout-summary strong { font-family: var(--font-head); color: var(--forest); white-space: nowrap; }
.checkout-total { margin-top: 0.2rem; font-size: 1rem !important; }
.checkout-total strong { font-size: 1.15rem; }

/* ---------- Modals ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(15, 33, 22, 0.55);
    display: grid;
    place-items: center;
    padding: 1.2rem;
    overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }

.modal {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 0 1.8rem 1.8rem;
    box-shadow: var(--shadow);
}
.modal .kente-strip { margin: 0 -1.8rem 1.4rem; }
.modal-wide { width: min(680px, 100%); }

.modal h3 { font-size: 1.25rem; font-weight: 800; color: var(--forest); margin-bottom: 0.3rem; }
.modal #enquirySubtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--shea);
    color: var(--ink);
    font-size: 1.2rem;
    cursor: pointer;
}
.modal-close:hover { background: var(--line); }

.modal-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

/* Track request timeline */
.track-head { margin: 1.2rem 0 0.8rem; font-size: 0.95rem; }
.track-head strong { font-family: var(--font-head); color: var(--forest); }
.track-head small { color: var(--muted); }

.track-timeline { list-style: none; margin: 0 0 0.4rem; padding: 0; }
.track-timeline li {
    position: relative;
    padding: 0 0 1.1rem 2rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--muted);
}
.track-timeline li::before {
    content: "";
    position: absolute;
    left: 0.45rem;
    top: 0.35rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--line);
}
.track-timeline li::after {
    content: "";
    position: absolute;
    left: 0.83rem;
    top: 1.35rem;
    bottom: 0.1rem;
    width: 2px;
    background: var(--line);
}
.track-timeline li:last-child { padding-bottom: 0; }
.track-timeline li:last-child::after { display: none; }
.track-timeline li.done { color: var(--ink); }
.track-timeline li.done::before { background: var(--palm); border-color: var(--palm); }
.track-timeline li.done::after { background: var(--palm); }
.track-timeline li.current { color: var(--forest); }
.track-timeline li.current::before { background: var(--gold); border-color: var(--gold-dark); }
.track-timeline li.current span::after {
    content: "now";
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-left: 0.5rem;
}

.track-cancelled { margin-top: 1rem; font-size: 0.92rem; color: var(--kente-red); }

/* Detail modal internals */
.detail-region { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--palm); }
.detail-title { font-size: 1.45rem; font-weight: 800; color: var(--forest); margin: 0.2rem 0 0.4rem; font-family: var(--font-head); }
.detail-rating { font-size: 0.9rem; margin-bottom: 0.8rem; }
.detail-rating .star { color: var(--gold-dark); }
.detail-rating small { color: var(--muted); }
.detail-desc { color: var(--muted); font-size: 0.96rem; margin-bottom: 1.1rem; }

.detail-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.detail-meta span {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--shea);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    color: var(--ink);
}

.itinerary-heading { font-family: var(--font-head); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--palm); margin: 1.2rem 0 0.6rem; }

.itinerary { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; counter-reset: leg; }
.itinerary details { background: var(--shea); border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.itinerary summary {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    counter-increment: leg;
}
.itinerary summary::-webkit-details-marker { display: none; }
.itinerary summary::before {
    content: counter(leg);
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}
.itinerary details p { padding: 0 1rem 0.9rem 2.6rem; font-size: 0.9rem; color: var(--muted); }
.itinerary-leg-img { display: block; width: calc(100% - 3.6rem); max-height: 160px; object-fit: cover; margin: 0 1rem 0.6rem 2.6rem; border-radius: 8px; }

.pricing-select { margin-bottom: 1.2rem; max-width: 320px; }

.zone-rates { width: 100%; border-collapse: collapse; margin-bottom: 0.4rem; font-size: 0.9rem; }
.zone-rates tr { border-bottom: 1px solid var(--line); }
.zone-rates tr:last-child { border-bottom: none; }
.zone-rates th, .zone-rates td { padding: 0.55rem 0.2rem; text-align: left; font-weight: 400; }
.zone-rates th { color: var(--ink); font-family: var(--font-head); font-weight: 700; }
.zone-rates td { text-align: right; color: var(--forest); font-family: var(--font-head); font-weight: 700; }
.zone-rates-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.2rem; }

.availability-box { background: var(--shea); border: 1px solid var(--line); border-radius: 10px; padding: 0.9rem 1.1rem; margin-bottom: 1.2rem; }
.availability-row { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.5rem; }
.availability-bar { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; margin-bottom: 0.6rem; }
.availability-bar span { display: block; height: 100%; background: var(--palm); border-radius: 999px; }
.availability-note { font-size: 0.83rem; color: var(--muted); margin: 0; }
.availability-note:not(:last-child) { margin-bottom: 0.3rem; }
.availability-closed { color: var(--kente-red); font-weight: 600; }

.stay-gallery { display: flex; gap: 0.5rem; overflow-x: auto; margin: 0.9rem 0 1.1rem; scroll-snap-type: x proximity; }
.stay-gallery img {
    flex: 0 0 auto;
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 9px;
    cursor: zoom-in;
    scroll-snap-align: start;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.85);
    display: grid;
    place-items: center;
    padding: 2rem;
    cursor: zoom-out;
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-overlay img { max-width: 100%; max-height: 100%; border-radius: 10px; }

.detail-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.1rem; flex-wrap: wrap; }
.detail-price small { display: block; font-size: 0.72rem; color: var(--muted); }
.detail-price strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--forest); }
.detail-price em { font-style: normal; font-size: 0.8rem; color: var(--muted); }
.detail-policy { width: 100%; font-size: 0.78rem; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        box-shadow: var(--shadow);
        padding: 0.6rem 0;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 0.8rem 1.4rem; border-bottom: 0; }
    .nav-cta { margin-left: auto; }
    .hamburger { display: block; margin-left: 0.6rem; }

    .hero { padding: 3.5rem 0 7.5rem; }
    .trust-strip { padding-top: 7.4rem; }
    .trust-inner { flex-direction: column; gap: 0.35rem; text-align: center; }

    .dock-form { flex-direction: column; align-items: stretch; }
    .dock-field { min-width: 0; }

    .products-head { flex-direction: column; align-items: flex-start; }

    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }

    .whatsapp-fab { bottom: 4.6rem; }
    .back-to-top { bottom: 8.6rem; }

    body { padding-bottom: 3.6rem; }
}

@media (max-width: 430px) {
    .logo { white-space: nowrap; font-size: 1.2rem; }
    .logo small { display: none; }
    .header-inner { gap: 0.8rem; }
}

@media (min-width: 721px) {
    .sticky-bar { display: none !important; }
}

/* ---------- Account pages (login, register, my account) ---------- */
.auth-shell { padding: 3rem 0 4rem; min-height: 50vh; }
.auth-box {
    max-width: 420px;
    margin-inline: auto;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}
.auth-box h1 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.auth-box .auth-sub { color: var(--muted); margin-bottom: 1.4rem; font-size: 0.92rem; }
.auth-box .auth-foot { margin-top: 1.2rem; font-size: 0.9rem; color: var(--muted); text-align: center; }
.auth-box .auth-foot a { color: var(--palm); font-weight: 700; text-decoration: none; }

.account-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.account-header p { color: var(--muted); }
.booking-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
}
.booking-card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.booking-card-head strong { font-size: 1.02rem; }
.booking-card small { color: var(--muted); }

.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.badge-pending { background: #fff3cd; color: #8a6900; }
.badge-contacted { background: #d9ecfb; color: #1a5f8a; }
.badge-confirmed { background: #dcf3e2; color: var(--palm-dark); }
.badge-completed { background: #e4e4e4; color: #444; }
.badge-cancelled { background: #fbe4e4; color: #a12727; }
