/* OurLex - Lexington Enrichment Exchange Styles */
/* Modern + Historic Interactive Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Darker Royal Blue Palette */
    --ocean-deep: #050810;
    --ocean-dark: #0A1020;
    --ocean-mid: #12203D;
    --ocean-blue: #1A3058;
    --ocean-light: #243D70;
    --ocean-sky: #5A7AB8;
    
    /* Gold Accents */
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-bright: #FFD700;
    --gold-dark: #B8860B;
    
    /* Historic/Sepia tones */
    --parchment: #F5E6C8;
    --antique: #8B7355;
    --ink: #2C1810;
    
    /* Glass Effect */
    --glass-bg: rgba(10, 16, 32, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);Remov
    --glass-blur: 10px;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--ocean-deep);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== INTERACTIVE BACKGROUND LAYERS ===== */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.minutemen-layer {
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 20 L50 40 M45 25 L55 25 M40 40 L60 40 M50 40 L50 80 M50 80 L35 120 M50 80 L65 120 M50 55 L70 45 M70 45 L80 55' stroke='%23D4AF3715' stroke-width='2' fill='none'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 48, 88, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    animation: subtleFloat 30s ease-in-out infinite;
}

.stars-layer {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200px 200px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: -1;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ===== INTERACTIVE HOVER EFFECTS ===== */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.1);
}

.hover-glow {
    transition: all 0.4s ease;
    position: relative;
}

.hover-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.hover-glow:hover::before {
    opacity: 1;
    animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* ===== MINUTEMAN SILHOUETTE DECORATIONS ===== */
.minuteman-silhouette {
    position: absolute;
    width: 120px;
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.05) 50%,
        transparent 100%
    );
    clip-path: polygon(
        50% 0%, 45% 5%, 40% 5%, 35% 8%, 40% 12%, 45% 15%, 
        50% 15%, 55% 15%, 60% 12%, 65% 8%, 60% 5%, 55% 5%,
        50% 20%, 45% 25%, 40% 30%, 35% 35%, 45% 35%, 
        48% 50%, 45% 55%, 40% 65%, 35% 80%, 40% 100%,
        50% 95%, 60% 100%, 65% 80%, 60% 65%, 55% 55%,
        52% 50%, 55% 35%, 65% 35%, 60% 30%, 55% 25%,
        70% 20%, 80% 25%, 85% 30%
    );
    opacity: 0.3;
    pointer-events: none;
}

.minuteman-left {
    left: 5%;
    bottom: 10%;
    transform: scaleX(-1);
    animation: guardWatch 8s ease-in-out infinite;
}

.minuteman-right {
    right: 5%;
    bottom: 10%;
    animation: guardWatch 8s ease-in-out infinite 4s;
}

@keyframes guardWatch {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 0.4; transform: translateY(-5px); }
}

/* ===== INTERACTIVE TIMELINE ===== */
.timeline {
    position: relative;
    padding: var(--space-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--gold), var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    position: relative;
    margin-bottom: var(--space-xl);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--space-lg);
    max-width: 400px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-dot {
    position: absolute;
    right: -42px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--ocean-deep);
    border: 3px solid var(--gold);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -42px;
}

.timeline-content:hover .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: var(--space-xs);
}

.timeline-desc {
    color: #889;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
        left: 8px;
        right: auto;
    }
}

/* ===== INTERACTIVE IMAGE COMPARISON ===== */
.image-compare {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    border: 2px solid var(--glass-border);
}

.image-compare-before,
.image-compare-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-compare-before {
    background: linear-gradient(135deg, #2C1810 0%, #4A3628 50%, #2C1810 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    filter: sepia(100%) contrast(0.8);
}

.image-compare-after {
    clip-path: inset(0 50% 0 0);
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-mid) 50%, var(--ocean-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.image-compare-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: translateX(-50%);
    z-index: 10;
}

.image-compare-slider::before {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-deep);
    font-size: 0.8rem;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.compare-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 20px;
    z-index: 5;
}

.compare-label-before { left: 20px; }
.compare-label-after { right: 20px; }

/* ===== FLOATING PARTICLES ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg);
    }
}

/* ===== INTERACTIVE MAP MARKER ===== */
.map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-dark) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
}

.map-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    cursor: pointer;
    animation: markerBounce 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.map-marker:hover {
    transform: rotate(-45deg) scale(1.2);
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--ocean-deep);
    border-radius: 50%;
}

@keyframes markerBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-10px); }
}

.map-tooltip {
    position: absolute;
    background: var(--ocean-deep);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.map-marker:hover + .map-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PROGRESS INDICATOR ===== */
.restoration-progress {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--space-lg);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.progress-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
}

.progress-percentage {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
}

.progress-bar {
    height: 12px;
    background: rgba(26, 48, 88, 0.5);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-bright));
    border-radius: 6px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-milestones {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-sm);
}

.milestone {
    text-align: center;
    font-size: 0.8rem;
    color: #667;
}

.milestone.achieved { color: var(--gold); }

/* ===== COUNTER ANIMATION ===== */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
}

.counter-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.counter-label {
    color: #889;
    font-size: 0.95rem;
    margin-top: var(--space-xs);
}

/* ===== CARD FLIP EFFECT ===== */
.flip-card {
    perspective: 1000px;
    height: 300px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-mid));
    border: 1px solid var(--gold);
    transform: rotateY(180deg);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all var(--transition-speed) ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 16, 32, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-speed) ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-speed) ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 16, 32, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-speed) ease;
    }
    
    .nav-links.active {
        right: 0;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.section-dark {
    background: var(--ocean-dark);
}

.section-accent {
    background: linear-gradient(180deg, var(--ocean-mid) 0%, var(--ocean-dark) 100%);
}

.section-ocean {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-mid) 100%);
}

.section-historic {
    background: 
        linear-gradient(rgba(10, 16, 32, 0.9), rgba(10, 16, 32, 0.95)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 5v50M5 30h50' stroke='%23D4AF3708' stroke-width='1'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: #aab;
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-md) 0;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-icon {
    color: var(--gold);
    margin: 0 var(--space-sm);
    font-size: 1.2rem;
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--space-lg);
    backdrop-filter: blur(var(--glass-blur));
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    color: #889;
    font-size: 0.95rem;
}

/* ===== EVENT GRID ===== */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.event-card-image {
    height: 150px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.event-card-content {
    padding: var(--space-md);
}

.event-date {
    display: inline-block;
    background: var(--gold);
    color: var(--ocean-deep);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.event-card-content h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: var(--space-xs);
}

.event-location {
    color: var(--ocean-sky);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.event-card-content p {
    color: #889;
    font-size: 0.9rem;
}

/* ===== PASSION SECTION ===== */
.passion-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 900px) {
    .passion-section {
        grid-template-columns: 1fr;
    }
}

.passion-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.passion-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ocean-sky);
    border-left: 3px solid var(--gold);
    padding-left: var(--space-md);
    margin: var(--space-md) 0;
}

.passion-text {
    color: #aab;
    line-height: 1.8;
}

.passion-signature {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: var(--space-md);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--ocean-deep);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--ocean-deep);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ocean-deep);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-xl) var(--space-md) var(--space-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-links h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #889;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: #667;
    font-size: 0.9rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-muted { color: #889; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ===== CURSOR SPOTLIGHT ===== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ocean-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* ===== TOOLTIP ===== */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--ocean-deep);
    border: 1px solid var(--gold);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}
