/*
Theme Name: Kaxan Ranch Theme
Theme URI: https://kaxanranch.com/
Author: Antigravity AI
Author URI: https://deepmind.google/
Description: Custom high-fidelity luxury theme for Kaxan Ranch with smooth 2-second cinematic transitions and full-screen slider.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaxan
Tags: dark, responsive-layout, custom-menu, translation-ready, luxury, safari, jungle
*/

/* Imports of google fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,400;1,500;1,600&display=swap');

/* Local Fonts (Effra) */
@font-face {
    font-family: 'Effra';
    src: url('assets/fonts/Effra-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Effra';
    src: url('assets/fonts/Effra-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Effra';
    src: url('assets/fonts/Effra-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Effra';
    src: url('assets/fonts/Effra-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Effra';
    src: url('assets/fonts/Effra-Medium.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and Global Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Effra', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-overlay: rgba(0, 0, 0, 0.45);
    --transition-speed: 0.4s;
}

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fullscreen Slider/Hero CSS */
.hero-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Base style for individual slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* 2-second premium fade transition as requested */
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Overlay to darken background and make text readable */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.35) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Content Container (Center aligned) */
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInContent 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Styles */
.hero-logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 2.5rem;
    display: block;
    user-select: none;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

/* Tagline Styles */
.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.45;
    color: var(--color-white);
    margin-bottom: 3rem;
    max-width: 780px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

/* Buttons Container */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* Ghost Button Styles */
.btn-ghost {
    display: inline-block;
    min-width: 190px;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background-color: transparent;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-ghost:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.btn-ghost:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrow Styles */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform var(--transition-speed) ease;
}

.slider-arrow-left {
    left: 2.5rem;
}

.slider-arrow-right {
    right: 2.5rem;
}

.slider-arrow:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.slider-arrow-left:hover svg {
    transform: translateX(-4px);
}

.slider-arrow-right:hover svg {
    transform: translateX(4px);
}

/* Sticky Horizontal Navigation Menu */
.sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    /* High contrast dark blur background for all pages by default */
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-bottom var(--transition-speed) ease;
}

/* Homepage-specific hero integration (starts transparent, sits over the slider) */
.home .sticky-nav {
    background-color: transparent;
    margin-top: -80px;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Homepage sticky active transition */
.home .sticky-nav.is-sticky {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* WordPress Admin Bar Compatibility */
.admin-bar .sticky-nav {
    top: 0;
}

@media (max-width: 782px) {
    .admin-bar .sticky-nav {
        top: 0;
    }
}

.bottom-menu {
    display: flex;
    flex-wrap: nowrap; /* Force a single, elegant line */
    justify-content: center;
    align-items: center;
    gap: 1.4rem; /* Premium, balanced gap to fit 10 items comfortably */
    list-style: none;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bottom-menu li {
    flex-shrink: 0; /* Prevent list items from shrinking and wrapping words */
}

.bottom-menu li a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.64rem; /* High-end compact size */
    font-weight: 500;
    letter-spacing: 0.14em; /* Classic editorial kerning */
    text-transform: uppercase;
    opacity: 0.7;
    position: relative;
    padding: 0.4rem 0;
    white-space: nowrap; /* Prevent individual link titles from ever wrapping word-by-word */
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.bottom-menu li a:hover {
    opacity: 1;
}

/* Responsive scaling for desktop sizes to ensure the single line never wraps */
@media (max-width: 1300px) {
    .bottom-menu {
        gap: 0.85rem;
        padding: 0 1rem;
    }
    
    .bottom-menu li a {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
    }
}

/* Sliding underline hover effect */
.bottom-menu li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-white);
    transform-origin: bottom right;
    transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-menu li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Mobile Navigation Hamburger Menu */
.menu-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
    cursor: pointer;
    z-index: 150;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.menu-toggle:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.menu-toggle-icon {
    width: 1.25rem;
    height: 2px;
    background-color: var(--color-white);
    position: relative;
    transition: background-color 0.3s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 1.25rem;
    height: 2px;
    background-color: var(--color-white);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    top: 6px;
}

/* Hamburger active transformation */
.menu-toggle.active .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Fullscreen Overlay Menu for Mobile */
.mobile-overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 120;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding: 0;
}

.mobile-menu-list li a {
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
}

.mobile-menu-list li a:hover {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* Our Legacy Section */
.our-legacy {
    position: relative;
    background-image: url('assets/images/ourlegacy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-white);
}

/* Overlay for texture readability */
.our-legacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adds a premium subtle dark tint for excellent readability */
    z-index: 1;
    pointer-events: none;
}

.legacy-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.legacy-col {
    display: flex;
    flex-direction: column;
}

.right-col {
    margin-top: 12rem;
}

.legacy-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.legacy-title.italic {
    font-style: italic;
}

.legacy-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    opacity: 0.85;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.legacy-text p {
    margin-bottom: 1.5rem;
}

.legacy-text p:last-child {
    margin-bottom: 0;
}

/* Section Footer Area */
.legacy-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 8rem auto 0 auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 4rem;
}

.legacy-footer-logo {
    flex-shrink: 0;
}

.kaxan-icon {
    width: 80px;
    height: 80px;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.kaxan-icon:hover {
    transform: scale(1.05);
}

.legacy-footer-links {
    display: flex;
    gap: 4.5rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.group-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

.group-icons {
    display: flex;
    gap: 1.2rem;
}

.group-icons a {
    color: var(--color-white);
    opacity: 0.8;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-decoration: none;
}

.group-icons a:hover {
    opacity: 1;
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    /* Hide bottom menu inline and show hamburger */
    .sticky-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .slider-arrow {
        width: 3rem;
        height: 3rem;
    }
    
    .slider-arrow-left {
        left: 1.5rem;
    }
    
    .slider-arrow-right {
        right: 1.5rem;
    }

    /* Legacy Responsive adjustments */
    .our-legacy {
        padding: 6rem 3rem;
    }
    
    .legacy-container {
        gap: 4rem;
    }
    
    .legacy-title {
        font-size: 2.5rem;
    }
    
    .right-col {
        margin-top: 6rem;
    }
    
    .legacy-footer-links {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
        margin-bottom: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.45rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        gap: 1rem;
    }
    
    .btn-ghost {
        width: 100%;
        min-width: 0;
        padding: 0.8rem 1.5rem;
    }
    
    .slider-arrow {
        display: none; /* Hide arrows on mobile for a cleaner look */
    }

    /* Legacy Section Mobile layout */
    .legacy-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .right-col {
        margin-top: 0;
    }
    
    .legacy-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .legacy-footer {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        text-align: center;
        margin-top: 5rem;
        padding-top: 3rem;
    }
    
    .legacy-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .footer-link-group {
        align-items: center;
    }
}

/* --- The Hunting Experience Section --- */
.hunting-experience {
    position: relative;
    background-image: url('assets/images/hunting-experience.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #2e2e2e;
}

/* Premium overlay to enrich texture and enhance readability */
.hunting-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 245, 240, 0.15); /* Sleek warmth filter to wow the user */
    z-index: 1;
    pointer-events: none;
}

.hunting-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hunting-container:has(.wp-block-columns) {
    display: block;
}

.hunting-container .wp-block-columns {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8rem;
    width: 100%;
}

.hunting-col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hunting-container .wp-block-column {
    display: block;
}

.hunting-col.right-col,
.hunting-container .wp-block-column:last-child {
    margin-top: 14rem; /* Asymmetric vertical offset matching the high-fidelity design */
}

.hunting-title,
.hunting-container .wp-block-column h2,
.hunting-container .wp-block-column .wp-block-heading {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* Gutenberg column headings that are not the first block in the column need some top spacing */
.hunting-container .wp-block-column h2,
.hunting-container .wp-block-column .wp-block-heading {
    margin-top: 4rem;
}

.hunting-container .wp-block-column h2:first-child,
.hunting-container .wp-block-column .wp-block-heading:first-child {
    margin-top: 0;
}

.hunting-text,
.hunting-container .wp-block-column p,
.hunting-container .wp-block-column .wp-block-paragraph {
    font-family: var(--font-sans);
    font-size: 1.15rem; /* Enhanced size for maximum readability */
    font-weight: 300; /* Effra Light */
    line-height: 1.85;
    color: #2e2e2e;
}

.hunting-text p,
.hunting-container .wp-block-column p,
.hunting-container .wp-block-column .wp-block-paragraph {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hunting-text p:last-child,
.hunting-container .wp-block-column p:last-child,
.hunting-container .wp-block-column .wp-block-paragraph:last-child {
    margin-bottom: 0;
}

/* Footer Area (Dark Elegant Accents) */
.hunting-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 8rem auto 0 auto;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 4rem;
}

.hunting-footer-links {
    display: flex;
    gap: 4.5rem;
}

.hunting-footer-links .footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hunting-footer-links .group-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.55);
}

.hunting-footer-links .group-icons {
    display: flex;
    gap: 1.2rem;
}

.hunting-footer-links .group-icons a {
    color: #1a1a1a;
    opacity: 0.8;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-decoration: none;
}

.hunting-footer-links .group-icons a:hover {
    opacity: 1;
    color: var(--color-white);
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hunting-footer-logo {
    flex-shrink: 0;
}

.hunting-footer-logo .dark-logo {
    filter: brightness(0); /* Renders brand isotype in full black */
}

/* Responsive Media Queries for Hunting Section */
@media (max-width: 1024px) {
    .hunting-experience {
        padding: 6rem 3rem;
    }

    .hunting-container,
    .hunting-container .wp-block-columns {
        gap: 4rem;
    }

    .hunting-col.right-col,
    .hunting-container .wp-block-column:last-child {
        margin-top: 6rem;
    }

    .hunting-title,
    .hunting-container .wp-block-column h2,
    .hunting-container .wp-block-column .wp-block-heading {
        font-size: 2.5rem;
    }

    .hunting-footer-links {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hunting-container,
    .hunting-container .wp-block-columns {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hunting-col.right-col,
    .hunting-container .wp-block-column:last-child {
        margin-top: 0;
    }

    .hunting-title,
    .hunting-container .wp-block-column h2,
    .hunting-container .wp-block-column .wp-block-heading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hunting-footer {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        text-align: center;
        margin-top: 5rem;
        padding-top: 3rem;
    }

    .hunting-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hunting-footer-links .footer-link-group {
        align-items: center;
    }
}

/* --- The Lodge Section --- */
.the-lodge {
    position: relative;
    background-image: url('assets/images/the-lodge.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    text-align: center;
}

/* Subtle overlay on background if needed for legibility, but mockup shows high contrast dark composite */
.the-lodge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* very light dark screen to guarantee text readability */
    z-index: 1;
    pointer-events: none;
}

.lodge-container {
    position: relative;
    z-index: 2;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lodge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
}

.lodge-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.lodge-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300; /* Effra Light */
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 680px;
    margin: 0 auto;
}

.lodge-text p {
    margin-bottom: 1.8rem;
}

.lodge-text p:last-child {
    margin-bottom: 0;
}

.lodge-cta {
    margin-top: 1rem;
}

/* Premium dark glassmorphism button */
.btn-availability {
    display: inline-block;
    padding: 1.1rem 3rem;
    background-color: rgba(10, 10, 10, 0.85);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-availability:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7);
}

.btn-availability:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Floating bell animation */
.lodge-bell-indicator {
    color: var(--color-white);
    opacity: 0.85;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatBell 3s ease-in-out infinite;
}

@keyframes floatBell {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Footer Section side-by-side matching high fidelity */
.lodge-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    width: 100%;
    max-width: 900px;
    margin-top: 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 3.5rem;
}

.lodge-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.lodge-footer .group-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
}

.lodge-footer .group-icons {
    display: flex;
    gap: 1.2rem;
}

.lodge-footer .group-icons a {
    color: var(--color-white);
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-decoration: none;
}

.lodge-footer .group-icons a:hover {
    opacity: 1;
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

/* Responsive Media Queries for Lodge Section */
@media (max-width: 1024px) {
    .the-lodge {
        padding: 10rem 2rem 5rem 2rem;
    }
    
    .lodge-title {
        font-size: 2.8rem;
    }
    
    .lodge-footer {
        gap: 4rem;
        margin-top: 6rem;
    }
}

@media (max-width: 768px) {
    .the-lodge {
        padding: 8rem 1.5rem 4rem 1.5rem;
    }
    
    .lodge-title {
        font-size: 2.3rem;
    }
    
    .lodge-text {
        font-size: 0.9rem;
        line-height: 1.85;
    }
    
    .lodge-footer {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        margin-top: 5rem;
        padding-top: 2.5rem;
    }
}

/* --- Conservation Section --- */
.conservation {
    position: relative;
    background-image: url('assets/images/conservation.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    text-align: center;
}

/* Screen filter for text legibility over textured background */
.conservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.18); /* subtle dark overlay */
    z-index: 1;
    pointer-events: none;
}

.conservation-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* push text column to the right to align over brown paper */
}

.conservation-content {
    max-width: 620px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.2rem;
}

.conservation-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.conservation-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300; /* Effra Light */
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.conservation-text p {
    margin-bottom: 1.8rem;
}

.conservation-text p:last-child {
    margin-bottom: 0;
}

/* Horizontal footer layout matching mockup */
.conservation-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1100px;
    margin-top: 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 3.5rem;
    padding-bottom: 1rem;
}

.conservation-footer .footer-links-group {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.conservation-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.conservation-footer .group-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
}

.conservation-footer .group-icons {
    display: flex;
    gap: 1.2rem;
}

.conservation-footer .group-icons a {
    color: var(--color-white);
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-decoration: none;
}

.conservation-footer .group-icons a:hover {
    opacity: 1;
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.conservation-footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.conservation-wordmark {
    height: auto;
    width: 140px;
    opacity: 0.95;
    transition: opacity var(--transition-speed) ease;
}

.conservation-wordmark:hover {
    opacity: 1;
}

/* Responsive Media Queries for Conservation Section */
@media (max-width: 1200px) {
    .conservation-container {
        justify-content: center; /* Center-align the card when screen becomes smaller */
    }
    
    .conservation-footer {
        max-width: 900px;
        gap: 4rem;
    }
    
    .conservation-footer .footer-links-group {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .conservation {
        padding: 10rem 2rem 5rem 2rem;
    }
    
    .conservation-title {
        font-size: 2.8rem;
    }
    
    .conservation-footer {
        margin-top: 6rem;
    }
}

@media (max-width: 768px) {
    .conservation {
        padding: 8rem 1.5rem 4rem 1.5rem;
    }
    
    .conservation-title {
        font-size: 2.3rem;
    }
    
    .conservation-text {
        font-size: 0.9rem;
        line-height: 1.85;
    }
    
    .conservation-footer {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
        margin-top: 5rem;
        padding-top: 2.5rem;
    }
    
    .conservation-footer .footer-links-group {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .conservation-footer .footer-logo {
        justify-content: center;
        width: 100%;
    }
    
    .conservation-wordmark {
        width: 120px;
    }
}

/* --- Agriculture Section --- */
.agriculture {
    position: relative;
    background-image: url('assets/images/agriculture.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white); /* High contrast light text */
}

/* Screen filter for text legibility over textured background */
.agriculture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.22); /* premium subtle dark screen to guarantee contrast */
    z-index: 1;
    pointer-events: none;
}

.agriculture-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* push text column to the left to align over parchment paper */
}

.agriculture-content {
    max-width: 580px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.2rem;
}

.agriculture-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.agriculture-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300; /* Effra Light */
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 560px;
    margin: 0 auto;
}

.agriculture-text p {
    margin-bottom: 1.8rem;
}

.agriculture-text p:last-child {
    margin-bottom: 0;
}

/* Horizontal footer layout matching mockup */
.agriculture-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1100px;
    margin-top: 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* light premium border */
    padding-top: 3.5rem;
    padding-bottom: 1rem;
}

.agriculture-footer .footer-links-group {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.agriculture-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.agriculture-footer .group-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55); /* White-translucent label */
}

.agriculture-footer .group-icons {
    display: flex;
    gap: 1.2rem;
}

.agriculture-footer .group-icons a {
    color: var(--color-white); /* White icons */
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2); /* White borders */
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-decoration: none;
}

.agriculture-footer .group-icons a:hover {
    opacity: 1;
    color: var(--color-black);
    background-color: var(--color-white); /* light hover background */
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.agriculture-footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.agriculture-isotype {
    height: auto;
    width: 50px;
    opacity: 0.95;
    transition: opacity var(--transition-speed) ease;
}

.agriculture-isotype:hover {
    opacity: 1;
}

/* Responsive Media Queries for Agriculture Section */
@media (max-width: 1200px) {
    .agriculture-container {
        justify-content: center; /* Center-align the card when screen becomes smaller */
    }
    
    .agriculture-footer {
        max-width: 900px;
        gap: 4rem;
    }
    
    .agriculture-footer .footer-links-group {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .agriculture {
        padding: 10rem 2rem 5rem 2rem;
    }
    
    .agriculture-title {
        font-size: 2.8rem;
    }
    
    .agriculture-footer {
        margin-top: 6rem;
    }
}

@media (max-width: 768px) {
    .agriculture {
        padding: 8rem 1.5rem 4rem 1.5rem;
    }
    
    .agriculture-title {
        font-size: 2.3rem;
    }
    
    .agriculture-text {
        font-size: 0.9rem;
        line-height: 1.85;
    }
    
    .agriculture-footer {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
        margin-top: 5rem;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .agriculture-footer .footer-links-group {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .agriculture-footer .footer-logo {
        justify-content: center;
        width: 100%;
    }
    
    .agriculture-isotype {
        width: 45px;
    }
}

/* --- Mayan Heritage Section --- */
.mayan-heritage {
    position: relative;
    background-image: url('assets/images/mayan-heritage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white); /* High contrast light text over dark background */
}

/* Screen filter for text legibility over textured background */
.mayan-heritage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* premium subtle dark screen to guarantee contrast */
    z-index: 1;
    pointer-events: none;
}

.heritage-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* push text column to the left to align over dark background texture */
}

.heritage-content {
    max-width: 580px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.2rem;
}

.heritage-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.heritage-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300; /* Effra Light */
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 560px;
    margin: 0 auto;
}

.heritage-text p {
    margin-bottom: 1.8rem;
}

.heritage-text p:last-child {
    margin-bottom: 0;
}

/* Horizontal footer layout matching mockup */
.heritage-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1100px;
    margin-top: 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* light premium border */
    padding-top: 3.5rem;
    padding-bottom: 1rem;
}

.heritage-footer .footer-links-group {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.heritage-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.heritage-footer .group-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55); /* White-translucent label */
}

.heritage-footer .group-icons {
    display: flex;
    gap: 1.2rem;
}

.heritage-footer .group-icons a {
    color: var(--color-white); /* White icons */
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2); /* White borders */
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-decoration: none;
}

.heritage-footer .group-icons a:hover {
    opacity: 1;
    color: var(--color-black);
    background-color: var(--color-white); /* light hover background */
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.heritage-footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.heritage-isotype {
    height: auto;
    width: 50px;
    opacity: 0.95;
    transition: opacity var(--transition-speed) ease;
}

.heritage-isotype:hover {
    opacity: 1;
}

/* Responsive Media Queries for Mayan Heritage Section */
@media (max-width: 1200px) {
    .heritage-container {
        justify-content: center; /* Center-align the card when screen becomes smaller */
    }
    
    .heritage-footer {
        max-width: 900px;
        gap: 4rem;
    }
    
    .heritage-footer .footer-links-group {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .mayan-heritage {
        padding: 10rem 2rem 5rem 2rem;
    }
    
    .heritage-title {
        font-size: 2.8rem;
    }
    
    .heritage-footer {
        margin-top: 6rem;
    }
}

@media (max-width: 768px) {
    .mayan-heritage {
        padding: 8rem 1.5rem 4rem 1.5rem;
    }
    
    .heritage-title {
        font-size: 2.3rem;
    }
    
    .heritage-text {
        font-size: 0.9rem;
        line-height: 1.85;
    }
    
    .heritage-footer {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
        margin-top: 5rem;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .heritage-footer .footer-links-group {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .heritage-footer .footer-logo {
        justify-content: center;
        width: 100%;
    }
    
    .heritage-isotype {
        width: 45px;
    }
}

/* --- Brochure Section --- */
.brochure-section {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/images/brochure.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 140px; /* Space for the sticky nav */
    padding-bottom: 50px;
    box-sizing: border-box;
}

/* Translucent color screen overlay to slightly enhance contrast */
.brochure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 246, 240, 0.15); /* Warm light screen overlay */
    z-index: 1;
    pointer-events: none;
}

.brochure-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.brochure-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Centered Circular Download Button */
.brochure-download-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #3d3735; /* Premium dark brown/charcoal */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(61, 55, 53, 0.25);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.brochure-download-btn svg {
    transition: transform 0.3s ease;
}

/* Hover States for Interactive Circle Button */
.brochure-download-btn:hover {
    background-color: #4c4441;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(61, 55, 53, 0.35);
}

.brochure-download-btn:hover svg {
    transform: translateY(2px);
}

.brochure-download-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 55, 53, 0.25);
}

/* High-Contrast Playfair Title */
.brochure-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.8rem;
    font-weight: 500;
    color: #3d3735;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Brand Wordmark Container */
.brochure-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.brochure-wordmark {
    width: 150px;
    height: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brochure-wordmark:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Premium Light-Background Footer */
.brochure-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 2rem 2rem 0 2rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(61, 55, 53, 0.15); /* Translucent dark border */
}

.brochure-footer .footer-links-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6rem;
    width: 100%;
}

.brochure-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    flex: 1;
    max-width: 180px;
}

.brochure-footer .group-title {
    font-family: 'Effra Medium', 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #3d3735;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
}

.brochure-footer .group-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
}

/* Circular Outlined Black Icon Links */
.brochure-footer .group-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #3d3735;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d3735;
    background-color: transparent;
    text-decoration: none;
    transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.brochure-footer .group-icons a svg {
    transition: transform 0.2s ease;
}

.brochure-footer .group-icons a:hover {
    background-color: #3d3735;
    color: #ffffff;
    border-color: #3d3735;
    transform: scale(1.08);
}

.brochure-footer .group-icons a:hover svg {
    transform: scale(1.1);
}

.brochure-footer .group-icons a:active {
    transform: scale(0.98);
}

/* Responsive Media Queries for Brochure Section */
@media screen and (max-width: 1024px) {
    .brochure-footer .footer-links-group {
        gap: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .brochure-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .brochure-download-btn {
        width: 85px;
        height: 85px;
    }
    
    .brochure-title {
        font-size: 2.2rem;
    }
    
    .brochure-wordmark {
        width: 130px;
    }
    
    .brochure-footer {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
    
    .brochure-footer .footer-links-group {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .brochure-footer .footer-link-group {
        max-width: 100%;
        gap: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .brochure-title {
        font-size: 1.8rem;
    }
    
    .brochure-download-btn {
        width: 75px;
        height: 75px;
    }
}

/* --- Our Outfitter Section --- */
.outfitter-section {
    position: relative;
    background-image: url('assets/images/outfitter.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Screen filter for text legibility over textured background */
.outfitter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* premium subtle dark screen to guarantee contrast */
    z-index: 1;
    pointer-events: none;
}

.outfitter-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.outfitter-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 8rem;
    align-items: flex-start; /* Aligned to the top to match premium editorial style and avoid overlapping background */
    width: 100%;
}

.outfitter-left-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0.3rem; /* Perfect alignment of large serif heading cap-height with body text first line */
}

.outfitter-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    margin: 0;
    letter-spacing: -0.01em;
}

.outfitter-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem; /* Tightened gap for high-fidelity vertical spacing */
    width: 100%;
}

.outfitter-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300; /* Effra Light */
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.outfitter-text p {
    margin-bottom: 1.8rem;
}

.outfitter-text p:last-child {
    margin-bottom: 0;
}

.outfitter-logo-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered horizontally to match the mockup */
    width: 100%;
}

.outfitter-logo {
    height: auto;
    width: 160px; /* Cropped logo matches the exact mockup proportion without empty transparent margins */
    opacity: 0.95;
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.outfitter-logo:hover {
    opacity: 1;
    transform: scale(1.03);
}

/* Horizontal footer layout matching mockup for Our Outfitter */
.outfitter-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between; /* Spaced evenly to balance under the centered logo */
    align-items: flex-end;
    width: 100%;
    border-top: none; /* Removed border to match mockup */
    padding-top: 1rem;
}

.outfitter-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center; /* Center-aligned titles and icons per the mockup */
}

.outfitter-footer .group-title {
    font-family: var(--font-sans);
    font-size: 1.1rem; /* Restored to bold, elegant mockup sizing */
    font-weight: 700;
    text-transform: none; /* Mixed-case to match mockup */
    letter-spacing: normal;
    color: var(--color-white); /* High-contrast white */
    margin-bottom: 0.8rem;
    display: block;
}

.outfitter-footer .group-icons {
    display: flex;
    gap: 1.2rem;
}

/* Plain borderless SVG icons matching the mockup */
.outfitter-footer .group-icons a {
    color: var(--color-white); /* White icons */
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: none;
}

.outfitter-footer .group-icons a:hover {
    opacity: 1;
    color: var(--color-white);
    transform: translateY(-3px) scale(1.15);
}

.outfitter-footer .group-icons a svg {
    transition: transform var(--transition-speed) ease;
}

.outfitter-footer .group-icons a:hover svg {
    transform: scale(1.1);
}

.outfitter-footer .group-icons a:active {
    transform: scale(0.95);
}

/* Responsive Media Queries for Our Outfitter Section */
@media screen and (max-width: 1024px) {
    .outfitter-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .outfitter-left-col {
        align-items: center;
        text-align: center;
        padding-top: 0;
    }
    
    .outfitter-right-col {
        align-items: center;
        gap: 2.5rem;
    }
    
    .outfitter-text {
        text-align: center;
    }
    
    .outfitter-logo-container {
        justify-content: center;
    }
    
    .outfitter-footer {
        justify-content: center;
        gap: 4rem;
        padding-top: 2.5rem;
    }
    
    .outfitter-footer .footer-link-group {
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .outfitter-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .outfitter-title {
        font-size: 2.8rem;
    }
    
    .outfitter-footer {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding-top: 2rem;
        border-top: none; /* Removed border on mobile to match desktop mockup */
    }
    
    .outfitter-footer .footer-link-group {
        gap: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .outfitter-title {
        font-size: 2.2rem;
    }
}

/* --- Beyond Kaxan Section --- */
.beyond-section {
    position: relative;
    background-image: url('assets/images/beyond-kaxan.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Screen filter for text legibility over watercolor background */
.beyond-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.22); /* premium dark screen to guarantee contrast and legibility */
    z-index: 1;
    pointer-events: none;
}

.beyond-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: center;
}

.beyond-isotype-container {
    margin-bottom: 2.5rem;
}

.beyond-isotype {
    height: auto;
    width: 65px;
    opacity: 0.95;
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.beyond-isotype:hover {
    opacity: 1;
    transform: rotate(5deg) scale(1.05);
}

.beyond-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    margin: 0 0 2.5rem 0;
    letter-spacing: -0.01em;
}

.beyond-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300; /* Effra Light */
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    margin-bottom: 3.5rem;
}

.beyond-text p {
    margin-bottom: 1.8rem;
}

.beyond-text p:last-child {
    margin-bottom: 0;
}

.beyond-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    width: 100%;
}

/* Translucent pill-shaped glassmorphic CTA button */
.beyond-cta-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
}

.beyond-cta-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7);
}

.beyond-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Gentle Floating Bell Indicator styled for beyond section */
.beyond-bell-indicator {
    color: var(--color-white);
    opacity: 0.85;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatBell 3s ease-in-out infinite;
}

/* Horizontal borderless footer layout matching mockup for Beyond Kaxan */
.beyond-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between; /* Spaced evenly under the centered text */
    align-items: flex-end;
    width: 100%;
    border-top: none;
    padding-top: 1rem;
}

.beyond-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.beyond-footer .group-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: none; /* Mixed-case to match mockup */
    letter-spacing: normal;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    display: block;
}

.beyond-footer .group-icons {
    display: flex;
    gap: 1.2rem;
}

/* Plain borderless SVG icons matching the mockup */
.beyond-footer .group-icons a {
    color: var(--color-white);
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: none;
}

.beyond-footer .group-icons a:hover {
    opacity: 1;
    color: var(--color-white);
    transform: translateY(-3px) scale(1.15);
}

.beyond-footer .group-icons a svg {
    transition: transform var(--transition-speed) ease;
}

.beyond-footer .group-icons a:hover svg {
    transform: scale(1.1);
}

.beyond-footer .group-icons a:active {
    transform: scale(0.95);
}

/* Responsive Media Queries for Beyond Kaxan Section */
@media screen and (max-width: 1024px) {
    .beyond-footer {
        justify-content: center;
        gap: 4rem;
        padding-top: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .beyond-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .beyond-title {
        font-size: 2.8rem;
    }
    
    .beyond-footer {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding-top: 2rem;
    }
    
    .beyond-footer .footer-link-group {
        gap: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .beyond-title {
        font-size: 2.2rem;
    }
}

/* --- Reservations & Contact Section --- */
.contact-section {
    position: relative;
    background-image: url('assets/images/reservaciones.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 2rem 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Screen filter for text legibility over watercolor background */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.22); /* premium dark screen to guarantee contrast and legibility */
    z-index: 1;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: center;
}

/* Options Grid: Side-by-side columns */
.contact-options-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem; /* Symmetrical, clean spacing between the two columns */
    width: 100%;
    margin-bottom: 5rem;
}

.contact-option-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    flex: 1;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transition: transform var(--transition-speed) ease;
}

.contact-option-col:hover .contact-icon-wrapper {
    transform: scale(1.08);
}

.contact-svg-icon,
.contact-png-icon {
    width: auto;
    height: 80px;
    max-width: 140px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
    transition: all var(--transition-speed) ease;
}

.contact-svg-icon {
    color: var(--color-white);
    stroke: var(--color-white);
    stroke-width: 1.8;
    fill: none;
}

/* Translucent dark pill-shaped CTA buttons */
.contact-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--color-white);
    background: rgba(10, 10, 10, 0.85); /* Symmetrical black translucent fill */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px; /* Perfect pill shape */
    padding: 0.9rem 2.8rem;
    min-width: 200px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.contact-pill-btn:hover {
    transform: translateY(-4px) scale(1.04);
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.contact-pill-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Centered Description */
.contact-description {
    max-width: 680px;
    margin: 0 auto 5rem auto;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Symmetrical Borderless Three-Column Footer */
.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-top: 3.5rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-footer .footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    flex: 1;
}

.contact-footer .group-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: var(--color-white);
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.2rem;
}

.contact-footer .group-icons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

.contact-footer .group-icons a {
    color: var(--color-white);
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: none;
}

.contact-footer .group-icons a:hover {
    opacity: 1;
    color: var(--color-white);
    transform: translateY(-3px) scale(1.15);
}

.contact-footer .group-icons a svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform var(--transition-speed) ease;
}

.contact-footer .group-icons a:hover svg {
    transform: scale(1.1);
}

.contact-footer .group-icons a:active {
    transform: scale(0.95);
}

/* Responsive Media Queries for Reservations and Contact Section */
@media screen and (max-width: 1024px) {
    .contact-options-grid {
        gap: 5rem;
    }
    
    .contact-footer {
        justify-content: center;
        gap: 4rem;
        padding-top: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .contact-options-grid {
        flex-direction: column;
        gap: 3.5rem;
        margin-bottom: 4rem;
    }
    
    .contact-option-col {
        gap: 1.5rem;
        width: 100%;
    }
    
    .contact-icon-wrapper {
        height: auto;
    }
    
    .contact-svg-icon {
        height: 60px;
    }
    
    .contact-pill-btn {
        padding: 0.8rem 2.2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .contact-description {
        font-size: 1.15rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .contact-footer {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding-top: 2rem;
    }
    
    .contact-footer .footer-link-group {
        gap: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-description {
        font-size: 1.05rem;
    }
    
    .contact-pill-btn {
        width: 80%;
        max-width: 260px;
    }
}




