

/* ============= BRAND TOKENS ============== */
:root { 
    --gold: #D4AF37; 
    --earth: #2C3327; 
    --ivory: #FAF9F6; 
    --paper: #F2EFE9; 
    --transition: all 0.3s ease-in-out; 
    --radius-lg: 12px; 
    --radius-xl: 20px;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-lux: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* --- GLOBAL RESET --- */
* { box-sizing: border-box; }

body { 
    margin: 0; 
    background: var(--ivory); 
    color: var(--earth); 
    font-family: 'Work Sans', sans-serif; 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; 
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }


/* =========== HEADINGS / TYPOGRAPHY (RECTIFIED) ======== */

/* h1, h2, h3, h4, .day-title { 
    font-family: 'Cormorant Garamond', serif; 
    font-weight: 500; 
    margin: 0; 
    color: var(--earth);
    line-height: 1.1;
} */

/* 1. HERO TITLE: The primary heading */
h1 { 
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 8vw, 4.2rem); 
    color: var(--earth);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

/* 2. SECTION TITLES: These MUST be the most prominent */
h2 { 
    font-family: 'Cormorant Garamond', serif;
    /* Starts at 2.2rem on mobile, grows to 3rem on desktop */
    font-size: clamp(2.2rem, 6vw, 3rem) !important; 
    font-weight: 500;
    line-height: 1.2;
    color: var(--earth);
    margin-bottom: 2rem;
    text-align: center;
}

/* 3. DAY TITLES: Clearly subordinate to H2 */
.day-title { 
    font-family: 'Cormorant Garamond', serif !important;
    /* Starts at a smaller 1.6rem on mobile, grows to 2.2rem on desktop */
    font-size: clamp(1.6rem, 4vw, 2.2rem) !important; 
    font-weight: 600; 
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--earth);
    display: block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.5rem;
}

/* 4. LODGE & CARD TITLES: The smallest serif headings */
.lodge-name { 
    font-family: 'Cormorant Garamond', serif;
    /* Starts at 1.3rem, grows to 1.6rem */
    font-size: clamp(1.3rem, 3vw, 1.6rem) !important; 
    color: var(--earth);
    margin-bottom: 8px;
}

/* 5. GOLD LABELS & METADATA */
.lodge-tier, .day-number, .itinerary-header h3, .lux-label {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

/* --- THE CLEANUP (IMPORTANT) --- */
/* Remove the following lines if they still exist at the bottom of your file:
   .day-title { font-size: 2.2rem !important; } 
   .lodge-name { font-size: 1.6rem !important; } 
*/


/* --- SPECIALIZED TEXT & LABELS --- */
.lux-label, .section-tag, .tier-name, .lodge-tier {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.day-title { font-size: 2.2rem !important; } 
.lodge-name { font-size: 1.6rem !important; } 
.tier-price { font-size: 3.5rem !important; }

@media (max-width: 850px) {
    .day-block { 
        margin-bottom: 4rem; /* Reduced from 8rem for tighter mobile feel */
        gap: 15px;
    }
    .day-content {
        padding-top: 5px; /* Aligns text better with the dot */
    }
}

/* ============== LAYOUTS ============== */
/* --- Sections --- */
section { padding: 120px 5%; }
.section-ivory { background: var(--ivory); }
.section-earth-light { background: var(--paper); border-top: 1px solid rgba(0,0,0,0.03); }
.section-signature { background: var(--earth); color: var(--ivory); text-align: center; }

/* --- GRID LAYOUTS --- */
.container-aligned { 
    max-width: 1300px; margin: 0 auto; 
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 8rem; align-items: center; 
}
.grid-reverse { direction: rtl; } 
.grid-reverse > * { direction: ltr; }

/* --- BUTTONS & CARDS --- */
.lux-card { 
    background: var(--glass); backdrop-filter: blur(10px); 
    padding: 3rem; border-radius: var(--radius-xl); 
    color: var(--earth); box-shadow: var(--shadow-lux); 
}

.lux-primary-btn { 
    background: var(--earth); color: var(--ivory); 
    width: 100%; padding: 1.2rem; border: none; 
    border-radius: 8px; cursor: pointer; text-transform: uppercase; 
    font-weight: 600; letter-spacing: 1px;
}

.btn-minimal-gold { 
    border: 1px solid var(--gold); padding: 10px 24px; 
    color: var(--gold) !important; font-size: 0.75rem; border-radius: 2px; 
}


/* ========== HEADER NAVIGATION ============ */
.tour-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
    height: 90px; /* Define a base height */
    display: flex;
    align-items: center;
}

/* Glassmorphism on Scroll */
.tour-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(250, 249, 246, 0.95); /* Ivory base */
    backdrop-filter: blur(15px); /* Modern luxury feel */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(44, 51, 39, 0.05);
}

/* --- LOGO ENHANCEMENTS --- */
.logo-text-main {
    display: block; 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1.4rem; 
    line-height: 1;
    color: var(--ivory);
    transition: var(--transition);
}

.logo-text-sub {
    font-size: 0.6rem; 
    text-transform: uppercase; 
    letter-spacing: 2.5px; 
    color: var(--gold);
    font-weight: 700;
}

/* --- LOGO MARK (The SJ Box) --- */
.site-logo { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.site-logo__mark { 
    background: var(--gold); 
    color: var(--earth); 
    width: 42px; 
    height: 42px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 2px; 
    font-family: 'Work Sans', sans-serif;
    font-weight: 800; 
    font-size: 1.1rem;
    flex-shrink: 0; /* Prevents the box from squishing */
}

/* Color swap for the Text when scrolling */
.tour-header.scrolled .logo-text-main {
    color: var(--earth) !important;
}

/* Optional: Slightly dim the gold sub-text for better contrast on white */
.tour-header.scrolled .logo-text-sub {
    color: #a6892a; /* A slightly deeper gold for legibility on light backgrounds */
}

/* Ensure the logo name doesn't disappear on very small screens (Mobile) */
@media (max-width: 480px) {
    .logo-text-main {
        font-size: 1.1rem; /* Slightly smaller to prevent pushing the menu button away */
    }
    
    .logo-text-sub {
        display: none; /* Often best to hide the tagline on tiny screens to keep the header clean */
    }
}

/* --- NAVIGATION LINKS --- */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--ivory);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

/* Animated Underline Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.tour-header.scrolled .nav-links a { color: var(--earth); }

/* --- ACTION BUTTONS --- */
.btn-minimal-gold {
    border: 1px solid var(--gold);
    padding: 12px 28px;
    color: var(--gold) !important;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition);
    background: transparent;
}

.btn-minimal-gold:hover {
    background: var(--gold);
    color: var(--earth) !important;
}

/* Ensure the form doesn't hide behind the sticky header */
#quote {
    scroll-margin-top: 120px; /* Adjust this to the height of your header */
}

/* Adds the premium smooth sliding effect */
html {
    scroll-behavior: smooth;
}

/* Dark mode safety: Ensure btn text is white when header is transparent over dark image */
.tour-header:not(.scrolled) .btn-minimal-gold {
    border-color: rgba(250, 249, 246, 0.4);
    color: var(--ivory) !important;
}

.tour-header:not(.scrolled) .btn-minimal-gold:hover {
    background: var(--ivory);
    color: var(--earth) !important;
    border-color: var(--ivory);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- MOBILE MENU SYSTEM --- */
@media (max-width: 1024px) {
    .desktop-only { display: none; }

    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 2000;
        padding: 10px;
    }

    .hamburger {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ivory);
        position: relative;
        transition: var(--transition);
    }

    .tour-header.scrolled .hamburger { background: var(--earth); }

    .hamburger::before, .hamburger::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: inherit;
        left: 0;
        transition: var(--transition);
    }

    .hamburger::before { top: -8px; }
    .hamburger::after { bottom: -8px; }

    /* Nav Wrapper as Full Screen Overlay */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 80%;
        height: 100vh;
        background: var(--earth);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10%;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
    }

    .nav-wrapper.active { right: 0; }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 1.0rem; /* Larger touch targets for mobile */
        color: var(--ivory) !important;
    }
}

/* --- DESKTOP SPECIFIC --- */
@media (min-width: 1025px) {
    .menu-toggle, .mobile-only { display: none; }
    
    .nav-wrapper {
        display: block;
    }
}

/* ============= HERO SECTION ========== */
.lux-hero-safari {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Extra top padding to ensure the fixed header doesn't overlap the content */
    padding: 140px 5% 80px; 
    overflow: hidden;
    box-sizing: border-box;
}

/* Background & Overlays */
.tour-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.tour-hero__bg img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Darker gradient on the left/top to help text legibility */
    background: linear-gradient(to bottom, rgba(44, 51, 39, 0.8) 0%, rgba(44, 51, 39, 0.4) 100%);
    z-index: -1;
}

@media (min-width: 1025px) {
    .hero-overlay {
        background: radial-gradient(circle at 20% 50%, rgba(44, 51, 39, 0.9) 0%, rgba(44, 51, 39, 0.2) 100%);
    }
}

/* --- Main Layout Container --- */
.hero-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr; /* Stacked by default */
    gap: 50px;
}

@media (min-width: 1025px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
        align-items: center;
    }
}

/* --- Left Side: Hero Content --- */
.hero-content {
    max-width: 600px;
}

.hero-content .badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--earth);
    padding: 8px 18px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: var(--ivory); /* Ivory for main title */
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--gold); /* Highlight specific words in gold */
    display: block;
}

.hero-description {
    color: var(--ivory);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Meta Row (Price + TripAdvisor) */
.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 249, 246, 0.2);
}

.feature strong {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.feature span {
    color: var(--ivory);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}


/* --- Right Side: The Form Card --- */
.form-card {
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(15px);
    padding: 25px 20px; /* Tighter padding to save width */
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --- PERMIT BUTTON STYLING (Anchor Fix) --- */
.permit-alert-link {
    text-decoration: none;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.permit-alert-link:hover {
    transform: translateY(-1px);
}

.permit-alert {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 10px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.permit-alert p {
    font-size: 0.75rem;
    color: var(--earth);
    margin: 0;
    line-height: 1.4;
}

.click-hint {
    font-weight: 700;
    color: var(--gold);
    text-decoration: underline;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* --- NON-SHRINKING PULSE EFFECT --- */
.pulse {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0; /* Prevents dot from disappearing */
}

.pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    /* Shadow creates the ring without adding physical width */
    animation: layout-safe-pulse 2s infinite;
}

/* 1. Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* 2. Create a buffer so the field lands below your sticky header */
#departure-select {
    scroll-margin-top: 140px; /* Adjust this value based on your header height */
}

/* 3. Visual feedback: Makes the field glow when they click the pulse button */
#departure-select:focus, 
#departure-select:target {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    outline: none;
}

#booking-dates {
    scroll-margin-top: 120px; /* Adjust this number to match your header height */
}

@keyframes layout-safe-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Smooth scrolling for the anchor link */
html {
    scroll-behavior: smooth;
}

.form-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--earth);
    margin-bottom: 5px;
}

.form-header p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 20px;
}

/* --- Form Layout (Forced Side-by-Side) --- */
.safari-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Strict 2-column layout */
    gap: 10px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group.full {
    width: 100%;
}

/* --- Inputs & Selects --- */
.form-group label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--earth);
    letter-spacing: 0.5px;
}

.form-group input, 
.date-selector, 
textarea {
    width: 100%;
    box-sizing: border-box;
    background: #eceae0 !important;
    border: 1px solid #d1cfc1;
    padding: 12px 10px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px; /* Best for mobile side-by-side */
    border-radius: 4px;
    color: var(--earth);
}

.date-selector {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C3327' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
}

/* --- Buttons (Forced Side-by-Side) --- */
.form-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 10px;
}

.submit-btn {
    flex: 1.6;
    background: var(--gold);
    color: var(--earth);
    border: none;
    padding: 14px 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.wa-link {
    flex: 1;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 4px;
}

.submit-btn:hover { background: #c19b2e; transform: translateY(-1px); }

/* Final Mobile Safety Check */
@media (max-width: 400px) {
    .form-card { padding: 20px 15px; }
    .form-header h3 { font-size: 1.4rem; }
}


  /* ======= EXPERIENCE SECTION ======== */
.section-ivory-compact {
    padding: 100px 5%; /* Slightly more padding for the larger 50/50 blocks */
    background-color: var(--ivory);
    overflow: hidden;
}

.lux-experience-wrap-small {
    max-width: 1200px; /* Slightly wider to accommodate the 50/50 split nicely */
    margin: 0 auto;
    display: flex;
    /* This ensures both columns take up equal height */
    align-items: stretch; 
    gap: 4rem; 
}

/* 1. TEXT SIDE (LEFT) */
.exp-text-side-small {
    flex: 1; /* Takes up exactly 50% minus half the gap */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text vertically against the image height */
    align-items: flex-start;
}

.h2-compact {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; 
    margin-bottom: 1.5rem;
    color: var(--earth);
    line-height: 1.1;
    width: 100%;
    /* Removed max-width to allow it to spread across its full 50% share */
}

.text-body-wrap {
    width: 100%;
    /* Removed max-width so text block perfectly mirrors the image width */
}

.lux-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--earth);
    font-weight: 500;
}

.text-body-wrap p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.exp-footer-compact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 51, 39, 0.1);
    width: 100%;
}

/* 2. MEDIA SIDE (RIGHT) */
.exp-media-side-small {
    flex: 1; /* Takes up exactly 50% minus half the gap */
    display: flex;
}

.seo-media-card {
    width: 100%;
    height: 100%;
}

.lux-img-refined {
    width: 100%;
    /* Set to 100% to match whatever height the text side creates */
    height: 100%; 
    min-height: 500px; /* Ensures the section has a strong presence */
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-lux);
}

.overview-caption-gold {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .lux-experience-wrap-small {
        flex-direction: column;
        gap: 3rem;
    }
    
    .exp-text-side-small, 
    .exp-media-side-small {
        width: 100%;
        flex: none;
    }

    .lux-img-refined {
        height: 400px; /* Return to fixed height on mobile */
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .lux-hero {
        padding-top: 100px;
        align-items: flex-start; /* Start from top on mobile */
    }

    .lux-hero__wrap {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 2rem;
        transform: none; /* Reset desktop adjustment */
    }

    .lux-hero__title {
        font-size: 2.5rem; /* Scale down for smaller screens */
    }

    .lux-hero__meta {
        gap: 1.5rem;
        border-top: 1px solid rgba(250, 249, 246, 0.2);
    }

    .form-container {
        padding: 2rem 1.5rem; /* Compact form for small screens */
    }
}


 .itinerary-header {
    text-align: center;
    padding: 60px 5% 40px;
}

.itinerary-header h2 {
    font-family: 'Cormorant Garamond', serif;
    /* Mobile: 2.2rem | Desktop: 3rem */
    font-size: clamp(2.2rem, 5vw, 3rem) !important; 
    color: var(--earth);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.itinerary-header h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

 .section-paper { 
    background-color: var(--paper); 
    padding: 8rem 0; 
}

.section-header-center {
    text-align: center;
    margin-bottom: 6rem; 
}

/* Standardized Gold Separator */
.lux-separator {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
}

/* Ensure Global H2 remains consistent */
h2 {
    font-family: 'Cormorant Garamond', serif; 
    /* Mobile: 2.2rem | Desktop: 3.5rem */
    font-size: clamp(2.2rem, 6vw, 3.5rem) !important;
    color: var(--earth);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.container-itinerary { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.timeline-wrapper { 
    position: relative; 
    margin-top: 4rem; 
}

/* Perfect Vertical Line */
.timeline-line { 
    position: absolute; 
    left: 30px; 
    top: 0; 
    bottom: 0; 
    width: 1px; 
    background: var(--gold); 
    opacity: 0.3; 
}

.day-block { 
    display: flex; 
    gap: 40px; 
    margin-bottom: 8rem; 
    position: relative;
}

.day-indicator { 
    flex: 0 0 60px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    z-index: 2;
}

.day-dot { 
    width: 16px; 
    height: 16px; 
    background: var(--earth); 
    border-radius: 50%; 
    border: 4px solid var(--paper); 
    margin-bottom: 10px;
}

.gold-dot { 
    background: var(--gold); 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); 
}

.day-number { 
    color: var(--gold); 
    font-weight: 800; 
    font-family: 'Playfair Display', serif; 
    font-size: 1.2rem;
}

.day-content { flex: 1; }

.day-title { 
    /* Mobile: 1.5rem | Desktop: 2.5rem - This ensures it stays smaller than H2 */
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important; 
    color: var(--earth); 
    font-family: 'Playfair Display', serif; 
    margin-bottom: 1rem;
    font-weight: 500;
}

.day-summary { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: var(--earth); 
    opacity: 0.8; 
    margin-bottom: 3rem;
}

.lodge-collection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.lodge-snippet {
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.lodge-snippet:hover { transform: translateY(-5px); border-color: var(--gold); }

.lodge-tier {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.lodge-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--earth);
    margin-bottom: 10px;
}

.lodge-text { font-size: 0.9rem; line-height: 1.6; opacity: 0.7; }

.meta-pill { 
    display: inline-block; 
    font-size: 0.6rem; 
    text-transform: uppercase; 
    padding: 6px 12px; 
    background: var(--paper); 
    margin-top: 15px; 
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 850px) {
    .lodge-collection { grid-template-columns: 1fr; }
    .day-block { gap: 20px; }
    .timeline-line { left: 20px; }
    .day-indicator { flex: 0 0 40px; }
    
    /* Explicit Mobile Hierarchy Lock */
    h2 { font-size: 2.2rem !important; }
    .day-title { font-size: 1.5rem !important; }
}
        

  /* =========== PRICING & INCLUSIONS SECTION ========== */
    /* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-tier-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.price-tier-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lux);
}

.featured-tier {
  border: 1px solid var(--gold);
  position: relative;
}

.tier-name {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* .tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 1.5rem;
} */

.tier-price { 
    font-family: 'Cormorant Garamond', serif;
    /* Reduced from 3.5rem to a more sophisticated scale */
    /* Mobile: 1.8rem | Desktop: 2.4rem */
    font-size: clamp(1.8rem, 5vw, 2.4rem) !important; 
    font-weight: 500;
    color: var(--earth);
    line-height: 1;
    display: block;
    margin: 0.5rem 0;
}

/* Optional: If you have a "per person" label, make it tiny and refined */
.price-suffix {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    display: block;
    margin-top: -5px;
}

.tier-price span {
  font-size: 1.2rem;
  vertical-align: top;
  margin-right: 4px;
}

.tier-desc {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Inclusions Styling */
.inclusion-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-top: 2rem;
}

.list-header {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--earth);
}

.lux-list {
  list-style: none;
  padding: 0;
}

.lux-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.lux-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.exclusion-list li::before {
  content: '✕';
  color: #ccc;
}

@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .inclusion-split { grid-template-columns: 1fr; }
}

#inclusions .container-aligned {
    display: flex;
    flex-wrap: wrap; /* Allows the CTA box to wrap underneath on mobile */
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.inclusions-content {
    flex: 1;
    min-width: 300px; /* Prevents the text from getting too narrow */
    width: 100%;
}

.side-cta-box {
    flex: 0 0 350px; /* Takes up 350px on desktop, but we handle mobile below */
    max-width: 100%;
}

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
    #inclusions .container-aligned {
        flex-direction: column; /* Forces the CTA box below the lists */
    }

    .side-cta-box {
        flex: 1 1 auto;
        width: 100%;
    }

    /* Shrink-proof the header so it doesn't overflow */
    #inclusions h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        line-height: 1.2;
    }

    .inclusion-split {
        grid-template-columns: 1fr !important; /* Stack "Included" and "Not Included" */
        gap: 2rem;
    }
}

/* Tiny Screen Safety (iPhone SE etc) */
@media (max-width: 480px) {
    .lux-list li {
        font-size: 0.85rem; /* Slightly smaller text so it doesn't wrap awkwardly */
        padding-left: 20px;
    }
    
    .inclusions-content {
        padding: 0 10px; /* Prevents text from hitting the screen edge */
    }
}


/* ========= WHY CHOOSE US ========== */
.luxury-why {
  background-color: var(--paper); 
  padding: 100px 0;
  color: var(--earth);
}

.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-tag {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.lux-card {
  background: var(--glass);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lux);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
}

.lux-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

/* ========= WHY CHOOSE US ========== */
.luxury-why {
  background-color: var(--ivory); /* Updated as requested */
  padding: 120px 5%; /* Increased padding for more "breathable" luxury feel */
  color: var(--earth);
}

.why-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

/* Replaced .section-tag with your standardized .lux-label logic */
.section-tag {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.lux-card {
  background: #ffffff; /* Brighter card against the ivory background */
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lux);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
}

.lux-trust-pill-link {
    text-decoration: none; 
    display: inline-block;
    margin-bottom: 15px; /* Adds breathing room */
}

.lux-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Use your dark Earth color for the background to make text readable */
    background: var(--earth); 
    border: 1px solid var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--ivory) !important; /* Force the text to show as Ivory */
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.lux-trust-pill-link:hover .lux-trust-pill {
    background: #3a4334; /* Slightly lighter version of Earth */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.gold-star {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Profile Card Specifics */
.profile-card {
  grid-column: span 2; /* Spans two columns for emphasis */
}

@media (max-width: 900px) {
  .profile-card { grid-column: span 1; }
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

/* Using H4 equivalent sizing for card titles */
.lux-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--earth);
}

.lux-subtitle {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.lux-body {
  line-height: 1.7;
  opacity: 0.9;
  font-size: 1.05rem;
}

.lux-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.lux-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 5px;
}

.lux-trust-pill {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Button Standardized to your brand colors */
.btn-lux {
  background: var(--earth);
  color: var(--ivory);
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px; /* Matches your site's architectural logo feel */
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-lux:hover {
  background: var(--gold);
  color: var(--earth);
} 


/* ================== FAQs ================== */
.luxury-faq {
  background-color: var(--paper); /* Updated from Ivory to Paper */
  padding: 120px 5%;
  color: var(--earth);
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Ensure the header H2 follows the global style */
.faq-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.faq-lux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px; /* Increased gap for cleaner layout */
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.faq-item-lux {
  border-bottom: 1px solid rgba(44, 51, 39, 0.1);
  padding: 25px 0;
  transition: var(--transition);
}

/* Question style standardized to H4 sizing */
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; /* Standardized H4 size */
  font-weight: 500;
  flex: 1;
  padding-right: 30px;
  color: var(--earth);
}

.faq-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: 20px;
  font-family: 'Work Sans', sans-serif; /* Standardized to match labels */
  letter-spacing: 1px;
}

.faq-a {
  padding: 20px 0 10px 45px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: rgba(44, 51, 39, 0.8);
}

/* Luxury CTA box - Adjusted to pop against the Paper background */
.faq-footer {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

.faq-footer-glass {
  background: #ffffff; /* Changed to white for better contrast against Paper */
  padding: 50px 80px;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-lux);
  max-width: 700px;
}

.faq-footer-glass p {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--earth);
}

@media (max-width: 960px) {
  .faq-lux-grid { grid-template-columns: 1fr; }
  .faq-footer-glass { padding: 40px 30px; }
}


.faq-item-lux {
  border-bottom: 1px solid rgba(44, 51, 39, 0.1);
  padding: 20px 0;
  transition: var(--transition);
}

.faq-item-lux[open] {
  padding-bottom: 30px;
}

.faq-item-lux summary {
  list-style: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-item-lux summary::-webkit-details-marker { display: none; }

/* Luxury Toggle Icon */
.faq-plus {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background-color: var(--gold);
  transition: var(--transition);
}

/* Horizontal line */
.faq-plus::before {
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
}

/* Vertical line */
.faq-plus::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 9px;
}


/* ============= ENQUIRY SECTION ============ */
.section-signature {
    background-color: var(--ivory); /* #FAF9F6 */
    color: var(--earth);
    padding: 140px 5%;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

/* 1. Typography Hierarchy for this Section */
.enquiry-wrap h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--earth);
    margin-bottom: 1.5rem;
}

.light-body { 
    color: var(--earth); 
    opacity: 0.8; 
    max-width: 650px;
    margin: 0 auto 4rem; 
    line-height: 1.7;
    font-size: 1.1rem;
}

/* 2. The Focus Card (White on Ivory) */
.enquiry-card {
    background: #ffffff; 
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: 5rem 4rem;
    box-shadow: var(--shadow-lux); /* Utilizing your luxury shadow variable */
    max-width: 1000px;
    margin: 0 auto;
}

/* 3. The Internal Grid */
.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    align-items: center;
}

.enquiry-divider-v {
    background: rgba(44, 51, 39, 0.1); 
    height: 150px;
    width: 1px;
    justify-self: center;
}

/* 4. Individual Options */
.enquiry-option h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--earth);
    margin-bottom: 1rem;
}

.light-body-small { 
    color: var(--earth); 
    opacity: 0.7; 
    font-size: 0.95rem; 
    margin-bottom: 2.5rem; 
    line-height: 1.6;
}

/* 5. Action Buttons */
.btn-gold-fill {
    background: var(--gold);
    color: var(--earth);
    padding: 1.2rem 2.5rem;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.75rem;
    border-radius: 2px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-gold-fill:hover {
    background: var(--earth);
    color: var(--ivory);
    transform: translateY(-3px);
}

/* Minimalist Button for Email Option */
.btn-minimal-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.btn-minimal-gold:hover {
    border-bottom: 1px solid var(--gold);
}

/* 6. Mobile Responsiveness */
@media (max-width: 850px) {
    .enquiry-grid { 
        grid-template-columns: 1fr; 
        gap: 3.5rem; 
    }
    
    .enquiry-divider-v { 
        display: none; 
    }
    
    .enquiry-card { 
        padding: 3.5rem 2rem; 
        margin: 0 1rem;
    }
    
    .enquiry-wrap h2 {
        font-size: 2.5rem;
    }
}


/* ============= FOOTER SECTION ============ */
.site-footer {
    background-color: #1e241b; /* Slightly darker than --earth */
    color: var(--ivory);
    padding: 100px 0 0; 
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    overflow-x: hidden;
}

/* 1. Main Grid Layout */
.site-footer .container-footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%; 
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 80px;
}

/* 2. Brand Column */
.footer-credo {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 1.5rem 0 2rem;
    max-width: 320px;
    line-height: 1.6;
}

/* 3. Badge & Trust Elements */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-utb {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold);
}

.badge-tripadvisor {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.badge-tripadvisor:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.badge-tripadvisor .stars {
    color: var(--gold);
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.badge-tripadvisor .rating {
    font-size: 0.75rem;
    color: var(--ivory);
    font-family: 'Work Sans', sans-serif;
}

/* 4. Navigation Lists */
/* .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
} */

/* .footer-list li {
    margin-bottom: 12px;
} */

/* .footer-list a {
    opacity: 0.7;
    font-size: 0.95rem;
    color: var(--ivory);
    transition: var(--transition);
    text-decoration: none;
} */

/* .footer-list a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px; 
} */

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--ivory); /* Assuming a dark footer background */
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
}

.footer-list a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateX(5px); /* Subtle luxury movement */
}

.back-to-top {
    margin-top: 10px;
    font-weight: 600;
    color: var(--gold) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* 5. Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0; /* Handled by container-footer internal padding */
    font-size: 0.8rem;
}

.footer-bottom .container-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    padding-bottom: 35px;
    opacity: 0.6;
}

.payment-methods span {
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* 6. Responsive Behavior */
@media (max-width: 1024px) {
    .site-footer .container-footer {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .site-footer .container-footer {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .footer-credo {
        margin: 1.5rem auto 2.5rem;
    }

    .badge-tripadvisor {
        margin: 0 auto;
    }

    .footer-bottom .container-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .payment-methods span:first-child {
        margin-left: 0;
    }
}


/* WhatsApp FAB */
.wa-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.wa-fab:hover { transform: scale(1.05); }

.wa-pulse {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 800px) {
    .foot-grid { grid-template-columns: 1fr; gap: 40px; }
}






