/**
 * Rennes-le-Château - Main Stylesheet
 * 
 * Design: Dark mysterious aesthetic with gold accents
 * Inspired by ancient manuscripts and occult typography
 */

/* =============================================================================
   CSS VARIABLES
   ============================================================================= */

:root {
    /* Colors */
    --black: #0a0a0a;
    --black-soft: #0f0f0f;
    --dark: #1a1d23;
    --dark-light: #252830;
    --dark-lighter: #2f333d;
    
    --gold: #d4af37;
    --gold-light: #e8d48a;
    --gold-dark: #a68a2a;
    --gold-muted: #8b7355;
    
    --cream: #f5f0e6;
    --cream-dark: #e8e0d0;
    
    --text: #e8e8e8;
    --text-muted: #9a9a9a;
    --text-faint: #666;
    
    --error: #c0392b;
    --success: #27ae60;
    
    /* Typography */
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Libre Baskerville', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 60px;
    --space-3xl: 100px;
    
    /* Layout */
    --max-width: 1400px;
    --header-height: 80px;
    --header-height-mobile: 60px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Copy Protection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Allow clicks on gallery and article images */
.gallery-grid img,
.gallery-image,
.gallery-image img,
.article-content img,
.lightbox-content img,
#lightbox-image,
#article-lightbox-image,
a img {
    pointer-events: auto;
    cursor: pointer;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    background: var(--black);
    min-height: 100vh;
    overflow-x: hidden;
    overscroll-behavior: none;
}

/* Background texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

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

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    color: var(--cream);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.04em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    letter-spacing: 0.03em;
}

h4 {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* =============================================================================
   HEADER
   ============================================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
}

.header-inner {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--gold);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
    color: var(--gold);
}

.logo-cross {
    font-size: 1.5rem;
    opacity: 0.7;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }
    
    .logo-cross {
        font-size: 1.2rem;
    }
    
    .logo {
        gap: var(--space-sm);
    }
}

/* =============================================================================
   MAIN NAVIGATION
   ============================================================================= */

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 28px 16px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-item:hover .nav-link,
.nav-link.is-active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-item:hover .nav-link::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

/* Hide dropdown arrows */
.nav-arrow {
    display: none;
}

/* Timeline nav - gold by default, white on hover */
.nav-link--timeline {
    color: var(--gold);
}

.nav-link--timeline::after {
    background: var(--text);
}

.nav-link--timeline:hover,
.nav-item--timeline:hover .nav-link--timeline {
    color: var(--text);
}

/* =============================================================================
   MEGA MENU - Compact Dropdown
   ============================================================================= */

.mega-menu {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 95vw;
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    align-items: stretch;
}

.mega-column {
    min-width: 130px;
    max-width: 160px;
    display: flex;
    flex-direction: column;
}

.mega-column-title {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 6px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 2.4em;
    display: flex;
    align-items: flex-end;
}

.mega-column-subtitle {
    margin-top: 16px;
}

.mega-column-list {
    list-style: none;
}

.mega-column-list li {
    margin-bottom: 0;
}

.mega-column-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #aaa;
    border-radius: 3px;
    transition: all var(--transition-fast);
    line-height: 1.3;
}

.mega-column-list a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
}

.mega-arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.mega-column-list a:hover .mega-arrow {
    opacity: 0.6;
    transform: translateX(0);
}

/* =============================================================================
   SEARCH
   ============================================================================= */

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.search-toggle:hover {
    color: var(--gold);
}

.search-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: var(--space-xl);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: var(--space-md);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text);
    transition: border-color var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-input::placeholder {
    color: var(--text-faint);
}

.search-submit {
    padding: 15px 25px;
    background: var(--gold);
    border: none;
    color: var(--black);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-submit:hover {
    background: var(--gold-light);
}

/* =============================================================================
   SEARCH PAGE
   ============================================================================= */

.search-page {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

.search-page-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.search-page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-xl);
}

.search-page-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrap {
    display: flex;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    background: var(--dark);
}

.search-page-input {
    flex: 1;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: transparent;
    border: none;
    outline: none;
}

.search-page-input::placeholder {
    color: var(--text-faint);
}

.search-page-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-page-submit:hover {
    background: var(--gold-light);
}

.search-page-submit svg {
    flex-shrink: 0;
}

.search-message {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.search-hint {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-faint);
}

.search-stats {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.search-result {
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result:last-child {
    border-bottom: none;
}

.search-result h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.search-result h2 a {
    color: var(--cream);
    transition: color var(--transition-fast);
}

.search-result h2 a:hover {
    color: var(--gold);
}

.search-result-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.search-result-category a {
    color: var(--gold-muted);
}

.search-result-category a:hover {
    color: var(--gold);
}

.search-result-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.search-result-excerpt mark {
    background: rgba(212, 175, 55, 0.25);
    color: var(--gold-light);
    padding: 0 2px;
    border-radius: 2px;
}

.search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.pagination-prev,
.pagination-next {
    font-size: 0.9rem;
    color: var(--gold);
}

.pagination-prev:hover,
.pagination-next:hover {
    color: var(--gold-light);
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.search-suggestions {
    text-align: center;
}

.search-suggestions p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.search-suggestions ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

.search-suggestions a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.search-suggestions a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

@media (max-width: 600px) {
    .search-input-wrap {
        flex-direction: column;
    }
    
    .search-page-submit {
        justify-content: center;
    }
    
    .search-pagination {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* =============================================================================
   MOBILE NAVIGATION
   ============================================================================= */

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 998;
}

@media (min-width: 768px) {
    .mobile-nav-overlay {
        top: var(--header-height);
    }
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: var(--space-lg);
}

.mobile-nav-section {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    color: var(--text);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

/* Timeline standalone link in mobile nav */
a.mobile-nav-link {
    text-decoration: none;
}

.mobile-nav-arrow {
    transition: transform var(--transition-fast);
}

.mobile-nav-toggle.active .mobile-nav-arrow {
    transform: rotate(180deg);
}

.mobile-nav-dropdown {
    display: none;
    padding-bottom: var(--space-lg);
}

.mobile-nav-dropdown.active {
    display: block;
}

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

.mobile-nav-group h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.mobile-nav-group ul {
    list-style: none;
}

.mobile-nav-group a {
    display: block;
    padding: var(--space-sm) 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.mobile-nav-group a:hover {
    color: var(--gold);
}

/* =============================================================================
   MAIN CONTENT
   ============================================================================= */

.site-main {
    position: relative;
    z-index: 1;
    padding-top: var(--header-height);
    min-height: calc(100vh - 300px);
}

@media (max-width: 767px) {
    .site-main {
        padding-top: var(--header-height-mobile);
    }
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    padding: var(--space-xl);
    max-width: 800px;
}

.hero-content h1 {
    color: var(--cream);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline page hero */
.hero-timeline {
    height: 50vh;
    min-height: 350px;
}

.hero-timeline .hero-bg {
    object-position: center 25%;
}

/* Interviews page hero */
.hero-interviews {
    height: 50vh;
    min-height: 350px;
}

.hero-interviews .hero-bg {
    object-position: center 30%;
}

.interviews-intro {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =============================================================================
   CONTENT SECTIONS
   ============================================================================= */

.content-section {
    position: relative;
    z-index: 10;
    background: var(--black);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

/* Full-width background wrapper for pages with fixed hero */
.page-content {
    position: relative;
    z-index: 10;
    background: var(--black);
    padding-bottom: var(--space-3xl);
}

.page-content .content-section {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Divider */
.divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: var(--space-xl) auto;
}

/* =============================================================================
   ARTICLE CONTENT
   ============================================================================= */

.article-content {
    position: relative;
    z-index: 10;
    background: var(--black);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.article-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.article-header h1 {
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-faint);
    letter-spacing: 0.05em;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.85;
}

.article-body h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    color: var(--gold);
}

.article-body h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.article-body img {
    margin: var(--space-xl) 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: auto;
}

/* WordPress alignment classes */
.article-body .alignleft {
    float: left;
    margin: 0.5em var(--space-lg) var(--space-md) 0;
    max-width: 50%;
}

.article-body .alignright {
    float: right;
    margin: 0.5em 0 var(--space-md) var(--space-lg);
    max-width: 50%;
}

.article-body .aligncenter {
    display: block;
    margin: var(--space-xl) auto;
}

.article-body .alignnone {
    display: block;
    margin: var(--space-lg) 0;
}

/* =============================================================================
   PHOTO CAPTIONS
   ============================================================================= */

/* Figure/caption containers */
.article-body figure.caption,
.article-body .wp-caption {
    max-width: 100%;
    margin: var(--space-xl) 0;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    overflow: hidden;
}

.article-body figure.caption img,
.article-body .wp-caption img {
    display: block;
    width: 100%;
    height: auto;
}

/* Caption text */
.article-body figure.caption figcaption,
.article-body .wp-caption-text {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    padding: 10px 12px;
    text-align: center;
    line-height: 1.5;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(0, 0, 0, 0.15);
}

/* Alignment: left */
.article-body figure.caption.alignleft,
.article-body .wp-caption.alignleft {
    float: left;
    margin: 0.25em var(--space-lg) var(--space-md) 0;
}

/* Alignment: right */
.article-body figure.caption.alignright,
.article-body .wp-caption.alignright {
    float: right;
    margin: 0.25em 0 var(--space-md) var(--space-lg);
}

/* Alignment: center */
.article-body figure.caption.aligncenter,
.article-body .wp-caption.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

/* Alignment: none (block) */
.article-body figure.caption.alignnone,
.article-body .wp-caption.alignnone {
    display: block;
}

/* Clear floats after article sections */
.article-body p::after {
    content: "";
    display: table;
    clear: both;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    clear: both;
}

/* Mobile: stack images */
@media (max-width: 600px) {
    .article-body .alignleft,
    .article-body .alignright,
    .article-body figure.caption.alignleft,
    .article-body figure.caption.alignright,
    .article-body .wp-caption.alignleft,
    .article-body .wp-caption.alignright {
        float: none;
        max-width: 100% !important;
        margin: var(--space-lg) 0;
    }
}


.article-body blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
    font-style: italic;
}

/* =============================================================================
   CARDS / GRID
   ============================================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.card {
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-lg);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.site-footer {
    position: relative;
    z-index: 10;
    background: var(--dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: var(--space-3xl);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

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

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-cross {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    display: block;
    padding: var(--space-xs) 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-faint);
}

.footer-latin {
    font-size: 0.85rem;
    color: var(--gold-muted);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* =============================================================================
   UTILITIES
   ============================================================================= */

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================================================
   ARTIST BAR (when logged in)
   ============================================================================= */

body.artist-mode {
    padding-bottom: 50px;
}

/* =============================================================================
   GALLERY SYSTEM
   ============================================================================= */

/* Gallery Index Page */
.gallery-index {
    max-width: 1400px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery-header h1 {
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.gallery-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Gallery View Page */
.gallery-view {
    max-width: 1400px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

.gallery-view-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery-view-header h1 {
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.gallery-description {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

.gallery-count {
    font-size: 0.85rem;
    color: var(--gold-muted);
    letter-spacing: 0.05em;
}

.gallery-nav {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-back {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9rem;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all var(--transition-fast);
}

.btn-back:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.no-galleries,
.no-images {
    text-align: center;
    color: var(--text-muted);
    padding: var(--space-3xl) var(--space-lg);
}

/* Gallery Images (Single Gallery Page) */
.gallery-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
}

@media (max-width: 1200px) {
    .gallery-images {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-image {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-light);
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: all var(--transition-normal);
}

.gallery-image:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Gallery Card Placeholder */
.gallery-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
}

/* Gallery Card Info */
.gallery-card-info {
    padding: var(--space-md);
}

.gallery-card-info h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.gallery-card-info .gallery-card-count {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Gallery Hero */
.gallery-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-2xl);
    text-align: center;
    background: linear-gradient(to bottom, var(--dark) 0%, var(--black) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-hero-single {
    padding-bottom: var(--space-xl);
}

.gallery-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero h1 {
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.gallery-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gallery-breadcrumb {
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.gallery-breadcrumb a {
    color: var(--text-muted);
}

.gallery-breadcrumb a:hover {
    color: var(--gold);
}

.gallery-breadcrumb span {
    color: var(--text-faint);
    margin: 0 var(--space-sm);
}

.gallery-breadcrumb span:last-child {
    color: var(--text);
    margin-right: 0;
}

.gallery-meta {
    display: inline-block;
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Gallery Grid (Index Page) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Gallery Card */
.gallery-card {
    display: block;
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-decoration: none;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.gallery-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.gallery-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--dark-light);
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.05);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-count {
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.gallery-card-content {
    padding: var(--space-md);
}

.gallery-card-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.gallery-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Gallery Images Grid (Single Gallery) */
.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

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

@media (max-width: 768px) {
    .gallery-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .gallery-images-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-image-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-light);
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: all var(--transition-normal);
}

.gallery-image-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-image-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: var(--space-md);
    padding: 0 var(--space-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
}

.lightbox-counter {
    position: absolute;
    top: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-faint);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    padding: var(--space-md);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
}

.lightbox-close {
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    line-height: 1;
}

.lightbox-prev {
    left: var(--space-md);
}

.lightbox-next {
    right: var(--space-md);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
    }
    
    .lightbox-close {
        font-size: 2rem;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
}

/* =============================================================================
   INLINE GALLERIES (in articles)
   ============================================================================= */

.inline-gallery {
    margin: var(--space-xl) 0;
    clear: both;
}

.inline-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xs);
}

@media (max-width: 900px) {
    .inline-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .inline-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inline-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-light);
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: all var(--transition-normal);
}

.inline-gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.inline-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.inline-gallery-item:hover img {
    transform: scale(1.05);
}

.inline-gallery-link {
    margin-top: var(--space-md);
    text-align: center;
    font-size: 0.9rem;
}

.inline-gallery-link a {
    color: var(--gold);
}

.inline-gallery-link a:hover {
    color: var(--gold-light);
}

/* Single Gallery Image (from singlepic shortcode) */
.single-gallery-image {
    margin: var(--space-xl) 0;
    text-align: center;
}

.single-gallery-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.single-gallery-image figcaption {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* =============================================================================
   CINEMATIC HOMEPAGE
   ============================================================================= */

/* Hero Section */
.cinema-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cinema-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cinema-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.cinema-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.cinema-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.cinema-hero-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.cinema-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--gold);
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.cinema-hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 40px;
    letter-spacing: 0.03em;
}

.cinema-btn {
    display: inline-block;
    padding: 16px 48px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    background: var(--gold);
    border: none;
    transition: all 0.3s ease;
}

.cinema-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cinema-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.cinema-btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.cinema-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Content Sections */
.cinema-section {
    position: relative;
    padding: 120px 24px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-section-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cinema-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cinema-section-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.cinema-section-alt .cinema-section-overlay {
    background: linear-gradient(
        -135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(26, 29, 35, 0.9) 100%
    );
}

.cinema-section-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
}

.cinema-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cinema-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.8;
}

.cinema-section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 15px 0;
    letter-spacing: 0.03em;
}

.cinema-section-header p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Article Cards */
.cinema-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.cinema-card {
    display: block;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cinema-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.cinema-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 12px 0;
}

.cinema-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.cinema-card-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0.8;
}

.cinema-card:hover .cinema-card-link {
    opacity: 1;
}

.cinema-section-link {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.cinema-section-link:hover {
    opacity: 1;
}

/* Visual Break */
.cinema-visual {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-visual-image {
    position: absolute;
    inset: 0;
}

.cinema-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinema-visual-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
}

.cinema-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.cinema-visual blockquote {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: var(--cream);
    margin: 0;
    max-width: 700px;
}

.cinema-visual cite {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gold);
    opacity: 0.7;
}

/* Timeline Teaser */
.cinema-timeline {
    padding: 100px 24px;
    background: var(--dark);
    text-align: center;
}

.cinema-timeline-header {
    margin-bottom: 60px;
}

.cinema-timeline-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--cream);
    margin: 0 0 10px 0;
}

.cinema-timeline-header p {
    color: var(--text-muted);
}

.cinema-timeline-events {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.cinema-timeline-event {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cinema-timeline-event .year {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

.cinema-timeline-event .event {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 180px;
}

/* Explore Grid */
.cinema-explore {
    padding: 0;
}

.cinema-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cinema-explore-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    text-decoration: none;
}

.cinema-explore-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cinema-explore-card:hover img {
    transform: scale(1.1);
}

.cinema-explore-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.3) 100%
    );
    transition: background 0.3s;
}

.cinema-explore-card:hover .cinema-explore-overlay {
    background: linear-gradient(
        to top,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 100%
    );
}

.cinema-explore-card h3,
.cinema-explore-card p {
    position: absolute;
    left: 24px;
    right: 24px;
    z-index: 2;
    margin: 0;
}

.cinema-explore-card h3 {
    bottom: 50px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
}

.cinema-explore-card p {
    bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Ad Zones */
.ad-zone {
    padding: 30px 24px;
    background: var(--black);
}

.ad-zone-between {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.ad-container {
    max-width: 728px;
    margin: 0 auto;
    text-align: center;
}

.ad-placeholder {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    color: var(--text-faint);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Closing */
.cinema-closing {
    padding: 80px 24px;
    text-align: center;
    background: var(--black);
}

.cinema-latin {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.6;
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
}

.cinema-translation {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .cinema-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cinema-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cinema-hero {
        min-height: 100vh;
    }
    
    .cinema-section {
        padding: 80px 20px;
        min-height: auto;
    }
    
    .cinema-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cinema-card {
        padding: 24px;
    }
    
    .cinema-timeline-events {
        flex-direction: column;
        gap: 30px;
    }
    
    .cinema-timeline-event .year {
        font-size: 1.5rem;
    }
    
    .cinema-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cinema-explore-card {
        aspect-ratio: 4/3;
    }
    
    .cinema-scroll-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .cinema-explore-grid {
        grid-template-columns: 1fr;
    }
    
    .cinema-explore-card {
        aspect-ratio: 16/9;
    }
}
/* =============================================================================
   INTERVIEWS PAGE
   ============================================================================= */

.interviews-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

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

.interviews-header h1 {
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.interviews-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.interviews-featured,
.interviews-all,
.interviews-specials {
    margin-bottom: var(--space-3xl);
}

.interviews-featured h2,
.interviews-all h2,
.interviews-specials h2 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

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

.interview-card {
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: var(--space-lg);
}

.interview-card--featured {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.interview-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.interview-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: var(--space-sm) 0 var(--space-md);
}

.interviews-filter {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.interview-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.interview-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg);
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition-fast);
}

.interview-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

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

.interview-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.interview-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.interview-date {
    font-size: 0.8rem;
    color: var(--gold-muted);
}

.interview-lang {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.interview-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Audio Player Styling */
.interview-item audio,
.interview-card audio {
    width: 100%;
    max-width: 300px;
    height: 40px;
}

audio::-webkit-media-controls-panel {
    background: var(--dark-light);
}

.interviews-about {
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
}

.interviews-about h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.interviews-about p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================================================
   INTERVIEWS PAGE
   ============================================================================= */

.interviews-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

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

.interviews-header h1 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.interviews-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.interviews-featured {
    margin-bottom: var(--space-3xl);
}

.interviews-featured h2,
.interviews-section h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.interview-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    transition: border-color var(--transition-fast);
}

.interview-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.interview-card--featured {
    background: linear-gradient(135deg, var(--dark) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.2);
    padding: var(--space-xl);
}

.interview-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.interview-card--featured h3 {
    font-size: 1.5rem;
    color: var(--gold);
}

.interview-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-muted);
    margin-bottom: var(--space-sm);
}

.interview-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.interview-player audio {
    width: 100%;
    height: 40px;
    border-radius: 4px;
}

/* Custom Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.audio-play-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.audio-play-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.audio-play-btn svg {
    width: 18px;
    height: 18px;
    color: var(--black);
}

.audio-play-btn .icon-pause {
    display: none;
}

.audio-player.playing .audio-play-btn .icon-play {
    display: none;
}

.audio-player.playing .audio-play-btn .icon-pause {
    display: block;
}

.audio-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.audio-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 3px;
    transition: width 0.1s linear;
}

.audio-time {
    font-size: 0.75rem;
    font-family: var(--font-mono), monospace;
    color: var(--text-muted);
    min-width: 90px;
    text-align: right;
}

@media (max-width: 480px) {
    .audio-player {
        flex-wrap: wrap;
    }
    
    .audio-progress {
        order: 3;
        width: 100%;
        margin-top: 8px;
    }
    
    .audio-time {
        order: 2;
    }
}

.interviews-filter {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.interviews-grid--small {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .interviews-grid,
    .interviews-grid--small {
        grid-template-columns: 1fr;
    }
}

.interviews-section {
    margin-bottom: var(--space-3xl);
}

/* =============================================================================
   VIDEO / DOCUMENTARIES PAGE
   ============================================================================= */

.video-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

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

.video-header h1 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.video-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.video-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card:last-of-type {
    border-bottom: none;
}

.video-card--featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    padding: var(--space-xl);
    margin-left: calc(-1 * var(--space-xl));
    margin-right: calc(-1 * var(--space-xl));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.video-card:nth-child(odd) {
    direction: rtl;
}

.video-card:nth-child(odd) > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .video-card,
    .video-card:nth-child(odd) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .video-card--featured {
        margin-left: calc(-1 * var(--space-md));
        margin-right: calc(-1 * var(--space-md));
        padding: var(--space-lg);
    }
}

.video-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.video-year {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.video-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.video-info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.video-card--featured .video-info h2 {
    font-size: 1.75rem;
    color: var(--gold);
}

.video-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.video-player-container {
    position: relative;
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.video-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.video-poster:hover {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
}

.video-poster:hover .video-play-btn {
    transform: scale(1.1);
    background: var(--gold-light);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    color: var(--black);
    margin-left: 4px;
}

.video-play-text {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.video-player video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--black);
}

.video-note {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
}

.video-note h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.video-note p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-wrapper {
    min-height: 100vh;
    padding-top: 80px;
}

.contact-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.85));
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 60px 0 100px;
}

.container--narrow {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
}

@media (max-width: 600px) {
    .contact-form {
        padding: 24px;
    }
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form .required {
    color: var(--gold);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-submit {
    margin-top: 32px;
    margin-bottom: 16px;
}

.form-submit .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

.form-field-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.success-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 32px;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.contact-success h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 12px;
}

.contact-success p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-error {
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.3);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 24px;
}

.contact-error p {
    color: var(--error);
    margin: 0;
    font-size: 0.95rem;
}