/* =======================================================
   ROOT VARIABLES & RESET
   ======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0B0B0B;
    --warm-white: #F5F0EB;
    --cinnabar: #D83A3A;
    --gold: #D4AF37;
    --jade: #00A86B;
    --charcoal: #151515;
    --silver: #8A8A8A;
    --shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background: var(--ink);
    color: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility Snippet (Exact Copy) */
.sr-only-safe {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utility Classes */
.tag {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cinnabar);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), #F5D97E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* =======================================================
   HERO SECTION
   ======================================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 20% 50%, #1A0F0F 0%, var(--ink) 70%);
    overflow: hidden;
}

/* Subtle Film Grain Overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(216, 58, 58, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-title {
    font-size: clamp(4.5rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #ffffff 20%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    color: var(--silver);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    animation: float 2.5s infinite ease-in-out;
    cursor: pointer;
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* =======================================================
   ABOUT SECTION
   ======================================================= */
.about {
    padding: 8rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}

.about-text p {
    font-weight: 300;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Animated Counters */
.stats {
    display: flex;
    gap: 3rem;
}

.stats div {
    display: flex;
    flex-direction: column;
}

.num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--cinnabar);
    line-height: 1;
}

.num-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--cinnabar);
    line-height: 1;
    margin-left: 2px;
}

.label {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.2rem;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    display: block;
}

.accent-block {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

/* =======================================================
   HORIZONTAL SECTION (STICKY + SCROLL DRIVEN)
   ======================================================= */
.horizontal-section {
    height: 400vh; /* Creates the scroll space for the horizontal movement */
    position: relative;
    background: var(--ink);
}

.horizontal-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
}

.horizontal-header {
    padding: 0 0 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex-shrink: 0;
}

.horizontal-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0.5rem 0;
}

.section-desc {
    color: var(--silver);
    font-weight: 300;
}

.horizontal-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    width: max-content;
    will-change: transform;
}

.h-item {
    width: 320px;
    flex-shrink: 0;
    background: var(--charcoal);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.h-item:hover {
    transform: scale(1.03) translateY(-8px);
    border-color: var(--gold);
}

.h-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
}

.h-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.h-item:hover .h-media img {
    transform: scale(1.08);
}

.h-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.h-item:hover .h-play {
    opacity: 1;
}

.h-meta {
    padding: 1.2rem 1.5rem;
}

.h-meta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.h-meta p {
    font-weight: 300;
    color: var(--silver);
    font-size: 0.85rem;
}

.h-meta span {
    opacity: 0.5;
}

/* Progress Bar */
.horizontal-progress {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.horizontal-progress::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), #F5D97E);
    border-radius: 4px;
    transition: width 0.1s linear;
}

/* =======================================================
   VERTICAL CAROUSEL (SNAP EFFECT)
   ======================================================= */
.carousel-section {
    height: 500vh; /* 4 slides * 100vh + extra margin */
    position: relative;
    background: var(--charcoal);
}

.carousel-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.carousel-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.slide-num {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 900;
    color: var(--cinnabar);
    opacity: 0.08;
    grid-column: 1 / -1;
    margin-bottom: -4rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.slide-text h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.slide-text p {
    font-weight: 300;
    color: #CCCCCC;
    line-height: 1.8;
    font-size: 1.1rem;
}

.slide-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.carousel-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 20;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.carousel-dots .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
    padding: 4rem 2rem;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-grid h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.footer-bio {
    color: var(--silver);
    font-weight: 300;
}

.footer-grid a {
    color: var(--warm-white);
    text-decoration: none;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-grid a:hover {
    color: var(--gold);
}

.socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.socials a {
    font-size: 1.6rem;
    color: var(--silver);
    transition: color 0.3s, transform 0.3s;
}

.socials a:hover {
    color: var(--warm-white);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--silver);
    font-size: 0.8rem;
    opacity: 0.3;
    letter-spacing: 1px;
}

/* =======================================================
   MODAL LIGHTBOX
   ======================================================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.4s ease;
    opacity: 0.7;
}

.modal-close:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.modal-content img,
.modal-content video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

/* =======================================================
   RESPONSIVE DESIGN
   ======================================================= */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .stats {
        justify-content: center;
    }
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .slide-num {
        font-size: 4.5rem;
        margin-bottom: -1.5rem;
    }
    .h-item {
        width: 260px;
    }
    .carousel-dots {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3.5rem, 12vw, 4.8rem);
    }
    .about {
        padding: 4rem 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .socials {
        justify-content: center;
    }
    .horizontal-sticky {
        padding: 0 1rem;
    }
    .horizontal-track {
        gap: 1rem;
    }
    .h-item {
        width: 200px;
    }
    .slide-text h3 {
        font-size: 2rem;
    }
    .modal-close {
        top: 16px;
        right: 20px;
        font-size: 2rem;
    }
    .horizontal-progress {
        width: 120px;
    
