/* ==========================================================================
   LIGHTNING W EXPEDITIONS — WILDERNESS DESIGN SYSTEM & STYLES
   Aesthetic Direction: Natural, Earthy, Rugged, Deep Forest Greens, Weathered Tans, Warm Bone
   ========================================================================== */

:root {
    /* Color Palette */
    --color-forest-deep: #142118;
    --color-forest-mid: #1c2e22;
    --color-forest-light: #2b4433;
    --color-charcoal: #111312;
    --color-charcoal-card: #181a19;
    --color-charcoal-border: #282c2a;
    --color-earth-brown: #5c432f;
    --color-weathered-brown: #7d5e44;
    --color-tan: #a38663;
    --color-tan-light: #c2aa8b;
    --color-bone: #f4f1ea;
    --color-bone-muted: #d6d1c4;
    --color-bone-dim: #9e9a8f;
    --color-accent-amber: #d99144;
    --color-error: #e06666;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-sub: 'Marcellus', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Sizing */
    --header-height: 86px;
    --header-height-scrolled: 68px;
    --section-padding-y: clamp(70px, 8vw, 110px);
    --section-padding-x: clamp(20px, 6%, 6%);
    --max-width: 1440px;

    /* Transitions & Curves */
    --curve-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --curve-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.25s var(--curve-smooth);
    --transition-mid: 0.45s var(--curve-smooth);
    --transition-slow: 0.8s var(--curve-smooth);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-charcoal);
    color: var(--color-bone);
    -webkit-text-size-adjust: 100%;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-bone);
    background-color: var(--color-charcoal);
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 50% 0%, var(--color-forest-deep) 0%, var(--color-charcoal) 85%);
}



/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-charcoal);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.8s var(--curve-smooth), visibility 0.8s var(--curve-smooth);
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-compass {
    width: clamp(64px, 16vw, 80px);
    height: clamp(64px, 16vw, 80px);
    margin-bottom: 24px;
    animation: pulseCompass 2.5s infinite ease-in-out;
}

.compass-svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-tan);
    fill: none;
    stroke-width: 1.5;
}

.compass-outer-ring { stroke: var(--color-weathered-brown); stroke-dasharray: 4 4; }
.compass-needle-ns { fill: var(--color-tan); stroke: none; }
.compass-needle-ew { fill: var(--color-forest-light); stroke: none; }
.compass-center { fill: var(--color-bone); }

.preloader-brand {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-bone);
    margin-bottom: 8px;
}

.preloader-sub {
    font-family: var(--font-sub);
    font-size: clamp(0.65rem, 2vw, 0.75rem);
    letter-spacing: 0.28em;
    color: var(--color-tan);
}

@keyframes pulseCompass {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50% { transform: scale(1.05) rotate(180deg); opacity: 1; }
}

/* ==========================================================================
   NAVIGATION HEADER (SPACED OUT, SINGLE ROW, UNIFORM FONT & COLOR)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-tan);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 2px solid rgba(0, 0, 0, 0.18);
    z-index: 1000;
    transition: height var(--transition-mid), background-color var(--transition-mid), border-color var(--transition-mid);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    background-color: var(--color-tan);
    border-bottom-color: rgba(0, 0, 0, 0.32);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 60px);
}

.brand-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1.1;
    z-index: 1002;
    white-space: nowrap;
}

/* Single row, uniform font, uniform weight, uniform color across the entire title */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.title-inline-icon {
    height: clamp(28px, 3.5vw, 38px);
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.65));
}

.title-inline-icon-lg {
    height: clamp(36px, 4.5vw, 48px);
}

.brand-title-row {
    display: flex;
    align-items: center;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: clamp(0.80rem, 2.0vw, 1.22rem);
    font-weight: 800;
    letter-spacing: clamp(0.1em, 0.18em, 0.22em);
    color: var(--color-charcoal);
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.brand-logo:hover .brand-title {
    color: var(--color-forest-deep);
}

.main-nav {
    display: flex;
    align-items: center;
}

/* Space out titles adequately on one horizontal row */
.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(24px, 3.5vw, 54px);
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    font-family: var(--font-sub);
    font-size: clamp(0.82rem, 1.3vw, 0.9rem);
    letter-spacing: 0.16em;
    color: #1a231d;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-charcoal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn-primary {
    background-color: var(--color-charcoal);
    color: var(--color-bone) !important;
    padding: 10px 24px;
    border: 1px solid var(--color-charcoal);
    border-radius: 2px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-btn-primary::after {
    display: none !important;
}

.nav-btn-primary:hover {
    background-color: var(--color-forest-deep);
    color: var(--color-bone) !important;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 10px 6px;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-bone);
    margin: 5px 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (TEXAS HILL COUNTRY BACKGROUND)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px var(--section-padding-x) 100px;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Attached Texas Hill Country landscape photo */
    background-image: url('assets/images/hero-texas-landscape.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 12s ease-out;
}

.hero-grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 19, 18, 0.58);
    background-image: radial-gradient(circle at center, rgba(20, 33, 24, 0.4) 0%, rgba(17, 19, 18, 0.85) 100%);
    z-index: 2;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17,19,18,0.7) 0%, rgba(17,19,18,0) 25%, rgba(17,19,18,0) 75%, rgba(17,19,18,0.95) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(28, 46, 34, 0.75);
    border: 1px solid rgba(163, 134, 99, 0.45);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.badge-icon {
    color: var(--color-tan);
    font-size: 0.8rem;
}

.badge-text {
    font-family: var(--font-sub);
    font-size: clamp(0.68rem, 2vw, 0.75rem);
    letter-spacing: 0.22em;
    color: var(--color-bone);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 7.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.03em;
    color: var(--color-bone);
    text-shadow: 0 4px 20px rgba(0,0,0,0.65);
    margin-bottom: 26px;
}

.headline-line {
    display: block;
}

.headline-line-2 {
    color: var(--color-tan-light);
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 34px;
    max-width: clamp(260px, 58vw, 580px);
    width: 100%;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.85));
    mix-blend-mode: screen;
}

.hero-tagline-box {
    margin: 0 auto 38px;
    text-align: center;
    max-width: 840px;
}

.hero-tagline-main {
    display: block;
    font-family: var(--font-sub);
    font-size: clamp(0.78rem, 1.8vw, 0.96rem);
    letter-spacing: 0.24em;
    color: var(--color-tan);
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}

.hero-tagline-sub {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3.8vw, 2.3rem);
    font-weight: 700;
    color: var(--color-bone);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    line-height: 1.25;
    text-shadow: 0 4px 16px rgba(0,0,0,0.85);
}

.hero-tagline-loc {
    font-family: var(--font-sub);
    font-size: clamp(0.92rem, 1.9vw, 1.12rem);
    color: var(--color-tan-light);
    letter-spacing: 0.08em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.65;
    color: var(--color-bone-muted);
    max-width: 780px;
    margin: 0 auto 38px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    min-height: 52px;
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background-color: var(--color-tan);
    color: var(--color-charcoal);
    border: 1px solid var(--color-tan);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background-color: var(--color-tan-light);
    border-color: var(--color-tan-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(163, 134, 99, 0.35);
}

.btn-secondary {
    background-color: rgba(20, 33, 24, 0.65);
    color: var(--color-bone);
    border: 1px solid rgba(163, 134, 99, 0.6);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background-color: var(--color-forest-light);
    border-color: var(--color-tan);
    transform: translateY(-3px);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.hero-scroll-cue:hover {
    opacity: 1;
    transform: translate(-50%, -4px);
}

.compass-mark {
    width: 36px;
    height: 36px;
    animation: bounceDown 2s infinite ease-in-out;
}

.scroll-compass-svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-tan);
    fill: none;
    stroke-width: 1.5;
}

.cue-ring { stroke: var(--color-weathered-brown); stroke-dasharray: 3 3; }
.cue-arrow { fill: var(--color-tan); stroke: none; }

.scroll-text {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--color-bone-muted);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ==========================================================================
   SPECIES SHOWCASE SECTION (BELOW SCROLL TO DISCUSS, ABOVE EXPEDITION PHOTOGRAPHY)
   ========================================================================== */
.species-showcase-section {
    background-color: var(--color-forest-deep);
    border-top: 1px solid rgba(163, 134, 99, 0.25);
    border-bottom: 1px solid rgba(163, 134, 99, 0.25);
    position: relative;
    background-image: radial-gradient(circle at center, rgba(43, 68, 51, 0.35) 0%, rgba(17, 19, 18, 0.85) 100%);
}

.species-grid-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
    max-width: 960px;
    margin: 0 auto;
}

.species-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(17, 19, 18, 0.65);
    border: 1px solid rgba(163, 134, 99, 0.4);
    padding: 14px 26px;
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.species-bar-item:hover {
    border-color: var(--color-tan);
    background-color: rgba(28, 46, 34, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.species-bar-item .species-bullet {
    color: var(--color-tan);
    font-size: 0.85rem;
}

.species-label {
    font-family: var(--font-sub);
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    letter-spacing: 0.12em;
    color: var(--color-bone);
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   COMMON SECTION STYLES
   ========================================================================== */
.section-padding {
    padding: var(--section-padding-y) var(--section-padding-x);
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: clamp(0.78rem, 2vw, 0.84rem);
    letter-spacing: 0.26em;
    color: var(--color-tan);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.03em;
    color: var(--color-bone);
    margin-bottom: 18px;
}

.section-intro {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--color-bone-muted);
    max-width: 760px;
    margin: 0 auto 46px;
}

/* ==========================================================================
   WELCOME SECTION (BELOW HERO LANDING PAGE)
   ========================================================================== */
.welcome-section {
    background: linear-gradient(180deg, var(--color-forest-deep) 0%, #0a0c0b 100%);
    position: relative;
    padding: clamp(120px, 11vw, 175px) var(--section-padding-x);
    overflow: hidden;
}

.welcome-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, #111413 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.welcome-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: linear-gradient(to top, #0a0c0b 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.welcome-split-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 75px);
    max-width: 1460px;
    margin: 0 auto;
}

.welcome-caption-col {
    text-align: left;
}

.welcome-sub {
    display: block;
    font-family: var(--font-sub);
    font-size: clamp(0.80rem, 1.6vw, 0.90rem);
    letter-spacing: 0.24em;
    color: var(--color-tan);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.welcome-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    color: var(--color-bone);
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 24px 0;
}

.welcome-text {
    font-size: clamp(1.08rem, 1.8vw, 1.25rem);
    line-height: 1.85;
    color: var(--color-bone);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.welcome-photo-col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-photo-wrap {
    position: relative;
    width: 100%;
    height: clamp(480px, 62vh, 660px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
}

.welcome-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 900px) {
    .welcome-split-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .welcome-photo-wrap {
        height: 420px;
    }
}

/* ==========================================================================
   GALLERY SECTION (3-WIDE UNCROPPED GRID, ZERO CAPTIONS/FILTERS)
   ========================================================================== */
.gallery-section {
    background-color: #0a0c0b;
    position: relative;
}

/* 3 Pictures Wide Grid - Formatted for uniform rows and zero movement */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.gallery-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #080a09;
    border: 1px solid var(--color-charcoal-border);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: border-color var(--transition-mid), box-shadow var(--transition-mid), opacity 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-drag: none;
}

.card-image-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    background-color: #080a09;
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: none !important;
    transition: none !important;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-card:hover,
.gallery-card:focus {
    border-color: var(--color-tan);
    box-shadow: 0 14px 35px rgba(0,0,0,0.6);
    outline: none;
}

/* ==========================================================================
   ABOUT & OUTFITTER STORY SECTION (SPLIT SCREEN: LEFT PHOTO, WHITE BACKGROUND)
   ========================================================================== */
.about-section {
    background-color: #ffffff;
    border-top: 2px solid rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.about-split-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100%;
}

.about-photo-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 580px;
    overflow: hidden;
}

.about-full-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-content-col {
    background-color: #ffffff;
    padding: clamp(55px, 6vw, 95px) clamp(40px, 6vw, 84px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: var(--color-charcoal);
}

.about-header {
    margin-bottom: 32px;
}

.about-subtitle {
    display: block;
    font-family: var(--font-sub);
    font-size: clamp(0.80rem, 1.6vw, 0.90rem);
    letter-spacing: 0.22em;
    color: var(--color-forest-deep);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.6vw, 2.75rem);
    font-weight: 800;
    color: var(--color-charcoal);
    margin: 0;
    line-height: 1.15;
}

.about-prose-block {
    margin-bottom: 28px;
}

.about-prose-block:last-child {
    margin-bottom: 0;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.28rem, 2.4vw, 1.65rem);
    color: var(--color-forest-deep);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.about-text {
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 1.6vw, 1.10rem);
    line-height: 1.78;
    color: #242f29;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 900px) {
    .about-split-showcase {
        grid-template-columns: 1fr;
    }
    .about-photo-col {
        position: relative;
        min-height: 440px;
        height: 440px;
    }
}

.about-panel-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-bone);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.about-panel-text {
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--color-bone-muted);
    margin: 0;
}

/* ==========================================================================
   HOW TO BOOK YOUR HUNT SECTION (TIMELINE & CHECKLIST)
   ========================================================================== */
.booking-steps-section {
    background-color: var(--color-forest-deep);
    border-top: 1px solid rgba(163, 134, 99, 0.25);
    border-bottom: 1px solid rgba(163, 134, 99, 0.25);
    position: relative;
    background-image: radial-gradient(circle at center, rgba(43, 68, 51, 0.35) 0%, rgba(17, 19, 18, 0.85) 100%);
}

.booking-timeline.horizontal-timeline {
    position: relative;
    max-width: 1240px;
    margin: 36px auto 0 auto;
    padding: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Horizontal Spine spanning across top/middle of node circles */
.horizontal-spine {
    position: absolute;
    top: 62px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-tan) 0%, rgba(163, 134, 99, 0.4) 50%, var(--color-tan) 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item.horizontal-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 0;
    z-index: 2;
    height: 100%;
}

.horizontal-item .timeline-node {
    width: 84px;
    height: 84px;
    margin: 0 auto;
    flex-shrink: 0;
    background-color: #121514;
    border: 2px solid var(--color-tan);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(163, 134, 99, 0.25);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.horizontal-item:hover .timeline-node {
    transform: scale(1.06);
    border-color: var(--color-bone);
    background-color: var(--color-forest-medium);
}

.node-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-bone);
    line-height: 1;
}

.node-check {
    width: 18px;
    height: 18px;
    color: var(--color-tan);
    margin-top: 4px;
}

.horizontal-item .timeline-content {
    width: 100%;
    flex: 1;
    background: rgba(17, 19, 18, 0.75);
    border: 1px solid rgba(163, 134, 99, 0.4);
    border-top: 4px solid var(--color-tan);
    border-left: 1px solid rgba(163, 134, 99, 0.4);
    padding: 26px 24px;
    border-radius: 4px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    transition: all var(--transition-medium);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horizontal-item:hover .timeline-content {
    border-color: var(--color-tan);
    background: rgba(26, 43, 32, 0.85);
    transform: translateY(-6px);
}

.checklist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(163, 134, 99, 0.18);
    border: 1px solid rgba(163, 134, 99, 0.45);
    color: var(--color-tan);
    font-family: var(--font-sub);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.check-box {
    color: var(--color-bone);
    font-weight: 900;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-bone);
    margin: 0 0 10px 0;
    font-weight: 700;
}

.timeline-desc {
    font-size: 1.05rem;
    line-height: 1.76;
    color: var(--color-bone-muted);
    margin: 0;
}

@media (max-width: 850px) {
    .booking-timeline.horizontal-timeline {
        grid-template-columns: 1fr;
        max-width: 580px;
    }
    .horizontal-spine {
        top: 40px;
        bottom: 40px;
        left: 39px;
        right: auto;
        width: 3px;
        height: auto;
    }
    .timeline-item.horizontal-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
    }
    .horizontal-item .timeline-node {
        width: 62px;
        height: 62px;
        margin: 0;
    }
    .node-num {
        font-size: 1.1rem;
    }
    .node-check {
        width: 14px;
        height: 14px;
        margin-top: 2px;
    }
    .horizontal-item .timeline-content {
        border-top: 1px solid rgba(163, 134, 99, 0.4);
        border-left: 4px solid var(--color-tan);
        text-align: left;
        align-items: flex-start;
        padding: 22px 20px;
    }
    .horizontal-item:hover .timeline-content {
        transform: translateX(6px);
    }
}

/* ==========================================================================
   CONTACT & BOOKING SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.contact-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(43, 68, 51, 0.35) 0%, rgba(17, 19, 18, 0.95) 75%);
    z-index: 1;
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(36px, 6vw, 64px);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-intro {
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    color: var(--color-bone-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--color-charcoal-card);
    border: 1px solid var(--color-charcoal-border);
    padding: 18px;
    border-radius: 3px;
}

.icon-box {
    width: 44px;
    height: 44px;
    background-color: var(--color-forest-light);
    border: 1px solid var(--color-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 22px;
    height: 22px;
    color: var(--color-tan);
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-title {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--color-tan);
}

.detail-val {
    font-size: clamp(0.88rem, 1.8vw, 0.95rem);
    color: var(--color-bone);
    font-weight: 500;
    line-height: 1.5;
}

.guide-contact-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guide-name {
    font-family: var(--font-sub);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: var(--color-bone-muted);
    text-transform: uppercase;
}

.detail-link {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--color-bone);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.detail-link:hover {
    color: var(--color-tan-light);
}

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.social-label {
    font-family: var(--font-sub);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    color: var(--color-bone-muted);
    margin-right: 6px;
}

.social-fb-logo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-tan);
    border: 1px solid var(--color-tan);
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    color: #111312;
    font-family: var(--font-sub);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(163, 134, 99, 0.35);
    transition: all var(--transition-fast);
}

.social-fb-logo-btn:hover {
    background-color: #bfa380;
    border-color: #bfa380;
    color: #111312;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(163, 134, 99, 0.6);
}

.fb-logo-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: #111312;
}

.contact-form-card {
    background-color: rgba(24, 26, 25, 0.92);
    border: 1px solid var(--color-weathered-brown);
    padding: clamp(28px, 5vw, 44px) clamp(20px, 5vw, 40px);
    border-radius: 4px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.form-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.form-title-col {
    flex: 1;
}

.form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--color-bone);
    margin: 0 0 6px 0 !important;
}

.form-sub {
    font-size: clamp(0.85rem, 1.8vw, 0.92rem);
    color: var(--color-bone-muted);
    margin: 0 !important;
}

.form-corner-logo {
    width: clamp(80px, 11vw, 115px);
    height: auto;
    object-fit: contain;
    filter: invert(1) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    mix-blend-mode: screen;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex-grow: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 16px font size ensures mobile browsers (iOS Safari) do NOT auto-zoom on focus */
.form-input,
.form-select {
    width: 100%;
    background-color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal-border);
    border-radius: 2px;
    padding: 16px 16px 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-bone);
    min-height: 52px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-tan);
    background-color: rgba(20, 33, 24, 0.5);
    box-shadow: 0 0 0 3px rgba(163, 134, 99, 0.15);
}

.floating-label {
    position: absolute;
    top: 15px;
    left: 16px;
    font-family: var(--font-sub);
    font-size: 0.9rem;
    color: var(--color-bone-dim);
    pointer-events: none;
    transition: all 0.2s var(--curve-smooth);
}

.form-input:focus ~ .floating-label,
.form-input:not(:placeholder-shown) ~ .floating-label,
.form-group.has-value .floating-label,
.select-group.has-value .select-label {
    top: 4px;
    left: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--color-tan-light);
}

.form-textarea {
    resize: vertical;
    min-height: 260px;
    padding-top: 24px;
    flex-grow: 1;
}

.flex-grow-group {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
    border-color: var(--color-error);
    background-color: rgba(224, 102, 102, 0.05);
    animation: shakeInput 0.4s ease-in-out;
}

.form-group.has-error .floating-label {
    color: var(--color-error);
}

.error-msg {
    display: none;
    font-size: 0.76rem;
    color: var(--color-error);
    margin-top: 4px;
    font-family: var(--font-sub);
}

.form-group.has-error .error-msg {
    display: block;
}

@keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.btn-submit {
    width: 100%;
    min-height: 54px;
    background-color: var(--color-tan);
    color: var(--color-charcoal);
    border: 1px solid var(--color-tan);
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.btn-submit:hover {
    background-color: var(--color-tan-light);
    box-shadow: 0 8px 25px rgba(163, 134, 99, 0.35);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status-banner {
    background-color: rgba(43, 68, 51, 0.85);
    border: 1px solid var(--color-tan);
    padding: 20px;
    border-radius: 3px;
    display: none; /* Hidden by default until revealed after successful submission */
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
}

.form-status-banner:not([hidden]),
.form-status-banner.visible {
    display: flex !important;
}

.success-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-tan);
    color: var(--color-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.success-text {
    font-size: 0.92rem;
    color: var(--color-bone);
    line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-tan);
    border-top: 2px solid rgba(0,0,0,0.18);
    padding: 60px var(--section-padding-x) 40px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 28px;
}

.footer-brand .brand-title {
    font-size: clamp(0.98rem, 2.3vw, 1.12rem);
    color: var(--color-charcoal);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 4vw, 28px);
}

.footer-link {
    text-decoration: none;
    font-family: var(--font-sub);
    font-size: 0.88rem;
    font-weight: 700;
    color: #1c261f;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-charcoal);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #242f29;
}

/* ==========================================================================
   LIGHTBOX MODAL (ZERO CAPTIONS, FULL HIGH-RES VIEWING)
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 3vw, 30px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--curve-smooth);
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 12, 11, 0.95);
    backdrop-filter: blur(16px);
}

.lightbox-viewer {
    position: relative;
    z-index: 8001;
    max-width: 96vw;
    max-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.92);
    transition: transform 0.45s var(--curve-bounce);
}

.lightbox.active .lightbox-viewer {
    transform: scale(1);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 8003;
    background-color: rgba(20, 33, 24, 0.88);
    color: var(--color-bone);
    border: 1px solid var(--color-tan);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background-color: var(--color-tan);
    color: var(--color-charcoal);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8002;
    background-color: rgba(20, 33, 24, 0.88);
    color: var(--color-bone);
    border: 1px solid var(--color-tan);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.nav-prev { left: 16px; }
.nav-next { right: 16px; }

.lightbox-nav:hover {
    background-color: var(--color-tan);
    color: var(--color-charcoal);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080a09;
    border: 1px solid var(--color-charcoal-border);
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.85);
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-main-img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

/* ==========================================================================
   CUSTOM SCROLL REVEAL ANIMATIONS (DISTINCT TRANSITIONS BETWEEN SECTIONS)
   ========================================================================== */
/* 1. Between Hero and Welcome (#welcome): Smooth Upward Glide & Scale Expand */
.scroll-reveal-welcome {
    opacity: 0;
    transform: translateY(70px) scale(0.93);
    filter: blur(6px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.scroll-reveal-welcome.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* 2. Between Welcome and Gallery (#gallery): Solid Black Background Always Visible, Content Glides In */
#gallery.scroll-reveal-gallery {
    opacity: 1 !important;
    transform: none !important;
    background-color: #0a0c0b !important;
}

#gallery.scroll-reveal-gallery .section-container {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.48s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#gallery.scroll-reveal-gallery.is-revealed .section-container {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Between Gallery and About (#about): Cinematic Split Slide In from Opposite Sides */
.scroll-reveal-about .about-photo-col {
    opacity: 0;
    transform: translateX(-130px);
    transition: opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1), transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-about .about-content-col {
    opacity: 0;
    transform: translateX(130px);
    transition: opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1), transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-about.is-revealed .about-photo-col,
.scroll-reveal-about.is-revealed .about-content-col {
    opacity: 1;
    transform: translateX(0);
}

/* 4. Between About and How to Book (#how-to-book): 3D Perspective Card Flip & Letter Expand */
.scroll-reveal-booking {
    opacity: 0;
    transform: perspective(1200px) rotateY(25deg) translateY(55px);
    transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-booking.is-revealed {
    opacity: 1;
    transform: perspective(1200px) rotateY(0) translateY(0);
}

/* 5. Between How to Book and Contact (#contact): Elevating Curtain Reveal & Dynamic Drop-Shadow */
.scroll-reveal-contact {
    opacity: 0;
    transform: translateY(90px) skewY(3deg);
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
    transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), filter 0.95s ease;
}

.scroll-reveal-contact.is-revealed {
    opacity: 1;
    transform: translateY(0) skewY(0);
    filter: drop-shadow(0 20px 45px rgba(0,0,0,0.65));
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (COMPREHENSIVE MOBILE & TABLET OPTIMIZATION)
   ========================================================================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    --header-height: 72px;
    --header-height-scrolled: 64px;

    .header-container {
        gap: 16px;
    }

    .brand-title {
        font-size: clamp(0.72rem, 2.3vw, 0.98rem);
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: rgba(17, 19, 18, 0.98);
        border-bottom: 1px solid var(--color-weathered-brown);
        padding: 24px var(--section-padding-x) 32px;
        transform: translateY(-160%);
        transition: transform var(--transition-mid);
        z-index: 999;
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    }

    .main-nav.mobile-active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        width: 100%;
    }

    .nav-link {
        font-size: 1.05rem;
        width: 100%;
        display: block;
        color: #ffffff !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #ffffff !important;
    }

    .nav-link::after {
        background-color: #ffffff;
    }

    .nav-btn-primary {
        text-align: left;
        margin-top: 0;
        background: none;
        border: none;
        padding: 0;
        border-radius: 0;
        color: #ffffff !important;
        font-size: 1.05rem;
        width: 100%;
        display: block;
    }

    .nav-btn-primary:hover {
        background: none;
        transform: none;
        color: #ffffff !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .nav-prev { left: 8px; }
    .nav-next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; }
}

@media (max-width: 580px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px 18px;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
