@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* =============================================
   WILDERNESS REGO — WHITE WILD THEME
   Night Brown + Bright White + Gold
   ============================================= */

:root {
    --white:    #FFE4D9;       /* Soft peach (main background) */
    --off-white:#FFD8C8;       /* Slightly deeper peach */
    --cream:    #FFCFBB;       /* Warm peach tint */
    --night:    #1A1008;       /* Deep night brown (text) */
    --brown:    #2E1C0A;       /* Rich dark brown */
    --bark:     #4A2E12;       /* Medium bark brown */
    --gold:     #C8860A;       /* Safari gold accent */
    --amber:    #E8A020;       /* Bright amber highlight */
    --dust:     #9B7040;       /* Muted earth tone */
    --rule:     rgba(26,16,8,0.08);  /* Subtle dividers */
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--night);
    font-family: 'Lora', Georgia, serif;
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ===== TYPOGRAPHY ===== */
.wild-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--night);
    text-transform: none;
    font-style: italic;
}

.wild-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: var(--night);
    text-transform: none;
}

.gold-text  { color: var(--gold); }
.amber-text { color: var(--amber); }

.overline {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.4rem;
    font-weight: 400;
    font-style: italic;
}

.body-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--bark);
    max-width: 520px;
}

/* ===== NAVIGATION ===== */
.wild-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,228,217,0.97);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 2px 30px rgba(26,16,8,0.06);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.wild-nav.scrolled {
    padding: 0.9rem 5rem;
    box-shadow: 0 4px 40px rgba(26,16,8,0.1);
    background: rgba(255,228,217,0.98);
}

.wild-nav .logo img {
    height: 3.8rem;
    width: auto;
    object-fit: contain;
    /* No filter — logo shown exactly as designed */
}

/* ===== NAV LINKS + MEGA MENU ===== */
.wild-nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0; padding: 0;
}

.wild-nav-links li { position: relative; }

.nav-link-main {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--bark);
    font-weight: 500;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link-main:hover { color: var(--gold); background: rgba(200,134,10,0.07); }

.has-dropdown:hover .nav-link-main { color: var(--gold); }

.nav-caret {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.5;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover .nav-caret { transform: rotate(180deg); opacity: 1; }

/* Book Now CTA */
.nav-cta-btn {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-style: italic;
    padding: 0.7rem 1.8rem;
    background: var(--night);
    color: var(--amber);
    border: 1px solid rgba(200,134,10,0.3);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(200,134,10,0.25);
}

/* ===================================================
   PREMIUM MEGA DROPDOWN — Dark Panel Edition
=================================================== */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--night);          /* Rich night brown */
    border: 1px solid rgba(200,134,10,0.18);
    border-top: 2px solid var(--gold);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.35),
        0 12px 40px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(200,134,10,0.1);
    min-width: 740px;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    z-index: 2000;
    overflow: hidden;
}

.mega-dropdown-sm { min-width: 300px; }

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Subtle top-glow line */
.mega-dropdown::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,134,10,0.5), transparent);
}

.mega-inner {
    display: flex;
    padding: 0;
}

/* Left sidebar accent strip */
.mega-inner::before {
    content: '';
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    flex-shrink: 0;
}

.mega-col {
    flex: 1;
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.04);
    position: relative;
}

.mega-col:last-child { border-right: none; }

.mega-col-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.6rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200,134,10,0.15);
}

.mega-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(200,134,10,0.3), transparent);
}

.mega-col a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.85rem;
    color: rgba(250,245,235,0.65);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.22s ease, gap 0.22s ease, border-color 0.22s ease;
    line-height: 1.5;
    position: relative;
}

.mega-col a:last-of-type { border-bottom: none; }

.mega-col a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s ease;
    flex-shrink: 0;
}

.mega-col a:hover {
    color: var(--amber);
    gap: 1rem;
}

.mega-col a:hover::before { width: 16px; }

.mega-icon {
    font-size: 0.85rem;
    min-width: 1.1rem;
    text-align: center;
    opacity: 0.55;
    transition: opacity 0.22s ease;
}

.mega-col a:hover .mega-icon { opacity: 1; }

/* ---- Featured Image Column ---- */
.mega-col-highlight {
    flex: 1.15;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-right: none;
}

.mega-feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.mega-feature-card img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    filter: brightness(0.65) saturate(1.1);
    transition: transform 0.7s ease, filter 0.4s ease;
    flex-shrink: 0;
}

.mega-feature-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.55) saturate(1.2);
}

.mega-feature-text {
    padding: 1.5rem 2rem 2.5rem;
    background: rgba(255,255,255,0.03);
    flex: 1;
    border-top: 1px solid rgba(200,134,10,0.12);
}

.mega-feature-text strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(250,245,235,0.9);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.mega-feature-text span {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.78rem;
    color: rgba(250,245,235,0.4);
    display: block;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.mega-feature-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.68rem !important;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold) !important;
    font-style: italic;
    padding: 0 !important;
    border: none !important;
    transition: gap 0.25s ease, color 0.25s ease !important;
}

.mega-feature-link::after {
    content: '→';
    transition: transform 0.25s ease;
}

.mega-feature-link:hover::before { width: 0 !important; }
.mega-feature-link:hover { color: var(--amber) !important; gap: 0.8rem !important; }
.mega-feature-link:hover::after { transform: translateX(4px); }

/* ===== HAMBURGER ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--night);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .nav-hamburger { display: flex; }
    .wild-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--night);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 2rem;
        border-top: 2px solid var(--gold);
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        gap: 0;
    }
    .wild-nav-links.open { display: flex; }
    .wild-nav-links li { width: 100%; }
    .nav-link-main {
        width: 100%;
        padding: 0.9rem 0;
        color: rgba(250,245,235,0.8);
        border-bottom: 1px solid rgba(200,134,10,0.1);
        border-radius: 0;
    }
    .nav-link-main:hover { color: var(--amber); background: none; }
    .mega-dropdown {
        position: static;
        transform: none;
        min-width: unset;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(200,134,10,0.1);
        border-radius: 0;
        display: none;
        overflow: visible;
    }
    .mega-dropdown::after { display: none; }
    .mega-inner::before { display: none; }
    .has-dropdown.open .mega-dropdown { display: block; }
    .mega-inner { flex-direction: column; padding: 0; }
    .mega-col { border-right: none; padding: 1rem 0.5rem; }
    .mega-col-highlight { display: none; }
    .nav-cta-btn {
        margin-top: 1rem;
        width: fit-content;
    }
}

/* ===== HERO ===== */
.wild-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--night);
}

.wild-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero VIDEO */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.52) contrast(1.08) saturate(1.05);
}

/* Fallback if video used instead of img */
.wild-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.48) contrast(1.08) saturate(1.1);
    animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.14) translate(-1.5%, 1%); }
}

.wild-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(26,16,8,0.55) 0%, transparent 55%),
                linear-gradient(to top, rgba(26,16,8,0.92) 0%, transparent 52%);
    z-index: 1;
}

.wild-hero-content {
    position: absolute; inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 6rem 6rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 3rem; height: 2px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 400;
    font-style: italic;
}

/* Override wild-title in hero to be white, not italic */
.wild-hero .wild-title {
    color: var(--white);
    font-style: italic;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-top: 3rem;
}

.hero-scroll-indicator::before {
    content: '';
    display: block;
    width: 1px; height: 3.5rem;
    background: rgba(255,255,255,0.3);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,100% { opacity: 0.3; transform: scaleY(1); }
    50%      { opacity: 1; transform: scaleY(0.55); }
}

/* ===== BUTTONS ===== */
.btn-wild {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.8rem;
    background: var(--gold);
    color: white;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    font-style: italic;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
    transition: var(--transition);
}

.btn-wild:hover {
    background: var(--amber);
    gap: 1.5rem;
    color: white;
}

.btn-wild-outline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.8rem;
    background: transparent;
    color: var(--white);
    font-family: 'Lora', Georgia, serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    font-style: italic;
    border: 1px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}

.btn-wild-outline.dark {
    color: var(--night);
    border-color: rgba(26,16,8,0.25);
}

.btn-wild-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== SECTIONS ===== */
.wild-section          { padding: 120px 0; position: relative; }
.wild-section-white    { background: var(--white); }
.wild-section-cream    { background: var(--cream); }
.wild-section-dark     { background: var(--night); }
.wild-section-brown    { background: var(--brown); }

/* On dark sections override text + subtitles */
.wild-section-dark .wild-subtitle,
.wild-section-brown .wild-subtitle { color: var(--white); }
.wild-section-dark .body-text      { color: rgba(248,245,240,0.7); }
.wild-section-brown .body-text     { color: rgba(248,245,240,0.65); }

/* ===== MARQUEE ===== */
.wild-marquee {
    padding: 1.8rem 0;
    background: var(--night);
    border-top: 1px solid rgba(200,134,10,0.3);
    border-bottom: 1px solid rgba(200,134,10,0.3);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    letter-spacing: 0.08em;
    color: rgba(248,245,240,0.35);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.marquee-item::after {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
    font-style: normal;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.badge-stamp {
    background: var(--gold);
    display: inline-block;
    padding: 0.8rem 1.6rem;
    margin-bottom: -1px;
}

.badge-stamp span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.12em;
}

/* ===== EDITORIAL SPLIT ===== */
.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}

.editorial-split-img {
    position: relative;
    overflow: hidden;
}

.editorial-split-img img {
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.editorial-split-img:hover img { transform: scale(1.06); }

.editorial-split-content {
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    border-right: 4px solid var(--gold);
}

/* ===== FIRE CARDS ===== */
.fire-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--rule);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.fire-card:hover {
    box-shadow: 0 20px 60px rgba(26,16,8,0.12);
    transform: translateY(-6px);
}

.fire-card-img {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.fire-card-img img {
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.88) saturate(1.1);
}

.fire-card:hover .fire-card-img img {
    transform: scale(1.08);
    filter: brightness(0.78) saturate(1.2);
}

.fire-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,16,8,0.65) 0%, transparent 55%);
    z-index: 1;
}

.fire-card-content {
    padding: 2rem;
    background: var(--white);
    border-top: 3px solid transparent;
    transition: border-color 0.4s ease;
    position: relative;
}

.fire-card:hover .fire-card-content { border-color: var(--gold); }

.fire-card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(200,134,10,0.1);
    position: absolute;
    top: -1.8rem; right: 1.5rem;
    transition: color 0.5s ease;
}

.fire-card:hover .fire-card-number { color: rgba(200,134,10,0.2); }

.fire-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0;
    color: var(--night);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.fire-card-link {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-style: italic;
}

.fire-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.fire-card:hover .fire-card-link::after { transform: translateX(6px); }

/* ===== STATS BAND ===== */
.stats-band {
    background: var(--night);
    padding: 5rem 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    position: relative;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(200,134,10,0.2);
    padding: 1rem 2rem;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    color: var(--amber);
    display: block;
}

.stat-label {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(248,245,240,0.5);
    margin-top: 0.5rem;
    display: block;
    font-style: italic;
}

/* ===== PARALLAX SECTION ===== */
/* ===================================================
   SERENGETI SHOWCASE — Cinematic Premium Section
=================================================== */
.serengeti-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--night);
}

.serengeti-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.serengeti-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.38) contrast(1.12) saturate(1.05);
    transform-origin: center;
    animation: serengetiDrift 30s ease-in-out infinite alternate;
}

@keyframes serengetiDrift {
    from { transform: scale(1.05) translate(0, 0); }
    to   { transform: scale(1.12) translate(-1%, 1.5%); }
}

.serengeti-vignette {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(26,16,8,0.7) 100%),
        linear-gradient(to right, rgba(26,16,8,0.92) 0%, rgba(26,16,8,0.35) 55%, rgba(26,16,8,0.6) 100%),
        linear-gradient(to top, rgba(26,16,8,0.85) 0%, transparent 40%);
}

/* Main content grid */
.serengeti-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    padding: 14rem 7rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* LEFT — text block */
.serengeti-text { max-width: 580px; }

.serengeti-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(4.5rem, 9vw, 9rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 0;
}

.serengeti-heading em {
    font-style: italic;
    color: var(--amber);
    display: block;
}

.serengeti-heading-outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.4);
    color: transparent;
    display: block;
    font-style: italic;
    letter-spacing: -0.02em;
}

.serengeti-rule {
    width: 4rem;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 2.5rem 0;
}

.serengeti-body {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(250,245,235,0.65);
    max-width: 480px;
    margin-bottom: 3rem;
}

.serengeti-body em { color: var(--amber); font-style: italic; }

.serengeti-cta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.serengeti-link {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,245,235,0.5);
    font-style: italic;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(250,245,235,0.15);
    padding-bottom: 2px;
}

.serengeti-link:hover { color: var(--amber); border-color: var(--amber); }

/* RIGHT — floating stats card */
.serengeti-stats { display: flex; align-items: center; }

.serengeti-stat-card {
    background: rgba(26,16,8,0.6);
    border: 1px solid rgba(200,134,10,0.2);
    border-top: 2px solid var(--gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(200,134,10,0.15);
}

.serengeti-stat {
    padding: 1.2rem 0;
    text-align: left;
}

.serengeti-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--amber);
    display: block;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.serengeti-stat-label {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,245,235,0.45);
    font-style: italic;
    display: block;
}

.serengeti-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(200,134,10,0.3), transparent);
}

.serengeti-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(200,134,10,0.15);
}

.serengeti-card-footer span {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: italic;
}

/* Bottom caption strip */
.serengeti-caption {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 7rem;
    border-top: 1px solid rgba(200,134,10,0.15);
    background: rgba(26,16,8,0.4);
    backdrop-filter: blur(10px);
}

.serengeti-caption span {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(250,245,235,0.35);
    font-style: italic;
    white-space: nowrap;
}

.serengeti-caption-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(200,134,10,0.3), transparent) !important;
    display: block !important;
    min-width: 2rem;
}

@media (max-width: 991px) {
    .serengeti-content {
        grid-template-columns: 1fr;
        padding: 10rem 2rem 4rem;
        gap: 3rem;
    }
    .serengeti-stats { justify-content: center; }
    .serengeti-stat-card { max-width: 400px; }
    .serengeti-caption { padding: 1.2rem 2rem; }
}


/* ===== FOOTER ===== */
.wild-footer {
    background: #FFE4D9;
    padding: 8rem 0 4rem;
    border-top: 3px solid var(--gold);
}

.footer-logo-area img {
    height: 4.5rem;
    width: auto;
    object-fit: contain;
    /* No filter — logo shown exactly as designed on light footer */
    opacity: 1;
    margin-bottom: 2rem;
}

.footer-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.25;
    color: var(--night);
    margin-bottom: 2.5rem;
}

.footer-col-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.65rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.8rem;
    display: block;
    border-bottom: 1px solid rgba(200,134,10,0.2);
    padding-bottom: 0.8rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.9rem; }

.footer-links a {
    font-size: 0.9rem;
    color: var(--bark);
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(200,134,10,0.12);
    margin-top: 5rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--dust);
    letter-spacing: 0.15em;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(200,134,10,0.4);
    color: var(--bark);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: var(--transition);
}

.instagram-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active     { opacity: 1; transform: translateY(0); }
.reveal-delay-1    { transition-delay: 0.1s; }
.reveal-delay-2    { transition-delay: 0.22s; }
.reveal-delay-3    { transition-delay: 0.34s; }

/* ===== HORIZONTAL RULE ===== */
.gold-rule {
    border: none;
    border-top: 1px solid rgba(200,134,10,0.2);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .wild-nav { padding: 1.2rem 2rem; }
    .wild-nav.scrolled { padding: 0.8rem 2rem; }
    .wild-nav-links { display: none; }
    .wild-hero-content { padding: 0 2rem 4rem; }
    .parallax-section-content { padding: 5rem 2rem; }
    .editorial-split { grid-template-columns: 1fr; }
    .editorial-split-img { height: 50vh; }
    .editorial-split-content { padding: 4rem 2rem; border-right: none; border-top: 4px solid var(--gold); }
    .wild-section { padding: 80px 0; }
}

@media (max-width: 767px) {
    .wild-title { font-size: clamp(3rem, 15vw, 5rem); }
    .footer-bottom { flex-direction: column; text-align: center; }
}
