:root {
    /* Forest/Mist Palette */
    --bg-mist: #f4f7f5;
    --bg-mist-light: #f9fbf9;
    --bg-surface: #e8ebe9;
    --bg-moss-pale: #edf1ee;
    --text-main: #1a261a;
    --text-muted: #5c7060;

    /* Accents */
    --accent-red: #D9381E;
    --accent-green: #2E4600;
    --accent-moss: #8A9A5B;
    --accent-river: #4A6C6F;
    --warmth-glow: rgba(217, 56, 30, 0.03);

    /* Borders & Shadows */
    --border-soft: rgba(46, 70, 0, 0.08);
    --shadow-soft: 0 10px 40px rgba(26, 38, 26, 0.04);
    --shadow-depth: 0 20px 50px rgba(26, 38, 26, 0.06);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 100px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-mist);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 8rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
    box-shadow: 0 8px 25px rgba(217, 56, 30, 0.2);
}

.btn-primary:hover {
    background-color: #b92b14;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 56, 30, 0.3);
}

.btn-outline {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: transparent;
}

.btn-outline:hover,
.btn-outline.active {
    background: var(--accent-green);
    color: white;
}

.btn-text {
    color: var(--accent-green);
    padding: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
}

.btn-text:hover {
    border-color: var(--accent-green);
}

/* Header & Nav Centered Logo layout */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(244, 247, 245, 0.90);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-soft);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.desktop-only {
    display: none;
}

@media (min-width: 993px) {
    .desktop-only {
        display: block;
    }

    .nav-left,
    .nav-right {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .nav-right {
        justify-content: flex-end;
    }

    .nav-left .nav-links {
        justify-content: flex-start;
    }

    .logo {
        flex: 0 0 auto;
        margin: 0 2rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Hide the mobile nav wrapper on desktop */
    .nav-wrapper {
        display: none !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 10;
}

.logo img {
    max-height: 80px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-main);
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-red);
}

.nav-links a.active {
    border-bottom-color: var(--accent-red);
}

.lang-switch-item {
    margin-left: 1rem;
}

.lang-switch {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.lang-switch a {
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.lang-switch a img {
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lang-switch a.active {
    opacity: 1;
    transform: scale(1.1);
}

.lang-switch a:hover {
    opacity: 1;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--accent-green);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.no-scroll {
    overflow: hidden;
}

/* Hero Slider Section (V4) */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0a140a;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s, opacity 1.2s ease 0.5s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-kicker {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-red);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-slider h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-slider .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slider-nav {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-nav .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-nav .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-nav .dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
    border-color: white;
}

@media (max-width: 768px) {
    .hero-slider h1 {
        font-size: 2.5rem;
    }

    .hero-slider .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Page Hero Section (Base) */
.page-hero {
    height: 55vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: var(--header-height);
}

/* Feature Hero (Intermediate full-width sections like River Focus) */
.feature-hero {
    position: relative;
    padding: 8rem 0;
    margin: 4rem 0;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Optional parallax feel */
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.feature-hero .container {
    position: relative;
    z-index: 2;
}

.feature-hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 20, 10, 0.4), rgba(10, 20, 10, 0.7));
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Sections General */
.section-title-wrapper {
    margin-bottom: 5rem;
    max-width: 750px;
}

.section-label {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    display: block;
}

/* Section Specific Backgrounds */
#reserve {
    background: linear-gradient(180deg, var(--bg-mist-light) 0%, var(--bg-mist) 100%);
}

.reserve-layout {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
}

@media (max-width: 992px) {
    .reserve-layout {
        grid-template-columns: 1fr;
    }
}

#birdwatching {
    background: linear-gradient(135deg, #1f3a2e 0%, #244b38 100%);
    position: relative;
    overflow: hidden;
    color: #e8ebe9;
}

#birdwatching::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 30% 20%, rgba(138, 154, 91, 0.15), transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(43, 90, 65, 0.2), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

#birdwatching .container {
    position: relative;
    z-index: 2;
}

#birdwatching h2 {
    color: white;
}

#birdwatching .section-label {
    color: #d63a2a;
    /* Rooster red accent */
}

#experience {
    background: linear-gradient(180deg, var(--bg-mist) 0%, var(--bg-mist-light) 100%);
}

#location {
    background: linear-gradient(135deg, #1f3a2e 0%, #244b38 100%);
    color: white;
}

#location h2,
#location p {
    color: white;
}

#location .section-label {
    color: #d63a2a;
    /* Match birdwatching accent */
}

#location .btn-text {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

#location .btn-text:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

/* Preview Sections */
section.section-padding:has(.contact-wrapper) {
    background: linear-gradient(180deg, var(--bg-mist-light) 0%, var(--bg-moss-pale) 100%);
}

section.section-padding:has(.contact-wrapper):nth-of-type(even) {
    background: linear-gradient(180deg, var(--bg-moss-pale) 0%, var(--bg-mist-light) 100%);
}

/* Carousel Styles */
.carousel-container {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-depth);
    border: 1px solid var(--border-soft);
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 8s linear;
}

.carousel-slide.active img {
    transform: scale(1.1);
}

/* Birdwatching Grid & Cards */
.bird-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.bird-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.bird-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 58, 42, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bird-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.bird-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}

.bird-card:hover .bird-card-img img {
    transform: scale(1.1);
}

.bird-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(214, 58, 42, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.bird-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.bird-card-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bird-card-content p {
    color: rgba(232, 235, 233, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.bird-cta-wrapper {
    text-align: center;
}

/* Species Cards */
.species-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.species-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-depth);
    border-color: var(--accent-moss);
}

.species-img {
    height: 280px;
}

.species-info {
    padding: 2rem;
}

.species-sci {
    color: var(--accent-moss);
    font-style: italic;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: block;
    letter-spacing: 0.02em;
}

/* Lodging Grid */
.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.lodging-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.lodging-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-depth);
}

.lodging-icon {
    font-size: 2.5rem;
    color: var(--accent-moss);
    margin-bottom: 1.5rem;
    display: block;
}

/* Experience Mosaic */
.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.mosaic-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.mosaic-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item:nth-child(2) {
    grid-column: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    transition: transform 1.5s var(--transition-smooth);
}

.mosaic-item:hover img {
    transform: scale(1.15);
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(transparent, rgba(10, 20, 10, 0.9));
    color: white;
}

.mosaic-overlay h4 {
    color: white;
    font-size: 1.2rem;
}

/* Location Map Container */
.map-container {
    width: 100%;
    height: 450px;
    background: #e0e5e2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Section */
.contact-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 5rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-depth);
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-green);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-mist-light);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-moss);
    background: white;
    box-shadow: 0 0 0 4px rgba(138, 154, 91, 0.1);
}

/* Footer */
footer {
    background: #0d140d;
    padding: 6rem 0 3rem;
    color: #e8ebe9;
}

footer h3,
footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}

footer p {
    color: #8a9a8e;
    font-size: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #5c7060;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .nav-wrapper {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-mist-light);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 4rem;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .lang-switch {
        margin-top: 2rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bird-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .bird-grid {
        grid-template-columns: 1fr;
    }

    .mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .mosaic-item:nth-child(1) {
        grid-column: span 1;
        height: 350px;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Preview Sections Redesign (V2) */
/* --- SPECIES PHOTO STACK (V4) --- */
.species-preview {
    background: #fdfdfd;
    padding: 8rem 0;
    overflow: hidden;
}

.species-stack-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.image-stack-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 350px;
    height: 450px;
}

.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    padding: 15px 15px 60px 15px;
    /* Polaroid bottom spacing */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), z-index 0s;
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Layer positions and rotations */
.card-1 {
    transform: rotate(-5deg) translateX(-20px);
    z-index: 1;
}

.card-2 {
    transform: rotate(3deg) translateX(10px) translateY(10px);
    z-index: 2;
}

.card-3 {
    transform: rotate(7deg) translateX(30px) translateY(-10px);
    z-index: 3;
}

/* Hover effects */
.image-stack:hover .card-1 {
    transform: rotate(-8deg) translateX(-40px) translateY(-10px);
}

.image-stack:hover .card-2 {
    transform: rotate(0deg) translateX(0) translateY(15px);
}

.image-stack:hover .card-3 {
    transform: rotate(10deg) translateX(50px) translateY(-25px);
    z-index: 5;
}

.species-stack-layout .preview-content {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .species-stack-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .image-stack-container {
        height: 400px;
    }

    .image-stack {
        width: 280px;
        height: 360px;
        margin: 0 auto;
    }

    .species-stack-layout .preview-content {
        padding-left: 0;
    }
}

/* --- LODGING CAROUSEL (V3) --- */
.lodging-carousel-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a2a22 0%, #243b2f 100%);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-track {
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    color: white;
    transform: translateY(30px);
    transition: transform 1s ease-out 0.5s, opacity 1s ease-out 0.5s;
    opacity: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.cabin-label {
    display: inline-block;
    color: var(--accent-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.slide-content h3 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.slide-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cabin-details {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-moss);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Carousel Nav */
.carousel-nav {
    position: absolute;
    bottom: 3rem;
    right: 10%;
    z-index: 20;
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
}

/* Fixed CTA */
.carousel-cta-fixed {
    position: absolute;
    bottom: 3rem;
    left: 10%;
    z-index: 20;
}

@media (max-width: 768px) {
    .lodging-carousel-section {
        height: 80vh;
    }

    .carousel-slide {
        padding: 0 5%;
        align-items: flex-end;
        padding-bottom: 8rem;
    }

    .slide-content {
        padding: 2rem;
        margin-left: 0;
    }

    .slide-content h3 {
        font-size: 2.2rem;
    }

    .carousel-nav {
        right: 5%;
        bottom: 2rem;
    }

    .carousel-cta-fixed {
        left: 5%;
        bottom: 2rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* --- Redesigned Reserve Section (Centered Ticker) --- */
.reserve-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 0 !important;
    /* Remove bottom padding to let ticker sit flush or close */
    background: linear-gradient(180deg, var(--bg-mist-light) 0%, var(--bg-mist) 100%);
}

.reserve-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    /* Bottom margin for space before ticker */
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.reserve-kicker {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-red);
    font-weight: 800;
    margin-bottom: 1rem;
}

.reserve-center h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.reserve-text-body {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.reserve-bullets.centered-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.reserve-bullets.centered-bullets li {
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Bullet separator style */
.reserve-bullets.centered-bullets li:not(:last-child)::after {
    content: '•';
    color: var(--accent-red);
    margin-left: 2rem;
    font-size: 1.2rem;
}

/* Ticker Styles */
.reserve-ticker {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 24px 0;
    background: var(--accent-green);
    /* Dark green brand accent */
    position: relative;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 40s linear infinite;
    /* Adjusted speed for readability */
}

.ticker-content {
    display: flex;
    align-items: center;
}

.ticker-text {
    font-size: clamp(42px, 6vw, 92px);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #e8ebe9;
    /* Light contrast color */
    opacity: 0.95;
    margin-right: 0;
    /* Spacing handled by the text content string itself usually, but ensuring no extra gap */
    line-height: 1;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
        /* Since we have 4 copies, moving 25% creates the seamless loop of one segment */
    }
}

/* Responsive */
/* Responsive adjustments for Reserve Ticker */
@media (max-width: 768px) {
    .reserve-center h2 {
        font-size: 2.5rem;
    }

    .reserve-bullets.centered-bullets {
        flex-direction: column;
        align-items: center;
        /* Center bullets on mobile */
        gap: 0.5rem;
    }

    .reserve-bullets.centered-bullets li:not(:last-child)::after {
        display: none;
    }

    .reserve-ticker {
        padding: 16px 0;
    }
}

/* --- Mobile Fixes (Header & Hero) --- */
@media (max-width: 992px) {

    /* Header: Center Logo & Toggle Position */
    .nav-container {
        justify-content: center;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 1002;
    }

    .logo img {
        max-height: 55px;
        /* Slight reduction for mobile */
    }

    .mobile-nav-toggle {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {

    /* Hero: Fix height and centering */
    .hero-slider {
        height: 100svh;
        min-height: 750px;
    }

    .hero-slider .slide {
        /* Ensure slide flex container centers content */
        justify-content: center;
        align-items: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    /* Scoped Hero Content */
    .hero-slider .slide-content {
        width: 85%;
        max-width: 100%;
        padding: 2rem 0;
        /* Vertical padding/breathing room for hero text */
        margin: 0 auto;
        text-align: center;
        transform: translateY(0) !important;
        background: transparent;
        /* Ensure no glass background from lodging styles if conflict exists */
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 1.2rem;
    }

    .hero-slider h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-slider .hero-subtitle {
        margin-bottom: 2.5rem;
    }

    /* Lodging Carousel Mobile Fixes */
    .lodging-carousel-section .carousel-slide {
        padding: 0 1rem;
        /* Less horizontal padding on mobile wrapper */
        align-items: center;
        /* Center vertically */
    }

    .lodging-carousel-section .slide-content {
        width: 95%;
        /* Wider card on mobile */
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem;
        /* Reduce padding from 3rem to 2rem */
        text-align: left;
        /* Keep left alignment for card content usually, or center if preferred? Design seems left based on desktop */
        transform: translateY(0) !important;

        /* Ensure glass card look is preserved */
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-xl);
    }

    .lodging-carousel-section h3 {
        font-size: 2rem;
        /* Smaller title */
        margin-bottom: 1rem;
    }

    .cabin-details {
        flex-direction: column;
        /* Stack details if needed or allow wrap */
        align-items: flex-start;
        gap: 0.5rem;
    }
}