/* ═══════════════════════════════════════════════════════════════════════════════
   EPISODE ONE — LEGAL PAGES
   legal.css
   ═══════════════════════════════════════════════════════════════════════════════ */

.legal-page {
    background: #111;
    min-height: 100vh;
    padding-bottom: 100px;
}

.legal-header {
    background: #1a1a1a;
    border-bottom: 1px solid #242424;
    padding: 52px 0 40px;
}

.legal-header-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 8px;
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: #f0ece4;
    line-height: 1.1;
    margin-bottom: 8px;
}

.legal-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #444;
}

.legal-body {
    padding: 48px 0 0;
}

.legal-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #f0ece4;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #1e1e1e;
}

.legal-section p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: #D4AF37;
    text-decoration: none;
}

.legal-section strong {
    color: #ccc;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-header-inner,
    .legal-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .legal-title {
        font-size: 1.8rem;
    }
}

/* ── Archive grid ────────────────────────────────────────────────────────────── */
.archive-grid {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 40px 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #242424;
    border: 1px solid #242424;
}

.archive-card {
    background: #1a1a1a;
    padding: 36px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.15s;
    position: relative;
}

.archive-card:hover {
    background: #1e1e1e;
    text-decoration: none;
}

.archive-card:hover .archive-card-arrow {
    transform: translateX(4px);
    color: #D4AF37;
}

.archive-card-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D4AF37;
}

.archive-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #f0ece4;
    line-height: 1.2;
}

.archive-card-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
}

.archive-card-arrow {
    font-size: 16px;
    color: #444;
    transition: transform 0.2s, color 0.2s;
    align-self: flex-end;
}

@media (max-width: 768px) {
    .archive-grid {
        grid-template-columns: 1fr;
        padding: 32px 20px 60px;
    }

    .archive-card {
        padding: 28px 20px;
    }
}
/* ── Light page variant ──────────────────────────────────────────────────────── */
.legal-page--light {
    background: #f5f1ea;
    min-height: 100vh;
}

.legal-page--light .legal-header {
    background: #ede9e1;
    border-bottom: 1px solid #ddd8ce;
}

.legal-page--light .legal-eyebrow {
    color: #B8960C;
}

.legal-page--light .legal-title {
    color: #1a1a1a;
}

.legal-page--light .legal-subtitle {
    color: #888;
}

.legal-page--light .archive-grid {
    background: #ddd8ce;
}

.legal-page--light .archive-card {
    background: #f5f1ea;
}

.legal-page--light .archive-card:hover {
    background: #ede9e1;
}

.legal-page--light .archive-card-title {
    color: #1a1a1a;
}

.legal-page--light .archive-card-desc {
    color: #666;
}

.legal-page--light .archive-card-arrow {
    color: #bbb;
}
.archive-card--gold {
    border-left: 2px solid #D4AF37;
}

.legal-page--light .archive-card--gold {
    background: #fdf8ee;
}

.legal-page--light .archive-card--gold:hover {
    background: #faf3e0;
}
