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

:root {
    --red: #D85A30;
    --red-dark: #993C1D;
    --black: #1a1a1a;
    --off-white: #F8F6F2;
    --gray: #888780;
    --border: #E8E5DF;
    --white: #ffffff;
    --green: #1D9E75;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--black); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.1; }
em { font-style: normal; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.lc-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ──────────────────────────────────────────────────── */
.lc-nav {
    background: var(--black);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.lc-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}
.lc-logo span { color: var(--red); }
.lc-nav-links { display: flex; gap: 1.5rem; align-items: center; }
.lc-nav-links a {
    color: #ccc;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.lc-nav-links a:hover { color: #fff; }
.lc-nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
    transition: opacity 0.2s !important;
}
.lc-nav-cta:hover { opacity: 0.85; }
.lc-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.lc-logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
.lc-nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: 0.3s; }

/* ── HERO ─────────────────────────────────────────────────── */
.lc-hero-section { background: var(--black); }
.lc-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: center;
}
.lc-hero-tag { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 1rem; }
.lc-hero h1 { font-size: 3.5rem; font-weight: 900; color: #fff; margin-bottom: 1.5rem; }
.lc-hero h1 em { color: var(--red); }
.lc-hero p { color: #aaa; font-size: 1rem; line-height: 1.7; max-width: 440px; margin-bottom: 2rem; }
.lc-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.lc-btn-primary { background: var(--red); color: #fff !important; padding: 12px 24px; border-radius: 4px; font-weight: 500; font-size: 0.9rem; transition: opacity 0.2s; }
.lc-btn-primary:hover { opacity: 0.85; color: #fff !important; }
.lc-btn-outline { border: 1px solid #555; color: #fff; padding: 12px 24px; border-radius: 4px; font-weight: 400; font-size: 0.9rem; transition: border-color 0.2s; }
.lc-btn-outline:hover { border-color: #fff; }

.lc-hero-film-col { width: 100%; }
.lc-hero-film-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 0.75rem; }
.lc-hero-film { background: #111; border-radius: 8px; overflow: hidden; border: 1px solid #333; }
.lc-film-thumb--hero { position: relative; display: block; height: 160px; overflow: hidden; }
.lc-film-thumb--hero img { width: 100%; height: 100%; object-fit: cover; }
.lc-film-thumb--placeholder { height: 160px; background: linear-gradient(135deg,#2a1a10,#1a1a2e); display: flex; align-items: center; justify-content: center; }
.lc-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 56px; height: 56px; background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
    pointer-events: none;
}
.lc-play-btn::after { content: ''; border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 4px; }
.lc-film-thumb--hero:hover .lc-play-btn { transform: translate(-50%,-50%) scale(1.08); }
.lc-hero-film-info { padding: 1rem 1.25rem; }
.lc-film-genre { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.lc-hero-film-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.lc-film-meta, .lc-film-meta-row { font-size: 0.8rem; color: #888; display: flex; gap: 1rem; flex-wrap: wrap; }
.lc-premiere-badge {
    display: inline-block; margin-top: 0.6rem; padding: 3px 10px; border-radius: 3px;
    background: rgba(216,90,48,0.15); border: 1px solid var(--red); color: var(--red);
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.lc-content-warning {
    display: flex; align-items: center; gap: 6px; margin-top: 0.6rem;
    font-size: 0.78rem; color: #d9a441;
}

/* ── SPOTLIGHT ────────────────────────────────────────────── */
.lc-spotlight-section { background: var(--black); padding: 0 0 3.5rem; }
.lc-spotlight {
    background: #161513; border: 1px solid #2a2a2a; border-radius: 10px;
    padding: 2.2rem; position: relative;
}
.lc-spotlight-slide { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.lc-spotlight-media { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: #111; }
.lc-spotlight-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-spotlight-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%); }
.lc-spotlight-media--placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#2a1a10,#1a1a2e); }
.lc-spotlight-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
}
.lc-spotlight-badge--event { background: var(--green); }
.lc-spotlight-badge--film { background: #4A6FA5; }
.lc-spotlight-kicker { color: var(--red); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.lc-spotlight-body h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.7rem; }
.lc-spotlight-body p { color: #bbb; font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.3rem; }
.lc-spotlight-meta { display: flex; gap: 1.2rem; color: #999; font-size: 0.82rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.lc-spotlight-dots { display: flex; gap: 6px; margin-top: 1.6rem; justify-content: center; }
.lc-spotlight-dots span { width: 6px; height: 6px; border-radius: 50%; background: #3a3a3a; cursor: pointer; transition: all 0.2s; }
.lc-spotlight-dots span.active { background: var(--red); width: 18px; border-radius: 4px; }
@media (max-width: 820px) {
    .lc-spotlight-slide { grid-template-columns: 1fr; }
}

/* ── SECTION SHARED ───────────────────────────────────────── */
.lc-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; }
.lc-section-header h2 { font-size: 1.8rem; }
.lc-section-header a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); font-weight: 500; }
.lc-section-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); font-weight: 500; margin-bottom: 0.75rem; }

/* ── FILMS SECTION ────────────────────────────────────────── */
.lc-films-section { background: var(--off-white); padding: 3rem 0; }

.lc-genre-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.lc-pill {
    padding: 6px 16px; border-radius: 100px; font-size: 0.8rem;
    border: 1px solid var(--border); background: #fff; cursor: pointer;
    transition: all 0.2s; font-weight: 400; font-family: 'DM Sans', sans-serif;
}
.lc-pill:hover { background: var(--black); color: #fff; border-color: var(--black); }
.lc-pill.active { background: var(--red); color: #fff; border-color: var(--red); }

.lc-film-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; }

/* ── FILM CARD ────────────────────────────────────────────── */
.lc-film-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.lc-film-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.lc-card-thumb {
    position: relative; display: block; height: 150px; overflow: hidden;
    background: linear-gradient(135deg,#2a1a10,#1a1a2e);
}
.lc-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lc-card-thumb-placeholder { width: 100%; height: 100%; }
.lc-card-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 38px; height: 38px; background: rgba(216,90,48,0.9); border-radius: 50%;
    transition: transform 0.2s;
}
.lc-card-play::after { content: ''; position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%); border-left: 14px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
.lc-film-card:hover .lc-card-play { transform: translate(-50%,-50%) scale(1.1); }
.lc-card-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.75); color: #fff; font-size: 0.7rem; padding: 2px 7px; border-radius: 3px; }
.lc-card-body { padding: 0.9rem 1rem; }
.lc-card-genre { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
.lc-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; line-height: 1.3; color: var(--black); }
.lc-card-director { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.6rem; }
.lc-card-actions { display: flex; gap: 0.75rem; align-items: center; padding-top: 0.6rem; border-top: 1px solid var(--border); }
.lc-card-action {
    background: none; border: none; cursor: pointer; font-size: 0.75rem; color: var(--gray);
    display: flex; align-items: center; gap: 4px; font-family: 'DM Sans', sans-serif;
    transition: color 0.2s; text-decoration: none;
}
.lc-card-action:hover { color: var(--red); }
.lc-card-action svg { width: 14px; height: 14px; flex-shrink: 0; }
.lc-like-btn.liked { color: var(--red); }
.lc-like-btn.liked svg { fill: var(--red); stroke: var(--red); }

/* ── FILMMAKERS SECTION ───────────────────────────────────── */
.lc-filmmakers-section { background: var(--white); padding: 3rem 0; border-top: 1px solid var(--border); }
.lc-filmmaker-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,220px)); gap: 1.25rem; justify-content: center; }
.lc-filmmaker-card {
    background: var(--white); border-radius: 8px; border: 1px solid var(--border);
    padding: 1.25rem; text-align: center; transition: transform 0.2s; display: block;
}
.lc-filmmaker-card:hover { transform: translateY(-2px); }
.lc-filmmaker-avatar {
    width: 64px; height: 64px; border-radius: 50%; background: var(--black);
    margin: 0 auto 0.75rem; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff;
    overflow: hidden;
}
.lc-filmmaker-avatar--photo img { width: 64px; height: 64px; object-fit: cover; }
.lc-filmmaker-name { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--black); }
.lc-filmmaker-role { font-size: 0.75rem; color: var(--gray); margin-bottom: 0.5rem; }
.lc-filmmaker-count { font-size: 0.75rem; color: var(--red); font-weight: 500; }

/* ── SUBMIT SECTION ───────────────────────────────────────── */
.lc-submit-section { background: var(--black); color: #fff; padding: 4rem 2rem; }
.lc-submit-inner { max-width: 760px; margin: 0 auto; }
.lc-submit-inner h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 0.75rem; color: #fff; }
.lc-submit-inner > p { color: #aaa; margin-bottom: 2.5rem; line-height: 1.7; }
.lc-submit-inner strong { color: #fff; }

.lc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lc-form-full { grid-column: 1 / -1; }
.lc-form-divider {
    grid-column: 1 / -1; border-top: 1px solid #222; padding-top: 1.25rem; margin-top: 0.5rem;
}
.lc-form-divider span { font-family: 'Playfair Display', serif; font-size: 1rem; color: #ccc; font-weight: 700; }
.lc-donate-section { margin-top: 2.5rem; }
.lc-donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 1.5rem; align-items: start; }
.lc-donate-text p { color: #aaa; line-height: 1.7; margin-bottom: 1rem; }
.lc-donate-text p strong { color: #fff; }
.lc-donate-message { color: #aaa; }
.lc-donate-message strong { color: #5DCAA5 !important; }
.lc-donate-list { margin: 0 0 1rem; padding-left: 1.2rem; color: #aaa; line-height: 1.7; }
.lc-donate-list li { margin-bottom: 0.5rem; }
.lc-donate-list strong { color: #fff; }
.lc-donate-widget { display: flex; justify-content: center; }
@media (max-width: 780px) {
    .lc-donate-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.lc-form-group { display: flex; flex-direction: column; gap: 6px; }
.lc-form-group label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #888; font-weight: 500; }
.lc-form-group label em { color: var(--red); font-style: normal; }
.lc-form-group input,
.lc-form-group textarea,
.lc-form-group select {
    background: #111; border: 1px solid #333; border-radius: 4px;
    padding: 10px 14px; color: #fff; font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; outline: none; transition: border-color 0.2s; width: 100%;
}
.lc-form-group input:focus,
.lc-form-group textarea:focus,
.lc-form-group select:focus { border-color: var(--red); }
.lc-form-group textarea { resize: vertical; min-height: 90px; }
.lc-bio-editor {
    background: #111; border: 1px solid #333; border-radius: 4px;
    padding: 10px 14px; color: #fff; font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; outline: none; transition: border-color 0.2s; width: 100%;
    min-height: 140px; box-sizing: border-box; line-height: 1.6;
}
.lc-bio-editor:focus { border-color: var(--red); }
.lc-bio-editor img { max-width: 100%; height: auto; border-radius: 4px; }
.lc-bio-editor a { color: var(--red); }
.lc-form-group select option { background: #111; }
.lc-checkbox-row { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.lc-checkbox-item {
    display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
    color: #ccc; text-transform: none; letter-spacing: normal; font-weight: 400;
    cursor: pointer;
}
.lc-checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--red); cursor: pointer; flex-shrink: 0; }
.lc-rights-check { font-size: 0.85rem; line-height: 1.5; }
.lc-rights-check em { color: var(--red); font-style: normal; }
.lc-submit-btn {
    width: 100%; background: var(--red); color: #fff; border: none;
    padding: 14px 32px; border-radius: 4px; font-size: 1rem; font-weight: 500;
    cursor: pointer; font-family: 'DM Sans', sans-serif; transition: opacity 0.2s; margin-top: 0.5rem;
}
.lc-submit-btn:hover { opacity: 0.85; }
.lc-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.lc-submit-note { font-size: 0.78rem; color: #555; text-align: center; margin-top: 0.75rem; }
.lc-submit-msg { padding: 1rem; border-radius: 4px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.lc-submit-msg.success { background: #0d2818; color: #5DCAA5; border: 1px solid #0F6E56; }
.lc-submit-msg.error { background: #2a0a0a; color: #F09595; border: 1px solid #A32D2D; }

/* ── SINGLE FILM PAGE ─────────────────────────────────────── */
.lc-player-wrap { background: var(--black); padding: 2rem 0; }
.lc-yt-player { max-width: 900px; margin: 0 auto; padding: 0 2rem; aspect-ratio: 16/9; }
.lc-yt-player iframe { width: 100%; height: 100%; border-radius: 8px; }
.lc-film-body { padding: 2.5rem 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
.lc-film-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; gap: 1rem; }
.lc-film-title { font-size: 2.2rem; font-weight: 900; margin: 0.4rem 0 0.6rem; }
.lc-film-actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }
.lc-action-btn { background: none; border: 1px solid var(--border); border-radius: 4px; padding: 7px 14px; cursor: pointer; display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-family: 'DM Sans', sans-serif; transition: all 0.2s; color: var(--black); }
.lc-action-btn:hover { border-color: var(--red); color: var(--red); }
.lc-action-btn svg { width: 16px; height: 16px; }
.lc-film-synopsis { font-size: 0.95rem; line-height: 1.8; color: #444; margin-bottom: 2rem; }
.lc-film-festivals { margin-bottom: 2rem; }
.lc-film-festivals h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.lc-festival-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.lc-festival-badge { background: #FAECE7; color: var(--red); font-size: 0.75rem; padding: 4px 12px; border-radius: 4px; font-weight: 500; }

/* Full-width credits card (under the description, matches its width) */
.lc-credits-card { background: var(--white); border-radius: 8px; border: 1px solid var(--border); padding: 1.5rem 1.75rem; margin-bottom: 2rem; }
.lc-credits-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.1rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--border); }
.lc-credits-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; }
.lc-credits-grid .lc-credit-name { max-width: none; }
.lc-credit-link { color: var(--red); text-decoration: none; }
.lc-credit-link:hover { text-decoration: underline; }
@media (max-width: 640px) {
    .lc-credits-grid { grid-template-columns: 1fr; }
}

/* Sidebar cards */
.lc-sidebar-card { background: var(--white); border-radius: 8px; border: 1px solid var(--border); padding: 1.25rem; margin-bottom: 1.25rem; }
.lc-sidebar-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.lc-credit-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.82rem; border-bottom: 1px solid #f5f3ef; }
.lc-credit-row:last-child { border-bottom: none; }
.lc-credit-role { color: var(--gray); }
.lc-credit-name { font-weight: 500; text-align: right; max-width: 180px; }
.lc-filmmaker-mini { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--black); }
.lc-filmmaker-mini:hover .lc-filmmaker-mini-name { color: var(--red); }
.lc-filmmaker-mini-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.lc-filmmaker-mini-avatar img { width: 44px; height: 44px; object-fit: cover; }
.lc-filmmaker-mini-name { font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.lc-filmmaker-mini-role { font-size: 0.75rem; color: var(--gray); }

/* Social links */
.lc-social-link { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--black); }
.lc-social-link:last-child { border-bottom: none; padding-bottom: 0; }
.lc-social-link:hover .lc-social-name { color: var(--red); }
.lc-social-icon { width: 28px; height: 28px; border-radius: 4px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: var(--gray); flex-shrink: 0; }
.lc-social-name { font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.lc-social-handle { font-size: 0.75rem; color: var(--gray); margin-left: auto; }

/* ── FILMMAKER PROFILE PAGE ───────────────────────────────── */
.lc-profile-hero { background: var(--black); padding: 3rem 2rem 0; }
.lc-profile-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: end; padding-bottom: 2rem; border-bottom: 1px solid #333; }
.lc-profile-avatar { width: 100px; height: 100px; border-radius: 50%; background: #3C3489; border: 3px solid #333; flex-shrink: 0; overflow: hidden; }
.lc-profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-avatar-initials { display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; }
.lc-breadcrumb { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #555; margin-bottom: 0.6rem; }
.lc-breadcrumb a { color: #555; }
.lc-breadcrumb a:hover { color: #aaa; }
.lc-profile-name { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 0.4rem; }
.lc-profile-role { font-size: 0.9rem; color: #aaa; margin-bottom: 0.9rem; }
.lc-profile-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.lc-profile-tags + .lc-profile-tags { margin-top: 0.6rem; }
.lc-profile-tag { padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; border: 1px solid #444; color: #aaa; letter-spacing: 0.04em; }
.lc-profile-tag--red { background: var(--red); border-color: var(--red); color: #fff; }
.lc-profile-tag--skill { border-color: #5DCAA5; color: #5DCAA5; }
.lc-profile-stats { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.lc-pstat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1; text-align: right; }
.lc-pstat-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: #555; margin-top: 2px; }

.lc-profile-body { padding: 2.5rem 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
.lc-profile-bio { margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.8; color: #444; }
.lc-profile-bio a { color: var(--red); text-decoration: underline; }
.lc-profile-bio a:hover { text-decoration: none; }
.lc-profile-films-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.25rem; }

.lc-private-work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 1rem; margin-top: 1rem; }
.lc-private-work-item { cursor: default; }
.lc-private-work-thumb { border-radius: 6px; overflow: hidden; background: linear-gradient(135deg,#2a1a10,#1a1a2e); aspect-ratio: 16/10; }
.lc-private-work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-private-work-title { margin-top: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--black); line-height: 1.4; }

/* Film row in filmmaker profile */
.lc-film-row { display: flex; gap: 1rem; background: var(--white); border-radius: 8px; border: 1px solid var(--border); overflow: hidden; margin-bottom: 1rem; transition: transform 0.2s; }
.lc-film-row:hover { transform: translateX(3px); }
.lc-film-row-thumb { width: 110px; flex-shrink: 0; background: linear-gradient(135deg,#2a1a10,#1a1a2e); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.lc-film-row-thumb img { width: 110px; height: 70px; object-fit: cover; }
.lc-row-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 28px; height: 28px; background: rgba(216,90,48,0.9); border-radius: 50%; }
.lc-row-play::after { content: ''; position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%); border-left: 10px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.lc-row-dur { position: absolute; bottom: 4px; right: 4px; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.65rem; padding: 1px 5px; border-radius: 2px; }
.lc-film-row-info { padding: 0.9rem 1rem; flex: 1; }
.lc-film-row-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--black); }
.lc-film-row-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; margin-bottom: 0.5rem; }
.lc-film-row-meta { font-size: 0.75rem; color: #bbb; display: flex; gap: 1rem; }
.lc-row-awards { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.4rem; }
.lc-award-badge { background: #FAECE7; color: var(--red); font-size: 0.65rem; padding: 2px 8px; border-radius: 3px; font-weight: 500; }

/* ── FOOTER ───────────────────────────────────────────────── */
.lc-footer { background: #111; color: #888; padding: 2.5rem 2rem; text-align: center; }
.lc-footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 0.4rem; display: flex; justify-content: center; }
.lc-footer-logo span { color: var(--red); }
.lc-footer-logo-img { height: 32px; width: auto; display: block; object-fit: contain; }
.lc-footer-tagline { font-size: 0.85rem; color: #555; margin-bottom: 1rem; }
.lc-footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center; margin-bottom: 1.25rem; }
.lc-footer-nav a { font-size: 0.8rem; color: #666; transition: color 0.2s; }
.lc-footer-nav a:hover { color: #fff; }
.lc-footer-social { display: flex; justify-content: center; gap: 0.9rem; margin-bottom: 1.5rem; }
.lc-footer-social a {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid #333;
    display: flex; align-items: center; justify-content: center; color: #999;
    transition: all 0.2s;
}
.lc-footer-social a:hover { color: #fff; border-color: var(--red); background: var(--red); }
.lc-footer-copy { font-size: 0.78rem; color: #444; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .lc-hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
    .lc-hero h1 { font-size: 2.4rem; }
    .lc-film-body, .lc-profile-body { grid-template-columns: 1fr; }
    .lc-profile-hero-inner { grid-template-columns: auto 1fr; }
    .lc-profile-stats { flex-direction: row; align-items: flex-start; grid-column: 1/-1; }
    .lc-pstat-num { text-align: left; }
}
@media (max-width: 640px) {
    .lc-nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--black); padding: 1rem 2rem; gap: 1rem; }
    .lc-nav-links.open { display: flex; }
    .lc-nav-toggle { display: flex; flex-direction: column; }
    .lc-form-grid { grid-template-columns: 1fr; }
    .lc-form-full { grid-column: 1; }
    .lc-profile-name { font-size: 1.8rem; }
    .lc-film-header { flex-direction: column; }
}

/* ── UPLOAD FIELDS ────────────────────────────────────────── */
.lc-field-note { font-size: 0.7rem; color: #666; font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 4px; }

.lc-upload-area {
    background: #111;
    border: 1px dashed #444;
    border-radius: 4px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: border-color 0.2s;
    cursor: pointer;
    position: relative;
}
.lc-upload-area:hover { border-color: var(--red); }
.lc-upload-area.dragover { border-color: var(--red); background: #1a0a05; }

.lc-upload-left { flex-shrink: 0; }

.lc-upload-preview {
    display: flex; align-items: center; justify-content: center;
    background: #1a1a1a; border: 1px solid #333; overflow: hidden;
}
.lc-upload-preview svg { color: #555; }

.lc-upload-preview--circle {
    width: 64px; height: 64px; border-radius: 50%;
}
.lc-upload-preview--circle img {
    width: 64px; height: 64px; object-fit: cover; border-radius: 50%;
}

.lc-upload-preview--thumb {
    width: 120px; height: 68px; border-radius: 4px;
}
.lc-upload-preview--thumb img {
    width: 120px; height: 68px; object-fit: cover;
}

.lc-upload-right { display: flex; flex-direction: column; gap: 4px; }

.lc-gallery-grid {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px;
}
.lc-gallery-item {
    position: relative; display: inline-flex; height: 90px; border-radius: 4px;
    overflow: hidden; background: #1a1a1a; border: 1px solid #333;
}
.lc-gallery-item img { height: 100%; width: auto; max-width: 100%; display: block; }
.lc-gallery-remove {
    position: absolute; top: 2px; right: 2px; width: 20px; height: 20px;
    border-radius: 50%; background: rgba(0,0,0,0.7); color: #fff; border: none;
    cursor: pointer; font-size: 14px; line-height: 1; display: flex;
    align-items: center; justify-content: center;
}
.lc-gallery-remove:hover { background: var(--red); }

.lc-lightbox[hidden] { display: none; }
.lc-lightbox {
    position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center; padding: 40px;
}
.lc-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lc-lightbox-close {
    position: absolute; top: 20px; right: 24px; background: none; border: 0;
    color: #EFEAE2; font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 0 0.25rem;
}
.lc-lightbox-close:hover { color: var(--red); }

.lc-upload-btn-label {
    display: inline-block;
    background: #222; border: 1px solid #444; border-radius: 4px;
    padding: 7px 16px; font-size: 0.82rem; color: #ccc; cursor: pointer;
    transition: border-color 0.2s, color 0.2s; width: fit-content;
    font-family: 'DM Sans', sans-serif;
}
.lc-upload-btn-label:hover { border-color: var(--red); color: #fff; }

.lc-upload-hint { font-size: 0.75rem; color: #555; }

.lc-file-input {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: pointer; z-index: 2;
}

.lc-upload-status { font-size: 0.78rem; min-height: 18px; }
.lc-upload-status.uploading { color: #888; }
.lc-upload-status.success   { color: #5DCAA5; }
.lc-upload-status.error     { color: #F09595; }

/* ── DOWNLOAD LINK BLOCK (single film page) ───────────────── */
.lc-download-hero {
    background: var(--black);
    display: flex;
    align-items: stretch;
    min-height: 260px;
}
.lc-download-thumb {
    flex: 1;
    overflow: hidden;
    max-width: 60%;
}
.lc-download-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lc-download-cta {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
}
.lc-download-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    font-weight: 500;
}
.lc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s;
}
.lc-download-btn:hover { opacity: 0.85; color: #fff; }
.lc-download-note {
    font-size: 0.75rem;
    color: #555;
}

/* ── FIELD HINT ───────────────────────────────────────────── */
.lc-field-hint {
    font-size: 0.75rem;
    color: #555;
    margin-top: 5px;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .lc-download-hero { flex-direction: column; }
    .lc-download-thumb { max-width: 100%; height: 200px; }
    .lc-download-cta { flex: none; padding: 1.5rem; }
}

/* ── EXTRA CREDITS (dynamic rows) ─────────────────────────── */
.lc-extra-credit-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}
.lc-extra-credit-row input {
    background: #111;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 9px 12px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.lc-extra-credit-row input:focus { border-color: var(--red); }
.lc-remove-credit {
    background: none;
    border: 1px solid #333;
    border-radius: 4px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.15s;
    flex-shrink: 0;
}
.lc-remove-credit:hover { border-color: #A32D2D; color: #F09595; }
.lc-add-credit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px dashed #444;
    border-radius: 4px;
    padding: 8px 16px;
    color: #888;
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}
.lc-add-credit-btn:hover { border-color: var(--red); color: var(--red); }

/* ── PRIVATE FIELD BADGE ──────────────────────────────────── */
.lc-field-private {
    display: inline-block;
    background: #0d2818;
    color: #5DCAA5;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-left: 6px;
    vertical-align: middle;
}

/* ── COMING SOON PLACEHOLDER ─────────────────────────────── */
.lc-thumb-placeholder-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.lc-thumb-fallback {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    opacity: 0.5;
}
.lc-coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── AUTH PAGES (register / login) ───────────────────────── */
.lc-auth-page { background: var(--black); min-height: 100vh; padding: 3rem 1.5rem; display: flex; align-items: flex-start; justify-content: center; }
.lc-auth-container { width: 100%; max-width: 580px; }
.lc-auth-container--narrow { max-width: 440px; }
.lc-auth-brand { text-align: center; margin-bottom: 2rem; }
.lc-auth-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: #fff; text-decoration: none; display: inline-block; }
.lc-auth-logo span { color: var(--red); }
.lc-auth-logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.lc-auth-tagline { font-size: 0.78rem; color: #555; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.lc-auth-card { background: #111; border: 1px solid #222; border-radius: 8px; padding: 2rem; }
.lc-auth-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.lc-auth-subtitle { font-size: 0.82rem; color: #666; margin-bottom: 1.5rem; }
.lc-auth-subtitle a { color: var(--red); }
.lc-auth-form { display: flex; flex-direction: column; gap: 1rem; }
.lc-auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lc-auth-group { display: flex; flex-direction: column; gap: 5px; }
.lc-auth-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: #888; font-weight: 500; }
.lc-auth-group label em { color: var(--red); font-style: normal; }
.lc-auth-group input { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 4px; padding: 10px 12px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.lc-auth-group input:focus { border-color: var(--red); }
.lc-auth-group input::placeholder { color: #333; }
.lc-auth-remember { display: flex; align-items: center; justify-content: space-between; }
.lc-check-label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #888; cursor: pointer; }
.lc-check-label input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--red); cursor: pointer; }
.lc-forgot { font-size: 0.78rem; color: #555; text-decoration: none; }
.lc-forgot:hover { color: var(--red); }
.lc-auth-btn { background: var(--red); color: #fff; border: none; padding: 12px; border-radius: 4px; font-size: 0.95rem; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: opacity 0.2s; margin-top: 0.5rem; }
.lc-auth-btn:hover { opacity: 0.85; }
.lc-auth-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.lc-auth-note { font-size: 0.75rem; color: #444; text-align: center; }
.lc-auth-msg { padding: 10px 14px; border-radius: 4px; font-size: 0.85rem; line-height: 1.5; }
.lc-auth-msg.success { background: #0d2818; color: #5DCAA5; border: 1px solid #0F6E56; }
.lc-auth-msg.error { background: #2a0a0a; color: #F09595; border: 1px solid #A32D2D; }
.lc-auth-footer-note { font-size: 0.78rem; color: #444; text-align: center; margin-top: 1.25rem; }
.lc-auth-footer-note a { color: var(--red); }

/* ── DISCLAIMER BOX ───────────────────────────────────────── */
.lc-disclaimer-box { border: 1px solid #2a2a2a; border-radius: 6px; overflow: hidden; }
.lc-disclaimer-header { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #1a1a1a; font-size: 0.78rem; font-weight: 500; color: #aaa; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid #2a2a2a; }
.lc-disclaimer-scroll { height: 220px; overflow-y: auto; padding: 1rem 1.25rem; font-size: 0.8rem; line-height: 1.7; color: #666; background: #0d0d0d; }
.lc-disclaimer-scroll h3 { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 700; color: #888; margin: 1rem 0 0.4rem; }
.lc-disclaimer-scroll h3:first-child { margin-top: 0; }
.lc-disclaimer-scroll p { margin-bottom: 0.6rem; }
.lc-disclaimer-scroll a { color: var(--red); }
.lc-disclaimer-scroll strong { color: #888; }
.lc-disclaimer-check { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: #111; border-top: 1px solid #2a2a2a; cursor: pointer; }
.lc-disclaimer-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.lc-disclaimer-check span { font-size: 0.8rem; color: #888; line-height: 1.5; }
.lc-disclaimer-check span a { color: var(--red); }
.lc-disclaimer-check span em { color: var(--red); font-style: normal; }

/* ── MY ACCOUNT PAGE ──────────────────────────────────────── */
.lc-account-page { padding: 3rem 0; min-height: 80vh; }
.lc-account-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.lc-account-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; flex-shrink: 0; overflow: hidden; }
.lc-account-avatar img { width: 64px; height: 64px; object-fit: cover; }
.lc-account-header h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2px; }
.lc-account-email { font-size: 0.82rem; color: var(--gray); margin-bottom: 6px; }
.lc-account-status { font-size: 0.7rem; font-weight: 500; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; }
.lc-status-pending { background: #FAEEDA; color: #BA7517; }
.lc-status-approved { background: #E1F5EE; color: #0F6E56; }
.lc-logout-btn { margin-left: auto; font-size: 0.78rem; color: var(--gray); text-decoration: none; border: 0.5px solid var(--border); padding: 6px 14px; border-radius: 4px; transition: all 0.2s; }
.lc-logout-btn:hover { border-color: #aaa; color: var(--black); }
.lc-account-notice { display: flex; align-items: flex-start; gap: 10px; background: #FAEEDA; color: #633806; border: 1px solid #FAC775; border-radius: 6px; padding: 1rem 1.25rem; font-size: 0.85rem; line-height: 1.6; margin-bottom: 2rem; }
.lc-account-grid { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; }
.lc-account-edit-section {
    margin-top: 3rem; background: var(--black); color: #fff;
    border-radius: 8px; padding: 2.5rem;
}
.lc-account-edit-section .lc-section-header { margin-bottom: 1.75rem; }
.lc-account-edit-section .lc-section-header h2 { color: #fff; }
.lc-account-edit-section .lc-empty-state { color: #aaa; }
.lc-my-films-list { display: flex; flex-direction: column; gap: 0; }
.lc-my-film-row { display: flex; align-items: center; gap: 1rem; padding: 0.875rem 0; border-bottom: 1px solid var(--border); }
.lc-my-film-row:last-child { border-bottom: none; }
.lc-my-film-thumb { width: 80px; height: 50px; border-radius: 4px; overflow: hidden; flex-shrink: 0; background: #2a1a10; }
.lc-my-film-thumb img { width: 80px; height: 50px; object-fit: cover; }
.lc-thumb-placeholder-sm { width: 80px; height: 50px; background: linear-gradient(135deg,#2a1a10,#1a1a2e); }
.lc-my-film-title { font-weight: 500; font-size: 0.9rem; margin-bottom: 2px; }
.lc-my-film-meta { font-size: 0.75rem; color: var(--gray); }
.lc-my-film-status { margin-left: auto; text-align: right; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.lc-status-badge { font-size: 0.68rem; font-weight: 500; padding: 2px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.lc-status-badge--published { background: #E1F5EE; color: #0F6E56; }
.lc-status-badge--pending { background: #FAEEDA; color: #BA7517; }
.lc-status-badge--draft { background: var(--off-white); color: var(--gray); }
.lc-status-link { font-size: 0.75rem; color: var(--red); text-decoration: none; }
.lc-empty-state { text-align: center; padding: 3rem 1rem; color: var(--gray); }
.lc-empty-state p { margin-bottom: 1rem; }
.lc-profile-edit-link { font-size: 0.8rem; color: var(--red); text-decoration: none; }

/* ── SUBMIT SECTION — auth notices ────────────────────────── */
.lc-submit-logged-in,
.lc-submit-returning {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}
.lc-submit-logged-in {
    background: #0d2818;
    color: #5DCAA5;
    border: 1px solid #0F6E56;
}
.lc-submit-logged-in a { color: #9FE1CB; }
.lc-submit-returning {
    background: #111;
    color: #888;
    border: 1px solid #2a2a2a;
}
.lc-submit-returning a { color: var(--red); }

/* ── REGISTER PAGE — film notice banner ───────────────────── */
.lc-auth-film-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0d2818;
    color: #5DCAA5;
    border: 1px solid #0F6E56;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}
.lc-auth-film-notice strong { color: #9FE1CB; }

/* ── GENRE PAGE ───────────────────────────────────────────── */
.lc-genre-page { background: var(--black); }

.lc-genre-hero { padding: 2.5rem 2rem; }
.lc-genre-hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.lc-genre-breadcrumb { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #555; margin-bottom: 0.75rem; }
.lc-genre-breadcrumb a { color: #555; text-decoration: none; transition: color 0.2s; }
.lc-genre-breadcrumb a:hover { color: #aaa; }
.lc-genre-title { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.6rem; }
.lc-genre-desc { font-size: 0.88rem; color: #666; max-width: 460px; line-height: 1.65; }
.lc-genre-stats { display: flex; gap: 2rem; flex-shrink: 0; padding-bottom: 0.25rem; }
.lc-gstat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1; text-align: right; }
.lc-gstat-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: #555; margin-top: 3px; text-align: right; }

.lc-genre-nav-bar { border-top: 1px solid #222; padding: 0 2rem; overflow-x: auto; }
.lc-genre-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; }
.lc-gnav-item { padding: 10px 18px; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: #555; border-bottom: 2px solid transparent; white-space: nowrap; text-decoration: none; transition: all 0.15s; }
.lc-gnav-item:hover { color: #aaa; }
.lc-gnav-item.active { color: #fff; border-bottom-color: var(--red); }
.lc-collection-nav-bar { padding-top: 2px; }
.lc-gnav-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: #444; padding: 10px 10px 10px 0; white-space: nowrap; }

.lc-genre-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; }
.lc-genre-count { font-size: 0.82rem; color: var(--gray); }
.lc-sort-form { display: flex; align-items: center; gap: 0.5rem; }
.lc-sort-label { font-size: 0.75rem; color: var(--gray); }
.lc-sort-select { background: #fff; border: 0.5px solid var(--border); border-radius: 4px; padding: 6px 10px; font-size: 0.78rem; font-family: 'DM Sans', sans-serif; color: var(--black); outline: none; cursor: pointer; }

.lc-card-award-badge { position: absolute; top: 7px; left: 7px; width: 22px; height: 22px; background: rgba(216,90,48,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.lc-pagination { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.lc-page-btn { width: 34px; height: 34px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; cursor: pointer; border: 0.5px solid var(--border); background: #fff; text-decoration: none; color: var(--black); transition: all 0.15s; }
.lc-page-btn:hover { border-color: #aaa; }
.lc-page-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.lc-page-arrow { color: var(--gray); }
.lc-page-ellipsis { font-size: 0.82rem; color: var(--gray); padding: 0 4px; }

.lc-other-genres { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.lc-other-genres-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; }
.lc-other-genres-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
.lc-og-card { background: #fff; border-radius: 8px; border: 0.5px solid var(--border); padding: 0.9rem 1rem; display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--black); transition: transform 0.15s; }
.lc-og-card:hover { transform: translateY(-2px); }
.lc-og-thumb { width: 36px; height: 36px; border-radius: 5px; background: var(--black); flex-shrink: 0; }
.lc-og-name { font-size: 0.82rem; font-weight: 500; margin-bottom: 2px; }
.lc-og-count { font-size: 0.68rem; color: var(--gray); }

@media (max-width: 900px) {
    .lc-genre-hero-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .lc-genre-stats { flex-direction: row; }
    .lc-gstat-num, .lc-gstat-label { text-align: left; }
    .lc-genre-title { font-size: 2.2rem; }
    .lc-film-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── GENERIC CONTENT PAGE (About, Non-Profit, Privacy Policy, etc.) ─── */
.lc-page-content-wrap { padding: 3rem 2rem 4rem; }
.lc-page-content { max-width: 760px; margin: 0 auto; font-size: 0.95rem; line-height: 1.75; color: var(--black); }
.lc-page-content h2, .lc-page-content h3, .lc-page-content h4 { margin: 2rem 0 0.9rem; line-height: 1.25; }
.lc-page-content h2 { font-size: 1.6rem; }
.lc-page-content h3 { font-size: 1.3rem; }
.lc-page-content p { margin-bottom: 1.1rem; }
.lc-page-content ul, .lc-page-content ol { margin: 0 0 1.1rem 1.4rem; }
.lc-page-content li { margin-bottom: 0.4rem; }
.lc-page-content a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.lc-page-content a:hover { color: var(--red-dark); }
.lc-page-content img, .lc-page-content .wp-block-image { border-radius: 8px; margin: 0.5rem 0 1.5rem; }
.lc-page-content strong { font-weight: 700; }
.lc-page-content .alignright { float: right; margin-left: 1.5rem; max-width: 45%; }
.lc-page-content .alignleft { float: left; margin-right: 1.5rem; max-width: 45%; }
.lc-page-content::after { content: ""; display: table; clear: both; }

.lc-board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin: 1.5rem 0 2rem; }
.lc-board-member img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin-bottom: 0.9rem; }
.lc-board-member h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.15rem; }
.lc-board-title { font-size: 0.78rem; color: var(--red); font-weight: 500; margin-bottom: 0.6rem !important; }
.lc-board-member p:not(.lc-board-title) { font-size: 0.85rem; color: #555; line-height: 1.6; }

/* ── RELATED FILMS ────────────────────────────────────────── */
.lc-related-films { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.lc-related-grid.lc-film-grid { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.25rem; }

/* ── COMMENTS ─────────────────────────────────────────────── */
.lc-comments-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.lc-comments-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; }
.lc-comments-closed { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.5rem; }

.lc-comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.lc-comment-list .children { list-style: none; margin: 1.25rem 0 0; padding: 0 0 0 2.5rem; }
.lc-comment-list li.comment,
.lc-comment-list li.pingback,
.lc-comment-list li.trackback { margin-bottom: 1.25rem; }
.lc-comment-list .comment-body {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 1.1rem 1.25rem;
}
.lc-comment-list .comment-meta {
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.lc-comment-list .comment-author.vcard { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.lc-comment-list .comment-author img.avatar { border-radius: 50%; display: block; flex-shrink: 0; }
.lc-comment-list .comment-author .fn {
    font-style: normal; font-weight: 700; font-size: 0.9rem; display: inline;
}
.lc-comment-list .comment-author .says { font-size: 0.85rem; color: var(--gray); font-weight: 400; margin-left: 0.15rem; }
.lc-comment-list .comment-metadata { font-size: 0.72rem; color: var(--gray); white-space: nowrap; flex-shrink: 0; }
.lc-comment-list .comment-metadata a { color: var(--gray); text-decoration: none; }
.lc-comment-list .comment-content { font-size: 0.88rem; line-height: 1.65; color: var(--black); }
.lc-comment-list .comment-content p { margin-bottom: 0.6rem; }
.lc-comment-list .comment-content p:last-child { margin-bottom: 0; }
.lc-comment-list .reply { margin-top: 0.5rem; }
.lc-comment-list .comment-reply-link {
    font-size: 0.75rem; color: var(--red); text-decoration: none; font-weight: 500;
}
.lc-comment-list .comment-reply-link:hover { text-decoration: underline; }
.lc-comment-list .comment-awaiting-moderation {
    display: block; margin-top: 0.5rem; font-size: 0.78rem; color: var(--red); font-style: italic;
}
.lc-comment-list .bypostauthor > .comment-body { border-color: var(--red); }

.lc-comments-section .comment-navigation { display: flex; justify-content: space-between; margin-bottom: 2rem; font-size: 0.85rem; }
.lc-comments-section .comment-navigation a { color: var(--red); text-decoration: none; }

.lc-comment-form.lc-form-grid { max-width: 100%; }
.lc-comment-form .comment-form-cookies-consent { grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.lc-comment-form .comment-form-cookies-consent label { white-space: nowrap; }
.lc-comments-section .lc-form-group input,
.lc-comments-section .lc-form-group textarea {
    background: var(--white); border: 1px solid var(--border); color: var(--black);
}
.lc-comments-section .lc-form-group input:focus,
.lc-comments-section .lc-form-group textarea:focus { border-color: var(--red); }
.lc-comments-section .lc-form-group label { color: var(--gray); }
.lc-comments-section .lc-submit-btn { width: auto; padding: 12px 32px; }
.lc-comments-section .comment-notes,
.lc-comments-section .logged-in-as { grid-column: 1 / -1; font-size: 0.8rem; color: var(--gray); margin-bottom: 0.25rem; }
.lc-comments-section .logged-in-as a { color: var(--red); }
.lc-comments-section .form-submit { grid-column: 1 / -1; margin-top: 0.5rem; }

@media (max-width: 640px) {
    .lc-comment-list .comment-meta { flex-wrap: wrap; }
    .lc-comment-list .comment-metadata { margin-left: calc(44px + 0.6rem); }
}

/* ── BLOG / NEWS PAGE ─────────────────────────────────────── */
.lc-blog-page { background: var(--black); }
.lc-blog-hero { padding: 2.5rem 2rem; }
.lc-blog-hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.lc-blog-title { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
.lc-blog-subtitle { font-size: 0.88rem; color: #666; max-width: 460px; line-height: 1.65; }

/* Featured post */
.lc-blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.lc-blog-featured-img { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; }
.lc-blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-blog-featured-img--placeholder { background: linear-gradient(135deg, #2a1a10, #1a1a2e); aspect-ratio: 16/9; display: block; border-radius: 8px; }
.lc-blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.lc-blog-cat { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; background: #FAECE7; color: #993C1D; padding: 3px 9px; border-radius: 3px; }
.lc-blog-date { font-size: 0.75rem; color: var(--gray); }
.lc-blog-featured-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.lc-blog-featured-title a { color: var(--black); text-decoration: none; transition: color 0.2s; }
.lc-blog-featured-title a:hover { color: var(--red); }
.lc-blog-excerpt { font-size: 0.9rem; color: #555; line-height: 1.75; margin-bottom: 1.25rem; }
.lc-blog-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 500; color: var(--red); text-decoration: none; transition: gap 0.15s; }
.lc-blog-read-more:hover { gap: 8px; }

/* Blog card grid */
.lc-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.lc-blog-card { background: #fff; border-radius: 8px; border: 0.5px solid var(--border); overflow: hidden; transition: transform 0.18s; }
.lc-blog-card:hover { transform: translateY(-3px); }
.lc-blog-card-thumb { display: block; height: 180px; overflow: hidden; background: linear-gradient(135deg,#2a1a10,#1a1a2e); }
.lc-blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-blog-card-thumb--placeholder { width: 100%; height: 100%; }
.lc-blog-card-body { padding: 1rem 1.1rem; }
.lc-blog-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin: 0.5rem 0 0.6rem; line-height: 1.3; }
.lc-blog-card-title a { color: var(--black); text-decoration: none; }
.lc-blog-card-title a:hover { color: var(--red); }
.lc-blog-card-excerpt { font-size: 0.8rem; color: #666; line-height: 1.6; margin-bottom: 0.9rem; }
.lc-blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 0.5px solid var(--border); }
.lc-blog-author { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--gray); }
.lc-blog-avatar { width: 22px !important; height: 22px !important; border-radius: 50%; }

/* ── SINGLE BLOG POST ─────────────────────────────────────── */
.lc-post-hero { background: var(--black); padding: 2.5rem 2rem 2rem; }
.lc-post-hero-inner { max-width: 760px; margin: 0 auto; }
.lc-post-cat-badge { display: inline-block; font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; background: var(--red); color: #fff; padding: 3px 10px; border-radius: 3px; margin-bottom: 0.9rem; }
.lc-post-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
.lc-post-byline { display: flex; align-items: center; gap: 10px; }
.lc-post-author-avatar { width: 36px !important; height: 36px !important; border-radius: 50%; }
.lc-post-author-name { display: block; font-size: 0.85rem; font-weight: 500; color: #ccc; }
.lc-post-date { display: block; font-size: 0.72rem; color: #555; }
.lc-post-featured-img { max-height: 480px; overflow: hidden; }
.lc-post-featured-img img { width: 100%; object-fit: cover; display: block; }
.lc-post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; padding: 2.5rem 0; }
.lc-post-body { font-size: 1rem; line-height: 1.85; color: #333; }
.lc-post-body h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.lc-post-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.6rem; }
.lc-post-body p { margin-bottom: 1.25rem; }
.lc-post-body img { max-width: 100%; border-radius: 6px; margin: 1rem 0; }
.lc-post-body a { color: var(--red); }
.lc-post-body blockquote { border-left: 3px solid var(--red); padding: 0.75rem 1.25rem; margin: 1.5rem 0; background: var(--off-white); border-radius: 0 4px 4px 0; font-style: italic; color: #555; }
.lc-post-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 2rem 0; }
.lc-post-tag { background: var(--off-white); color: var(--gray); font-size: 0.75rem; padding: 4px 11px; border-radius: 100px; text-decoration: none; border: 0.5px solid var(--border); transition: all 0.15s; }
.lc-post-tag:hover { background: var(--black); color: #fff; border-color: var(--black); }
.lc-post-share { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); margin: 1.5rem 0; }
.lc-post-share-label { font-size: 0.78rem; font-weight: 500; color: var(--gray); }
.lc-post-share-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0.5px solid var(--border); border-radius: 4px; padding: 7px 14px; font-size: 0.78rem; cursor: pointer; font-family: 'DM Sans', sans-serif; color: var(--black); transition: all 0.15s; }
.lc-post-share-btn:hover { border-color: var(--red); color: var(--red); }

/* Sidebar film rows */
.lc-sidebar-film-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 0.5px solid var(--border); text-decoration: none; color: var(--black); }
.lc-sidebar-film-row:last-of-type { border-bottom: none; }
.lc-sidebar-film-row:hover .lc-sidebar-film-title { color: var(--red); }
.lc-sidebar-film-thumb { width: 60px; height: 38px; border-radius: 4px; overflow: hidden; flex-shrink: 0; background: #1a1a2e; }
.lc-sidebar-film-thumb img { width: 60px; height: 38px; object-fit: cover; }
.lc-sidebar-film-thumb--empty { width: 60px; height: 38px; }
.lc-sidebar-film-title { font-size: 0.8rem; font-weight: 500; line-height: 1.3; transition: color 0.15s; }
.lc-sidebar-film-dur { font-size: 0.7rem; color: var(--gray); }
.lc-sidebar-recent-post { display: block; padding: 7px 0; border-bottom: 0.5px solid var(--border); text-decoration: none; }
.lc-sidebar-recent-post:last-child { border-bottom: none; }
.lc-sidebar-recent-post:hover .lc-sidebar-recent-title { color: var(--red); }
.lc-sidebar-recent-title { font-size: 0.82rem; font-weight: 500; line-height: 1.35; margin-bottom: 2px; color: var(--black); transition: color 0.15s; }
.lc-sidebar-recent-date { font-size: 0.7rem; color: var(--gray); }

@media (max-width: 900px) {
    .lc-blog-featured { grid-template-columns: 1fr; }
    .lc-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .lc-post-layout { grid-template-columns: 1fr; }
    .lc-post-title { font-size: 1.8rem; }
}
@media (max-width: 640px) {
    .lc-blog-grid { grid-template-columns: 1fr; }
}

/* ── FILMMAKER ARCHIVE ────────────────────────────────────── */
.lc-fm-archive-nav { background: var(--black); border-top: 1px solid #222; padding: 1rem 2rem; }
.lc-fm-archive-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.lc-alpha-nav { display: flex; flex-wrap: wrap; gap: 4px; }
.lc-alpha-btn { padding: 5px 10px; border-radius: 4px; font-size: 0.78rem; font-weight: 500; color: #555; text-decoration: none; border: 1px solid #333; transition: all 0.15s; line-height: 1; }
.lc-alpha-btn:hover { color: #ccc; border-color: #555; }
.lc-alpha-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

.lc-fm-search-form { display: flex; align-items: center; gap: 0; max-width: 320px; }
.lc-fm-search-input { flex: 1; background: #111; border: 1px solid #333; border-right: none; border-radius: 4px 0 0 4px; padding: 8px 12px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; outline: none; }
.lc-fm-search-input::placeholder { color: #444; }
.lc-fm-search-input:focus { border-color: var(--red); }
.lc-fm-search-btn { background: var(--red); border: none; border-radius: 0 4px 4px 0; padding: 8px 12px; cursor: pointer; color: #fff; display: flex; align-items: center; }

.lc-fm-archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; }
.lc-fm-archive-card { background: #fff; border-radius: 8px; border: 0.5px solid var(--border); overflow: hidden; text-decoration: none; color: var(--black); transition: transform 0.18s; display: block; }
.lc-fm-archive-card:hover { transform: translateY(-3px); }
.lc-fm-archive-photo { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--black); display: flex; align-items: center; justify-content: center; }
.lc-fm-archive-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-fm-archive-initials { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #fff; }
.lc-fm-archive-info { padding: 0.75rem 0.9rem; }
.lc-fm-archive-name { font-weight: 500; font-size: 0.88rem; margin-bottom: 2px; line-height: 1.3; }
.lc-fm-archive-role { font-size: 0.72rem; color: var(--gray); margin-bottom: 4px; }
.lc-fm-archive-count { font-size: 0.72rem; color: var(--red); font-weight: 500; }

/* ── NAV SEARCH ───────────────────────────────────────────── */
.lc-nav-right { display: flex; align-items: center; gap: 1.5rem; }
.lc-nav-search { position: relative; display: flex; align-items: center; }
.lc-search-toggle { background: none; border: 1px solid #333; border-radius: 4px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #aaa; transition: all 0.15s; }
.lc-search-toggle:hover, .lc-search-toggle.active { border-color: var(--red); color: var(--red); }
.lc-search-dropdown { display: none; position: absolute; top: calc(100% + 10px); right: 0; width: 360px; background: #111; border: 1px solid #2a2a2a; border-radius: 8px; padding: 1rem; z-index: 200; }
.lc-search-dropdown.open { display: block; }
.lc-search-form { display: flex; gap: 0; }
.lc-search-input { flex: 1; background: #1a1a1a; border: 1px solid #333; border-right: none; border-radius: 4px 0 0 4px; padding: 9px 14px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.lc-search-input:focus { border-color: var(--red); }
.lc-search-input::placeholder { color: #444; }
.lc-search-submit { background: var(--red); border: none; border-radius: 0 4px 4px 0; padding: 9px 14px; cursor: pointer; color: #fff; display: flex; align-items: center; transition: opacity 0.2s; }
.lc-search-submit:hover { opacity: 0.85; }
.lc-search-hints { display: flex; align-items: center; gap: 6px; margin-top: 0.6rem; flex-wrap: wrap; }
.lc-search-hints span { font-size: 0.72rem; color: #555; }
.lc-search-hints a { font-size: 0.72rem; color: #888; text-decoration: none; background: #1a1a1a; border: 1px solid #2a2a2a; padding: 2px 8px; border-radius: 100px; transition: all 0.15s; }
.lc-search-hints a:hover { color: var(--red); border-color: var(--red); }

/* ── SEARCH RESULTS PAGE ──────────────────────────────────── */
.lc-search-hero { background: var(--black); padding: 2.5rem 2rem; }
.lc-search-hero-inner { max-width: 1200px; margin: 0 auto; }
.lc-search-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 0.5rem; }
.lc-search-title em { color: var(--red); font-style: normal; }
.lc-search-summary { font-size: 0.88rem; color: #666; margin-bottom: 1.5rem; }
.lc-search-hero-form { display: flex; gap: 0; max-width: 560px; }
.lc-search-hero-input { flex: 1; background: #111; border: 1px solid #333; border-right: none; border-radius: 4px 0 0 4px; padding: 11px 16px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; }
.lc-search-hero-input:focus { border-color: var(--red); }
.lc-search-hero-input::placeholder { color: #444; }
.lc-search-hero-btn { background: var(--red); border: none; border-radius: 0 4px 4px 0; padding: 11px 22px; cursor: pointer; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; transition: opacity 0.2s; }
.lc-search-hero-btn:hover { opacity: 0.85; }

.lc-search-section { margin-bottom: 3rem; }
.lc-search-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.lc-search-section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; gap: 0.6rem; }
.lc-search-count { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; background: #FAECE7; color: var(--red); padding: 2px 9px; border-radius: 100px; }
.lc-search-section-header a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); font-weight: 500; text-decoration: none; }

.lc-search-genre-matches { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.lc-search-genre-card { background: var(--black); border-radius: 6px; padding: 0.75rem 1.25rem; text-decoration: none; transition: opacity 0.15s; }
.lc-search-genre-card:hover { opacity: 0.85; }
.lc-search-genre-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.lc-search-genre-count { font-size: 0.72rem; color: var(--red); margin-top: 2px; }

.lc-search-posts-list { display: flex; flex-direction: column; gap: 0; }
.lc-search-post-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 0.5px solid var(--border); text-decoration: none; color: var(--black); transition: background 0.15s; }
.lc-search-post-row:last-child { border-bottom: none; }
.lc-search-post-row:hover .lc-search-post-title { color: var(--red); }
.lc-search-post-thumb { width: 80px; height: 50px; border-radius: 4px; overflow: hidden; flex-shrink: 0; background: #1a1a2e; }
.lc-search-post-thumb img { width: 80px; height: 50px; object-fit: cover; display: block; }
.lc-search-post-title { font-weight: 500; font-size: 0.92rem; margin: 4px 0 4px; line-height: 1.3; transition: color 0.15s; }
.lc-search-post-excerpt { font-size: 0.78rem; color: var(--gray); line-height: 1.5; margin-bottom: 4px; }
.lc-search-post-date { font-size: 0.72rem; color: #bbb; }

.lc-search-empty, .lc-search-no-results { text-align: center; padding: 3rem 0; color: var(--gray); }
.lc-search-no-icon { display: flex; justify-content: center; margin-bottom: 1rem; color: var(--border); }
.lc-search-no-results h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--black); }
.lc-search-no-results p { margin-bottom: 1.5rem; }
.lc-search-suggestions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.lc-search-suggestion-group h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 0.75rem; }
.lc-pill span { font-size: 0.65rem; color: var(--red); margin-left: 3px; }

/* ── STAR RATING WIDGET ───────────────────────────────────── */
.lc-rating-widget {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
}
.lc-rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}
.lc-star {
    display: inline-flex;
    transition: transform 0.1s;
    cursor: pointer;
}
.lc-star:hover { transform: scale(1.15); }
.lc-rating-stars:hover .lc-star svg polygon { fill: none; stroke: #bbb; }
.lc-rating-stars .lc-star:hover svg polygon,
.lc-rating-stars .lc-star:hover ~ .lc-star svg polygon { fill: none !important; stroke: #bbb !important; }
.lc-rating-stars:hover .lc-star:not(.lc-star--hover-off) svg polygon { fill: #D85A30 !important; stroke: #D85A30 !important; }
.lc-rating-widget.rated .lc-rating-stars { cursor: default; pointer-events: none; }
.lc-rating-meta {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 0.85rem;
}
.lc-rating-score {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}
.lc-rating-divider { font-size: 0.8rem; color: var(--gray); }
.lc-rating-count { font-size: 0.78rem; color: var(--gray); }
.lc-rating-no-votes { font-size: 0.78rem; color: var(--gray); font-style: italic; }
.lc-rating-thanks {
    font-size: 0.78rem;
    color: #0F6E56;
    font-weight: 500;
    background: #E1F5EE;
    padding: 3px 10px;
    border-radius: 4px;
}
.lc-views-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--gray);
    margin-left: auto;
}
.lc-views-label { font-size: 0.78rem; color: var(--gray); }
.lc-meta-views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--gray);
}

/* ── MINI CARD RATING ─────────────────────────────────────── */
.lc-card-mini-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 3px;
}
.lc-card-rating-score {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--red);
    margin-left: 3px;
}

/* ── SHARE MODAL ──────────────────────────────────────────── */
.lc-share-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lc-share-overlay.open { display: flex; }

.lc-share-modal {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    padding: 1.75rem;
    position: relative;
    animation: lc-share-in 0.2s ease;
}
@keyframes lc-share-in {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lc-share-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.15s;
}
.lc-share-close:hover { background: var(--off-white); color: var(--black); }

/* Thumbnail preview strip */
.lc-share-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--off-white);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.lc-share-preview img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    display: block;
}
.lc-share-preview-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 3px;
}
.lc-share-preview-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.lc-share-instruction {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Network grid */
.lc-share-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.lc-share-network {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    border: none;
    position: relative;
}
.lc-share-network:hover { opacity: 0.88; transform: translateY(-1px); }
.lc-share-network:active { transform: scale(0.97); }
.lc-share-network span:first-of-type { flex: 1; }
.lc-share-note {
    font-size: 0.65rem !important;
    opacity: 0.7;
    font-weight: 400 !important;
    flex: none !important;
}

.lc-share-x       { background: #000;    color: #fff; }
.lc-share-fb      { background: #1877F2; color: #fff; }
.lc-share-bluesky { background: #0085FF; color: #fff; }
.lc-share-ig      { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.lc-share-tiktok  { background: #000;    color: #fff; }
.lc-share-copy    { background: var(--off-white); color: var(--black); border: 0.5px solid var(--border); grid-column: 1/-1; justify-content: center; }
.lc-share-copy:hover { background: var(--border); }
.lc-share-copy.copied { background: #E1F5EE; color: #0F6E56; border-color: #9FE1CB; }

.lc-share-instagram-tip {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.75rem;
    color: #185FA5;
    background: #E6F1FB;
    border-radius: 6px;
    padding: 9px 12px;
    line-height: 1.5;
    margin-top: 0.5rem;
}
.lc-share-instagram-tip svg { flex-shrink: 0; margin-top: 1px; }

/* ── SHARE MODAL ──────────────────────────────────────────── */
.lc-share-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lc-share-overlay.open { display: flex; }

.lc-share-modal {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
}

.lc-share-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid #1e1e1e;
}
.lc-share-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.lc-share-filmname {
    font-size: 0.78rem;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}
.lc-share-close {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 2px;
    transition: color 0.15s;
    flex-shrink: 0;
}
.lc-share-close:hover { color: #fff; }

.lc-share-preview {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #0a0a14;
}
.lc-share-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    display: block;
}
.lc-share-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.9rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.lc-share-preview-label {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lc-share-platforms {
    padding: 0.5rem 0;
}
.lc-share-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.lc-share-platform:hover { background: #1a1a1a; }
.lc-share-platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lc-share-x         .lc-share-platform-icon { background: #000; color: #fff; }
.lc-share-fb        .lc-share-platform-icon { background: #1877F2; color: #fff; }
.lc-share-bluesky   .lc-share-platform-icon { background: #0085FF; color: #fff; }
.lc-share-ig        .lc-share-platform-icon { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.lc-share-tiktok    .lc-share-platform-icon { background: #000; color: #fff; }
.lc-share-platform-text { flex: 1; }
.lc-share-platform-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1px;
}
.lc-share-platform-hint {
    display: block;
    font-size: 0.72rem;
    color: #555;
}
.lc-share-arrow { color: #333; flex-shrink: 0; }
.lc-share-platform:hover .lc-share-arrow { color: #666; }

.lc-share-copylink {
    display: flex;
    gap: 0;
    padding: 0 1.25rem 1rem;
    margin-top: 0.25rem;
    border-top: 1px solid #1e1e1e;
    padding-top: 1rem;
}
.lc-share-link-input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 8px 12px;
    color: #888;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    outline: none;
}
.lc-share-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #222;
    border: 1px solid #2a2a2a;
    border-radius: 0 4px 4px 0;
    padding: 8px 14px;
    color: #aaa;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.15s;
    white-space: nowrap;
}
.lc-share-copy-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.lc-share-copy-btn.copied { background: #0F6E56; color: #fff; border-color: #0F6E56; }

.lc-share-ig-helper {
    margin: 0 1.25rem 1rem;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 0.9rem 1rem;
}
.lc-share-ig-steps { display: flex; flex-direction: column; gap: 8px; }
.lc-share-ig-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.4;
}
.lc-share-ig-num {
    width: 20px;
    height: 20px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── WIDGET AREAS ─────────────────────────────────────────── */

/* Widget title inside sidebar card */
.lc-widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.5px solid var(--border);
    color: var(--black);
}

/* WordPress default widgets — styled to match the theme */
.lc-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lc-widget ul li {
    padding: 5px 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 0.82rem;
    color: var(--black);
}
.lc-widget ul li:last-child { border-bottom: none; }
.lc-widget ul li a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.15s;
}
.lc-widget ul li a:hover { color: var(--red); }
.lc-widget p { font-size: 0.85rem; line-height: 1.65; color: #555; margin-bottom: 0.6rem; }
.lc-widget p:last-child { margin-bottom: 0; }
.lc-widget img { max-width: 100%; border-radius: 4px; }
.lc-widget select {
    width: 100%;
    background: var(--off-white);
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 7px 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    outline: none;
}
.lc-widget input[type="text"],
.lc-widget input[type="email"],
.lc-widget input[type="search"] {
    width: 100%;
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 8px 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.2s;
}
.lc-widget input:focus { border-color: var(--red); }
.lc-widget .widget-title { /* WP default widget title class */
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

/* Tag cloud widget */
.lc-widget .tagcloud a {
    display: inline-block;
    margin: 2px;
    padding: 3px 9px;
    background: var(--off-white);
    border: 0.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem !important;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.15s;
}
.lc-widget .tagcloud a:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* Search widget */
.lc-widget .search-form {
    display: flex;
    gap: 0;
}
.lc-widget .search-form input {
    border-right: none;
    border-radius: 4px 0 0 4px;
}
.lc-widget .search-form button,
.lc-widget .search-submit {
    background: var(--red);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 12px;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
}

/* ── FOOTER WIDGET AREA ───────────────────────────────────── */
.lc-footer-widgets-wrap {
    background: #0d0d0d;
    border-top: 1px solid #222;
    padding: 2.5rem 0;
}
.lc-footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.lc-footer-widget {}
.lc-footer-widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lc-footer-widget ul { list-style: none; padding: 0; margin: 0; }
.lc-footer-widget ul li { padding: 4px 0; font-size: 0.8rem; }
.lc-footer-widget ul li a { color: #666; text-decoration: none; transition: color 0.15s; }
.lc-footer-widget ul li a:hover { color: #aaa; }
.lc-footer-widget p { font-size: 0.8rem; color: #555; line-height: 1.65; }
.lc-footer-widget .tagcloud a { color: #555; font-size: 0.75rem !important; }
.lc-footer-widget .tagcloud a:hover { color: var(--red); }

/* ── MESSAGING ─────────────────────────────────────────────── */
.lc-messages-layout { display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; min-height: 500px; }
.lc-messages-list { border: 1px solid #333; border-radius: 6px; overflow: hidden; height: fit-content; }
.lc-conversation-row {
    display: flex; align-items: center; gap: 10px; padding: 0.85rem 1rem;
    border-bottom: 1px solid #262626; text-decoration: none; color: #ccc;
    transition: background 0.15s;
}
.lc-conversation-row:last-child { border-bottom: none; }
.lc-conversation-row:hover { background: #1a1a1a; }
.lc-conversation-row.active { background: #1a0a05; border-left: 2px solid var(--red); }
.lc-conversation-avatar {
    width: 36px; height: 36px; border-radius: 50%; background: #222; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    font-size: 0.8rem; color: #888; font-weight: 600;
}
.lc-conversation-avatar img { width: 36px; height: 36px; object-fit: cover; }
.lc-conversation-info { flex: 1; min-width: 0; }
.lc-conversation-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.lc-conversation-preview { font-size: 0.75rem; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lc-conversation-unread {
    background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 700;
    min-width: 18px; height: 18px; border-radius: 100px; display: flex;
    align-items: center; justify-content: center; padding: 0 5px; flex-shrink: 0;
}
.lc-messages-thread { border: 1px solid #333; border-radius: 6px; padding: 1.5rem; display: flex; flex-direction: column; }
.lc-thread-header { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #262626; }
.lc-thread-header a { color: #fff; text-decoration: none; }
.lc-thread-header a:hover { color: var(--red); }
.lc-thread-messages { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 1rem; max-height: 420px; overflow-y: auto; }
.lc-msg-bubble { max-width: 75%; padding: 8px 14px; border-radius: 12px; }
.lc-msg-theirs { background: #222; align-self: flex-start; border-bottom-left-radius: 2px; }
.lc-msg-mine { background: var(--red); align-self: flex-end; border-bottom-right-radius: 2px; }
.lc-msg-body { font-size: 0.88rem; line-height: 1.5; color: #fff; white-space: pre-wrap; word-break: break-word; }
.lc-msg-time { font-size: 0.65rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.lc-message-form { display: flex; gap: 10px; align-items: flex-end; }
.lc-message-form textarea {
    flex: 1; background: #111; border: 1px solid #333; border-radius: 4px;
    padding: 10px 14px; color: #fff; font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; resize: vertical; min-height: 44px; max-height: 120px;
}
.lc-message-form textarea:focus { border-color: var(--red); outline: none; }
@media (max-width: 700px) {
    .lc-messages-layout { grid-template-columns: 1fr; }
}

/* ── CREDIT MARKS (filmmaker badges) ─────────────────────────
   Colors sampled from assets/img/loscortos-logo.png. --red above
   doubles as the "terracotta" badge color. */
:root {
    --lc-lime: #ADD92A;
    --lc-teal: #32D7AD;
    --lc-purple: #782BDB;
    --lc-orange: #DB7729;
    --lc-ink-faint: #b8b2a8;
    --lc-surface-2: #ece4d5;
}
.lc-badges { margin: 1.5rem 0 2rem; }
.lc-badges-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gray); font-weight: 700; margin-bottom: 0.85rem;
}
.lc-badges-row { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.lc-badge-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; width: 84px; }
.lc-medallion { width: 68px; height: 68px; }
.lc-medallion-bezel { fill: none; stroke: var(--black); stroke-opacity: 0.14; stroke-width: 1.4; }
.lc-medallion-fill { filter: drop-shadow(0 2px 5px rgba(26,20,15,0.15)); }
.lc-medallion-highlight { fill: none; stroke: #fff; stroke-opacity: 0.35; stroke-width: 2; stroke-linecap: round; }
.lc-medallion-track { stroke: var(--border); stroke-width: 3; }
.lc-medallion-locked-fill { fill: var(--lc-surface-2); }
.lc-badge-caption { font-size: 0.72rem; text-align: center; color: var(--gray); line-height: 1.35; }

/* ── FILMS OF THE FUTURE — unlisted archive ─────────────────── */
.lc-fotf { background: #12100e; color: #EFEAE2; }

.lc-fotf-hero { padding: 5rem 1.5rem 3.5rem; text-align: center; background:
    radial-gradient(ellipse at 50% 0%, rgba(216,90,48,0.18), transparent 60%); }
.lc-fotf-hero-inner { max-width: 640px; margin: 0 auto; }
.lc-fotf-kicker { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; font-weight: 600; }
.lc-fotf-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; margin-bottom: 1rem; }
.lc-fotf-sub { color: #B8B2A8; font-size: 1rem; line-height: 1.7; }

.lc-fotf-nav { position: sticky; top: 0; z-index: 20; display: flex; gap: 0; overflow-x: auto;
    background: rgba(18,16,14,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 1rem; scrollbar-width: thin; }
.lc-fotf-nav-item { flex-shrink: 0; display: flex; align-items: baseline; gap: 0.5rem; padding: 0.9rem 1.1rem;
    font-size: 0.82rem; color: #9C968C; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; white-space: nowrap; }
.lc-fotf-nav-item:hover { color: #fff; border-bottom-color: var(--red); }
.lc-fotf-nav-num { font-family: 'Playfair Display', serif; font-size: 0.75rem; color: var(--red); }

.lc-fotf-entry { border-bottom: 1px solid rgba(255,255,255,0.08); scroll-margin-top: 3.5rem; }
.lc-fotf-entry-inner { max-width: 1180px; margin: 0 auto; padding: 4.5rem 1.5rem; display: grid;
    grid-template-columns: 1.3fr 1fr; gap: 3.5rem; align-items: center; }
.lc-fotf-entry:nth-child(even) .lc-fotf-entry-inner { direction: rtl; }
.lc-fotf-entry:nth-child(even) .lc-fotf-entry-inner > * { direction: ltr; }

.lc-fotf-entry-media { position: relative; }
.lc-fotf-player { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); background: #000; }
.lc-fotf-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lc-fotf-thumb { width: 100%; border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.lc-fotf-entry-index { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: #6B655C; margin-bottom: 1rem; }
.lc-fotf-badge { display: inline-block; background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px; margin-bottom: 1.1rem; }
.lc-fotf-entry-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
.lc-fotf-entry-text { color: #C7C1B7; line-height: 1.8; font-size: 0.98rem; margin-bottom: 2rem; }

.lc-fotf-entry-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.lc-fotf-uplink { font-size: 0.8rem; color: #8A847A; }
.lc-fotf-uplink:hover { color: #fff; }
.lc-fotf-nextlink { font-size: 0.85rem; color: var(--red); font-weight: 600; }
.lc-fotf-nextlink:hover { text-decoration: underline; }

@media (max-width: 780px) {
    .lc-fotf-entry-inner { grid-template-columns: 1fr; padding: 3rem 1.25rem; gap: 1.75rem; }
    .lc-fotf-entry:nth-child(even) .lc-fotf-entry-inner { direction: ltr; }
}

.lc-fotf-expand { position: absolute; right: 10px; bottom: 10px; display: flex; align-items: center; gap: 6px;
    background: rgba(0,0,0,0.65); color: #fff; border: 0; border-radius: 999px; padding: 0.45rem 0.9rem;
    font-size: 0.78rem; font-weight: 600; cursor: pointer; z-index: 2; transition: background 0.15s; }
.lc-fotf-expand:hover { background: var(--red); }
.lc-fotf-expand-icon { font-style: normal; font-size: 0.95rem; }

.lc-fotf-theater[hidden] { display: none; }
.lc-fotf-theater { position: fixed; inset: 0; z-index: 1000; background: #000; display: flex; flex-direction: column; }
.lc-fotf-theater-top { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem;
    color: #EFEAE2; }
.lc-fotf-theater-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.lc-fotf-theater-close { background: none; border: 0; color: #EFEAE2; font-size: 1.8rem; line-height: 1; cursor: pointer; padding: 0 0.25rem; }
.lc-fotf-theater-close:hover { color: var(--red); }

.lc-fotf-theater-stage { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 0 1.25rem; }
.lc-fotf-theater-player { width: 100%; max-width: 1100px; aspect-ratio: 16/9; background: #000; }
.lc-fotf-theater-player iframe { width: 100%; height: 100%; border: 0; }

.lc-fotf-theater-info { max-width: 1100px; margin: 0 auto; width: 100%; padding: 1rem 1.25rem 0.5rem; }
.lc-fotf-theater-text { color: #C7C1B7; font-size: 0.92rem; line-height: 1.7; margin: 0.6rem 0 0; }

.lc-fotf-filmstrip { display: flex; gap: 0; overflow-x: auto; border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0 1rem; flex-shrink: 0; }
.lc-fotf-strip-item { flex-shrink: 0; display: flex; align-items: baseline; gap: 0.5rem; padding: 0.9rem 1rem;
    font-size: 0.8rem; color: #8A847A; border-bottom: 2px solid transparent; background: none; border-top: none;
    border-left: none; border-right: none; cursor: pointer; white-space: nowrap; }
.lc-fotf-strip-item:hover { color: #fff; }
.lc-fotf-strip-item.is-active { color: #fff; border-bottom-color: var(--red); }
.lc-fotf-strip-num { font-family: 'Playfair Display', serif; color: var(--red); font-size: 0.75rem; }

@media (max-width: 640px) {
    .lc-fotf-theater-title { display: none; }
}

.lc-fotf-vote { display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem; margin: 0.9rem 0 1.1rem; position: relative; }
.lc-fotf-vote-stars { display: flex; gap: 4px; }
.lc-fotf-vote-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
    background: transparent; color: #C7C1B7; font-size: 0.82rem; font-weight: 600; cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s; }
.lc-fotf-vote-btn:hover:not(:disabled) { border-color: var(--red); color: #fff; }
.lc-fotf-vote-btn.is-selected { background: var(--red); border-color: var(--red); color: #fff; }
.lc-fotf-vote-btn:disabled { cursor: default; opacity: 0.6; }
.lc-fotf-vote-btn:disabled:not(.is-selected) { opacity: 0.35; }
.lc-fotf-vote-status { font-size: 0.78rem; color: #8A847A; }
.lc-fotf-results-toggle { background: none; border: 0; color: var(--red); font-size: 0.8rem; font-weight: 600;
    cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 2px; }

.lc-fotf-results-panel { position: absolute; top: calc(100% + 10px); left: 0; z-index: 5; width: 260px;
    background: #1c1a17; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
    padding: 0.9rem 1rem; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.lc-fotf-results-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.lc-fotf-results-n { width: 10px; font-size: 0.75rem; color: #C7C1B7; }
.lc-fotf-results-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.lc-fotf-results-bar { display: block; height: 100%; background: var(--red); border-radius: 3px; }
.lc-fotf-results-count { width: 18px; text-align: right; font-size: 0.75rem; color: #8A847A; }
.lc-fotf-results-summary { margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.78rem; color: #8A847A; }
.lc-fotf-results-avg { color: #fff; font-weight: 600; }

.lc-fotf-leaderboard-locked[hidden], .lc-fotf-leaderboard-unlocked[hidden] { display: none; }
.lc-fotf-leaderboard { padding: 4rem 1.5rem 5rem; background: radial-gradient(ellipse at 50% 100%, rgba(216,90,48,0.12), transparent 60%); }
.lc-fotf-leaderboard-inner { max-width: 640px; margin: 0 auto; }
.lc-fotf-leaderboard-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.4rem; text-align: center; }
.lc-fotf-leaderboard-sub { text-align: center; color: #8A847A; font-size: 0.85rem; margin-bottom: 2rem; }
.lc-fotf-leaderboard-locked { text-align: center; padding: 1.5rem 1rem; border: 1px dashed rgba(255,255,255,0.15); border-radius: 10px; }
.lc-fotf-leaderboard-locked .lc-fotf-leaderboard-sub { margin-bottom: 0.6rem; }
.lc-fotf-leaderboard-progress { text-align: center; font-size: 0.85rem; color: var(--red); font-weight: 600; }
.lc-fotf-lb-row { display: grid; grid-template-columns: 28px 1fr auto auto; align-items: center; gap: 14px;
    padding: 0.75rem 1rem; border-radius: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); transition: background 0.25s; }
.lc-fotf-lb-row.is-leader { background: rgba(216,90,48,0.12); border-bottom-color: rgba(216,90,48,0.3); }
.lc-fotf-lb-rank { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: #6B655C; text-align: center; }
.is-leader .lc-fotf-lb-rank { color: var(--red); font-weight: 700; }
.lc-fotf-lb-name { font-size: 0.92rem; color: #EFEAE2; display: flex; align-items: center; gap: 8px; }
.lc-fotf-lb-badge { background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.03em;
    text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 999px; }
.lc-fotf-lb-avg { font-size: 0.85rem; color: #C7C1B7; font-weight: 600; }
.lc-fotf-lb-count { font-size: 0.78rem; color: #8A847A; min-width: 60px; text-align: right; }

@media (max-width: 520px) {
    .lc-fotf-lb-row { grid-template-columns: 22px 1fr; row-gap: 4px; }
    .lc-fotf-lb-avg, .lc-fotf-lb-count { grid-column: 2; justify-self: start; }
}
.lc-badge-caption b { display: block; color: var(--black); font-size: 0.78rem; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 1px; }
