/* =========================================================
   Marvel Travel & Logistics — premium safari stylesheet
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
    --forest:      #2C4A2E;
    --forest-deep: #1F3621;
    --forest-soft: #3F5E3D;
    --olive:       #C5D659;
    --olive-warm:  #B5C44A;
    --gold:        #D4B254;
    --ivory:       #FBF7EE;
    --cream:       #F4ECDC;
    --paper:       #EDE3CF;
    --charcoal:    #1B1611;
    --brown:       #4A3528;
    --brown-soft:  #6B4F3B;
    --tan:         #C28B5C;
    --tan-soft:    #D9A271;
    --earth:       #8B5E3C;
    --terracotta:  #B0623D;
    --sand:        #E8D6B3;
    --text:        #1F1B17;
    --text-soft:   #5B544B;
    --text-muted:  #8A8278;
    --line:        rgba(31,27,23,.10);
    --shadow-sm:   0 6px 18px rgba(15,12,8,.07);
    --shadow-md:   0 18px 40px rgba(15,12,8,.12);
    --shadow-lg:   0 32px 70px rgba(15,12,8,.18);

    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container-pad: clamp(20px, 4vw, 56px);
    --section-pad:   clamp(80px, 9vw, 140px);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }

/* Inline SVG icons — size to the current font-size of their context */
.ico {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
}
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--olive); color: var(--forest-deep); }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--forest); color: var(--ivory); padding: 10px 16px;
    z-index: 9999; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout helpers ---------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown-soft);
    margin: 0 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: currentColor;
    display: inline-block;
}
.eyebrow--olive { color: var(--forest); }
.eyebrow--olive::before { background: var(--olive); height: 2px; }
.eyebrow--light { color: var(--olive); }
.eyebrow--light::before { background: var(--olive); }

.h-display {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--text);
    margin: 0 0 22px;
}
.h-display--light { color: var(--ivory); }

.lede {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-soft);
    margin: 0 0 18px;
    max-width: 56ch;
}

/* ---------- 4. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .01em;
    padding: 14px 24px;
    border-radius: 999px;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
    will-change: transform;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn .ico { width: 16px; height: 16px; transition: transform .25s ease; position: relative; z-index: 2; }
.btn:hover .ico { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }
/* Light sweep on hover */
.btn::after {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 75%; height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.24) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left .65s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
    z-index: 1;
}
.btn:hover::after { left: 165%; }

.btn--primary {
    background: var(--forest);
    color: var(--ivory);
}
.btn--primary:hover {
    background: var(--forest-deep);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(31,54,33,.34), 0 0 24px rgba(197,214,89,.22);
}

.btn--ghost {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(255,255,255,.55);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.btn--pill { border-radius: 999px; }

/* ---------- 5. Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(251, 247, 238, .94);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
    background: rgba(251, 247, 238, .98);
    border-bottom-color: var(--line);
    box-shadow: 0 4px 18px rgba(15,12,8,.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand__mark {
    width: 38px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
}
.brand__wordmark {
    display: flex; flex-direction: column; line-height: 1;
}
.brand__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--forest-deep);
    letter-spacing: .02em;
}
.brand__sub {
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .28em;
    color: var(--text-soft);
    margin-top: 4px;
}
.brand--light .brand__name { color: var(--ivory); }
.brand--light .brand__sub  { color: rgba(247,242,233,.7); }

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}
.site-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 6px 0;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 22px; height: 2px;
    background: var(--forest);
    transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: translateX(-50%) scaleX(1); }
.site-nav a.is-active { color: var(--forest); }

.site-header__cta { padding: 12px 22px; }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    flex-direction: column; justify-content: center; gap: 5px;
    border-radius: 8px;
    background: rgba(44,74,46,.06);
}
.nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--forest-deep);
    margin: 0 auto;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    color: var(--ivory);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding-top: 90px;
}
.hero__slides {
    position: absolute; inset: 0; z-index: -2;
    will-change: transform;
}
.hero__slide {
    position: absolute;
    left: 0; right: 0;
    top: -15%; height: 130%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    transform: scale(1.05);
    animation: heroZoom 14s ease-in-out infinite alternate;
    animation-play-state: paused;
}
.hero__slide.is-active {
    opacity: 1;
    animation-play-state: running;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.16); }
}
.hero__overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(110deg, rgba(11,18,11,.78) 0%, rgba(11,18,11,.45) 45%, rgba(11,18,11,.20) 100%),
        linear-gradient(to top, rgba(11,18,11,.55) 0%, transparent 50%);
}

.hero__container {
    position: relative;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 100px;
}

.hero__content {
    position: relative;
    max-width: 700px;
    min-height: 420px;
}
/* Soft shadow keeps the light hero text readable over bright photo areas */
.hero__content .hero__eyebrow,
.hero__content .hero__title-line,
.hero__content .hero__title-accent,
.hero__content .hero__sub {
    text-shadow: 0 2px 16px rgba(8,12,8,.5), 0 1px 3px rgba(8,12,8,.45);
}
.hero__slide-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none;
}
.hero__slide-content.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

/* Staggered entrance — runs on load and each time a slide becomes active */
@keyframes heroIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.js .hero__slide-content .hero__eyebrow,
.js .hero__slide-content .hero__title-line,
.js .hero__slide-content .hero__title-accent,
.js .hero__slide-content .hero__sub,
.js .hero__slide-content .hero__ctas { opacity: 0; }

.hero.is-ready .hero__slide-content.is-active .hero__eyebrow            { animation: heroIn .7s cubic-bezier(.22,.7,.2,1) .10s both; }
.hero.is-ready .hero__slide-content.is-active .hero__title-line:nth-child(1) { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .22s both; }
.hero.is-ready .hero__slide-content.is-active .hero__title-line:nth-child(2) { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .30s both; }
.hero.is-ready .hero__slide-content.is-active .hero__title-accent       { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .40s both; }
.hero.is-ready .hero__slide-content.is-active .hero__sub                { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .52s both; }
.hero.is-ready .hero__slide-content.is-active .hero__ctas               { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .64s both; }

.hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(247,242,233,.8);
    display: inline-flex; align-items: center; gap: 12px;
    margin: 0 0 22px;
}
.hero__eyebrow-mark {
    display: inline-block; width: 30px; height: 1px;
    background: var(--olive);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.015em;
    margin: 0 0 22px;
}
.hero__title-line { display: block; }
.hero__title-accent {
    display: block;
    color: var(--olive);
    font-style: italic;
    font-weight: 500;
}

.hero__sub {
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(247,242,233,.86);
    margin: 0 0 30px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__badge {
    position: absolute;
    right: var(--container-pad);
    bottom: 100px;
    width: 170px; height: 170px;
    animation: rotate 28s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.hero__badge-svg {
    width: 100%; height: 100%;
}
.hero__badge-text {
    fill: rgba(255,255,255,.92);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
}

.hero__dots {
    position: absolute;
    left: var(--container-pad);
    bottom: 50px;
    display: flex; gap: 10px;
}
.hero__dot {
    width: 28px; height: 3px;
    background: rgba(255,255,255,.30);
    border-radius: 2px;
    transition: background .3s ease, width .3s ease;
}
.hero__dot.is-active {
    background: var(--olive);
    width: 50px;
}
.hero__dot:hover { background: rgba(255,255,255,.6); }

/* Torn edge dividers */
.edge {
    position: absolute;
    left: 0; right: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}
.edge--bottom { bottom: -1px; }
.edge--top    { top: -1px; }
.edge--invert path { fill: var(--ivory); }

/* ---------- 7. Promises strip ---------- */
.promises {
    background: var(--ivory);
    padding: 60px 0;
}
.promises__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.promises__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 24px;
    border-right: 1px solid var(--line);
}
.promises__item:last-child { border-right: none; }
.promises__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(44,74,46,.07);
    color: var(--forest);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.promises__title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 4px 0 4px;
}
.promises__copy {
    font-size: 13px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.55;
}

/* ---------- 8. About ---------- */
.about {
    padding: var(--section-pad) 0 calc(var(--section-pad) - 60px);
    position: relative;
    background:
        radial-gradient(ellipse 800px 600px at 90% 30%, rgba(194,139,92,.10), transparent 60%),
        var(--ivory);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.about__copy { position: relative; }

.about__media {
    position: relative;
    min-height: 540px;
}
.about__map {
    position: absolute;
    top: -30px; right: -40px;
    width: 260px;
    opacity: .22;
    pointer-events: none;
    z-index: 0;
}
.about__map-img { width: 100%; height: auto; }
.africa-svg { width: 100%; height: auto; display: block; }

.about__media-stage {
    position: relative;
    width: 100%; height: 100%;
}

/* Soft ambient glow behind the stage — modern depth */
.about__media-glow {
    position: absolute;
    top: -8%; right: -6%;
    width: 70%; aspect-ratio: 1;
    background: radial-gradient(circle at 50% 50%, rgba(197,214,89,.30), rgba(194,139,92,.12) 45%, transparent 70%);
    filter: blur(36px);
    z-index: 0;
    pointer-events: none;
    animation: aboutGlow 9s ease-in-out infinite alternate;
}
@keyframes aboutGlow {
    from { transform: translate3d(0,0,0) scale(1); opacity: .85; }
    to   { transform: translate3d(-14px,16px,0) scale(1.08); opacity: 1; }
}

.about__media-main {
    position: relative;
    width: 86%;
    margin-left: auto;
    border-radius: 26px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 30px 60px -22px rgba(31,54,33,.55), 0 8px 20px -10px rgba(0,0,0,.25);
}
.about__media-main img {
    width: 100%; height: 470px; object-fit: cover;
    transition: transform 1.4s cubic-bezier(.22,.7,.2,1), filter .6s ease;
    filter: saturate(1.04);
}
.about__media-main:hover img { transform: scale(1.06); }
/* Inner highlight ring (glass edge) */
.about__media-ring {
    position: absolute; inset: 0;
    border-radius: 26px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
    pointer-events: none;
}

/* Floating gradient accent block, now with a soft glassy edge */
.about__media-accent {
    position: absolute;
    right: -26px; bottom: -26px;
    width: 230px; height: 210px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--earth) 100%);
    border-radius: 24px;
    z-index: 0;
    opacity: .95;
    box-shadow: 0 18px 40px -16px rgba(31,54,33,.6);
}
/* Decorative dotted texture overlaying the accent */
.about__media-accent::after {
    content: "";
    position: absolute; inset: 14px;
    border-radius: 16px;
    background-image: radial-gradient(rgba(255,255,255,.28) 1.4px, transparent 1.4px);
    background-size: 16px 16px;
    opacity: .5;
}

/* Overlapping card — modern glassmorphic frame + float */
.about__media-overlap {
    position: absolute;
    left: -24px; bottom: 32px;
    width: 54%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    padding: 7px;
    background: rgba(251,247,238,.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 24px 50px -18px rgba(31,54,33,.5);
    animation: aboutFloat 6s ease-in-out infinite;
}
@keyframes aboutFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.about__media-overlap img {
    width: 100%; height: 196px; object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform 1.2s ease;
}
.about__media-overlap:hover img { transform: scale(1.06); }

/* Floating stat chip — the modern signature element */
.about__media-badge {
    position: absolute;
    top: 26px; left: -28px;
    z-index: 3;
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px 14px 16px;
    background: rgba(31,54,33,.92);
    color: var(--ivory);
    border-radius: 16px;
    border: 1px solid rgba(197,214,89,.35);
    box-shadow: 0 18px 36px -14px rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
}
.about__media-badge-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 600; line-height: 1;
    color: var(--olive);
}
.about__media-badge-num sup { font-size: .9rem; top: -.55em; }
.about__media-badge-label {
    font-size: 11.5px; line-height: 1.3;
    letter-spacing: .04em; text-transform: uppercase;
    color: rgba(247,242,233,.85);
}

@media (prefers-reduced-motion: reduce) {
    .about__media-glow,
    .about__media-overlap { animation: none !important; }
}

/* ---------- 9. Tours ---------- */
.tours { padding: var(--section-pad) 0; background: var(--ivory); }
.tours__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.tours__head .h-display { margin-bottom: 0; }

.link-circle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--text);
}
.link-circle__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .3s ease, background .3s ease;
}
.link-circle:hover .link-circle__btn {
    background: var(--forest-deep);
    transform: rotate(-12deg);
}
.link-circle__btn .ico { width: 18px; height: 18px; }

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

.tour-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-md);
    transition: transform .35s ease, box-shadow .35s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s ease, filter .5s ease;
}
.tour-card:hover img { transform: scale(1.08); filter: brightness(.88); }
.tour-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,18,11,.85) 0%, rgba(11,18,11,.15) 55%, transparent 100%);
}
.tour-card__icon {
    position: absolute;
    top: 18px; left: 18px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(251,247,238,.95);
    color: var(--forest);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
    z-index: 2;
}
.tour-card__body {
    position: absolute;
    left: 22px; right: 22px; bottom: 22px;
    z-index: 2;
    color: var(--ivory);
}
.tour-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.15;
}
.tour-card__link {
    display: inline-flex;
    align-items: center; gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--olive);
}
.tour-card__link .ico { transition: transform .3s ease; }
.tour-card:hover .tour-card__link .ico { transform: translateX(5px); }

/* ---------- 10. Stats strip ---------- */
.stats {
    position: relative;
    background:
        linear-gradient(110deg, var(--forest-deep) 0%, var(--forest) 50%, var(--earth) 130%);
    color: var(--ivory);
    padding: 80px 0;
    margin: 30px 0;
}
.stats .edge--invert path { fill: var(--ivory); }
.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    text-align: center;
}
.stat {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.stat__icon {
    font-size: 32px;
    color: var(--olive);
}
.stat__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 600;
    margin: 0;
    color: var(--olive);
    line-height: 1;
    letter-spacing: -.01em;
}
.stat__label {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(247,242,233,.78);
    margin: 6px 0 0;
}

/* ---------- 11. Services ---------- */
.services {
    padding: calc(var(--section-pad) - 30px) 0 var(--section-pad);
    background: var(--ivory);
    position: relative;
}
.services__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.services__lede { margin: 0 auto; }
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(44,74,46,.20);
}
.service-card__icon {
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--earth), var(--brown));
    color: var(--sand);
    font-size: 24px;
    margin: 0 auto 22px;   /* centred horizontally in the card */
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text);
}
.service-card p {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ---------- 12. Why ---------- */
.why {
    padding: var(--section-pad) 0;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
    position: relative;
}
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.why__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why__media img {
    width: 100%; height: 540px; object-fit: cover;
    transition: transform 1.2s ease;
}
.why__media:hover img { transform: scale(1.05); }
.why__media-badge {
    position: absolute;
    left: 24px; bottom: 24px;
    background: rgba(44,74,46,.92);
    color: var(--ivory);
    padding: 20px 26px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; gap: 14px;
}
.why__media-years {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--olive);
    line-height: 1;
}
.why__media-years sup { font-size: 1.2rem; }
.why__media-text {
    font-size: 13px;
    letter-spacing: .05em;
    max-width: 110px;
    line-height: 1.4;
}

.why__list {
    margin: 24px 0 28px;
    display: flex; flex-direction: column;
    gap: 14px;
}
.why__list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px;
    color: var(--text-soft);
}
.why__list .ico {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--forest-deep);
    stroke: var(--forest-deep);
    stroke-width: 2.5;
    padding: 5px;
    margin-top: 1px;
}
.why__closer {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--forest);
    margin: 0;
}

/* ---------- 13. Audiences ---------- */
.audiences {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(194,139,92,.08), transparent 70%),
        var(--ivory);
}
.audiences__head { text-align: center; margin-bottom: 24px; }
.audiences__intro { margin: 18px auto 0; }

/* --- Experience photo carousel --- */
.exp-carousel {
    margin-top: 48px;
    /* Full-bleed: break out of the centred container to span the viewport */
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.exp-carousel__viewport { overflow: hidden; padding: 30px 4px 40px; }
.exp-carousel__track {
    display: flex;
    gap: 26px;
    width: max-content;
    will-change: transform;
}
/* Seamless infinite marquee (enabled by JS once the set is duplicated) */
@keyframes expScroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(calc(-1 * var(--exp-shift, 50%)), 0, 0); }
}
.exp-carousel.is-marquee .exp-carousel__track {
    animation: expScroll var(--exp-duration, 48s) linear infinite;
}
.exp-carousel.is-marquee:hover .exp-carousel__track,
.exp-carousel.is-marquee:focus-within .exp-carousel__track {
    animation-play-state: paused;
}
.exp-card {
    flex: 0 0 auto;
    width: clamp(240px, 23vw, 300px);     /* fluid; ~4 across on desktop */
}
/* Staggered float — alternating vertical offset like the reference */
.exp-card:nth-child(even) { transform: translateY(40px); }

.exp-card__media {
    position: relative;
    aspect-ratio: 3 / 4.2;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-md);
    transition: transform .45s ease, box-shadow .45s ease;
}
.exp-card__media:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.exp-card__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease, filter .5s ease;
}
.exp-card__media:hover img { transform: scale(1.07); filter: brightness(.9); }
.exp-card__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,20,12,.92) 0%, rgba(15,20,12,.30) 48%, rgba(15,20,12,0) 78%);
}
.exp-card__badge {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-family: var(--font-display);
    font-size: 14px; font-weight: 600;
    color: var(--ivory);
    background: rgba(31,54,33,.55);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(197,214,89,.4);
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}
.exp-card__icon {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(251,247,238,.94);
    color: var(--forest);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 19px;
}
.exp-card__overlay {
    position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
    color: var(--ivory);
}
.exp-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 600; line-height: 1.15;
    margin: 0 0 8px;
}
.exp-card__copy {
    font-size: 13.5px; line-height: 1.55;
    color: rgba(247,242,233,.82);
    margin: 0 0 14px;
    /* Reveal copy on hover for a clean default state */
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .5s ease, opacity .4s ease, margin .4s ease;
}
.exp-card__media:hover .exp-card__copy { max-height: 90px; opacity: 1; }
.exp-card__more {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--olive);
}
.exp-card__more .ico { width: 15px; height: 15px; transition: transform .3s ease; }
.exp-card__media:hover .exp-card__more .ico { transform: translateX(5px); }

/* Edge fade so cards melt in/out at the sides */
.exp-carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

/* Carousel responsive tweaks */
@media (max-width: 820px) {
    .exp-carousel__track { gap: 20px; }
    .exp-card:nth-child(even) { transform: translateY(26px); }
    .exp-card__copy { max-height: 90px; opacity: 1; }   /* always show on touch */
}
@media (max-width: 560px) {
    .exp-card { width: 76vw; }                           /* 1 + peek */
    .exp-card:nth-child(even) { transform: none; }       /* no stagger on mobile */
    .exp-carousel__viewport { padding: 12px 4px 24px; }
}
@media (prefers-reduced-motion: reduce) {
    .exp-carousel.is-marquee .exp-carousel__track { animation: none !important; }
    .exp-card:nth-child(even) { transform: none !important; }
    .exp-carousel__viewport { overflow-x: auto; }
}

.audiences__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.audience-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.audience-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    isolation: isolate;
}
.audience-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.audience-card:hover .audience-card__media img { transform: scale(1.07); }
.audience-card__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,18,11,.55) 0%, transparent 55%);
}

.audience-card__icon {
    position: absolute;
    bottom: -22px; left: 20px;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--forest), var(--forest-deep));
    color: var(--olive);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 22px rgba(15,12,8,.25);
    z-index: 2;
    transition: transform .3s ease;
}
.audience-card:hover .audience-card__icon {
    transform: rotate(-6deg);
}

.audience-card__body {
    padding: 36px 24px 26px;
    display: flex; flex-direction: column;
    flex: 1;
}
.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 10px;
    line-height: 1.2;
    color: var(--text);
}
.audience-card p {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}
.audience-card__more {
    font-size: 12px;
    font-weight: 600;
    color: var(--forest);
    display: inline-flex; align-items: center; gap: 6px;
    letter-spacing: .04em;
    transition: gap .3s ease, color .3s ease;
}
.audience-card:hover .audience-card__more {
    gap: 10px;
    color: var(--earth);
}

/* ---------- 14. Signature mosaic ---------- */
.signature { padding: var(--section-pad) 0; background: var(--cream); }
.signature__head { text-align: center; margin-bottom: 56px; }
.signature__mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
}
.sig-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    isolation: isolate;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s ease;
}
.sig-tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
}
.sig-tile:hover img { transform: scale(1.08); }
.sig-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,18,11,.78) 0%, transparent 60%);
}
.sig-tile__caption {
    position: absolute;
    left: 22px; bottom: 18px;
    color: var(--ivory);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    z-index: 2;
}
.sig-tile--1 { grid-column: span 3; grid-row: span 1; }
.sig-tile--2 { grid-column: span 3; grid-row: span 1; }
.sig-tile--3 { grid-column: span 2; }
.sig-tile--4 { grid-column: span 2; }
.sig-tile--5 { grid-column: span 2; }

/* ---------- 15. Process ---------- */
.process { padding: var(--section-pad) 0; background: var(--ivory); }
.process__head { text-align: center; margin-bottom: 56px; }
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.process__grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .process__grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .process__grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process__grid--5 { grid-template-columns: 1fr; } }

.services__grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .services__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid--4 { grid-template-columns: 1fr; } }

.tours__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .tours__grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tours__grid--3 { grid-template-columns: 1fr; } }
.process__grid::before {
    content: "";
    position: absolute;
    top: 30px; left: 8%; right: 8%;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.step {
    background: var(--ivory);
    padding: 8px 14px 0;
    position: relative;
    z-index: 1;
    text-align: left;
}
.step__n {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--olive);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0 0 10px;
}
.step p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
}

/* ---------- 16. Touch (quote band) ---------- */
.touch {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--ivory);
    isolation: isolate;
    text-align: center;
}
.touch__overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to right, rgba(31,22,15,.82), rgba(74,53,40,.62)),
        radial-gradient(ellipse at top, rgba(194,139,92,.25), transparent 60%);
}
.touch__inner { max-width: 820px; margin: 0 auto; }
.touch__quote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.45;
    font-style: italic;
    font-weight: 500;
}
.touch__quote footer {
    margin-top: 26px;
    font-family: var(--font-body);
    font-size: 13px;
    font-style: normal;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--olive);
}

/* ---------- 17. Plan (final CTA) ---------- */
.plan {
    position: relative;
    padding: 130px 0;
    background-size: cover;
    background-position: center;
    color: var(--ivory);
    isolation: isolate;
}
.plan__overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(110deg, rgba(11,18,11,.72) 0%, rgba(11,18,11,.50) 60%, rgba(11,18,11,.30) 100%);
}
.plan__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.plan__copy p {
    max-width: 480px;
    color: rgba(247,242,233,.86);
    font-size: 1.02rem;
    margin: 0 0 28px;
}
.plan__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.plan__card {
    background: rgba(31,54,33,.92);
    border: 1px solid rgba(197,214,89,.18);
    border-radius: var(--radius-lg);
    padding: 14px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-lg);
}
.plan__row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 18px;
    border-radius: var(--radius-md);
    transition: background .25s ease;
}
.plan__row:not(:last-child) {
    border-bottom: 1px solid rgba(197,214,89,.12);
}
.plan__row:hover { background: rgba(197,214,89,.07); }
.plan__row-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(197,214,89,.14);
    color: var(--olive);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.plan__row-body strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 3px;
}
.plan__row-body small {
    font-size: 12.5px;
    color: rgba(247,242,233,.66);
}
.plan__row-arrow {
    color: var(--olive);
    transition: transform .3s ease;
}
.plan__row:hover .plan__row-arrow { transform: translateX(6px); }

/* ---------- 18. Footer ---------- */
.site-footer {
    background: var(--charcoal);
    color: rgba(247,242,233,.72);
    padding: 90px 0 24px;
    font-size: 14px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(247,242,233,.10);
}
.site-footer__tagline {
    margin: 20px 0 0;
    line-height: 1.6;
    max-width: 220px;
    color: rgba(247,242,233,.58);
}
.site-footer__col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--ivory);
    margin: 0 0 18px;
    letter-spacing: .04em;
}
.site-footer__col ul li {
    margin-bottom: 10px;
}
.site-footer__col ul li a {
    display: inline-block;
    transition: color .25s ease, transform .25s ease;
}
.site-footer__col a:hover { color: var(--olive); }
.site-footer__col ul li a:hover { transform: translateX(5px); }
.site-footer__contact li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
}
.site-footer__contact .lucide,
.site-footer__contact .ico {
    color: var(--olive);
    width: 18px; height: 18px;
    flex-shrink: 0;
}
.site-footer__social {
    display: flex; gap: 10px;
    margin-top: 20px;
}
.site-footer__social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(247,242,233,.06);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    color: var(--ivory);
}
.site-footer__social a svg {
    width: 18px; height: 18px;
}
.site-footer__social a:hover {
    background: var(--olive);
    color: var(--forest-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197,214,89,.32);
}
.site-footer__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12.5px;
    color: rgba(247,242,233,.45);
    flex-wrap: wrap; gap: 10px;
}
.site-footer__bar a { margin: 0 6px; }
.site-footer__bar a:hover { color: var(--olive); }

/* ---------- 19. WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    z-index: 50;
    transition: transform .3s ease;
}
.whatsapp-float svg {
    width: 30px; height: 30px;
    position: relative; z-index: 1;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: pulse 2.4s ease-out infinite;
    opacity: .55;
}
@keyframes pulse {
    0%   { transform: scale(1);   opacity: .55; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- 20. Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal[data-reveal="left"]  { transform: translateX(-30px); }
.reveal[data-reveal="right"] { transform: translateX(30px); }
.reveal.is-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- 20b. Page hero (sub-pages) ---------- */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--ivory);
    padding: 130px 0 80px;
    isolation: isolate;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 14s ease-in-out infinite alternate;
}
.page-hero__overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(110deg, rgba(11,18,11,.78) 0%, rgba(74,53,40,.45) 100%);
}
.page-hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--olive);
    margin: 0 0 18px;
    display: inline-flex; align-items: center; gap: 12px;
}
.page-hero__eyebrow::before {
    content: ""; width: 30px; height: 1px; background: var(--olive);
}
.page-hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin: 0 0 18px;
    max-width: 18ch;
}
.page-hero__sub {
    max-width: 56ch;
    color: rgba(247,242,233,.85);
    font-size: 1.05rem;
    line-height: 1.7;
}
.crumbs {
    margin-top: 26px;
    font-size: 12.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(247,242,233,.65);
}
.crumbs a { color: var(--olive); }
.crumbs span { margin: 0 8px; opacity: .6; }

/* Sub-page hero — staggered entrance (reuses the homepage heroIn keyframe) */
.js .page-hero__eyebrow,
.js .page-hero__title,
.js .page-hero__sub,
.js .page-hero .crumbs { opacity: 0; }
.page-hero.is-ready .page-hero__eyebrow { animation: heroIn .7s cubic-bezier(.22,.7,.2,1) .10s both; }
.page-hero.is-ready .page-hero__title   { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .24s both; }
.page-hero.is-ready .page-hero__sub      { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .40s both; }
.page-hero.is-ready .crumbs              { animation: heroIn .8s cubic-bezier(.22,.7,.2,1) .54s both; }

/* ---------- 20c. Generic content sections ---------- */
.section {
    padding: var(--section-pad) 0;
    background: var(--ivory);
}
.section--cream { background: var(--cream); }
.section--sand  { background: linear-gradient(180deg, var(--cream), var(--sand)); }

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section__head--left { text-align: left; margin-left: 0; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.two-col__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.two-col__media img {
    width: 100%; height: 460px; object-fit: cover;
    transition: transform 1.2s ease;
}
.two-col__media:hover img { transform: scale(1.04); }

/* ---------- 20c-b. Gallery + Lightbox ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 16px;
}
/* A few featured tiles span 2 rows for a dynamic, editorial rhythm */
.gallery-grid__item:nth-child(8n + 1),
.gallery-grid__item:nth-child(8n + 6) { grid-row: span 2; }

.gallery-grid__item {
    position: relative;
    display: block;
    width: 100%; height: 100%;
    padding: 0;
    border: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--sand);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}
.gallery-grid__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22,.7,.2,1), filter .4s ease;
}
.gallery-grid__item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,20,12,.45), transparent 55%);
    opacity: 0;
    transition: opacity .4s ease;
}
.gallery-grid__item:hover img,
.gallery-grid__item:focus-visible img { transform: scale(1.07); }
.gallery-grid__item:hover::after { opacity: 1; }
.gallery-grid__item:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; }

.gallery-grid__zoom {
    position: absolute; right: 14px; bottom: 14px; z-index: 2;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(251,247,238,.92);
    color: var(--forest);
    transform: translateY(8px) scale(.85);
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
}
.gallery-grid__zoom svg { width: 19px; height: 19px; }
.gallery-grid__item:hover .gallery-grid__zoom,
.gallery-grid__item:focus-visible .gallery-grid__zoom { opacity: 1; transform: translateY(0) scale(1); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(16px, 4vw, 60px);
    opacity: 0;
    transition: opacity .3s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
    position: absolute; inset: 0; z-index: 0;
    background: rgba(8,12,8,.92);
    backdrop-filter: blur(6px);
    cursor: zoom-out;
}
.lightbox__stage {
    position: relative; z-index: 1;
    margin: 0;
    max-width: 100%; max-height: 100%;
    display: flex; flex-direction: column; align-items: center;
    transform: scale(.96);
    transition: transform .35s cubic-bezier(.22,.7,.2,1);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.7);
    object-fit: contain;
}
.lightbox__caption {
    margin-top: 14px;
    color: rgba(247,242,233,.85);
    font-size: 13.5px; letter-spacing: .04em;
    text-align: center;
}
.lightbox__close {
    position: absolute; top: 20px; right: 22px; z-index: 3;
    width: 48px; height: 48px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251,247,238,.14);
    border: 1px solid rgba(251,247,238,.3);
    color: var(--ivory);
    transition: background .3s ease, transform .3s ease;
}
.lightbox__close:hover { background: rgba(251,247,238,.28); transform: rotate(90deg); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav {
    position: absolute; top: 50%; z-index: 3;
    transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251,247,238,.14);
    border: 1px solid rgba(251,247,238,.3);
    color: var(--ivory);
    transition: background .3s ease;
}
.lightbox__nav:hover { background: rgba(251,247,238,.28); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

/* Gallery videos */
.gallery-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.gallery-videos__item { margin: 0; }
.gallery-videos__item video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-md);
    display: block;
}
.gallery-videos__item figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-soft);
    letter-spacing: .02em;
}

/* Homepage gallery preview */
.gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.gallery-preview__grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-preview__grid--3 .gallery-preview__item { aspect-ratio: 4 / 3; }
.gallery-preview__item {
    display: block;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    isolation: isolate;
}
.gallery-preview__item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .7s cubic-bezier(.22,.7,.2,1);
}
.gallery-preview__item:hover img { transform: scale(1.08); }
.gallery-preview__cta { text-align: center; margin-top: 36px; }

/* ---------- 20d. Contact form ---------- */
.contact-form {
    background: #fff;
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
    font: inherit;
    color: var(--text);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(44,74,46,.12);
}
.contact-form__field textarea { resize: vertical; min-height: 140px; }
.contact-form__submit { margin-top: 8px; }

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: transform .25s ease, box-shadow .25s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--forest), var(--earth));
    color: var(--olive);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 6px;
}
.info-card p, .info-card a { font-size: 14.5px; color: var(--text-soft); margin: 0; }
.info-card a:hover { color: var(--forest); }

.info-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (max-width: 880px) {
    .two-col { grid-template-columns: 1fr; }
    .contact-form__row { grid-template-columns: 1fr; }
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 1100px) {
    .promises__list { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .promises__item { border-right: none; padding: 0 12px; }
    .tours__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .audiences__grid { grid-template-columns: repeat(3, 1fr); }
    .signature__mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px 200px; }
    .sig-tile--1, .sig-tile--2, .sig-tile--3, .sig-tile--4, .sig-tile--5 {
        grid-column: span 1; grid-row: span 1;
    }
    .process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process__grid::before { display: none; }
    .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
}
@media (max-width: 880px) {
    .site-nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .site-header__cta { display: none; }

    .site-nav.is-open {
        display: block;
        position: fixed;
        top: 78px; left: 0; right: 0;
        background: var(--ivory);
        padding: 24px var(--container-pad);
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }
    .site-nav.is-open .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .about__grid,
    .why__grid,
    .plan__grid {
        grid-template-columns: 1fr;
    }
    .about__media { min-height: 460px; margin-top: 30px; }
    .why__media img { height: 380px; }
    .hero__badge { width: 130px; height: 130px; bottom: 80px; }
    .hero__dots { bottom: 30px; }

    .audiences__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__bar { justify-content: center; text-align: center; }
}
@media (max-width: 560px) {
    /* Grid layouts */
    .tours__grid,
    .services__grid,
    .audiences__grid { grid-template-columns: 1fr; }
    .signature__mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .promises__list { grid-template-columns: 1fr; gap: 22px; }
    .stats__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
    .stat { gap: 10px; }

    /* Page hero (sub-pages) */
    .page-hero { padding: 100px 0 60px; }
    .page-hero__title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
    .page-hero__sub { font-size: 15px; }
    .crumbs { font-size: 11px; margin-top: 16px; }

    /* Hero home */
    .hero__badge { display: none; }
    /* Let the hero size to its content and reserve bottom space so the
       torn-paper edge sits BELOW the CTAs instead of covering them. */
    .hero {
        padding-top: 116px;
        padding-bottom: 118px;         /* edge (80px) lives in here, below the CTAs */
        min-height: 0;
        align-items: flex-start;
    }
    .hero__content { min-height: 0; }
    .hero__container { padding-top: 0; padding-bottom: 0; }
    .hero__ctas { width: 100%; }
    .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
    .hero__title-line, .hero__title-accent { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    /* Sharper images on mobile: parallax is off here, so fill exactly and
       drop the zoom scale/animation that was over-cropping the photos. */
    .hero__slide {
        top: 0; height: 100%;
        transform: none;
        animation: none;
        background-position: center 30%;
        image-rendering: auto;
    }
    .hero__slide.is-active { transform: none; animation: none; }
    .hero__slides { transform: none !important; }
    /* Keep the photo clear; readability comes from text shadow (global) */
    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(11,18,11,.45) 0%, rgba(11,18,11,.28) 40%, rgba(11,18,11,.62) 100%);
    }

    /* Sections */
    .section__head { margin-bottom: 32px; }
    .section { padding: 56px 0; }
    .container { padding: 0 20px; }

    /* Layouts */
    .plan__row { grid-template-columns: 44px 1fr auto; gap: 14px; padding: 14px; }

    /* Footer — tidy 2x2 link grid with full-width brand */
    .site-footer { padding: 56px 0 24px; }
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
        padding-bottom: 36px;
    }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__tagline { max-width: none; }
    .site-footer__col h4 { margin-bottom: 14px; }
    .site-footer__social { margin-top: 16px; }
    .site-footer__bar {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    /* Forms */
    .contact-form__field { margin-bottom: 16px; }
    input, textarea, select { min-height: 48px; font-size: 16px; padding: 12px; }
    .contact-form__submit { min-height: 50px; font-size: 16px; }

    /* Cards */
    .tour-card { aspect-ratio: 3 / 3.5; }
    .service-card { padding: 24px 20px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
    .gallery-grid__item:nth-child(8n + 1),
    .gallery-grid__item:nth-child(8n + 6) { grid-row: span 1; }
    .gallery-preview__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .gallery-preview__grid--3 { grid-template-columns: 1fr; gap: 14px; }
    .gallery-videos { grid-template-columns: 1fr; gap: 18px; }
    .lightbox__nav { width: 42px; height: 42px; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
    .lightbox__img { max-height: 74vh; }

    /* About media — keep floating elements inside the viewport */
    .about__media { min-height: 420px; overflow: visible; }
    .about__media-main { width: 100%; }
    .about__media-main img { height: 360px; }
    .about__media-overlap { left: 0; width: 60%; bottom: 20px; }
    .about__media-badge { left: 0; top: 14px; padding: 10px 14px; }
    .about__media-badge-num { font-size: 1.6rem; }
    .about__media-accent { right: -12px; bottom: -12px; width: 150px; height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .hero__slide { animation: none !important; }
    /* Keep everything visible & static when motion is reduced */
    .js .hero__slide-content .hero__eyebrow,
    .js .hero__slide-content .hero__title-line,
    .js .hero__slide-content .hero__title-accent,
    .js .hero__slide-content .hero__sub,
    .js .hero__slide-content .hero__ctas,
    .js .page-hero__eyebrow,
    .js .page-hero__title,
    .js .page-hero__sub,
    .js .page-hero .crumbs { opacity: 1 !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .hero__slides { transform: none !important; }
}
