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

:root {
    --white: #FFFFFF;
    --royal-green: #061702;
    --royal-green-light: #000110;
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --luxury-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--royal-green);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Custom Cursor */
.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.8s var(--luxury-ease), border-color 0.8s var(--luxury-ease);
    transform: translate(-50%, -50%);
}

.cursor-ring.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--gold);
}

/* Header */
.header-glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1400px;
    z-index: 1000;
    background: rgba(6, 23, 2, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 100px;
    padding: 1rem 2rem;
    box-shadow: 
        0 8px 32px rgba(6, 23, 2, 0.6),
        0 2px 8px rgba(6, 23, 2, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(6, 23, 2, 0.3);
    transition: all 0.8s var(--luxury-ease);
    overflow: hidden;
    isolation: isolate;
}

/* Shimmer container - separate from header positioning */
.header-glass > .header-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 20%,
        rgba(212, 175, 55, 0.15) 40%,
        rgba(244, 228, 193, 0.3) 48%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(244, 228, 193, 0.3) 52%,
        rgba(212, 175, 55, 0.15) 60%,
        transparent 80%,
        transparent 100%
    );
    animation: headerShimmer 8s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 0;
}

.header-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 50%,
        rgba(212, 175, 55, 0.1) 75%,
        rgba(212, 175, 55, 0.2) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.header-glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 30%;
    height: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 70%
    );
    border-radius: 100px 100px 0 0;
    pointer-events: none;
}

@keyframes headerShimmer {
    0% {
        left: -40%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Scrolled state - more prominent */
.header-glass.scrolled {
    background: rgba(6, 23, 2, 0.9);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 12px 48px rgba(6, 23, 2, 0.7),
        0 4px 12px rgba(6, 23, 2, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(6, 23, 2, 0.4);
}

.header-glass.scrolled .header-shimmer {
    animation-duration: 6s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-lockup {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.8s var(--luxury-ease);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.logo-lockup:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.logo-english {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--white);
}

.logo-hindi-small {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 1.2s var(--luxury-ease);
    font-weight: 400;
}

.nav-menu a:hover {
    color: var(--gold);
}

.cta-button-gold {
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 1.2s var(--luxury-ease);
    position: relative;
    overflow: hidden;
}

.cta-button-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transition: width 1.2s var(--luxury-ease), height 1.2s var(--luxury-ease);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cta-button-gold:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-gold:hover {
    color: var(--royal-green);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.3s var(--luxury-ease);
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* Hero Section - New */
.hero-new {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Fallback Image */
.hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Liquid Glass Overlay */
.liquid-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to bottom,
            rgba(6, 23, 2, 0.3) 0%,
            rgba(6, 23, 2, 0.45) 60%,
            rgba(6, 23, 2, 0.65) 100%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 25%,
            rgba(6, 23, 2, 0.2) 50%,
            rgba(255, 255, 255, 0.02) 75%,
            rgba(255, 255, 255, 0.08) 100%
        );
    backdrop-filter: blur(12px) saturate(200%) brightness(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(200%) brightness(1.05);
    z-index: 2;
}

/* Glass texture and depth */
.liquid-glass-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 85%, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
    animation: glassShimmer 10s ease-in-out infinite;
    mix-blend-mode: overlay;
}

/* Frosted glass edge highlights */
.liquid-glass-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 10%,
            transparent 90%,
            rgba(255, 255, 255, 0.15) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 15%,
            transparent 85%,
            rgba(255, 255, 255, 0.1) 100%
        );
    pointer-events: none;
}

@keyframes glassShimmer {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.02);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.01);
    }
    75% {
        opacity: 0.95;
        transform: scale(1.015);
    }
}

/* Additional Glass Layers for Depth */
.glass-layer-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 40%;
    height: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(40px);
    animation: glassFloat1 15s ease-in-out infinite;
}

@keyframes glassFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.glass-layer-2 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 35%;
    height: 45%;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.08) 35%,
        transparent 65%
    );
    border-radius: 50%;
    filter: blur(50px);
    animation: glassFloat2 18s ease-in-out infinite;
}

@keyframes glassFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(-40px, 25px) scale(1.08);
    }
    80% {
        transform: translate(25px, -30px) scale(0.92);
    }
}

/* Glass Noise Texture */
.glass-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.05) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.05) 5px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.05) 5px
        );
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-copy {
    max-width: 900px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 
        0 2px 10px rgba(6, 23, 2, 0.7),
        0 4px 20px rgba(6, 23, 2, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.hero-subheadline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 
        0 2px 10px rgba(6, 23, 2, 0.7),
        0 4px 15px rgba(6, 23, 2, 0.5);
}

.cta-button-hero {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--gold);
    color: var(--royal-green);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 1.2s var(--luxury-ease);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.cta-button-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInScroll 1.5s ease-out 2s forwards;
}

@keyframes fadeInScroll {
    to {
        opacity: 1;
    }
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(6, 23, 2, 0.7);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        rgba(212, 175, 55, 0.3),
        rgba(212, 175, 55, 0)
    );
    position: relative;
    overflow: hidden;
}

.scroll-line-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgba(212, 175, 55, 1),
        rgba(212, 175, 55, 0.5),
        transparent
    );
    box-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.4);
    animation: scrollGlow 2s ease-in-out infinite;
}

@keyframes scrollGlow {
    0% {
        top: 0;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Hide scroll indicator on scroll */
.scroll-indicator.hidden {
    opacity: 0;
    transition: opacity 0.8s var(--luxury-ease);
}

/* Experience Section - Luxury Redesign */
.experience-section {
    max-width: 1600px;
    margin: 15rem auto;
    padding: 0 4rem;
}

.experience-header {
    text-align: center;
    margin-bottom: 8rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    font-weight: 300;
}

.experience-grid {
    display: grid;
    gap: 8rem 0;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.experience-card:nth-child(even) {
    direction: rtl;
}

.experience-card:nth-child(even) > * {
    direction: ltr;
}

/* Image Wrapper */
.experience-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: var(--charcoal);
}

.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--luxury-ease);
}

.experience-card:hover .experience-image {
    transform: scale(1.05);
}

.experience-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 23, 2, 0.3) 0%,
        rgba(6, 23, 2, 0.1) 50%,
        rgba(212, 175, 55, 0.15) 100%
    );
    opacity: 0.6;
    transition: opacity 1.2s var(--luxury-ease);
}

.experience-card:hover .experience-image-overlay {
    opacity: 0.3;
}

/* Content */
.experience-content {
    padding: 2rem 0;
}

.experience-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    font-weight: 300;
}

.experience-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 540px;
}

/* Decorative Line */
.experience-card::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4rem;
    transform: translateX(-50%);
    width: 1px;
    height: 3rem;
    background: linear-gradient(
        to bottom,
        rgba(212, 175, 55, 0.5),
        transparent
    );
}

.experience-card:last-child::before {
    display: none;
}

/* Glass Card */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Stories Cinematic Section */
.stories-cinematic-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 15rem 0;
}

.stories-slideshow {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Slide Background */
.stories-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s var(--luxury-ease);
}

.stories-slide.active {
    opacity: 1;
}

.stories-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stories-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(6, 23, 2, 0.9) 0%,
        rgba(6, 23, 2, 0.7) 40%,
        rgba(6, 23, 2, 0.4) 70%,
        transparent 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Content Wrapper */
.stories-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header */
.stories-header {
    margin-bottom: 6rem;
    max-width: 700px;
}

.stories-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.stories-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 20px rgba(6, 23, 2, 0.7);
}

.stories-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(6, 23, 2, 0.7);
}

/* Stories Showcase */
.stories-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.story-item {
    padding: 2.5rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 1.2s var(--luxury-ease);
}

.story-item:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
}

.story-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-location {
    color: var(--gold);
}

.story-year {
    color: rgba(255, 255, 255, 0.5);
}

.story-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.story-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* CTA */
.stories-cta {
    display: flex;
    justify-content: flex-start;
}

.stories-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 1.2s var(--luxury-ease);
}

.stories-link svg {
    transition: transform 1.2s var(--luxury-ease);
}

.stories-link:hover {
    background: var(--gold);
    color: var(--royal-green);
    border-color: var(--gold);
    transform: translateX(5px);
}

.stories-link:hover svg {
    transform: translateX(5px);
}

/* Interactive Experience Section */
.interactive-experience {
    max-width: 1600px;
    margin: 12rem auto;
    padding: 0 4rem;
    overflow: hidden;
}

.interactive-experience-container {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.interactive-image-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    cursor: none;
    transition: all 1.2s var(--luxury-ease);
}

.interactive-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

.interactive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s var(--luxury-ease);
    filter: brightness(0.85) contrast(1.1);
}

.interactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(6, 23, 2, 0.3) 0%,
        rgba(6, 23, 2, 0.1) 50%,
        rgba(212, 175, 55, 0.15) 100%
    );
    pointer-events: none;
    transition: opacity 1.2s var(--luxury-ease);
}

.interactive-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.25) 0%,
        rgba(212, 175, 55, 0.1) 30%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    mix-blend-mode: screen;
    filter: blur(40px);
}

.interactive-image-wrapper:hover .interactive-image {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.15);
}

.interactive-image-wrapper:hover .interactive-overlay {
    opacity: 0.7;
}

.interactive-image-wrapper:hover .interactive-glow {
    opacity: 1;
}

/* Responsive - Interactive Experience */
@media (max-width: 1024px) {
    .interactive-experience {
        margin: 8rem auto;
        padding: 0 3rem;
    }
    
    .interactive-image-wrapper {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .interactive-experience {
        margin: 6rem auto;
        padding: 0 2rem;
    }
    
    .interactive-image-wrapper {
        height: 50vh;
        min-height: 350px;
        border-radius: 12px;
    }
    
    .interactive-glow {
        width: 250px;
        height: 250px;
    }
}

/* CTA Section */
.cta-section {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10rem 0;
    padding: 0 3rem;
}

.cta-content {
    text-align: center;
    max-width: 600px;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--white);
    color: var(--royal-green);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 1.2s var(--luxury-ease);
}

.cta-button-large:hover {
    background: var(--gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: var(--royal-green-light);
    padding: 5rem 3rem 2rem;
    margin-top: 8rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 1.2s var(--luxury-ease);
    font-weight: 300;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 1.2s var(--luxury-ease);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: color 1.2s var(--luxury-ease);
}

.social-icons a:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.purpul {
    color: var(--gold);
    font-weight: 500;
}

/* Scroll Reveal */
[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--luxury-ease), transform 1.2s var(--luxury-ease);
}

[data-scroll].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stories Page - Immersive Design */

/* Immersive Hero Section */
.stories-hero-immersive {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stories-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stories-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stories-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(6, 23, 2, 0.3) 0%,
        rgba(6, 23, 2, 0.5) 50%,
        rgba(6, 23, 2, 0.7) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.stories-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 3rem;
}

.stories-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 400;
}

.stories-hero-content .editorial-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.stories-hero-content .editorial-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-weight: 300;
}

/* Featured Story Section */
.featured-story {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 4rem;
}

.featured-story-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-story-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.featured-story-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: all 1.2s var(--luxury-ease);
}

.featured-story-image:hover img {
    transform: scale(1.05);
}

.featured-story-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--royal-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}

.featured-story-content {
    padding: 2rem 0;
}

.story-category {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.featured-story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.story-excerpt {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.story-details {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.detail-value {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Stories Editorial Grid */
.stories-editorial-grid {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 4rem;
}

.stories-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.story-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 1.2s var(--luxury-ease);
    cursor: pointer;
}

.story-card:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

.story-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s var(--luxury-ease);
}

.story-card:hover .story-card-image img {
    transform: scale(1.08);
}

.story-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-card-content .story-category {
    margin-bottom: 1rem;
}

.story-card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.story-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex: 1;
}

.story-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* Responsive - Stories Page */
@media (max-width: 1024px) {
    .stories-hero-content .editorial-heading {
        font-size: 4rem;
    }
    
    .featured-story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-story-content h2 {
        font-size: 2.8rem;
    }
    
    .stories-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .stories-hero-immersive {
        height: 70vh;
    }
    
    .stories-hero-content {
        padding: 0 2rem;
    }
    
    .stories-hero-content .editorial-heading {
        font-size: 3rem;
    }
    
    .stories-hero-content .editorial-subheading {
        font-size: 1rem;
    }
    
    .featured-story,
    .stories-editorial-grid {
        padding: 0 2rem;
        margin: 6rem auto;
    }
    
    .featured-story-content h2 {
        font-size: 2.2rem;
    }
    
    .story-excerpt {
        font-size: 1rem;
    }
    
    .story-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .story-card-image {
        height: 260px;
    }
    
    .story-card-content {
        padding: 2rem;
    }
    
    .story-card-content h3 {
        font-size: 1.6rem;
    }
}

/* About & Stories Pages - Keep existing styles */
.about-hero, .stories-hero {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 4rem;
}

.about-content, .stories-content {
    text-align: center;
    max-width: 800px;
    padding: 0 3rem;
}

.about-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.editorial-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.editorial-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    font-weight: 300;
}

.story-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.story-grid.reverse {
    direction: rtl;
}

.story-grid.reverse > * {
    direction: ltr;
}

.story-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.story-visual {
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
}

.story-full {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.story-full h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.story-full p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.bento-grid {
    max-width: 1400px;
    margin: 4rem auto 8rem;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    grid-auto-rows: 350px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
    transition: transform 1.2s var(--luxury-ease);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item:hover {
    transform: scale(1.02);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(6, 23, 2, 0.95), transparent);
}

.bento-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.bento-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-glass {
        width: calc(100% - 40px);
        padding: 0.8rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-headline {
        font-size: 4rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-copy {
        padding: 2.5rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .glass-layer-1,
    .glass-layer-2 {
        filter: blur(30px);
    }
    
    .experience-section {
        padding: 0 3rem;
        margin: 12rem auto;
    }
    
    .experience-header {
        margin-bottom: 6rem;
    }
    
    .experience-grid {
        gap: 6rem 0;
    }
    
    .experience-card {
        gap: 4rem;
    }
    
    .experience-content h3 {
        font-size: 2.4rem;
    }
    
    .experience-content p {
        font-size: 1.05rem;
    }
    
    .stories-content-wrapper {
        padding: 6rem 3rem;
    }
    
    .stories-title {
        font-size: 3.5rem;
    }
    
    .stories-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-glass {
        width: calc(100% - 32px);
        padding: 0.75rem 1.2rem;
        border-radius: 60px;
    }
    
    .header-container {
        gap: 0;
    }
    
    .logo-image {
        height: 32px;
    }
    
    /* Hide desktop nav and CTA on mobile */
    .nav-menu {
        display: none;
    }
    
    .header-container > .cta-button-gold {
        display: none;
    }
    
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        transition: all 0.8s var(--luxury-ease);
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: all 0.8s var(--luxury-ease);
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(6, 23, 2, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.8s var(--luxury-ease);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .mobile-nav-menu a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.8rem;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 300;
        letter-spacing: 0.05em;
        transition: all 1.2s var(--luxury-ease);
        opacity: 0;
        transform: translateY(20px);
    }
    
    .mobile-menu-overlay.active .mobile-nav-menu a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-nav-menu a:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .mobile-nav-menu a:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .mobile-nav-menu a:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .mobile-nav-menu a:hover {
        color: var(--gold);
        transform: scale(1.1);
    }
    
    .mobile-menu-overlay .cta-button-gold {
        opacity: 0;
        transform: translateY(20px);
        transition: all 1.2s var(--luxury-ease);
        transition-delay: 0.4s;
    }
    
    .mobile-menu-overlay.active .cta-button-gold {
        opacity: 1;
        transform: translateY(0);
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-copy {
        padding: 2rem 1.5rem;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%
        );
    }
    
    .cta-button-hero {
        padding: 1.1rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.65rem;
    }
    
    .scroll-line {
        height: 50px;
    }
    
    .glass-layer-1,
    .glass-layer-2 {
        filter: blur(20px);
        opacity: 0.6;
    }
    
    .glass-noise {
        opacity: 0.2;
    }
    
    .experience-section {
        padding: 0 2rem;
        margin: 8rem auto;
    }
    
    .experience-header {
        margin-bottom: 4rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .experience-grid {
        gap: 5rem 0;
    }
    
    .experience-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .experience-card:nth-child(even) {
        direction: ltr;
    }
    
    .experience-content {
        padding: 0;
    }
    
    .experience-number {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .experience-content h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .experience-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .experience-card::before {
        bottom: -2.5rem;
        height: 2rem;
    }
    
    .stories-cinematic-section {
        margin: 8rem 0;
    }
    
    .stories-content-wrapper {
        padding: 4rem 2rem;
    }
    
    .stories-header {
        margin-bottom: 4rem;
    }
    
    .stories-label {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .stories-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stories-description {
        font-size: 1rem;
    }
    
    .stories-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .story-item {
        padding: 2rem;
    }
    
    .story-name {
        font-size: 1.5rem;
    }
    
    .story-excerpt {
        font-size: 0.9rem;
    }
    
    .stories-slide-overlay {
        background: linear-gradient(
            to bottom,
            rgba(6, 23, 2, 0.75) 0%,
            rgba(6, 23, 2, 0.9) 100%
        );
    }
    
    .editorial-heading {
        font-size: 2.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bento-item.large {
        grid-column: span 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* About Page - Immersive Design */

/* Immersive Hero Section */
.about-hero-immersive {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(6, 23, 2, 0.3) 0%,
        rgba(6, 23, 2, 0.5) 50%,
        rgba(6, 23, 2, 0.7) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 3rem;
}

.about-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-hero-content .editorial-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.about-hero-content .editorial-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-weight: 300;
}

/* Section Label - Reusable */
.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Philosophy Editorial Section */
.about-philosophy-editorial {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 4rem;
}

.philosophy-editorial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-editorial-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.philosophy-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.philosophy-editorial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.philosophy-editorial-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-editorial-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: all 1.2s var(--luxury-ease);
}

.philosophy-editorial-image:hover img {
    transform: scale(1.05);
}

.philosophy-quote-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(
        to top,
        rgba(6, 23, 2, 0.97) 0%,
        rgba(6, 23, 2, 0.75) 70%,
        transparent 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.philosophy-quote-overlay p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-weight: 300;
}

/* Values Immersive Section */
.about-values-immersive {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 4rem;
}

.values-immersive-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-immersive-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.values-immersive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-immersive-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 1.2s var(--luxury-ease);
}

.value-immersive-card:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

.value-immersive-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.value-immersive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s var(--luxury-ease);
}

.value-immersive-card:hover .value-immersive-image img {
    transform: scale(1.08);
}

.value-immersive-content {
    padding: 2.5rem;
    flex: 1;
}

.value-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.value-immersive-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.value-immersive-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

/* Mission Editorial Section */
.about-mission-editorial {
    max-width: 900px;
    margin: 10rem auto;
    padding: 0 4rem;
    text-align: center;
}

.mission-editorial-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.mission-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.mission-editorial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Responsive - About Page Immersive */
@media (max-width: 1024px) {
    .about-hero-content .editorial-heading {
        font-size: 4rem;
    }
    
    .philosophy-editorial-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .philosophy-editorial-image {
        order: -1;
    }
    
    .values-immersive-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-immersive {
        height: 70vh;
    }
    
    .about-hero-content {
        padding: 0 2rem;
    }
    
    .about-hero-content .editorial-heading {
        font-size: 3rem;
    }
    
    .about-hero-content .editorial-subheading {
        font-size: 1rem;
    }
    
    .about-philosophy-editorial,
    .about-values-immersive,
    .about-mission-editorial {
        padding: 0 2rem;
        margin: 6rem auto;
    }
    
    .philosophy-editorial-content h2,
    .values-immersive-header h2,
    .mission-editorial-content h2 {
        font-size: 2.2rem;
    }
    
    .philosophy-lead,
    .mission-lead {
        font-size: 1.1rem;
    }
    
    .philosophy-editorial-content p,
    .mission-editorial-content p {
        font-size: 1rem;
    }
    
    .philosophy-quote-overlay {
        padding: 2rem;
    }
    
    .value-immersive-image {
        height: 240px;
    }
    
    .value-immersive-content {
        padding: 2rem;
    }
    
    .value-immersive-content h3 {
        font-size: 1.6rem;
    }
}

/* About Page - Old Sections (Keep for compatibility) */

/* Services Section */
.services-section {
    max-width: 1200px;
    margin: 10rem auto;
    padding: 0 4rem;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
}

.service-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

/* Mission Section */
.mission-section {
    max-width: 900px;
    margin: 10rem auto;
    padding: 0 4rem;
    text-align: center;
}

.mission-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Responsive - About Page */
@media (max-width: 1024px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-visual-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .philosophy-section,
    .values-section,
    .services-section,
    .mission-section {
        padding: 0 2rem;
        margin: 6rem auto;
    }
    
    .philosophy-text h2,
    .mission-content h2 {
        font-size: 2.2rem;
    }
    
    .philosophy-img {
        aspect-ratio: 3/4;
    }
    
    .philosophy-quote {
        padding: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .value-card h3 {
        font-size: 1.6rem;
    }
    
    .value-image-wrapper {
        height: 220px;
    }
    
    .value-content {
        padding: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
}


