/* ==========================================================================
   Volcano Mountain Expeditions — Stylesheet
   Warm earthy mountain palette. No gradients. Mobile-first.
   ========================================================================== */

/* ── Design tokens ── */
:root {
    --c-primary: #613711;       /* Mountain Brown */
    --c-secondary: #A77B50;     /* Warm Tan / Gold */
    --c-dark: #3F250F;          /* Deep Brown (text) */
    --c-deep: #563214;          /* Deep Brown */
    --c-earth: #936F4E;         /* Earth Brown */
    --c-bg: #F7F3EE;            /* Off White */
    --c-bg-alt: #EFE7DC;        /* slightly darker off-white */
    --c-line: #D9CDBE;          /* warm border */
    --c-white: #FFFFFF;
    --c-on-primary: #F7F3EE;
    --c-on-dark: #F7F3EE;
    --c-muted: #8a7868;

    --font-head: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container: 1180px;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(63, 37, 15, 0.08);
    --shadow: 0 4px 18px rgba(63, 37, 15, 0.10);
    --shadow-lg: 0 12px 40px rgba(63, 37, 15, 0.16);
    --transition: 180ms ease;

    --header-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--c-dark);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-deep); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--c-dark); line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--c-secondary); outline-offset: 2px; border-radius: 3px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 1000;
    background: var(--c-primary); color: var(--c-on-primary);
    padding: 12px 18px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--c-on-primary); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.eyebrow {
    text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px;
    font-weight: 600; color: var(--c-secondary); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.section-lead { margin-top: 14px; color: var(--c-earth); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 36px; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.97rem; line-height: 1;
    text-align: center; transition: all var(--transition);
    border: 2px solid transparent; white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--c-primary); color: var(--c-on-primary); }
.btn-primary:hover { background: var(--c-deep); color: var(--c-on-primary); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--c-primary); color: var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: var(--c-on-primary); }
.btn-outline.btn-light { border-color: var(--c-on-primary); color: var(--c-on-primary); }
.btn-outline.btn-light:hover { background: var(--c-on-primary); color: var(--c-primary); }
.btn-wa { background: #1f7a4d; color: #fff; }
.btn-wa:hover { background: #155c39; color: #fff; transform: translateY(-1px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; gap: 18px;
    height: var(--header-h);
    max-width: none; padding: 0 20px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; height: 100%; }
.brand-logo {
    height: 100%; width: auto; max-width: none; object-fit: contain;
    padding: 0.25rem 0; display: block;
}
.brand-logo-footer { height: 56px; padding: 0; }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 4px; }
.primary-nav a {
    display: block; padding: 8px 12px; border-radius: var(--radius-sm);
    color: var(--c-dark); font-weight: 500; font-size: 0.95rem;
}
.primary-nav a:hover, .primary-nav a.is-active { background: var(--c-bg-alt); color: var(--c-primary); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta { padding: 10px 16px; font-size: 0.9rem; }

/* Currency selector */
.currency-select { position: relative; }
.currency-btn {
    display: flex; align-items: center; gap: 4px;
    padding: 8px 10px; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
    background: var(--c-white); font-size: 0.85rem; font-weight: 600; color: var(--c-dark);
}
.currency-flag { color: var(--c-secondary); font-weight: 700; }
.currency-menu {
    position: absolute; right: 0; top: calc(100% + 6px);
    background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); min-width: 130px; overflow: hidden; z-index: 50;
}
.currency-menu[hidden] { display: none; }
.currency-option {
    display: block; width: 100%; text-align: left;
    padding: 10px 14px; font-size: 0.88rem; color: var(--c-dark);
}
.currency-option:hover { background: var(--c-bg-alt); }
.currency-option[aria-selected="true"] { background: var(--c-bg-alt); color: var(--c-primary); font-weight: 700; }

/* Nav toggle (mobile) */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px;
}
.nav-toggle-bar { width: 26px; height: 3px; background: var(--c-dark); border-radius: 2px; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
.hero { position: relative; color: var(--c-on-primary); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-svg { width: 100%; height: 100%; object-fit: cover; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(63, 37, 15, 0.55); }
.hero-content {
    position: relative; z-index: 1;
    padding: 88px 20px 110px; max-width: var(--container); margin: 0 auto;
}
.hero-eyebrow {
    text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 600;
    color: var(--c-secondary); margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; line-height: 1.05;
    max-width: 14ch; margin-bottom: 22px; color: var(--c-on-primary);
}
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.25rem); max-width: 60ch; color: #E8DCC8; margin-bottom: 30px; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.9rem; color: #E8DCC8; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--c-secondary); }

/* ==========================================================================
   Hub cards (homepage)
   ========================================================================== */
.hubs-section { background: var(--c-bg); }
.hubs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hub-card {
    border-radius: var(--radius); overflow: hidden; background: var(--c-white);
    box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hub-card-link { display: block; color: inherit; }
.hub-card-art { aspect-ratio: 16 / 9; overflow: hidden; }
.hub-card-art svg { width: 100%; height: 100%; }
.hub-card-art img { width: 100%; height: 100%; object-fit: cover; }
.hub-card-body { padding: 22px 22px 24px; }
.hub-card-title { font-size: 1.5rem; margin-bottom: 8px; }
.hub-card-tagline { color: var(--c-earth); font-size: 0.95rem; min-height: 3.2em; margin-bottom: 16px; }
.hub-card-meta { display: flex; justify-content: space-between; align-items: center; }
.hub-price { font-size: 0.9rem; color: var(--c-muted); }
.hub-price strong { color: var(--c-primary); font-size: 1.1rem; }
.hub-arrow { color: var(--c-secondary); font-weight: 600; font-size: 0.92rem; }

/* ==========================================================================
   Budget tiers
   ========================================================================== */
.tiers-section { background: var(--c-bg-alt); }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier-card {
    background: var(--c-white); border-radius: var(--radius); padding: 28px;
    border-top: 4px solid var(--c-secondary); box-shadow: var(--shadow-sm);
}
.tier-name { font-size: 1.35rem; margin-bottom: 6px; }
.tier-range { color: var(--c-primary); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.tier-desc { color: var(--c-earth); font-size: 0.95rem; }
.tiers-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

/* ==========================================================================
   Package cards (shared)
   ========================================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pkg-card {
    background: var(--c-white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-card a { display: flex; flex-direction: column; height: 100%; color: inherit; }
.pkg-card-art {
    aspect-ratio: 16 / 9; position: relative; overflow: hidden;
    display: flex; align-items: flex-end; padding: 14px;
}
.pkg-art-0 { background: #613711; }
.pkg-art-1 { background: #563214; }
.pkg-art-2 { background: #936F4E; }
.pkg-art-3 { background: #3F250F; }
.pkg-card-art::before {
    content: ""; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 225'%3E%3Cpath d='M0 225 L0 170 L80 110 L150 150 L210 80 L280 140 L360 90 L400 130 L400 225 Z' fill='%23A77B50' opacity='0.55'/%3E%3Cpath d='M210 80 L235 115 L215 125 L200 95 Z' fill='%23F7F3EE' opacity='0.7'/%3E%3C/svg%3E") center/cover no-repeat;
}
.pkg-card-art-img::before { display: none; }
.pkg-card-art-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pkg-card-art-img .pkg-tier-tag,
.pkg-card-art-img .pkg-difficulty { position: relative; z-index: 1; }
.pkg-tier-tag {
    position: relative; z-index: 2;
    background: var(--c-on-primary); color: var(--c-primary);
    padding: 5px 11px; border-radius: 20px; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.pkg-tier-premium { background: #1f7a4d; color: #fff; }
.pkg-difficulty {
    position: relative; z-index: 2; margin-left: auto;
    background: rgba(63, 37, 15, 0.55); color: #fff;
    padding: 5px 11px; border-radius: 20px; font-size: 0.72rem; font-weight: 600;
}
.pkg-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pkg-card-region { font-size: 0.82rem; color: var(--c-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.pkg-card-title { font-size: 1.18rem; margin-bottom: 8px; }
.pkg-card-summit { font-size: 0.88rem; color: var(--c-earth); margin-bottom: 8px; }
.pkg-card-overview { font-size: 0.9rem; color: var(--c-muted); margin-bottom: 16px; flex: 1; }
.pkg-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--c-line); }
.pkg-price { font-size: 0.85rem; color: var(--c-muted); }
.pkg-price strong { color: var(--c-primary); font-size: 1.15rem; }
.pkg-arrow { color: var(--c-secondary); font-weight: 700; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-section { background: var(--c-white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 26px; border-radius: var(--radius); background: var(--c-bg); border: 1px solid var(--c-line); }
.why-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--c-secondary); display: block; margin-bottom: 10px; }
.why-title { font-size: 1.2rem; margin-bottom: 8px; }
.why-text { color: var(--c-earth); font-size: 0.93rem; }

/* ==========================================================================
   Photo gallery — Adventures we've shared
   ========================================================================== */
.gallery-section { background: var(--c-bg-alt); }
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 32px;
}
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    background: var(--c-line);
    position: relative;
}
.gallery-wide {
    grid-column: span 2;
    aspect-ratio: 8 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94), filter .45s;
    filter: brightness(.95);
}
.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.045);
    filter: brightness(1.05);
}
.gallery-item:focus { outline: 3px solid var(--c-secondary); outline-offset: 2px; }
.gallery-caption {
    text-align: center;
    font-size: 0.88rem;
    color: var(--c-muted);
    margin-top: 18px;
}
.gallery-caption a { color: var(--c-primary); font-weight: 600; }

/* Photo lightbox modal */
.photo-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .92);
    padding: 20px;
}
.photo-modal[hidden] { display: none; }
.photo-modal-close {
    position: fixed;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: .7;
    padding: 6px 12px;
    z-index: 2001;
    border-radius: 4px;
    transition: opacity .15s, background .15s;
}
.photo-modal-close:hover,
.photo-modal-close:focus { opacity: 1; background: rgba(255,255,255,.12); outline: none; }
.photo-modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(92vw, 1100px);
}
.photo-modal-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.photo-modal-caption {
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
    margin-top: 14px;
    text-align: center;
    max-width: 640px;
    line-height: 1.5;
}

/* ==========================================================================
   Testimonials — infinite marquee
   ========================================================================== */
.testimonials-section { overflow: hidden; }
.testimonials-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 32px;
    /* fade edges so the loop is invisible */
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testimonials-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: tmarquee 60s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes tmarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review card */
.tcard {
    width: 360px;
    flex-shrink: 0;
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 24px 26px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 4px 0;
    border: 1px solid var(--c-line);
}
.tcard-stars { color: #d4a017; font-size: 1.05rem; letter-spacing: 3px; line-height: 1; }
.tcard-star-empty { color: var(--c-line); }
.tcard-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--c-dark);
    font-style: italic;
    margin: 0;
    flex: 1;
    /* clamp to 5 lines so all cards stay uniform height */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tcard-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 16px;
    border-top: 1px solid var(--c-line);
    margin-top: auto;
}
.tcard-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--c-secondary);
}
.tcard-name  { display: block; font-weight: 700; font-size: 0.92rem; color: var(--c-dark); }
.tcard-meta  { display: block; font-size: 0.76rem; color: var(--c-muted); margin-top: 1px; }
.tcard-trip  { display: block; font-size: 0.73rem; color: var(--c-primary); margin-top: 2px; font-weight: 600; }

/* ==========================================================================
   Trust badges
   ========================================================================== */
.trust-section { background: var(--c-primary); color: var(--c-on-primary); padding: 32px 0; }
.trust-label { text-align: center; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; color: #E8DCC8; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.trust-badge {
    background: rgba(247, 243, 238, 0.12); color: var(--c-on-primary);
    padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 600;
    border: 1px solid rgba(247, 243, 238, 0.2);
}

/* ==========================================================================
   Blog teaser cards
   ========================================================================== */
.blog-teaser-section { background: var(--c-bg); }
.post-card {
    background: var(--c-white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card a { display: block; color: inherit; }
.post-card-art { aspect-ratio: 2 / 1; overflow: hidden; }
.post-card-art svg { width: 100%; height: 100%; }
.post-card-art img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 18px 20px 22px; }
.post-card-meta { font-size: 0.8rem; color: var(--c-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.post-card-title { font-size: 1.15rem; margin-bottom: 8px; }
.post-card-excerpt { color: var(--c-earth); font-size: 0.9rem; }
.post-card-read { color: var(--c-secondary); font-weight: 600; font-size: 0.88rem; display: inline-block; margin-top: 10px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { background: var(--c-deep); color: var(--c-on-dark); padding: 56px 0; text-align: center; }
.final-cta-title { font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--c-on-dark); margin-bottom: 12px; }
.final-cta-text { color: #E8DCC8; max-width: 52ch; margin: 0 auto 26px; font-size: 1.05rem; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Hub page
   ========================================================================== */
.hub-hero { position: relative; color: var(--c-on-primary); overflow: hidden; }
.hub-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hub-hero-svg { width: 100%; height: 100%; object-fit: cover; }
.hub-hero-img { width: 100%; height: 100%; object-fit: cover; }
.hub-hero-overlay { position: absolute; inset: 0; background: rgba(63, 37, 15, 0.5); }
.hub-hero-content { position: relative; z-index: 1; padding: 56px 20px 64px; max-width: var(--container); margin: 0 auto; }
.hub-hero-content h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--c-on-primary); margin-bottom: 14px; max-width: 16ch; }
.hub-hero-tagline { font-size: 1.2rem; color: #E8DCC8; margin-bottom: 18px; max-width: 60ch; }
.hub-hero-intro { font-size: 1.02rem; color: #E8DCC8; max-width: 70ch; margin-bottom: 26px; }
.hub-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.breadcrumb { font-size: 0.85rem; margin-bottom: 18px; color: #E8DCC8; }
.breadcrumb a { color: #E8DCC8; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }
.breadcrumb-light { color: var(--c-muted); }
.breadcrumb-light a { color: var(--c-secondary); }

/* Quick facts */
.quick-facts { background: var(--c-bg-alt); padding: 28px 0; border-bottom: 1px solid var(--c-line); }
.quick-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.quick-fact { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.quick-fact-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--c-primary); }
.quick-fact-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); }
.quick-facts-note { text-align: center; margin-top: 18px; color: var(--c-earth); font-size: 0.95rem; }

/* Hub trust */
.trust-section-hub { background: var(--c-bg-alt); }
.hub-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hub-trust-item { display: flex; align-items: center; gap: 14px; color: var(--c-dark); }
.hub-trust-item svg { color: var(--c-primary); flex-shrink: 0; }
.hub-trust-item strong { color: var(--c-primary); }

/* ==========================================================================
   Package detail
   ========================================================================== */
.pkg-hero { position: relative; color: var(--c-on-primary); overflow: hidden; }
.pkg-hero-bg { position: absolute; inset: 0; z-index: 0; }
.pkg-hero-svg { width: 100%; height: 100%; object-fit: cover; }
.pkg-hero-img { width: 100%; height: 100%; object-fit: cover; }
.pkg-hero-overlay { position: absolute; inset: 0; background: rgba(63, 37, 15, 0.5); }
.pkg-hero-content { position: relative; z-index: 1; padding: 48px 20px 52px; max-width: var(--container); margin: 0 auto; }
.pkg-hero-region { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-secondary); font-weight: 600; margin-bottom: 10px; }
.pkg-hero-content h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: var(--c-on-primary); margin-bottom: 18px; max-width: 20ch; }
.pkg-hero-meta { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.95rem; color: #E8DCC8; }
.pkg-hero-meta-item strong { color: #fff; }

.pkg-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 48px 20px; align-items: start; }
.pkg-main { min-width: 0; }
.pkg-section { margin-bottom: 40px; }
.pkg-section h2 { font-size: 1.55rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--c-line); }
.pkg-overview { font-size: 1.1rem; color: var(--c-dark); }

.pkg-highlights { display: grid; gap: 12px; }
.pkg-highlights li { display: flex; gap: 12px; align-items: flex-start; }
.pkg-highlights svg { color: var(--c-primary); flex-shrink: 0; margin-top: 3px; }

.itinerary { display: grid; gap: 0; counter-reset: none; }
.itinerary-day { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--c-line); }
.itinerary-day:last-child { border-bottom: none; }
.itinerary-day-num {
    font-family: var(--font-head); font-weight: 700; color: var(--c-secondary);
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.itinerary-day-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.itinerary-day-body p { color: var(--c-earth); font-size: 0.95rem; }

.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inclusions-col { padding: 22px; border-radius: var(--radius); }
.inclusions-in { background: #E8F0E8; border: 1px solid #C8DCC8; }
.inclusions-out { background: #F4E8E0; border: 1px solid #E8D2C2; }
.inclusions-col h3 { font-size: 1.1rem; margin-bottom: 14px; }
.inclusions-in h3 { color: #1f5a3a; }
.inclusions-out h3 { color: #8a4a2a; }
.inclusions-col ul { display: grid; gap: 9px; }
.inclusions-col li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.inclusions-in svg { color: #1f5a3a; flex-shrink: 0; margin-top: 3px; }
.inclusions-out svg { color: #8a4a2a; flex-shrink: 0; margin-top: 3px; }

.difficulty-bar { display: flex; gap: 8px; margin-bottom: 10px; }
.difficulty-dot { width: 28px; height: 12px; border-radius: 6px; background: var(--c-line); }
.difficulty-dot.is-filled { background: var(--c-primary); }
.difficulty-label { font-weight: 700; color: var(--c-primary); margin-bottom: 8px; }
.difficulty-note { color: var(--c-earth); font-size: 0.95rem; }
.pkg-season { font-size: 1.05rem; color: var(--c-dark); }

.pkg-faq-section { }
.faq-list { display: grid; gap: 12px; }
.faq-item {
    background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-sm);
    padding: 4px 20px; box-shadow: var(--shadow-sm);
}
.faq-item summary {
    font-weight: 600; color: var(--c-dark); padding: 16px 0; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--c-secondary); transition: var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 0 16px; color: var(--c-earth); }

/* Booking sidebar */
.pkg-aside { position: sticky; top: calc(var(--header-h) + 20px); }
.pkg-aside-card {
    background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow); display: grid; gap: 14px;
}
.pkg-aside-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); }
.pkg-aside-price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--c-primary); line-height: 1; }
.pkg-aside-unit { font-size: 0.85rem; color: var(--c-muted); font-family: var(--font-body); font-weight: 400; }
.pkg-aside-tier { font-size: 0.88rem; color: var(--c-earth); margin-bottom: 4px; }
.pkg-aside-facts { display: grid; gap: 10px; padding-top: 14px; border-top: 1px solid var(--c-line); }
.pkg-aside-facts li { display: flex; justify-content: space-between; font-size: 0.9rem; }
.pkg-aside-facts span { color: var(--c-muted); }
.pkg-aside-facts strong { color: var(--c-dark); }
.pkg-aside-note { font-size: 0.82rem; color: var(--c-muted); text-align: center; }

.pkg-related { background: var(--c-bg-alt); }

/* ==========================================================================
   Destination cards (on Other Destinations hub)
   ========================================================================== */
.dest-card {
    background: var(--c-white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--c-line);
    transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dest-card-art { aspect-ratio: 16 / 9; overflow: hidden; }
.dest-card-art img { width: 100%; height: 100%; object-fit: cover; }
.dest-card-body { padding: 22px; }
.dest-card-title { font-size: 1.2rem; margin-bottom: 8px; }
.dest-card-overview { color: var(--c-earth); font-size: 0.9rem; margin-bottom: 12px; }
.dest-highlights { display: grid; gap: 5px; }
.dest-highlights li {
    font-size: 0.85rem; color: var(--c-muted); padding-left: 16px; position: relative;
}
.dest-highlights li::before {
    content: ""; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--c-secondary);
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { background: var(--c-primary); color: var(--c-on-primary); padding: 48px 0 52px; }
.page-hero h1 { color: var(--c-on-primary); font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 14px; }
.page-hero-lead { color: #E8DCC8; max-width: 64ch; font-size: 1.08rem; }
.page-hero-about { background: var(--c-deep); }
.page-hero-contact { background: var(--c-earth); }
.page-hero-post { background: var(--c-deep); }
.page-hero-404 { background: var(--c-primary); text-align: center; padding: 80px 0; }
.page-hero-404 .error-code { font-family: var(--font-head); font-size: 5rem; font-weight: 700; color: var(--c-secondary); line-height: 1; }
.page-hero-404 .final-cta-actions { margin-top: 24px; }
.page-hero-404 h1 { margin-bottom: 14px; }

/* Prose (about, blog) */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.prose p { margin-bottom: 18px; color: var(--c-dark); font-size: 1.05rem; }
.post-prose { max-width: 760px; }
.post-meta { font-size: 0.85rem; color: #E8DCC8; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.post-cta {
    max-width: 760px; margin: 48px auto 0; background: var(--c-bg-alt);
    border-radius: var(--radius); padding: 32px; text-align: center;
}
.post-cta h2 { margin-bottom: 10px; }
.post-cta p { color: var(--c-earth); margin-bottom: 20px; }
.post-cta .btn { margin: 0 6px; }
.post-related { max-width: 1000px; margin: 56px auto 0; }
.post-related h2 { text-align: center; margin-bottom: 28px; }

/* ==========================================================================
   Catalog (packages with filters)
   ========================================================================== */
.catalog-section { background: var(--c-bg); }
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.catalog-filters {
    position: sticky; top: calc(var(--header-h) + 20px);
    background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius);
    padding: 22px; box-shadow: var(--shadow-sm);
}
.filter-heading { font-size: 1.15rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--c-line); }
.filter-group { margin-bottom: 20px; }
.filter-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--c-dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.filter-input {
    width: 100%; padding: 10px 12px; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.92rem; background: var(--c-white); color: var(--c-dark);
}
.filter-input:focus { border-color: var(--c-secondary); outline: none; box-shadow: 0 0 0 3px rgba(167,123,80,0.18); }
.filter-options { display: grid; gap: 7px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; cursor: pointer; color: var(--c-dark); }
.filter-check input { accent-color: var(--c-primary); width: 16px; height: 16px; }
.filter-range { width: 100%; accent-color: var(--c-primary); }
.catalog-count { font-size: 0.92rem; color: var(--c-muted); margin-bottom: 20px; }
.catalog-count strong { color: var(--c-dark); }
.catalog-empty { text-align: center; padding: 48px 20px; color: var(--c-muted); font-size: 1.05rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-section { background: var(--c-bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.contact-form-wrap, .contact-aside { display: grid; gap: 22px; }
.contact-form, .contact-aside-card {
    background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius);
    padding: 30px; box-shadow: var(--shadow-sm);
}
.contact-form h2, .contact-aside-card h2 { font-size: 1.4rem; margin-bottom: 8px; }
.form-intro { color: var(--c-earth); font-size: 0.95rem; margin-bottom: 22px; }
.form-row { margin-bottom: 18px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--c-dark); }
.req { color: #b34700; }
.form-input {
    width: 100%; padding: 11px 14px; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.95rem; background: var(--c-white); color: var(--c-dark);
}
.form-input:focus { border-color: var(--c-secondary); outline: none; box-shadow: 0 0 0 3px rgba(167,123,80,0.18); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-fineprint { font-size: 0.82rem; color: var(--c-muted); text-align: center; margin-top: 12px; }

.form-success {
    background: #E8F0E8; border: 1px solid #C8DCC8; border-radius: var(--radius);
    padding: 36px; text-align: center; display: grid; gap: 14px; justify-items: center;
}
.form-success svg { color: #1f5a3a; }
.form-success h2 { color: #1f5a3a; }
.form-success p { color: #2a5a3a; max-width: 48ch; }

.contact-list { display: grid; gap: 16px; margin-bottom: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 3px; }
.contact-list-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); }
.contact-list a { font-weight: 600; }
.contact-trust { display: grid; gap: 11px; }
.contact-trust li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--c-dark); }
.contact-trust svg { color: var(--c-primary); flex-shrink: 0; margin-top: 3px; }
.contact-aside-trust { background: var(--c-bg-alt); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-dark); color: #D8C8B8; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; margin-bottom: 36px; }
.footer-brand .brand-logo-footer { filter: none; opacity: 1; background: rgba(255, 255, 255, 0.85); border-radius: 6px; padding: 4px 10px; }
.footer-tagline { margin: 16px 0; font-size: 0.95rem; color: #C8B8A8; max-width: 36ch; }
.footer-conservation { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--c-secondary); font-weight: 600; }
.footer-conservation svg { color: var(--c-secondary); }
.footer-heading { font-size: 1rem; color: var(--c-on-primary); margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #D8C8B8; font-size: 0.92rem; }
.footer-col a:hover { color: var(--c-secondary); }
.footer-contact li { margin-bottom: 12px; }
.footer-contact a { display: flex; gap: 9px; align-items: center; }
.footer-contact svg { color: var(--c-secondary); flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(247,243,238,0.1);
    display: flex; align-items: center; justify-content: center; color: #D8C8B8;
}
.footer-social a:hover { background: var(--c-secondary); color: var(--c-dark); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; padding: 24px 0; border-top: 1px solid rgba(247,243,238,0.12); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(247,243,238,0.12); font-size: 0.85rem; color: #A89888; }
.footer-note { margin-top: 6px; }

/* Floating WhatsApp */
.wa-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%; background: #1f7a4d; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); background: #155c39; color: #fff; }

/* ==========================================================================
   Sticky mobile booking bar (package pages, mobile only)
   ========================================================================== */
.pkg-sticky-cta {
    display: none; /* hidden on desktop, shown via media query */
}

/* ==========================================================================
   Responsive — mobile first means we scale UP, but we handle tablets/phones
   Strategy:
   - 1024px: 3-col → 2-col grids, sidebars stack
   - 760px:  Mobile nav, compact card grids go 2-col, large cards stay 1-col
   - 480px:  Tighter 2-col cards, reduced spacing
   - 380px:  Compact cards → 1-col for very narrow phones
   ========================================================================== */
@media (max-width: 1024px) {
    .hubs-grid, .tiers-grid, .why-grid, .cards-grid, .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .quick-facts-grid { grid-template-columns: repeat(2, 1fr); }
    .hub-trust { grid-template-columns: 1fr; gap: 16px; }
    .pkg-layout { grid-template-columns: 1fr; }
    .pkg-aside { position: static; max-width: 480px; }
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-filters { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .section { padding: 36px 0; }
    .container { padding: 0 16px; }
    .header-inner { flex-wrap: wrap; height: auto; padding: 6px 12px; gap: 6px; }
    .brand { height: 44px; flex-shrink: 1; min-width: 0; max-width: calc(100vw - 110px); overflow: hidden; }
    .brand-logo { height: 100%; max-height: 44px; width: auto; max-width: 100%; padding: 0.25rem 0; object-fit: contain; }

    /* Mobile nav — all 4 items (logo, hamburger, USD, WhatsApp) on one line */
    .nav-toggle { display: flex; padding: 6px; flex-shrink: 0; }
    .nav-toggle-bar { width: 20px; height: 2.5px; }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .primary-nav {
        order: 5; width: 100%; max-height: 0; overflow: hidden;
        transition: max-height 280ms ease; margin-left: 0;
    }
    .primary-nav.is-open { max-height: 540px; }
    .primary-nav ul { flex-direction: column; gap: 2px; padding: 8px 0 4px; }
    .primary-nav a { padding: 14px 12px; border-radius: var(--radius-sm); min-height: 44px; display: flex; align-items: center; }
    .header-actions { gap: 6px; flex-shrink: 0; margin-left: auto; }
    .header-cta span { display: none; }
    .header-cta { display: none; } /* hidden on mobile — floating WhatsApp button covers this */
    .currency-btn { min-height: 36px; padding: 6px 8px; font-size: 0.78rem; }
    .nav-toggle { margin-left: 8px; } /* gap between currency and hamburger */
    .currency-flag { font-size: 0.78rem; }

    /* Hero — reduced padding for less scroll */
    .hero-content { padding: 44px 16px 56px; }
    .hero-eyebrow { font-size: 12px; margin-bottom: 14px; }
    .hero-sub { margin-bottom: 24px; }
    /* Hero CTA — two buttons side-by-side on all mobile sizes */
    .hero-cta { flex-direction: row; gap: 10px; }
    .hero-cta .btn { flex: 1; min-height: 48px; padding: 12px 14px; font-size: 0.88rem; }
    .hero-cta .btn svg { width: 16px; height: 16px; }
    /* Hub hero & final CTA — stack vertically (single context, full width reads better) */
    .hub-hero-cta .btn, .final-cta-actions .btn { width: 100%; min-height: 48px; }
    .hub-hero-cta, .final-cta-actions { flex-direction: column; gap: 10px; }
    .hero-trust { gap: 14px; font-size: 0.82rem; }

    /* Hub hero — tighter on mobile */
    .hub-hero-content { padding: 40px 16px 48px; }
    .pkg-hero-content { padding: 36px 16px 40px; }

    /* Cards: compact grids go 2-col on mobile to reduce scroll depth.
       Hub cards, why cards, package/blog/dest cards all 2-col.
       Tier cards stay 1-col — text-heavy, better full width. */
    .hubs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tiers-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cards-grid, .cards-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Compact card styling for 2-col mobile */
    .pkg-card-art { padding: 10px; }
    .pkg-tier-tag, .pkg-difficulty { font-size: 0.62rem; padding: 3px 7px; }
    .pkg-card-body { padding: 12px 14px 14px; }
    .pkg-card-region { font-size: 0.72rem; margin-bottom: 5px; }
    .pkg-card-title { font-size: 0.92rem; margin-bottom: 6px; line-height: 1.2; }
    .pkg-card-summit { display: none; } /* hide on 2-col mobile to save height */
    .pkg-card-overview { display: none; } /* hide on 2-col mobile to save height */
    .pkg-card-foot { padding-top: 10px; }
    .pkg-price { font-size: 0.76rem; }
    .pkg-price strong { font-size: 0.98rem; }

    /* Blog cards — compact 2-col */
    .post-card-art { aspect-ratio: 16 / 10; }
    .post-card-body { padding: 12px 14px 14px; }
    .post-card-meta { font-size: 0.7rem; margin-bottom: 5px; }
    .post-card-title { font-size: 0.92rem; margin-bottom: 6px; line-height: 1.2; }
    .post-card-excerpt { display: none; } /* hide excerpt on 2-col mobile */
    .post-card-read { font-size: 0.78rem; margin-top: 6px; }

    /* Destination cards — compact 2-col */
    .dest-card-body { padding: 12px 14px 14px; }
    .dest-card-title { font-size: 0.92rem; margin-bottom: 5px; }
    .dest-card-overview { font-size: 0.8rem; margin-bottom: 8px; }
    .dest-highlights { display: none; } /* hide highlights on 2-col mobile */

    /* Quick facts — keep 2-col on mobile */
    .quick-facts-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .quick-fact-num { font-size: 1.3rem; }
    .quick-fact-label { font-size: 0.72rem; }

    /* Hub trust — stack */
    .hub-trust { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hub-trust-item { font-size: 0.82rem; gap: 10px; }
    .hub-trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }
    .hub-trust-item strong { font-size: 0.82rem; }

    /* Inclusions — stack for readability */
    .inclusions-grid { grid-template-columns: 1fr; gap: 16px; }
    .inclusions-col { padding: 18px; }

    /* Itinerary — stack day number above body */
    .itinerary-day { grid-template-columns: 1fr; gap: 6px; }
    .itinerary-day-num { font-size: 0.82rem; }
    .itinerary-day-body h3 { font-size: 1.02rem; }
    .itinerary-day-body p { font-size: 0.9rem; }

    /* Forms */
    .form-grid-2 { grid-template-columns: 1fr; gap: 14px; }
    .form-input { min-height: 44px; padding: 12px 14px; font-size: 16px; } /* 16px prevents iOS zoom */
    .filter-input { min-height: 44px; font-size: 16px; }
    .filter-check { min-height: 40px; }
    .filter-check input { width: 18px; height: 18px; }

    /* Footer — 2-col on mobile */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand .brand-logo-footer { height: 44px; }
    .footer-tagline { font-size: 0.88rem; }
    .footer-heading { font-size: 0.88rem; margin-bottom: 12px; }
    .footer-col a { font-size: 0.86rem; }
    .footer-contact li { margin-bottom: 10px; }
    .footer-social a { width: 36px; height: 36px; }
    .footer-bottom { font-size: 0.78rem; padding-top: 16px; }
    .site-footer { padding: 36px 0 20px; }

    /* Contact forms — reduced padding */
    .contact-form, .contact-aside-card, .post-cta { padding: 20px; }
    .pkg-aside-card { padding: 20px; }
    .pkg-aside-price { font-size: 1.7rem; }

    /* Section heads — tighter */
    .section-head { margin-bottom: 28px; }
    .section-title { font-size: 1.5rem; }
    .section-lead { font-size: 0.95rem; margin-top: 10px; }

    /* Trust badges — smaller */
    .trust-badge { font-size: 0.78rem; padding: 6px 14px; }

    /* Testimonials — narrower cards on mobile */
    .tcard { width: 280px; padding: 18px 20px 16px; gap: 10px; }
    .tcard-text { font-size: 0.86rem; -webkit-line-clamp: 4; line-height: 1.55; }
    .tcard-photo { width: 44px; height: 44px; }
    .tcard-name { font-size: 0.86rem; }
    .tcard-meta { font-size: 0.72rem; }
    .tcard-trip { font-size: 0.7rem; }
    .testimonials-marquee { margin-top: 24px; }

    /* Photo gallery — 2 columns on mobile, wide items span both */
    .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; margin-top: 24px; }
    .gallery-wide { grid-column: span 2; aspect-ratio: 16 / 7; }
    .gallery-caption { font-size: 0.82rem; margin-top: 14px; }

    /* Final CTA — tighter */
    .final-cta { padding: 40px 0; }
    .final-cta-text { font-size: 0.95rem; margin-bottom: 20px; }

    /* WhatsApp float — slightly smaller, move up to avoid sticky bar */
    .wa-float { width: 48px; height: 48px; bottom: 16px; right: 14px; }
    .wa-float svg { width: 24px; height: 24px; }

    /* Page hero — reduced padding */
    .page-hero { padding: 36px 0 40px; }
    .page-hero h1 { font-size: 1.6rem; margin-bottom: 10px; }
    .page-hero-lead { font-size: 0.95rem; }
    .page-hero-404 { padding: 56px 0; }
    .page-hero-404 .error-code { font-size: 3.5rem; }

    /* Pkg hero meta — tighter */
    .pkg-hero-meta { gap: 12px; font-size: 0.85rem; }
    .pkg-hero-content h1 { font-size: 1.5rem; margin-bottom: 14px; }
    .pkg-section { margin-bottom: 28px; }
    .pkg-section h2 { font-size: 1.3rem; margin-bottom: 12px; }
    .pkg-overview { font-size: 1rem; }
    .pkg-layout { padding: 32px 16px; }

    /* Prose — tighter */
    .prose p { font-size: 0.98rem; margin-bottom: 14px; }
    .prose h2 { font-size: 1.35rem; margin: 28px 0 12px; }

    /* Catalog filters — collapsible on mobile */
    .catalog-filters { padding: 16px; }
    .filter-heading { cursor: pointer; position: relative; margin-bottom: 0; padding-bottom: 0; border-bottom: none; list-style: none; display: flex; justify-content: space-between; align-items: center; }
    .filter-heading::after { content: "+"; font-size: 1.5rem; color: var(--c-secondary); transition: var(--transition); }
    .catalog-filters.is-open .filter-heading::after { transform: rotate(45deg); }
    .catalog-filters .filter-group,
    .catalog-filters #filter-reset { display: none; }
    .catalog-filters.is-open .filter-group,
    .catalog-filters.is-open #filter-reset { display: block; }
    .catalog-filters.is-open .filter-heading { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--c-line); }

    /* Hub card body — compact for 2-col mobile */
    .hub-card-body { padding: 14px 14px 16px; }
    .hub-card-title { font-size: 1.05rem; margin-bottom: 6px; }
    .hub-card-tagline { font-size: 0.82rem; min-height: 2.4em; margin-bottom: 10px; }
    .hub-card-meta { flex-wrap: wrap; gap: 6px; }
    .hub-price { font-size: 0.78rem; }
    .hub-price strong { font-size: 0.95rem; }
    .hub-arrow { font-size: 0.78rem; }
    .hub-card-art { aspect-ratio: 16 / 10; }

    /* Tier cards — full width on mobile, comfortable padding */
    .tier-card { padding: 22px; }
    .tier-name { font-size: 1.2rem; }
    .tier-range { font-size: 1rem; }
    .tier-desc { font-size: 0.9rem; }

    /* Why cards — compact 2-col */
    .why-card { padding: 16px; }
    .why-num { font-size: 1.4rem; margin-bottom: 6px; }
    .why-title { font-size: 0.95rem; margin-bottom: 5px; line-height: 1.2; }
    .why-text { font-size: 0.8rem; line-height: 1.4; }

    /* Buttons — ensure 44px min touch target */
    .btn { min-height: 44px; padding: 12px 20px; }
    .btn-lg { min-height: 48px; padding: 14px 24px; }

    /* Breadcrumb — smaller */
    .breadcrumb { font-size: 0.78rem; margin-bottom: 14px; }

    /* Add bottom padding so content isn't hidden behind sticky CTA bar */
    body.has-sticky-cta { padding-bottom: 72px; }

    /* Sticky mobile booking bar — fixed at bottom of viewport */
    .pkg-sticky-cta {
        display: flex; align-items: center; justify-content: space-between; gap: 12px;
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
        background: var(--c-white); border-top: 1px solid var(--c-line);
        box-shadow: 0 -4px 18px rgba(63, 37, 15, 0.12);
        padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }
    .pkg-sticky-price { display: flex; flex-direction: column; line-height: 1.1; }
    .pkg-sticky-price-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); }
    .pkg-sticky-price-value { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--c-primary); }
    .pkg-sticky-price-unit { font-size: 0.7rem; color: var(--c-muted); font-family: var(--font-body); font-weight: 400; }
    .pkg-sticky-actions { display: flex; gap: 8px; flex-shrink: 0; }
    .pkg-sticky-actions .btn { min-height: 44px; padding: 10px 16px; font-size: 0.88rem; }
    .pkg-sticky-actions .btn svg { width: 16px; height: 16px; }

    /* WhatsApp float — move up to avoid overlapping sticky CTA */
    body.has-sticky-cta .wa-float { bottom: 76px; }
}

@media (max-width: 480px) {
    /* Tighter 2-col cards on small phones */
    .cards-grid, .cards-grid-3 { gap: 10px; }
    .pkg-card-body { padding: 10px 12px 12px; }
    .pkg-card-title { font-size: 0.85rem; }
    .pkg-card-region { font-size: 0.68rem; }
    .pkg-price strong { font-size: 0.9rem; }
    .post-card-body { padding: 10px 12px 12px; }
    .post-card-title { font-size: 0.85rem; }
    .dest-card-body { padding: 10px 12px 12px; }
    .dest-card-title { font-size: 0.85rem; }

    /* Hero — even tighter */
    .hero-content { padding: 36px 14px 44px; }
    .hero-title { font-size: 1.8rem; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 20px; }

    /* Section padding — minimal */
    .section { padding: 30px 0; }
    .section-title { font-size: 1.35rem; }

    /* Hub hero — minimal padding */
    .hub-hero-content { padding: 32px 14px 36px; }
    .pkg-hero-content { padding: 28px 14px 32px; }
    .pkg-hero-content h1 { font-size: 1.35rem; }

    /* Footer — tighter */
    .footer-grid { gap: 18px; }
    .site-footer { padding: 28px 0 16px; }

    /* Tier/why cards — tighter on small phones */
    .tier-card { padding: 18px; }
    .why-card { padding: 14px; }
    .why-num { font-size: 1.2rem; }
    .why-title { font-size: 0.88rem; }
    .why-text { font-size: 0.76rem; }

    /* Hub cards — tighter on small phones */
    .hubs-grid { gap: 10px; }
    .hub-card-body { padding: 12px 12px 14px; }
    .hub-card-title { font-size: 0.92rem; }
    .hub-card-tagline { font-size: 0.76rem; min-height: 2em; margin-bottom: 8px; }

    /* Testimonials — even narrower on small phones */
    .tcard { width: 250px; padding: 16px 18px 14px; }
    .tcard-text { font-size: 0.82rem; -webkit-line-clamp: 3; }

    /* Photo gallery — tighter gap on small phones */
    .photo-gallery { gap: 4px; }
    .gallery-wide { aspect-ratio: 2 / 1; }

    /* Quick facts — tighter */
    .quick-facts-grid { gap: 10px; }
    .quick-fact-num { font-size: 1.15rem; }
    .quick-fact-label { font-size: 0.66rem; }

    /* Inclusions — tighter */
    .inclusions-col { padding: 14px; }
    .inclusions-col h3 { font-size: 1rem; }
    .inclusions-col li { font-size: 0.86rem; }

    /* FAQ — tighter */
    .faq-item { padding: 4px 16px; }
    .faq-item summary { padding: 14px 0; font-size: 0.92rem; }
    .faq-item p { font-size: 0.88rem; }

    /* Pkg aside — tighter */
    .pkg-aside-card { padding: 16px; }
    .pkg-aside-price { font-size: 1.5rem; }

    /* Container — minimal side padding */
    .container { padding: 0 14px; }
}

@media (max-width: 380px) {
    /* Very narrow phones — keep cards 2-col, tighten further */
    .cards-grid, .cards-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .pkg-card-body { padding: 10px 12px 12px; }
    .pkg-card-title { font-size: 0.82rem; }
    .pkg-card-region { font-size: 0.66rem; }
    .pkg-card-summit { display: none; }
    .pkg-card-overview { display: none; }
    .pkg-price strong { font-size: 0.9rem; }
    .post-card-body { padding: 10px 12px 12px; }
    .post-card-title { font-size: 0.82rem; }
    .post-card-excerpt { display: none; }
    .dest-card-body { padding: 10px 12px 12px; }
    .dest-card-title { font-size: 0.82rem; }
    .dest-card-overview { display: none; }

    /* Hero title — smaller */
    .hero-title { font-size: 1.6rem; }

    /* Footer — 1-col on very narrow */
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Brand — smaller, tighter max-width for very narrow phones */
    .brand { height: 40px; max-width: calc(100vw - 95px); }
    .brand-logo { max-height: 40px; padding: 0.25rem 0; }
    .nav-toggle { padding: 5px; }
    .nav-toggle-bar { width: 18px; height: 2px; }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
    .currency-btn { padding: 5px 6px; font-size: 0.7rem; min-height: 32px; }
    .header-inner { padding: 5px 10px; gap: 4px; }
    .header-actions { gap: 4px; }
    .nav-toggle { margin-left: 6px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Print */
@media print {
    .site-header, .wa-float, .nav-toggle, .header-actions, .footer-social { display: none; }
    body { background: #fff; color: #000; }
}
