/* ==========================================================================
   texas.film Design System — shared stylesheet
   Evolved from the live index (2026-02) inline styles. One file, all pages.
   ========================================================================== */

/* --- Dark theme (default) --- */
:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #121214;
    --bg-tertiary: #18181b;
    --bg-elevated: #1e1e21;
    --text-primary: #e8e8ec;
    --text-secondary: #8b8b94;
    --text-tertiary: #5c5c65;
    --accent: #c9362c;
    --accent-hover: #e04035;
    --accent-subtle: rgba(201, 54, 44, 0.12);
    --accent-gold: #c8a23c;
    --accent-gold-subtle: rgba(200, 162, 60, 0.12);
    --success: #3fbc6e;
    --border: #222226;
    --border-hover: #333338;
    --header-bg: rgba(10, 10, 11, 0.88);
    --card-hover-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --hero-glow: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 54, 44, 0.07) 0%, transparent 100%);
    color-scheme: dark;
}

/* --- Light theme --- */
[data-theme="light"] {
    --bg-primary: #f8f8f7;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0efed;
    --bg-elevated: #ffffff;
    --text-primary: #1a1918;
    --text-secondary: #5c5955;
    --text-tertiary: #9c9891;
    --accent: #b42a21;
    --accent-hover: #961f17;
    --accent-subtle: rgba(180, 42, 33, 0.08);
    --accent-gold: #967312;
    --accent-gold-subtle: rgba(150, 115, 18, 0.08);
    --success: #1a8a46;
    --border: #e4e2df;
    --border-hover: #d0cdc8;
    --header-bg: rgba(248, 248, 247, 0.88);
    --card-hover-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --hero-glow: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(180, 42, 33, 0.04) 0%, transparent 100%);
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* --- Base --- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* --- Header --- */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover { opacity: 0.8; }

.logo .dot {
    color: var(--accent);
    transition: color 0.3s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav.site-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

nav.site-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

nav.site-nav a:hover {
    color: var(--text-primary);
    background: var(--accent-subtle);
}

nav.site-nav a.active {
    color: var(--text-primary);
    background: var(--accent-subtle);
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    margin-left: 8px;
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: var(--accent-subtle);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* Mobile nav */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.mobile-toggle:hover {
    border-color: var(--border-hover);
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }

    nav.site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 8px 16px 16px;
        gap: 2px;
    }

    nav.site-nav.open { display: flex; }

    nav.site-nav a {
        padding: 10px 14px;
        width: 100%;
    }
}

/* --- Hero --- */
.hero {
    padding: 80px 0 72px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--hero-glow);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 .accent {
    color: var(--accent);
    transition: color 0.3s ease;
}

.hero-wordmark {
    margin: 0 auto 24px;
    max-height: 180px;
    width: auto;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 0.3s ease;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* --- Section headers --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.section-header h2 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.section-header a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.section-header a:hover {
    color: var(--accent);
}

/* --- Page header (jobs, news pages) --- */
.page-header {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1.15;
}

.page-header h1 .accent {
    color: var(--accent);
    transition: color 0.3s ease;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.page-header .meta {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 12px;
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.3s ease;
}

/* --- Two-column layout --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    padding: 56px 0;
}

@media (max-width: 960px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* --- Sidebar --- */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.sidebar-card .section-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
}

/* --- News cards (list style) --- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.news-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.news-card:first-child { padding-top: 0; }
.news-card:last-child { border-bottom: none; }

.news-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.news-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card h3 a:hover {
    color: var(--accent);
}

.news-meta {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    transition: color 0.3s ease;
}

.news-tag {
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.news-tag.gold {
    background: var(--accent-gold-subtle);
    color: var(--accent-gold);
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.55;
    transition: color 0.3s ease;
}

/* --- Featured story card --- */
.featured-card {
    display: block;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.3s ease;
}

.featured-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.featured-card h3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.featured-card:hover h3 { color: var(--accent); }

.featured-card .news-excerpt { font-size: 1rem; }

/* --- Article grid (news index / homepage) --- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

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

.article-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.3s ease;
}

.article-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.article-card h3 {
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.article-card h3 a {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.article-card h3 a:hover { color: var(--accent); }

.article-card .news-meta { margin-bottom: 0; }

.article-card .news-excerpt {
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Article page --- */
.article-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 24px 72px;
}

@media (min-width: 768px) {
    .article-page { padding: 64px 40px 88px; }
}

.article-kicker {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-page h1 {
    font-size: clamp(1.9rem, 4.5vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.article-dek {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.article-byline {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-family: 'JetBrains Mono', monospace;
    padding-bottom: 28px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.editor-note {
    background: var(--accent-gold-subtle);
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
    transition: color 0.3s ease;
}

.editor-note strong { color: var(--accent-gold); }

/* Article body typography */
.article-body { font-size: 1.02rem; }

.article-body p { margin-bottom: 1.4em; }

.article-body h2 {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 2em 0 0.8em;
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 1.8em 0 0.7em;
}

.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.article-body a:hover { border-bottom-color: var(--accent); }

.article-body ul, .article-body ol {
    margin: 0 0 1.4em;
    padding-left: 1.4em;
}

.article-body li { margin-bottom: 0.5em; }

.article-body strong { color: var(--text-primary); }

.article-body em { color: inherit; }

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 20px;
    margin: 0 0 1.4em;
    color: var(--text-secondary);
    font-style: italic;
}

.article-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.2em 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.4em;
    font-size: 0.9rem;
}

.article-body th, .article-body td {
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
}

.article-body th {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-body code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88em;
    background: var(--bg-tertiary);
    border-radius: 4px;
    padding: 1px 6px;
}

/* Article footer nav */
.article-footer-nav {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.article-footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.article-footer-nav a:hover { color: var(--accent); }

/* --- Job cards (grid, for jobs page) --- */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

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

.job-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.3s ease;
}

.job-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.job-card .job-title {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.job-card .job-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.job-card .job-title a:hover {
    color: var(--accent);
}

.job-card .job-company {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.job-card .job-location {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 500;
    transition: color 0.3s ease;
}

/* --- Compact jobs (sidebar) --- */
.jobs-list-compact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.job-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.job-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-item:first-child { padding-top: 0; }

/* --- Returning-soon panel --- */
.returning-soon {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-secondary);
    border: 1px dashed var(--border-hover);
    border-radius: 12px;
    color: var(--text-secondary);
}

.returning-soon h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.returning-soon p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto;
}

.returning-soon .badge {
    display: inline-block;
    margin-bottom: 14px;
    background: var(--accent-gold-subtle);
    color: var(--accent-gold);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --- Incentives --- */
.incentive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
    gap: 12px;
}

.incentive-item:last-child { border-bottom: none; padding-bottom: 0; }
.incentive-item:first-child { padding-top: 0; }

.incentive-name {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.incentive-rate {
    font-family: 'JetBrains Mono', monospace;
    color: var(--success);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* --- Quick links --- */
.link-group {
    margin-bottom: 20px;
}

.link-group:last-child { margin-bottom: 0; }

.link-group-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quick-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 7px 0;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.quick-links a:hover {
    color: var(--accent);
}

.quick-links .link-city {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 400;
    transition: color 0.3s ease;
}

/* --- Newsletter section --- */
.newsletter-section {
    padding: 72px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.newsletter-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.newsletter-section p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.newsletter {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

@media (max-width: 500px) {
    .newsletter { flex-direction: column; }
}

.newsletter input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.925rem;
    font-family: inherit;
    transition: border-color 0.2s ease, background-color 0.3s ease, color 0.3s ease;
    outline: none;
}

.newsletter input:focus {
    border-color: var(--accent);
}

.newsletter input::placeholder {
    color: var(--text-tertiary);
}

.newsletter button {
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.newsletter button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* --- Footer --- */
footer.site-footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 48px;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

.footer-col h3 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-about .footer-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.footer-about .footer-brand .dot {
    color: var(--accent);
    transition: color 0.3s ease;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.footer-copy {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-editorial {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    font-style: italic;
    transition: color 0.3s ease;
}

/* --- Filter bar --- */
.filter-bar {
    display: flex;
    gap: 8px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

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

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* --- Source note --- */
.source-note {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.source-note a {
    color: var(--accent);
    transition: color 0.2s ease;
}

.source-note a:hover { text-decoration: underline; }

/* --- Empty state --- */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-secondary);
}

.empty-state h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* --- Oscar badge (festivals callout) --- */
.oscar-note {
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    line-height: 1.5;
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .news-card, .job-card, .sidebar-card, .article-card, .featured-card {
        animation: fadeUp 0.4s ease both;
    }

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

    .news-card:nth-child(2), .article-card:nth-child(2) { animation-delay: 0.05s; }
    .news-card:nth-child(3), .article-card:nth-child(3) { animation-delay: 0.1s; }
    .news-card:nth-child(4), .article-card:nth-child(4) { animation-delay: 0.15s; }
    .news-card:nth-child(5), .article-card:nth-child(5) { animation-delay: 0.2s; }
    .news-card:nth-child(6), .article-card:nth-child(6) { animation-delay: 0.25s; }

    .job-card:nth-child(2) { animation-delay: 0.03s; }
    .job-card:nth-child(3) { animation-delay: 0.06s; }
    .job-card:nth-child(4) { animation-delay: 0.09s; }
    .job-card:nth-child(5) { animation-delay: 0.12s; }
    .job-card:nth-child(6) { animation-delay: 0.15s; }
}

/* --- Print --- */
@media print {
    header.site-header, .theme-toggle, .mobile-toggle, .newsletter-section { display: none; }
    body { background: #fff; color: #000; }
    .two-col { display: block; }
}
