/* ═══════════════════════════════════════════
   LONG ARC STUDIO — style.css v3
   Modern, lighter palette with dark hero
   ═══════════════════════════════════════════ */

:root {
    --charcoal: #1A1A2E;
    --dark: #0F1923;
    --darker: #0A1219;
    --surface: #F8F7F4;
    --surface-alt: #EFEDE8;
    --surface-card: #FFFFFF;
    --orange: #D4663A;
    --orange-light: rgba(212, 102, 58, 0.08);
    --orange-glow: rgba(212, 102, 58, 0.12);
    --gold: #C5A059;
    --gold-light: rgba(197, 160, 89, 0.08);
    --gold-glow: rgba(197, 160, 89, 0.12);
    --white: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A5A;
    --text-muted: #8A8A9A;
    --text-light: #B0B0B0;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-dark: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--surface);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══ ANIMATIONS ═══ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ NAV ═══ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.nav.scrolled .nav-logo { color: var(--text-primary); }
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover { color: var(--text-primary); }
.nav.scrolled .nav-toggle { color: var(--text-primary); }

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    padding: 7px 16px !important;
    border-radius: var(--radius-xs) !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    transition: transform 0.2s, background 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta--adrian {
    background: var(--orange) !important;
    color: var(--white) !important;
}
.nav-cta--adrian:hover { background: #c55a30 !important; }
.nav-cta--elara {
    background: var(--gold) !important;
    color: var(--dark) !important;
}
.nav-cta--elara:hover { background: #b8923e !important; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
}

/* ═══ HERO (dark, cinematic) ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-image-wrap {
    position: absolute;
    inset: 0;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 25, 35, 0.25) 0%,
        rgba(15, 25, 35, 0.45) 35%,
        rgba(15, 25, 35, 0.8) 70%,
        var(--dark) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-title--accent {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}
.hero-scroll {
    margin-top: 48px;
}
.hero-scroll a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
    animation: bob 2s ease-in-out infinite;
    display: inline-block;
}
.hero-scroll a:hover { color: rgba(255, 255, 255, 0.7); }
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ═══ SECTION HEADERS ═══ */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.section-sub {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 48px;
}
/* Dark section variants */
.dark-section .section-eyebrow { color: var(--text-light); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255, 255, 255, 0.6); }

/* ═══ DUAL PERSPECTIVE (light) ═══ */
.perspective {
    padding: 100px 0 80px;
    background: var(--surface);
}
.perspective-pair {
    margin-bottom: 40px;
}
.perspective-headline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--surface-alt);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
    border: 1px solid var(--border-light);
}
.perspective-headline i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    margin-top: 3px;
}
.perspective-takes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.take {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.take:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.take--adrian { border-left: 3px solid var(--orange); }
.take--adrian:hover { border-color: var(--orange); }
.take--elara { border-left: 3px solid var(--gold); }
.take--elara:hover { border-color: var(--gold); }

.take-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.take--adrian .take-badge {
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
}
.take--elara .take-badge {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
.take-quote {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 18px;
}
.take-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.take-link:hover { opacity: 0.8; }
.take--adrian .take-link { color: var(--orange); }
.take--elara .take-link { color: var(--gold); }
.take-link i { width: 16px; height: 16px; }

/* ═══ THE SHOWS (slightly darker surface) ═══ */
.shows {
    padding: 80px 0 100px;
    background: var(--surface-alt);
}
.shows .section-title {
    margin-bottom: 40px;
}
.shows-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.show-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s, box-shadow 0.25s;
}
.show-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.show-card-accent { height: 4px; }
.show-card--adrian .show-card-accent { background: linear-gradient(90deg, var(--orange), #e8784c); }
.show-card--elara .show-card-accent { background: linear-gradient(90deg, var(--gold), #d9b86a); }
.show-card-body { padding: 32px; }
.show-name { font-size: 1.5rem; margin-bottom: 2px; }
.show-name--adrian {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.04em;
}
.show-name--elara {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
}
.show-host {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.show-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.show-thumb {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
}
.show-thumb a { display: block; }
.show-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.show-thumb:hover img { transform: scale(1.03); }
.show-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s;
}
.show-thumb:hover .show-thumb-play { opacity: 1; }
.show-thumb-play i {
    width: 48px;
    height: 48px;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.show-stats {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.show-links {
    display: flex;
    align-items: center;
    gap: 10px;
}
.show-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-xs);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.show-btn:hover { transform: translateY(-1px); }
.show-btn--adrian {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(212, 102, 58, 0.25);
}
.show-btn--adrian:hover { box-shadow: 0 4px 16px rgba(212, 102, 58, 0.35); }
.show-btn--elara {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.25);
}
.show-btn--elara:hover { box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35); }
.show-btn i { width: 18px; height: 18px; }
.show-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.show-btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
    background: var(--surface-alt);
}
.show-btn-secondary i { width: 18px; height: 18px; }

/* ═══ CREDIBILITY STRIP (dark) ═══ */
.credibility {
    padding: 36px 0;
    background: var(--charcoal);
}
.credibility-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.credibility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.credibility-item i {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}
.credibility-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
}

/* ═══ ORIGIN (light) ═══ */
.origin {
    padding: 100px 0;
    background: var(--surface);
}
.origin-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.origin-text {
    margin-bottom: 32px;
}
.origin-text p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}
.origin-text em {
    color: var(--text-primary);
    font-style: italic;
}
.origin-book-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.origin-book-link:hover {
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.origin-book-link i { width: 18px; height: 18px; }

/* ═══ NEWSLETTER (accent bg) ═══ */
.newsletter {
    padding: 80px 0;
    background: var(--surface-alt);
}
.newsletter-card {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 40px;
    background: var(--surface-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}
.newsletter-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.newsletter-sub {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 28px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 380px;
    margin: 0 auto;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-light);
    background: var(--surface);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
}
.newsletter-btn {
    padding: 12px 24px;
    border-radius: var(--radius-xs);
    border: none;
    background: var(--text-muted);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 600;
    font-family: inherit;
    cursor: default;
    opacity: 0.5;
}

/* ═══ DISCLOSURE (dark) ═══ */
.disclosure {
    padding: 44px 0;
    background: var(--charcoal);
}
.disclosure-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}
.disclosure-content > i {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    margin-top: 2px;
}
.disclosure-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}
.disclosure-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* ═══ FOOTER (dark) ═══ */
.footer {
    padding: 56px 0 28px;
    background: var(--darker);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
}
.footer-logo {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}
.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .perspective-takes { grid-template-columns: 1fr; }
    .shows-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .credibility-divider { display: none; }
    .credibility-items { flex-direction: column; gap: 14px; }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }
    .nav-links a { color: var(--text-secondary) !important; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero-content { padding: 100px 20px 60px; }
    .hero-sub br { display: none; }
    .perspective { padding: 72px 0 60px; }
    .perspective-headline { font-size: 0.9rem; }
    .take { padding: 20px; }
    .show-card-body { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-card { padding: 32px 24px; }
    .origin { padding: 72px 0; }
}
