/* ==========================================================================
   ULTRA LUXURY DARK & LIGHT PALETTE
   ========================================================================== */
:root {
    --espresso-dark: #0A0908;
    --charcoal: #141311;
    --crema-light: #F7F5F0;
    --alabaster: #FFFFFF;
    --champagne-gold: #D4AF37;
    --muted-gold: #B5955C;
    --text-dark: #1A1A1A;
    --text-light: #E0DCD3;
    --border-dark: rgba(212, 175, 55, 0.15);
    --border-light: rgba(10, 9, 8, 0.1);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --ease-luxury: cubic-bezier(0.25, 1, 0.25, 1);
}

/* ==========================================================================
   BASE & SMOOTH SCROLL (LENIS)
   ========================================================================== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
    background-color: var(--espresso-dark);
    font-family: var(--font-sans);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .serif {
    font-family: var(--font-serif);
    font-weight: 300;
}

::selection { background: var(--champagne-gold); color: var(--espresso-dark); }

/* ==========================================================================
   THEMATIC BACKGROUND GRAPHICS
   ========================================================================== */
.bg-graphic-smoke {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.4;
}

.bg-graphic-ring {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.05); top: -10%; right: -5%;
    pointer-events: none; z-index: 0;
}
.bg-graphic-ring::after {
    content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.03); top: -100px; left: -100px;
    animation: spin 60s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ==========================================================================
   THEME CLASSES & UTILITIES
   ========================================================================== */
.theme-dark { background-color: var(--espresso-dark); color: var(--text-light); }
.theme-light { background-color: var(--crema-light); color: var(--text-dark); }
.theme-light .editorial-title { color: var(--espresso-dark); }
.theme-light .text-muted { color: #666 !important; }

.text-gold { color: var(--champagne-gold) !important; }

.section-padding { padding: clamp(100px, 15vw, 180px) 0; position: relative; overflow: hidden;}
.editorial-title {
    font-size: clamp(2rem, 5vw, 6.5rem); text-transform: uppercase;
    letter-spacing: 2px; line-height: 0.95; margin-bottom: 25px;
}

/* INCREASED EDITORIAL SUBTITLE FONT SIZE */
.editorial-subtitle {
    font-family: var(--font-sans); 
    font-size: 1.2rem; /* Increased from 0.7rem */
    font-weight: 500;
    text-transform: uppercase; letter-spacing: 5px; color: var(--champagne-gold);
    margin-bottom: 20px; display: block;
}

.line-divider { width: 60px; height: 1px; background-color: var(--champagne-gold); margin: 30px 0; }

/* Buttons */
.btn-ultra {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 45px; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
    font-family: var(--font-sans); font-weight: 500; text-decoration: none;
    position: relative; overflow: hidden; transition: all 0.6s var(--ease-luxury);
    border: 1px solid var(--champagne-gold); color: var(--champagne-gold);
    background: transparent; z-index: 1; cursor: pointer;
}
.btn-ultra::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--champagne-gold); transform: scaleX(0); transform-origin: right;
    transition: transform 0.6s var(--ease-luxury); z-index: -1;
}
.btn-ultra:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-ultra:hover { color: var(--espresso-dark); }

.btn-ultra-dark { border-color: var(--espresso-dark); color: var(--espresso-dark); }
.btn-ultra-dark::before { background: var(--espresso-dark); }
.btn-ultra-dark:hover { color: var(--crema-light); }

/* Progress Bar */
#scroll-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 2px;
    background: var(--champagne-gold); z-index: 10000; box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    padding: 25px 0; background: transparent; transition: all 0.6s var(--ease-luxury);
    z-index: 1050; position: fixed; width: 100%; top: 0; border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 15px 0; background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
}

.brand-logo { height: clamp(35px, 4vw, 50px); transition: height 0.6s var(--ease-luxury); }
.navbar.scrolled .brand-logo { height: clamp(30px, 3.5vw, 40px); }

.nav-link-custom {
    font-size: 0.7rem; font-weight: 400; text-transform: uppercase;
    letter-spacing: 3px; color: var(--text-light); text-decoration: none;
    margin-left: clamp(20px, 3vw, 40px); position: relative; transition: color 0.4s ease;
}
.nav-link-custom:hover { color: var(--champagne-gold); }

/* Mobile Side Drawer */
.menu-toggle { background: none; border: none; padding: 10px; z-index: 2000; cursor: pointer; }
.menu-toggle span {
    display: block; width: 35px; height: 1px; background-color: var(--crema-light);
    margin: 8px 0; transition: all 0.5s var(--ease-luxury); transform-origin: right;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(0, 0); background-color: var(--champagne-gold); width: 35px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(0, 0); background-color: var(--champagne-gold); width: 35px; }

.side-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 1030; opacity: 0; visibility: hidden; transition: all 0.6s ease;
}
.side-nav-overlay.open { opacity: 1; visibility: visible; }

.side-nav {
    position: fixed; top: 0; right: 0; width: 100%; max-width: 500px; height: 100vh;
    background: var(--charcoal); z-index: 1040; padding: 120px 50px 50px;
    display: flex; flex-direction: column; transform: translateX(100%);
    transition: transform 0.8s var(--ease-luxury); border-left: 1px solid var(--border-dark);
    overflow-y: auto;
}
.side-nav.open { transform: translateX(0); }
.side-nav-links { list-style: none; padding: 0; margin: 0; }
.side-nav-links li { margin: 25px 0; overflow: hidden; }
.side-nav-links a {
    font-family: var(--font-serif); font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--crema-light); text-decoration: none; display: inline-block;
    transform: translateY(100%); opacity: 0; transition: color 0.4s ease;
    font-style: italic; line-height: 1;
}
.side-nav-links a:hover { color: var(--champagne-gold); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh; min-height: 800px; display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero-img-wrapper {
    position: absolute; top: 0; right: 0; width: 60%; height: 100%;
    overflow: hidden; z-index: 0;
}
.hero-img-wrapper::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, var(--espresso-dark) 0%, transparent 50%);
}
.hero-img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) contrast(1.1);
    transform: scale(1.1);
}
.hero-content { position: relative; z-index: 2; margin-top: 50px; }
.hero-title-wrap { overflow: hidden; }

/* DECREASED HERO TITLE FONT SIZE */
.hero h1 {
    font-size: clamp(2.1rem, 5vw, 4.5rem); /* Reduced from clamp(3.5rem, 9vw, 8rem) */
    line-height: 0.95; color: var(--crema-light);
    text-transform: uppercase; margin-bottom: 0;
}
.hero h1 span.italic-gold { font-style: italic; color: var(--champagne-gold); display: block; padding-left: 10%;}

.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem); line-height: 1.8; color: rgba(255,255,255,0.7);
    max-width: 450px; margin: 40px 0;
}

.scroll-down-wrap {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; z-index: 10;
}
.scroll-text { font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--champagne-gold); margin-bottom: 15px; }
.scroll-line { width: 1px; height: 60px; background: rgba(212, 175, 55, 0.3); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: var(--champagne-gold); animation: scrollDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* ==========================================================================
   ENHANCED V-SERIES HIGHLIGHT (ULTRA DARK THEME)
   ========================================================================== */
.product-highlight-section {
    background-color: var(--espresso-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
}

.highlight-row {
    min-height: 80vh; /* Gives the section substantial breathing room */
}

/* Text Column */
.highlight-text-col {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--espresso-dark);
    z-index: 2;
    position: relative;
}

/* Cinematic Gradient Blend (Desktop) */
@media (min-width: 992px) {
    .highlight-text-col::after {
        content: '';
        position: absolute;
        top: 0;
        right: -150px;
        width: 150px;
        height: 100%;
        background: linear-gradient(to right, var(--espresso-dark) 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }
}

/* Subtitle with elegant leading line */
.v-series-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.v-series-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--champagne-gold);
    margin-right: 15px;
}

/* Massive Serif Title */
.v-series-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 6rem);
    color: var(--alabaster);
    line-height: 1;
    margin-bottom: 30px;
}

/* Tasting Note Badges */
.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 500px;
}

.flavor-tags span {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.03);
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.flavor-tags span:hover {
    border-color: var(--champagne-gold);
    color: var(--champagne-gold);
}

/* Description */
.v-series-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Visual Column */
.highlight-visual-col {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
    background: var(--charcoal);
}

.visual-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 3s var(--ease-luxury);
}

.highlight-visual-col:hover .visual-fill {
    transform: scale(1.05); /* Slow cinematic zoom on hover */
}

/* Modern Animated Arrow Link */
.explore-link-luxury {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--champagne-gold);
    text-decoration: none;
    position: relative;
    width: fit-content;
    padding-bottom: 8px;
    transition: color 0.4s ease;
}

.explore-link-luxury::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
    transition: width 0.4s var(--ease-luxury), background 0.4s ease;
}

.explore-link-luxury:hover {
    color: var(--alabaster);
}

.explore-link-luxury:hover::after {
    width: 40%;
    background: var(--alabaster);
}

.explore-link-luxury i {
    margin-left: 12px;
    font-size: 0.9rem;
    transition: transform 0.4s var(--ease-luxury);
}

.explore-link-luxury:hover i {
    transform: translateX(8px);
}

/* ==========================================================================
   PRIMARY & BLACK: ULTRA-LUXURY COFFEE GRID
   ========================================================================== */
.coffee-collection-section {
    position: relative; padding: clamp(100px, 12vw, 160px) 0;
    background-color: var(--espresso-dark); color: #fff;
    overflow: hidden; z-index: 1;
}
.coffee-bg-graphic {
    position: absolute; top: 50%; left: 50%; width: 120vw; height: 120vw;
    max-width: 1200px; max-height: 1200px; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 0; opacity: 0.15;
    animation: rotateBgSlow 80s linear infinite;
}
@keyframes rotateBgSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.luxury-coffee-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 2;
}
@media (min-width: 768px) { .luxury-coffee-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
@media (min-width: 1200px) { .luxury-coffee-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }

.premium-coffee-card {
    display: flex; flex-direction: column; background-color: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.15); padding: 20px; border-radius: 4px;
    text-decoration: none !important; position: relative; height: 100%;
    transition: all 0.5s var(--ease-luxury); overflow: hidden;
}
.premium-coffee-card:hover {
    border-color: var(--champagne-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(212, 175, 55, 0.05);
    transform: translateY(-10px);
}
.premium-card-frame {
    position: relative; 
    width: 100%; 
    /* Changed from 1/1 (square) to 4/5 (portrait) to better fit tall coffee bags */
    aspect-ratio: 4 / 5; 
    overflow: hidden;
    background-color: var(--espresso-dark); 
    margin-bottom: 25px; 
    border-radius: 2px;
}

.premium-card-frame img {
    width: 100%; 
    height: 100%; 
    /* Changed from cover to contain to prevent ANY cropping */
    object-fit: contain; 
    filter: none !important; 
    transform: scale(1); 
    transition: transform 1.2s var(--ease-luxury);
}
.premium-coffee-card:hover .premium-card-frame img { transform: scale(1.1); }

.premium-card-meta { display: flex; justify-content: flex-start; align-items: center; margin-bottom: 15px; }
.coffee-tag {
    font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: var(--espresso-dark);
    background-color: var(--champagne-gold); padding: 4px 10px; border-radius: 2px;
    transition: background-color 0.4s ease;
}
.coffee-headline {
    font-family: var(--font-serif); font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400; color: var(--alabaster); line-height: 1.2; margin: 0 0 12px 0;
    transition: color 0.4s ease;
    text-transform: uppercase;
}
.premium-coffee-card:hover .coffee-headline { color: var(--champagne-gold); }
.coffee-body-text {
    font-family: var(--font-sans); font-size: 0.85rem; font-weight: 300;
    line-height: 1.6; color: rgba(255, 255, 255, 0.6); margin: 0 0 20px 0; flex-grow: 1;
}
.card-action {
    display: flex; align-items: center; font-family: var(--font-sans); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 2px; color: var(--champagne-gold); font-weight: 500; margin-top: auto;
}
.card-action i { margin-left: 8px; opacity: 0.5; transform: translateX(0); transition: all 0.4s var(--ease-luxury); }
.premium-coffee-card:hover .card-action i { opacity: 1; transform: translateX(8px); }

.premium-coffee-card.card-disabled { pointer-events: none; border-color: rgba(255, 255, 255, 0.05); }
.premium-coffee-card.card-disabled .premium-card-frame img { opacity: 0.4; }
.premium-coffee-card.card-disabled .coffee-headline, .premium-coffee-card.card-disabled .coffee-body-text { color: rgba(255, 255, 255, 0.3); }
.premium-coffee-card.card-disabled .coffee-tag { background-color: transparent; color: rgba(255, 255, 255, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); }

/* ==========================================================================
   ENHANCED ACADEMY SECTION (ULTRA-MODERN LIGHT THEME)
   ========================================================================== */
.academy-premium-section {
    background-color: var(--crema-light); /* Soft background */
    padding: clamp(100px, 12vw, 160px) 0;
    position: relative;
    z-index: 1;
}

.academy-header-premium {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.academy-header-premium .line-divider {
    margin: 20px auto 30px;
}

.academy-header-premium p {
    color: var(--text-dark);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Premium 2x2 Grid */
.academy-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 992px) {
    .academy-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* The Premium Card */
.academy-premium-card {
    background-color: var(--alabaster); /* Crisp white card */
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: clamp(35px, 5vw, 55px);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury), border-color 0.6s ease;
}

/* Animated Bottom Gold Line */
.academy-premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--champagne-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease-luxury);
}

/* Card Hover State */
.academy-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(10, 9, 8, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.academy-premium-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card Header (Number + Arrow) */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(30px, 4vw, 45px);
}

.card-num-premium {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(10, 9, 8, 0.3);
    letter-spacing: 2px;
}

/* Animated Circular Arrow */
.card-arrow-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(10, 9, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--espresso-dark);
    font-size: 1rem;
    transition: all 0.5s var(--ease-luxury);
}

.academy-premium-card:hover .card-arrow-wrap {
    background-color: var(--champagne-gold);
    border-color: var(--champagne-gold);
    color: var(--alabaster);
    transform: rotate(-45deg); /* Points diagonally up-right */
}

/* Card Typography */
.card-title-premium {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--espresso-dark);
    margin-bottom: 10px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.academy-premium-card:hover .card-title-premium {
    color: var(--champagne-gold);
}

.card-tagline-premium {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-gold);
    margin-bottom: 25px;
}

.card-desc-premium {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    flex-grow: 1;
}
/* Update the existing premium card to handle the new sleek layout */
.academy-premium-card {
    background-color: var(--alabaster);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: clamp(30px, 4vw, 45px);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes header to top, title to bottom */
    min-height: 320px; /* Gives the card a luxurious, airy height */
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury), border-color 0.6s ease;
}

/* Specific styling for the Full Curriculum Page cards */
.academy-full-page-card {
    min-height: auto; /* Let it grow with the text */
    justify-content: flex-start; /* Stack normally */
    gap: 15px; /* Add spacing between elements */
}

.academy-full-page-card .card-title-premium {
    margin-bottom: 5px;
}

.academy-full-page-card .card-tagline-premium {
    margin-bottom: 20px;
}
/* ==========================================================================
   STATIC EXPERIENCES GRID (Replaced Swiper)
   ========================================================================== */
.experiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .experiences-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.experience-card {
    height: clamp(450px, 60vh, 700px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.experience-card .exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: transform 2s ease, filter 1s ease;
}

.experience-card:hover .exp-img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.experience-card .exp-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(30px, 5vw, 60px);
    background: linear-gradient(to top, rgba(10,9,8,0.9) 0%, transparent 60%);
}

.experience-card .exp-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--crema-light);
    margin-bottom: 15px;
}

.experience-card .exp-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--champagne-gold);
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.experience-card:hover .exp-link {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   LUXURY MODALS (EXPERIENCES)
   ========================================================================== */
.luxury-modal .modal-content {
    background-color: var(--charcoal);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: clamp(30px, 5vw, 60px);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.luxury-modal .modal-backdrop {
    background-color: var(--espresso-dark);
    opacity: 0.9 !important;
}

.btn-close-luxury {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
}

.btn-close-luxury:hover {
    color: var(--champagne-gold);
    transform: rotate(90deg);
}

.modal-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    display: block;
}

.modal-title-luxury {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--alabaster);
    line-height: 1.1;
    margin-bottom: 20px;
}

.modal-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-highlights-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
}

.modal-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-highlights-list li {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.modal-highlights-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--champagne-gold);
    font-size: 1.2rem;
    line-height: 1;
    top: -2px;
}

/* Make slide clickable */
.exp-slide {
    cursor: pointer;
}

/* ==========================================================================
   MODERN LIGHT-THEME SERVICES
   ========================================================================== */
.services-section { background-color: var(--crema-light); padding: clamp(100px, 12vw, 160px) 0; position: relative; }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--border-light); }
@media (min-width: 992px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
.service-item-modern {
    padding: 60px 40px; border-bottom: 1px solid var(--border-light); border-right: 0;
    text-decoration: none; color: var(--text-dark); display: flex; flex-direction: column;
    transition: background 0.4s ease; position: relative; overflow: hidden;
}
@media (min-width: 992px) {
    .service-item-modern { border-right: 1px solid var(--border-light); }
    .service-item-modern:nth-child(even) { border-right: none; }
}
.service-item-modern:hover { background: rgba(212, 175, 55, 0.03); }
.service-num { font-family: var(--font-sans); font-size: 0.7rem; color: var(--champagne-gold); letter-spacing: 4px; margin-bottom: 25px; display: block; font-weight: 600; }
.service-title-modern { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 20px; transition: color 0.4s ease; }
.service-text-modern { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); max-width: 85%; margin-bottom: 30px; }
.service-arrow { margin-top: auto; font-size: 1.2rem; color: var(--champagne-gold); transition: transform 0.5s var(--ease-luxury); }
.service-item-modern:hover .service-arrow { transform: translateX(10px); }

/* ==========================================================================
   PHILOSOPHY SECTION
   ========================================================================== */
.philosophy-section { background-color: var(--espresso-dark); color: var(--text-light); text-align: center; position: relative; }
.phil-intro { max-width: 800px; margin: 0 auto 100px; }
.phil-intro p { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.3; color: var(--champagne-gold); }
.phil-intro span { font-size: 1rem; color: rgba(255,255,255,0.5); font-family: var(--font-sans); display: block; margin-top: 30px; max-width: 600px; margin-inline: auto; line-height: 1.8;}

.phil-stages { display: flex; flex-direction: column; align-items: center; position: relative; max-width: 1000px; margin: 0 auto; }
.phil-track { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(212, 175, 55, 0.15); transform: translateX(-50%); z-index: 0; }
.phil-progress { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--champagne-gold); box-shadow: 0 0 15px var(--champagne-gold); }

/* DECREASED PHILOSOPHY STAGE FONT SIZE */
.phil-stage {
    position: relative; z-index: 1; margin: 60px 0; padding: 40px;
    font-family: var(--font-serif); 
    font-size: clamp(1.2rem, 3.5vw, 2.5rem); /* Reduced from clamp(2rem, 5vw, 4.5rem) */
    color: rgba(255,255,255,0.2); transition: color 0.8s ease, transform 0.8s ease;
    width: 100%; text-align: center;
}
.phil-stage.active { color: var(--alabaster); transform: scale(1.05); }
.phil-stage i { font-style: italic; color: var(--champagne-gold); }

.phil-mastery { font-size: clamp(3rem, 10vw, 6rem); color: var(--champagne-gold); font-family: var(--font-serif); font-style: italic; margin-top: 100px; text-shadow: 0 10px 40px rgba(212,175,55,0.2); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-box { background: var(--alabaster); padding: clamp(30px, 5vw, 60px); border: 1px solid var(--border-light); }
.form-control-luxury {
    background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,0.2); border-radius: 0;
    padding: 15px 0; font-family: var(--font-sans); color: var(--espresso-dark); font-size: 1rem;
    transition: all 0.4s ease; box-shadow: none !important;
}
.form-control-luxury:focus { border-bottom-color: var(--champagne-gold); }
.form-control-luxury::placeholder { color: #999; font-weight: 300; }
.contact-info p { font-size: 1rem; color: var(--text-muted); margin-bottom: 15px; display: flex; align-items: flex-start;}
.contact-info i { color: var(--champagne-gold); margin-top: 5px; width: 25px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--charcoal); padding: 100px 0 40px; border-top: 1px solid var(--border-dark); }
.footer-logo {
    /* Fluidly scales between 120px (mobile) and 180px (desktop) */
    width: clamp(120px, 20vw, 180px); 
    height: auto; /* Ensures the logo never stretches or distorts */
    object-fit: contain; 
    margin-bottom: 30px;
}
.footer-title { font-size: 0.7rem; color: var(--champagne-gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--champagne-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; margin-top: 60px; font-size: 0.8rem; color: rgba(255,255,255,0.4); display: flex; flex-wrap: wrap; justify-content: space-between;}