/**
 * ============================================
 * RESPALDO POLÍTICO - THE DOSSIER
 * ============================================
 * Estética: Classified Intelligence × NYT × 90s Grain × Old Money Jazz
 * Director Creativo: Premium Agency Experience
 * ============================================
 */

/* ============================================
   FONTS - Distintivas, no genéricas
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=JetBrains+Mono:wght@400;500&family=Bebas+Neue&display=swap');

/* ============================================
   ROOT VARIABLES - The Power Palette
   ============================================ */
:root {
    /* === THE DOSSIER PALETTE === */
    --black-power: #0D0D0D;
    --nyt-dark: #212529;
    --gray-elegant: #F2F2F2;
    --cream-classic: #F0EBD8;
    --beige-warm: #D9C5B2;
    --gray-body: #737373;
    --burgundy-power: #540B0E;
    
    /* Extended palette */
    --paper-aged: #E8E2D3;
    --paper-torn: #FAF8F3;
    --ink-fresh: #1a1a1a;
    --ink-faded: #3d3d3d;
    --gold-subtle: #8B7355;
    --red-stamp: #8B0000;
    
    /* Shadows & Glows */
    --shadow-brutal: 8px 8px 0px var(--black-power);
    --shadow-soft: 0 4px 30px rgba(13, 13, 13, 0.15);
    --shadow-paper: 2px 2px 8px rgba(13, 13, 13, 0.1), -1px -1px 4px rgba(255, 255, 255, 0.5);
    --shadow-float: 0 20px 60px rgba(13, 13, 13, 0.2);
    --shadow-inset: inset 0 2px 20px rgba(13, 13, 13, 0.05);
    
    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-editorial: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Libre Baskerville', 'Times New Roman', serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Dramatic Type Scale */
    --text-xs: 0.65rem;
    --text-sm: 0.8rem;
    --text-base: 1rem;
    --text-lg: 1.15rem;
    --text-xl: 1.35rem;
    --text-2xl: 1.75rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3.5rem;
    --text-5xl: 5rem;
    --text-6xl: 7rem;
    --text-7xl: 10rem;
    --text-massive: 15vw;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 10rem;
    
    /* Layout */
    --max-width: 1400px;
    --content-width: 800px;
    --gutter: 2rem;
    
    /* Grain intensity */
    --grain-opacity: 0.4;
    
    /* Transitions */
    --ease-power: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   NOISE TEXTURE - The 90s Grain
   ============================================ */
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.grain::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    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");
    opacity: var(--grain-opacity);
    z-index: 9999;
    animation: grain 8s steps(10) infinite;
    mix-blend-mode: overlay;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--ink-fresh);
    background: var(--cream-classic);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(84, 11, 14, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream-classic) 0%, var(--paper-aged) 100%);
    pointer-events: none;
    z-index: -1;
}

::selection {
    background: var(--burgundy-power);
    color: var(--cream-classic);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TYPOGRAPHY - Newspaper Headlines
   ============================================ */
h1, h2, h3 {
    font-family: var(--font-editorial);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--black-power);
}

h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
    color: var(--nyt-dark);
}

/* Headline styles */
.headline-massive {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black-power);
}

.headline-primary {
    font-family: var(--font-editorial);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 700;
    font-style: italic;
}

.headline-secondary {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Kickers and Labels */
.kicker {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--burgundy-power);
    display: inline-block;
    padding: 0.3em 0.8em;
    border: 1px solid var(--burgundy-power);
    margin-bottom: var(--space-md);
}

.dateline {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-body);
}

.byline {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--gray-body);
}

/* Drop Cap */
.drop-cap::first-letter {
    font-family: var(--font-editorial);
    font-size: 5em;
    float: left;
    line-height: 0.8;
    padding-right: 0.1em;
    color: var(--burgundy-power);
    font-weight: 700;
}

/* ============================================
   LAYOUT - The Grid
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--narrow {
    max-width: var(--content-width);
}

.container--full {
    max-width: none;
    padding: 0;
}

/* ============================================
   PAPER EFFECTS - Torn, Cut, Layered
   ============================================ */

/* Torn paper top edge */
.torn-top {
    position: relative;
}

.torn-top::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: inherit;
    clip-path: polygon(
        0% 50%, 2% 60%, 4% 45%, 6% 55%, 8% 40%, 10% 60%, 
        12% 45%, 14% 55%, 16% 42%, 18% 58%, 20% 48%, 22% 52%, 
        24% 45%, 26% 55%, 28% 48%, 30% 58%, 32% 42%, 34% 55%, 
        36% 45%, 38% 60%, 40% 50%, 42% 55%, 44% 42%, 46% 58%, 
        48% 45%, 50% 55%, 52% 48%, 54% 52%, 56% 45%, 58% 58%, 
        60% 42%, 62% 55%, 64% 48%, 66% 60%, 68% 45%, 70% 55%, 
        72% 50%, 74% 58%, 76% 42%, 78% 55%, 80% 48%, 82% 60%, 
        84% 45%, 86% 52%, 88% 48%, 90% 58%, 92% 42%, 94% 55%, 
        96% 50%, 98% 58%, 100% 50%, 100% 100%, 0% 100%
    );
    z-index: 1;
}

/* Torn paper bottom edge */
.torn-bottom {
    position: relative;
}

.torn-bottom::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: inherit;
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 50%, 98% 40%, 96% 55%, 94% 45%, 
        92% 58%, 90% 42%, 88% 55%, 86% 48%, 84% 60%, 82% 45%, 
        80% 55%, 78% 42%, 76% 58%, 74% 45%, 72% 52%, 70% 48%, 
        68% 55%, 66% 40%, 64% 58%, 62% 45%, 60% 55%, 58% 42%, 
        56% 58%, 54% 48%, 52% 55%, 50% 45%, 48% 58%, 46% 42%, 
        44% 55%, 42% 48%, 40% 60%, 38% 45%, 36% 55%, 34% 48%, 
        32% 58%, 30% 42%, 28% 55%, 26% 45%, 24% 58%, 22% 50%, 
        20% 55%, 18% 42%, 16% 58%, 14% 48%, 12% 55%, 10% 45%, 
        8% 60%, 6% 48%, 4% 55%, 2% 42%, 0% 50%
    );
    z-index: 1;
}

/* Paper fragment / clipping */
.paper-fragment {
    background: var(--paper-torn);
    padding: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-paper);
    transform: rotate(-1deg);
}

.paper-fragment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    pointer-events: none;
}

.paper-fragment--tilted-left {
    transform: rotate(-2deg);
}

.paper-fragment--tilted-right {
    transform: rotate(2deg);
}

/* Newspaper clipping */
.clipping {
    background: var(--paper-torn);
    border: 1px solid var(--beige-warm);
    padding: var(--space-lg);
    position: relative;
    box-shadow: 
        3px 3px 0 rgba(0,0,0,0.1),
        inset 0 0 30px rgba(0,0,0,0.02);
}

.clipping::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--beige-warm) 0px,
        var(--beige-warm) 10px,
        transparent 10px,
        transparent 12px
    );
}

/* Stamp effect */
.stamp {
    display: inline-block;
    padding: 0.5em 1em;
    border: 3px solid var(--burgundy-power);
    color: var(--burgundy-power);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(-5deg);
    opacity: 0.85;
    position: relative;
}

.stamp::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid var(--burgundy-power);
    opacity: 0.5;
}

/* Redacted text */
.redacted {
    background: var(--black-power);
    color: transparent;
    padding: 0 0.3em;
    user-select: none;
}

/* ============================================
   MASTHEAD - The Header
   ============================================ */
.masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--cream-classic);
    border-bottom: 1px solid var(--beige-warm);
    transition: all 0.4s var(--ease-smooth);
}

.masthead--scrolled {
    background: rgba(240, 235, 216, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.masthead__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
}

.masthead__logo {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black-power);
    text-decoration: none;
    position: relative;
}

.masthead__logo::after {
    content: '®';
    font-size: 0.4em;
    position: absolute;
    top: 0;
    right: -1em;
}

.masthead__nav {
    display: none;
    gap: var(--space-xl);
    list-style: none;
}

@media (min-width: 900px) {
    .masthead__nav {
        display: flex;
    }
}

.masthead__link {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-body);
    text-decoration: none;
    position: relative;
    padding: 0.5em 0;
    transition: color 0.3s;
}

.masthead__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy-power);
    transition: width 0.3s var(--ease-power);
}

.masthead__link:hover {
    color: var(--black-power);
}

.masthead__link:hover::after {
    width: 100%;
}

.masthead__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.7em 1.5em;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-classic);
    background: var(--black-power);
    text-decoration: none;
    border: 2px solid var(--black-power);
    cursor: pointer;
    transition: all 0.3s var(--ease-power);
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.masthead__cta:hover {
    background: transparent;
    color: var(--black-power);
}

.masthead__cta:active {
    transform: scale(0.97);
}

.masthead__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s;
}

.masthead__menu-btn:active {
    opacity: 0.7;
}

.masthead__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black-power);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

@media (min-width: 900px) {
    .masthead__menu-btn {
        display: none;
    }
}

/* Mobile menu button animation states */
.masthead__menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.masthead__menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.masthead__menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO - The Front Page
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--cream-classic);
}

.hero__masthead-bar {
    border-bottom: 3px double var(--black-power);
    padding: var(--space-md) 0;
    margin-bottom: var(--space-lg);
}

.hero__masthead-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__edition {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-body);
}

.hero__date {
    font-family: var(--font-editorial);
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--gray-body);
}

.hero__main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .hero__main {
        grid-template-columns: 1.4fr 1fr;
        align-items: center;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__kicker {
    margin-bottom: var(--space-lg);
}

.hero__headline {
    font-family: var(--font-editorial);
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 0.95;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    position: relative;
}

.hero__headline-accent {
    font-style: italic;
    color: var(--burgundy-power);
}

.hero__subhead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--gray-body);
    max-width: 550px;
    margin-bottom: var(--space-xl);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--beige-warm);
}

@media (max-width: 767px) {
    .hero__meta {
        justify-content: center;
        gap: var(--space-md);
    }
}

.hero__meta-item {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-body);
}

.hero__meta-item strong {
    color: var(--black-power);
    font-weight: 500;
}

/* Hero Image Area */
.hero__visual {
    position: relative;
}

.hero__image-frame {
    position: relative;
    background: var(--paper-torn);
    padding: var(--space-md);
    box-shadow: var(--shadow-float);
    transform: rotate(1deg);
}

.hero__image-frame::before {
    content: 'ARCHIVO CLASIFICADO';
    position: absolute;
    top: -15px;
    left: 20px;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    letter-spacing: 0.2em;
    color: var(--burgundy-power);
    background: var(--cream-classic);
    padding: 0.3em 0.8em;
    border: 2px solid var(--burgundy-power);
    transform: rotate(-3deg);
}

.hero__image-inner {
    aspect-ratio: 4/3;
    background: var(--nyt-dark);
    position: relative;
    overflow: hidden;
}

.hero__image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.9;
}

/* Placeholder styling */
.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            var(--nyt-dark) 0px,
            var(--nyt-dark) 2px,
            var(--black-power) 2px,
            var(--black-power) 12px
        );
    color: var(--gray-elegant);
    text-align: center;
    padding: var(--space-xl);
}

.placeholder__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.placeholder__info {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    opacity: 0.5;
}

/* Hero decorative elements */
.hero__deco-number {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 20rem);
    color: var(--beige-warm);
    opacity: 0.3;
    line-height: 0.8;
    z-index: 0;
    pointer-events: none;
}

.hero__deco-number--1 {
    top: 10%;
    right: -5%;
}

.hero__deco-number--2 {
    bottom: 5%;
    left: -10%;
}

/* ============================================
   STATS BAR - The Ticker
   ============================================ */
.stats-bar {
    background: var(--black-power);
    color: var(--cream-classic);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(84, 11, 14, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 115, 85, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .stats-bar__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    background: var(--black-power);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg, var(--cream-classic) 0%, var(--beige-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-body);
}

/* ============================================
   LEDE SECTION - The Introduction
   ============================================ */
.lede {
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
}

.lede__container {
    max-width: 900px;
    margin: 0 auto;
}

.lede__kicker {
    margin-bottom: var(--space-lg);
}

.lede__title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.lede__body {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: 1.9;
    color: var(--gray-body);
    max-width: 650px;
    margin: 0 auto;
}

.lede__divider {
    width: 60px;
    height: 3px;
    background: var(--burgundy-power);
    margin: var(--space-2xl) auto 0;
}

/* ============================================
   MODULES GRID - The Index
   ============================================ */
.modules-section {
    padding: var(--space-3xl) 0;
    background: var(--paper-aged);
    position: relative;
}

.modules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--beige-warm), transparent);
}

.modules__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.modules__number {
    font-family: var(--font-display);
    font-size: var(--text-massive);
    line-height: 0.7;
    color: var(--beige-warm);
    opacity: 0.5;
    margin-bottom: -0.3em;
}

.modules__title {
    font-family: var(--font-editorial);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-card {
    background: var(--paper-torn);
    padding: var(--space-xl);
    position: relative;
    transition: all 0.4s var(--ease-power);
    border: 1px solid transparent;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--burgundy-power);
    transition: height 0.4s var(--ease-power);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
    border-color: var(--beige-warm);
}

.module-card:hover::before {
    height: 100%;
}

.module-card__number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    line-height: 0.8;
    color: var(--beige-warm);
    margin-bottom: var(--space-md);
}

.module-card__title {
    font-family: var(--font-editorial);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.module-card__subtitle {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy-power);
    margin-bottom: var(--space-md);
}

.module-card__body {
    font-size: var(--text-sm);
    color: var(--gray-body);
    line-height: 1.7;
}

/* ============================================
   ARTICLE SECTIONS - The Features
   ============================================ */
.article-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.article-section--cream {
    background: var(--cream-classic);
}

.article-section--paper {
    background: var(--paper-torn);
}

.article-section--dark {
    background: var(--nyt-dark);
    color: var(--gray-elegant);
}

.article-section--dark h2,
.article-section--dark h3 {
    color: var(--cream-classic);
}

.article__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .article__inner {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .article__inner--reverse {
        direction: rtl;
    }
    
    .article__inner--reverse > * {
        direction: ltr;
    }
}

.article__content {
    max-width: 520px;
}

.article__kicker {
    margin-bottom: var(--space-md);
}

.article__title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.article__deck {
    font-family: var(--font-editorial);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--gray-body);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.article__body {
    font-size: var(--text-base);
    color: var(--gray-body);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.article__list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.article__list li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--ink-faded);
}

.article__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--burgundy-power);
    font-weight: 700;
}

/* Article figure */
.article__figure {
    position: relative;
}

.article__image-wrapper {
    position: relative;
    background: var(--paper-torn);
    padding: var(--space-sm);
    box-shadow: var(--shadow-paper);
}

.article__image-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: var(--beige-warm);
    z-index: -1;
}

.article__image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    filter: grayscale(30%);
}

.article__video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Videos más grandes en desktop - manteniendo estética original */
@media (min-width: 1024px) {
    .article__video {
        width: 100%;
        height: auto;
    }
}

.article__caption {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--gray-body);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--beige-warm);
}

/* ============================================
   BLOCKQUOTE - The Pull Quote
   ============================================ */
.blockquote-section {
    padding: var(--space-4xl) 0;
    background: var(--black-power);
    position: relative;
    overflow: hidden;
}

.blockquote-section::before {
    content: '"';
    position: absolute;
    top: -0.1em;
    left: 5%;
    font-family: var(--font-editorial);
    font-size: clamp(15rem, 30vw, 40rem);
    line-height: 1;
    color: var(--nyt-dark);
    opacity: 0.5;
    pointer-events: none;
}

.blockquote {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blockquote__text {
    font-family: var(--font-editorial);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.4;
    color: var(--cream-classic);
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.blockquote__cite {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--gray-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blockquote__cite strong {
    color: var(--beige-warm);
    display: block;
    margin-bottom: var(--space-xs);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: var(--space-4xl) 0;
    background: var(--nyt-dark);
    position: relative;
}

.video-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.video-section__title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream-classic);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.video-section__deck {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--gray-body);
    margin-bottom: var(--space-2xl);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--black-power);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover .video-placeholder__play {
    transform: scale(1.1);
    border-color: var(--cream-classic);
}

.video-placeholder__play {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gray-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: all 0.3s var(--ease-power);
    color: var(--gray-body);
}

.video-placeholder__play svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.video-placeholder span {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-body);
}

/* ============================================
   COVERAGE SECTION - The Map
   ============================================ */
.coverage-section {
    padding: var(--space-4xl) 0;
    background-image: url('../images/nuevofondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    filter: brightness(0.98) contrast(1.05) saturate(0.9);
    box-shadow: 
        inset 0 0 100px rgba(0, 0, 0, 0.05),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coverage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 0, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.coverage-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.coverage-section .container {
    position: relative;
    z-index: 2;
}

.coverage__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .coverage__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.coverage__map {
    position: relative;
    aspect-ratio: 4/3;
    background-image: url('../images/nuevofondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border: 1px solid var(--beige-warm);
    overflow: hidden;
    cursor: grab;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    filter: brightness(0.98) contrast(1.05) saturate(0.9);
}

.coverage__map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 0, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.coverage__map:active {
    cursor: grabbing;
}

.coverage__map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.coverage__map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.coverage__map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
    will-change: transform;
    user-select: none;
    pointer-events: none;
}

.coverage__map::before {
    content: 'COBERTURA REGIONAL';
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream-classic);
    background: rgba(10, 10, 10, 0.7);
    padding: var(--space-xs) var(--space-sm);
    z-index: 20;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.coverage__map-controls {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    z-index: 10;
}

.map-control {
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream-classic);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.map-control:hover {
    background: rgba(10, 10, 10, 0.95);
    border-color: var(--cream-classic);
    transform: scale(1.05);
}

.map-control:active {
    transform: scale(0.95);
}

.map-control svg {
    width: 18px;
    height: 18px;
}

.coverage__content {
    max-width: 480px;
}

.coverage__title {
    font-family: var(--font-editorial);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.coverage__body {
    color: var(--gray-body);
    margin-bottom: var(--space-xl);
}

.countries-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs) var(--space-lg);
    list-style: none;
    margin-bottom: var(--space-xl);
}

.countries-list li {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--gray-body);
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--beige-warm);
    transition: all 0.2s;
}

.countries-list li:hover {
    color: var(--burgundy-power);
    padding-left: var(--space-sm);
}

/* ============================================
   FORM SECTION - The Contact
   ============================================ */
.form-section {
    padding: var(--space-4xl) 0;
    background: 
        linear-gradient(135deg, var(--paper-aged) 0%, var(--cream-classic) 100%);
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--black-power) 0%, transparent 100%);
    pointer-events: none;
}

.form-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .form-section__inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.form-section__content {
    max-width: 450px;
}

.form-section__title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.form-section__body {
    color: var(--gray-body);
    margin-bottom: var(--space-xl);
}

.form-section__list {
    list-style: none;
}

.form-section__list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--gray-body);
}

.form-section__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--burgundy-power);
    font-weight: 700;
    font-size: 1.2em;
}

/* Form Card */
.form-card {
    background: var(--paper-torn);
    padding: var(--space-2xl);
    position: relative;
    box-shadow: var(--shadow-float);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--burgundy-power);
}

.form-card__title {
    font-family: var(--font-editorial);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--beige-warm);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-body);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--black-power);
    background: var(--cream-classic);
    border: 1px solid var(--beige-warm);
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--burgundy-power);
    box-shadow: 0 0 0 3px rgba(84, 11, 14, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-note {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--gray-body);
    margin-top: var(--space-lg);
    text-align: center;
}

.form-note a {
    color: var(--burgundy-power);
    text-decoration: underline;
}

/* ============================================
   CLASSIFIED SECTION - The Ultimate Briefing
   ============================================ */
.classified-section {
    padding: var(--space-4xl) 0;
    background: var(--black-power);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Layers */
.classified-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.classified-bg__grain {
    position: absolute;
    inset: 0;
    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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.classified-bg__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 15% 20%, rgba(84, 11, 14, 0.4) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 80%, rgba(139, 115, 85, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(33, 37, 41, 0.8) 0%, transparent 70%);
}

.classified-bg__lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(240, 235, 216, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 235, 216, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.classified-bg__blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.classified-bg__blur--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: var(--burgundy-power);
    opacity: 0.15;
}

.classified-bg__blur--2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: var(--gold-subtle);
    opacity: 0.12;
}

/* Background Typography */
.classified-bg__typography {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.classified-bg__word {
    position: absolute;
    font-family: var(--font-display);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.015);
    line-height: 0.8;
    white-space: nowrap;
}

.classified-bg__word--1 {
    font-size: clamp(8rem, 20vw, 20rem);
    top: 10%;
    left: -5%;
    transform: rotate(-5deg);
}

.classified-bg__word--2 {
    font-size: clamp(6rem, 15vw, 15rem);
    bottom: 15%;
    right: -10%;
    transform: rotate(3deg);
}

.classified-bg__number {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(20rem, 50vw, 50rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.02);
    line-height: 0.8;
}

/* Section Header */
.classified-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.classified-header__line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 197, 178, 0.3), transparent);
    margin: var(--space-lg) 0;
}

.classified-header__content {
    padding: var(--space-xl) 0;
}

.classified-header__meta {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.classified-header__date,
.classified-header__edition {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--beige-warm);
    opacity: 0.7;
}

.classified-header__title {
    font-family: var(--font-editorial);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    color: var(--cream-classic);
    margin-bottom: var(--space-md);
}

.classified-header__title em {
    font-style: italic;
    color: var(--beige-warm);
}

.classified-header__deck {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--gray-body);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Grid */
.classified-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .classified-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
        align-items: start;
    }
}

/* ============================================
   DOSSIER FRAGMENT - Left Side
   ============================================ */
.dossier-fragment {
    position: relative;
}

.dossier-fragment__paper {
    background: var(--cream-classic);
    position: relative;
    padding: var(--space-2xl);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 100px rgba(0, 0, 0, 0.03);
    transform: rotate(-1deg);
}

.dossier-fragment__paper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%),
        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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

/* Torn edges */
.dossier-fragment__torn-top {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--cream-classic);
    clip-path: polygon(
        0% 50%, 2% 65%, 5% 45%, 8% 60%, 11% 42%, 14% 58%, 
        17% 48%, 20% 62%, 23% 45%, 26% 55%, 29% 48%, 32% 60%, 
        35% 42%, 38% 58%, 41% 50%, 44% 62%, 47% 45%, 50% 55%, 
        53% 48%, 56% 60%, 59% 42%, 62% 55%, 65% 50%, 68% 62%, 
        71% 45%, 74% 58%, 77% 48%, 80% 60%, 83% 42%, 86% 55%, 
        89% 50%, 92% 60%, 95% 45%, 98% 58%, 100% 50%, 
        100% 100%, 0% 100%
    );
}

.dossier-fragment__torn-bottom {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--cream-classic);
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 50%, 
        98% 40%, 95% 55%, 92% 42%, 89% 58%, 86% 45%, 
        83% 55%, 80% 40%, 77% 58%, 74% 45%, 71% 55%, 
        68% 40%, 65% 58%, 62% 48%, 59% 55%, 56% 40%, 
        53% 58%, 50% 45%, 47% 55%, 44% 40%, 41% 58%, 
        38% 48%, 35% 55%, 32% 40%, 29% 58%, 26% 45%, 
        23% 55%, 20% 40%, 17% 58%, 14% 48%, 11% 55%, 
        8% 40%, 5% 58%, 2% 45%, 0% 50%
    );
}

/* Header */
.dossier-fragment__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--black-power);
}

.dossier-fragment__classification {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dossier-fragment__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-body);
}

.dossier-fragment__code {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--black-power);
    letter-spacing: 0.1em;
}

/* Stamp */
.dossier-stamp {
    padding: 0.6em 1.2em;
    border: 3px solid var(--burgundy-power);
    color: var(--burgundy-power);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transform: rotate(8deg);
    opacity: 0.9;
    position: relative;
}

.dossier-stamp::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--burgundy-power);
    opacity: 0.4;
}

/* Body */
.dossier-fragment__body {
    position: relative;
    z-index: 1;
}

.dossier-fragment__title {
    font-family: var(--font-editorial);
    font-size: var(--text-2xl);
    color: var(--black-power);
    margin-bottom: var(--space-lg);
    position: relative;
}

.dossier-fragment__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--burgundy-power);
    margin-top: var(--space-sm);
}

.dossier-fragment__intro {
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: rgba(217, 197, 178, 0.2);
    border-left: 3px solid var(--burgundy-power);
}

.dossier-fragment__intro p {
    font-size: var(--text-sm);
    color: var(--ink-faded);
    line-height: 1.7;
}

.dossier-fragment__intro strong {
    color: var(--black-power);
    font-weight: 700;
}

/* Dossier List */
.dossier-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.dossier-list__item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--beige-warm);
    transition: all 0.3s var(--ease-power);
}

.dossier-list__item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    border-color: var(--burgundy-power);
}

.dossier-list__marker {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--burgundy-power);
    flex-shrink: 0;
    width: 30px;
}

.dossier-list__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dossier-list__content strong {
    font-family: var(--font-editorial);
    font-size: var(--text-base);
    color: var(--black-power);
}

.dossier-list__content span {
    font-size: var(--text-sm);
    color: var(--gray-body);
}

/* Footer */
.dossier-fragment__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--beige-warm);
}

.dossier-fragment__signature {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.dossier-fragment__signature-line {
    display: block;
    width: 150px;
    height: 1px;
    background: var(--black-power);
}

.dossier-fragment__signature-label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--gray-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dossier-fragment__seal {
    width: 50px;
    height: 50px;
    color: var(--burgundy-power);
    opacity: 0.6;
}

.dossier-fragment__seal svg {
    width: 100%;
    height: 100%;
}

/* Paper Clip */
.paper-clip {
    position: absolute;
    top: 20px;
    right: -15px;
    width: 40px;
    height: 100px;
    border: 3px solid #888;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    transform: rotate(15deg);
    z-index: 10;
}

.paper-clip::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 8px;
    width: 20px;
    height: 60px;
    border: 3px solid #888;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
}

/* ============================================
   BOOKING CARD - Right Side
   ============================================ */
.booking-card {
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
}

.booking-card__shadow {
    position: absolute;
    inset: 30px 0 0 30px;
    background: rgba(0, 0, 0, 0.3);
    filter: blur(30px);
}

.booking-card__layer {
    position: absolute;
    background: var(--paper-aged);
    border: 1px solid var(--beige-warm);
}

.booking-card__layer--1 {
    inset: 15px 5px 5px 15px;
    transform: rotate(2deg);
}

.booking-card__layer--2 {
    inset: 10px 10px 10px 10px;
    transform: rotate(-1deg);
}

.booking-card__main {
    position: relative;
    background: var(--cream-classic);
    border: 1px solid var(--beige-warm);
    overflow: hidden;
    z-index: 2;
}

.booking-card__main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.5) 0%, transparent 50%),
        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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.booking-card__accent {
    height: 6px;
    background: linear-gradient(90deg, 
        var(--burgundy-power) 0%, 
        var(--burgundy-power) 50%, 
        var(--gold-subtle) 100%
    );
}

/* Header */
.booking-card__header {
    padding: var(--space-xl);
    text-align: center;
}

.booking-card__badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.booking-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4em 1em;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1a5c2e;
    background: rgba(34, 100, 60, 0.1);
    border: 1px solid rgba(34, 100, 60, 0.3);
}

.booking-card__badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.booking-card__duration {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-body);
    padding: 0.4em 1em;
    border: 1px solid var(--beige-warm);
}

.booking-card__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--black-power);
    margin-bottom: var(--space-sm);
}

.booking-card__title span {
    color: var(--burgundy-power);
}

.booking-card__subtitle {
    font-family: var(--font-editorial);
    font-size: var(--text-base);
    font-style: italic;
    color: var(--gray-body);
}

/* Divider */
.booking-card__divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 0 var(--space-xl);
}

.booking-card__divider span {
    flex: 1;
    height: 1px;
    background: var(--beige-warm);
}

.booking-card__divider svg {
    color: var(--beige-warm);
}

/* Body */
.booking-card__body {
    padding: var(--space-xl);
}

.booking-card__description {
    font-size: var(--text-sm);
    color: var(--gray-body);
    text-align: center;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

/* ============================================
   CONSENT SIGNATURE COMPONENT
   ============================================ */
.consent-section {
    margin-bottom: var(--space-xl);
}

.consent-document {
    background: var(--paper-torn);
    border: 1px solid var(--beige-warm);
    position: relative;
    overflow: hidden;
}

.consent-document::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.consent-document__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--black-power);
    color: var(--cream-classic);
}

.consent-document__ref {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
}

.consent-document__type {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--beige-warm);
}

.consent-document__body {
    padding: var(--space-md);
    border-bottom: 1px solid var(--beige-warm);
}

.consent-document__text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    line-height: 1.7;
    color: var(--gray-body);
    margin: 0;
}

.consent-document__text strong {
    color: var(--black-power);
    font-weight: 600;
}

/* Signature Area */
.consent-signature {
    padding: var(--space-md);
    position: relative;
}

.consent-signature__label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-body);
}

.consent-signature__icon {
    color: var(--burgundy-power);
}

.consent-signature__pad {
    position: relative;
    height: 80px;
    background: var(--cream-classic);
    border: 1px dashed var(--beige-warm);
    cursor: crosshair;
    transition: all 0.3s var(--ease-power);
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .consent-signature__pad {
        height: 100px;
    }
}

.consent-signature__pad:hover {
    border-color: var(--burgundy-power);
    border-style: solid;
}

.consent-signature__pad:active {
    border-color: var(--burgundy-power);
    border-style: solid;
    background: rgba(84, 11, 14, 0.02);
}

.consent-signature__pad.is-signed {
    border-style: solid;
    border-color: var(--burgundy-power);
    background: rgba(84, 11, 14, 0.02);
}

#signature-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.consent-signature__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s;
}

.consent-signature__placeholder span {
    font-family: var(--font-editorial);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--beige-warm);
    opacity: 0.5;
}

.consent-signature__placeholder.is-hidden {
    opacity: 0;
}

.consent-signature__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-sm);
}

.consent-signature__clear {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.4em 0.8em;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-body);
    background: transparent;
    border: 1px solid var(--beige-warm);
    cursor: pointer;
    transition: all 0.3s;
}

.consent-signature__clear:hover {
    border-color: var(--burgundy-power);
    color: var(--burgundy-power);
}

.consent-signature__date {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--gray-body);
    opacity: 0;
    transition: opacity 0.3s;
}

.consent-signature__date.is-visible {
    opacity: 1;
}

/* Booking CTA States */
.booking-cta--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.booking-cta--disabled .booking-cta__bg {
    animation: none;
    background: var(--gray-body);
}

.booking-cta--enabled {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.booking-cta__lock {
    display: flex;
    transition: all 0.4s var(--ease-power);
}

.booking-cta--enabled .booking-cta__lock {
    opacity: 0;
    width: 0;
    margin: 0;
}

/* Booking CTA */
.booking-cta {
    display: block;
    width: 100%;
    padding: 1.3em 2em;
    position: relative;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background: var(--burgundy-power);
}

.booking-cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--burgundy-power) 0%, 
        #6B0F12 50%,
        var(--burgundy-power) 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.booking-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.booking-cta__text {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream-classic);
}

.booking-cta__arrow {
    display: flex;
    color: var(--cream-classic);
    transition: transform 0.4s var(--ease-power);
}

.booking-cta:hover .booking-cta__arrow {
    transform: translateX(8px);
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.booking-cta:hover::before {
    left: 100%;
}

.booking-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(84, 11, 14, 0.5);
}

.booking-card__note {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--gray-body);
    text-align: center;
    margin-top: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
.booking-card__footer {
    padding: var(--space-lg) var(--space-xl);
    background: var(--paper-aged);
    border-top: 1px solid var(--beige-warm);
}

.booking-card__meta-row {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.booking-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--gray-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-card__meta-item svg {
    color: var(--burgundy-power);
}

/* ============================================
   CLASSIFIED CLIPPING - Bottom Quote
   ============================================ */
.classified-clipping {
    margin-top: var(--space-3xl);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.classified-clipping__paper {
    max-width: 700px;
    background: var(--paper-torn);
    padding: var(--space-xl) var(--space-2xl);
    position: relative;
    transform: rotate(1deg);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.02);
}

.classified-clipping__paper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.classified-clipping__content {
    position: relative;
    z-index: 1;
}

.classified-clipping__quote {
    font-family: var(--font-editorial);
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.6;
    color: var(--ink-faded);
    margin-bottom: var(--space-md);
    position: relative;
}

.classified-clipping__quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: var(--font-editorial);
    font-size: 4rem;
    color: var(--burgundy-power);
    opacity: 0.2;
    line-height: 1;
}

.classified-clipping__source {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--beige-warm);
}

.classified-clipping__author {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black-power);
    font-weight: 500;
}

.classified-clipping__location {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--gray-body);
}

/* Tape effect */
.classified-clipping__tape {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 120px;
    height: 30px;
    background: rgba(255, 255, 200, 0.6);
    border: 1px solid rgba(200, 180, 100, 0.3);
    z-index: 3;
}

.classified-clipping__tape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 4px,
        rgba(0,0,0,0.03) 4px,
        rgba(0,0,0,0.03) 5px
    );
}

/* ============================================
   BUTTONS - The CTAs
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75em;
    padding: 1em 2em;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-power);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 0.1;
}

.btn--primary {
    color: var(--cream-classic);
    background: var(--black-power);
    border: 2px solid var(--black-power);
}

.btn--primary:hover {
    background: var(--nyt-dark);
    border-color: var(--nyt-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 13, 13, 0.3);
}

.btn--outline {
    color: var(--black-power);
    background: transparent;
    border: 2px solid var(--black-power);
}

.btn--outline:hover {
    background: var(--black-power);
    color: var(--cream-classic);
}

.btn--accent {
    color: var(--cream-classic);
    background: var(--burgundy-power);
    border: 2px solid var(--burgundy-power);
}

.btn--accent:hover {
    background: #6B0F12;
    border-color: #6B0F12;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(84, 11, 14, 0.3);
}

.btn--ghost {
    color: var(--gray-body);
    background: transparent;
    border: 1px solid var(--beige-warm);
}

.btn--ghost:hover {
    border-color: var(--black-power);
    color: var(--black-power);
}

/* ============================================
   FOOTER - The Colophon
   ============================================ */
.footer {
    background: var(--black-power);
    color: var(--gray-body);
    padding: var(--space-4xl) 0 var(--space-2xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--burgundy-power), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-classic);
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--gray-body);
}

.footer__title {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--beige-warm);
    margin-bottom: var(--space-lg);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    font-size: var(--text-sm);
    color: var(--gray-body);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.footer__links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy-power);
    transition: width 0.3s;
}

.footer__links a:hover {
    color: var(--cream-classic);
}

.footer__links a:hover::before {
    width: 100%;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 600px) {
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

/* Diagonal stripe */
.stripe-deco {
    position: absolute;
    width: 200%;
    height: 60px;
    background: repeating-linear-gradient(
        45deg,
        var(--beige-warm) 0px,
        var(--beige-warm) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.5;
    pointer-events: none;
}

/* Circle decoration */
.circle-deco {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--beige-warm);
    opacity: 0.3;
    pointer-events: none;
}

/* Crosshair */
.crosshair {
    position: relative;
}

.crosshair::before,
.crosshair::after {
    content: '';
    position: absolute;
    background: var(--burgundy-power);
    opacity: 0.3;
}

.crosshair::before {
    width: 1px;
    height: 40px;
    top: -20px;
    left: 50%;
}

.crosshair::after {
    width: 40px;
    height: 1px;
    left: calc(50% - 20px);
    top: 0;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Blur backgrounds */
.blur-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.blur-spot--burgundy {
    background: var(--burgundy-power);
    opacity: 0.1;
}

.blur-spot--gold {
    background: var(--gold-subtle);
    opacity: 0.15;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-power), transform 0.8s var(--ease-power);
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-power), transform 0.8s var(--ease-power);
}

.reveal--left.reveal--visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-power), transform 0.8s var(--ease-power);
}

.reveal--right.reveal--visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal--scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--ease-power), transform 0.8s var(--ease-power);
}

.reveal--scale.reveal--visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays */
[data-stagger-item]:nth-child(1) { transition-delay: 0s; }
[data-stagger-item]:nth-child(2) { transition-delay: 0.1s; }
[data-stagger-item]:nth-child(3) { transition-delay: 0.2s; }
[data-stagger-item]:nth-child(4) { transition-delay: 0.3s; }
[data-stagger-item]:nth-child(5) { transition-delay: 0.4s; }
[data-stagger-item]:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    :root {
        --gutter: 1.25rem;
        --space-4xl: 6rem;
        --space-3xl: 4rem;
    }
    
    .hero__visual {
        order: -1;
    }
    
    .hero__image-frame {
        transform: none;
    }
    
    .stats-bar__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .grain::before {
        animation: none;
    }
    
    .reveal,
    .reveal--left,
    .reveal--right,
    .reveal--scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
    }
}
