:root {
    --bg: #0f131c;
    --bg-deep: #20151d;
    --paper: #fff7e5;
    --paper-strong: #fff0c7;
    --ink: #171923;
    --muted: #6b6370;
    --line: #ead8b6;
    --line-strong: #d0a95d;
    --accent: #b92f22;
    --accent-strong: #7f1d18;
    --accent-soft: #ffe5c5;
    --accent-gold: #e1ad4f;
    --soft: #f4e5ca;
    --shadow-soft: 0 20px 58px rgba(2, 5, 12, 0.24);
    --shadow-card: 0 24px 70px rgba(2, 5, 12, 0.28);
    --container: 1100px;
    --radius-lg: 22px;
    --radius-md: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        radial-gradient(circle at 18% 12%, rgba(225, 173, 79, 0.32), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(185, 47, 34, 0.24), transparent 30%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 244, 214, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 244, 214, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

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

.site-shell {
    width: min(calc(100% - 28px), var(--container));
    margin: 0 auto;
    padding: 22px 0 56px;
    position: relative;
    z-index: 1;
}

.site-shell--agenda,
.site-shell--detail,
.site-shell--form,
.site-shell--narrow,
.site-shell--legal {
    max-width: var(--container);
}

.site-shell--narrow {
    max-width: 760px;
}

.site-shell--legal {
    max-width: 860px;
}

.topbar,
.page-topbar,
.hero-actions,
.topbar-actions,
.site-footer,
.site-footer-links,
.site-footer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.topbar,
.page-topbar,
.site-footer {
    justify-content: space-between;
}

.site-header,
.page-topbar,
.hero,
.featured-list,
.agenda-panel,
.detail-card,
.event-form,
.message-card,
.empty-state,
.ad {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.site-header,
.page-topbar {
    padding: 18px 20px;
}

.brand,
h1,
h2,
h3,
.month-title {
    font-family: 'Newsreader', serif;
}

.brand {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.topbar-link,
.text-link {
    color: var(--accent);
    font-weight: 800;
    position: relative;
}

.topbar-link::after,
.text-link::after,
.detail-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.topbar-link:hover::after,
.text-link:hover::after,
.detail-link:hover::after {
    transform: scaleX(1);
}

.hero {
    margin-top: 18px;
    padding: 30px 26px 24px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 247, 229, 0.98) 0%, rgba(255, 240, 199, 0.92) 54%, rgba(255, 219, 173, 0.86) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: -92px;
    top: -142px;
    border-radius: 50%;
    border: 18px solid rgba(23, 25, 35, 0.08);
    background:
        radial-gradient(circle, rgba(225, 173, 79, 0.24) 0%, rgba(225, 173, 79, 0) 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34px;
    background:
        repeating-linear-gradient(90deg, rgba(23, 25, 35, 0.82) 0 28px, transparent 28px 44px),
        linear-gradient(90deg, rgba(23, 25, 35, 0.9), rgba(185, 47, 34, 0.78));
    pointer-events: none;
}

.hero--compact {
    padding-bottom: 18px;
}

.hero-content {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker,
.featured-kicker {
    margin: 0 0 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 14ch;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.hero-text,
.section-copy,
.featured-item p,
.detail-summary,
.detail-copy,
.detail-block p,
.form-intro p,
.message-card p,
.empty-state p,
.site-footer {
    color: var(--muted);
    line-height: 1.7;
}

.hero-text {
    margin: 16px 0 0;
    max-width: 62ch;
    font-size: 1.08rem;
}

.hero-actions {
    margin-top: 22px;
}

.hero-actions--compact {
    margin-top: 14px;
}

.hero-trust {
    margin: 14px 0 0;
    color: #52627c;
    font-size: 0.94rem;
    line-height: 1.55;
}

.quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.audience-card h2 {
    margin-bottom: 10px;
}

.audience-card p {
    margin: 0;
}

.quick-chip {
    padding: 9px 14px;
    border: 1px solid rgba(123, 47, 47, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(123, 47, 47, 0.28);
}

.quick-chip.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(44, 28, 22, 0.08);
}

.button-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 12px 26px rgba(123, 47, 47, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--line-strong);
}

.button-large {
    width: 100%;
}

.button-loading {
    display: none;
}

.button.is-loading .button-label {
    display: none;
}

.button.is-loading .button-loading {
    display: inline;
}

.button[disabled] {
    cursor: wait;
    opacity: 0.85;
}

.main-content,
.detail-layout,
.form-layout {
    padding-top: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    flex-wrap: wrap;
    margin: 34px 0 18px;
}

.section-header p {
    margin: 0;
}

.featured-list {
    display: grid;
    gap: 14px;
    padding: 18px 20px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(252, 245, 236, 0.98) 100%);
}

.featured-item {
    padding: 16px 0 0;
    border-top: 1px solid rgba(185, 138, 61, 0.24);
}

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

.filter-bar {
    padding: 20px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(243, 227, 223, 0.75) 0%, rgba(255, 250, 241, 0.92) 100%);
    margin-bottom: 20px;
    border: 1px solid rgba(123, 47, 47, 0.12);
}

.filters {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.filters input,
.filters select {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(123, 47, 47, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font: inherit;
}

.filters input {
    min-width: min(100%, 280px);
}

.field-hint {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.active-location-filter[hidden] {
    display: none;
}

.active-location-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.active-location-filter__label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(123, 47, 47, 0.08);
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 800;
}

.active-location-filter__clear {
    min-height: 34px;
    padding-inline: 12px;
}

.filter-button {
    min-height: 46px;
}

.filter-button--location[disabled] {
    opacity: 0.72;
}

.featured-item h3 a:hover,
.detail-link:hover,
.text-link:hover,
.topbar-link:hover {
    opacity: 0.8;
}

.ad {
    margin-top: 18px;
    padding: 18px;
}

.ad-placeholder {
    min-height: 100px;
    padding: 18px;
    border: 1px dashed #cdbfaa;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(180deg, #fbf7f0 0%, #f3ece1 100%);
}

.ad-placeholder span {
    font-weight: 800;
}

.ad-placeholder small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.agenda-panel {
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 249, 239, 0.98) 100%);
}

.month-block + .month-block {
    margin-top: 24px;
}

.month-title {
    padding: 13px 15px;
    border-left: 4px solid var(--accent-gold);
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(243, 227, 223, 0.9) 0%, rgba(255, 249, 239, 0.92) 100%);
    color: var(--accent-strong);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(123, 47, 47, 0.05);
}

.day-group {
    padding-top: 10px;
}

.dayline {
    padding: 14px 0 10px;
    border-bottom: 1px solid rgba(123, 47, 47, 0.12);
    font-weight: 800;
    color: var(--ink);
}

.agenda-row {
    display: grid;
    grid-template-columns: 2.2fr 0.9fr 0.8fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(123, 47, 47, 0.16);
    align-items: start;
    transition: background 160ms ease, transform 160ms ease;
}

.agenda-row:hover {
    background: rgba(255, 252, 245, 0.88);
}

.agenda-main {
    display: grid;
    gap: 6px;
}

.agenda-main strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.35;
}

.detail-link {
    color: var(--accent);
    font-weight: 800;
    position: relative;
}

.agenda-main small,
.agenda-side {
    color: var(--muted);
    line-height: 1.65;
}

.agenda-main .place {
    color: #3f342d;
}

.agenda-side--time {
    text-align: right;
    font-weight: 700;
    color: var(--ink);
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.tag-row--spaced {
    margin-top: 18px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
    border: 1px solid rgba(123, 47, 47, 0.08);
}

.tag--muted {
    background: var(--soft);
    color: var(--muted);
}

.empty-state,
.message-card {
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.empty-state--filters {
    display: none;
    padding: 16px 0 6px;
}

.legal-card {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.legal-card + .legal-card {
    margin-top: 18px;
}

.legal-lead {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.legal-section + .legal-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.legal-section h2 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.legal-section p,
.legal-section li {
    color: var(--muted);
    line-height: 1.75;
}

.legal-section ul {
    margin: 0;
    padding-left: 20px;
}

.review-login,
.review-filters {
    display: grid;
    gap: 16px;
}

.review-counts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.review-count {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(23, 32, 51, 0.05);
    color: var(--muted);
    border: 1px solid rgba(23, 32, 51, 0.08);
    font-size: 0.92rem;
    font-weight: 700;
}

.review-count.is-active {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: rgba(15, 118, 110, 0.14);
}

.review-error {
    color: #a84830 !important;
    padding: 14px 16px;
    border: 1px solid rgba(168, 72, 48, 0.18);
    border-radius: 14px;
    background: rgba(252, 241, 236, 0.92);
}

.review-list {
    display: grid;
    gap: 14px;
}

.review-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(123, 47, 47, 0.12);
}

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

.review-item-main {
    display: grid;
    gap: 6px;
}

.review-item-main strong {
    font-size: 1.05rem;
}

.review-item-main p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.review-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-items: start;
    margin-top: 10px;
}

.review-actions-title {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-actions form,
.review-actions .button {
    width: 100%;
}

.review-actions form {
    margin: 0;
}

.review-edit-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

.form-help {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-help--error {
    color: #a84830;
}

.form-help--success {
    color: #1f5b4f;
    font-weight: 700;
}

.clipboard-summary {
    margin-top: 12px;
}

.clipboard-candidates {
    margin-top: 16px;
}

.candidate-list,
.preview-grid {
    display: grid;
    gap: 12px;
}

.candidate-card {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
}

.candidate-card strong {
    display: block;
    margin-bottom: 6px;
}

.candidate-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.preview-card {
    margin-top: 22px;
}

.preview-label {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.preview-value {
    margin: 0;
    color: var(--ink);
    line-height: 1.6;
}

.message-card--success {
    border-color: rgba(31, 79, 70, 0.24);
}

.message-card--error {
    border-color: rgba(168, 72, 48, 0.26);
}

.form-layout {
    max-width: 860px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 20px;
}

.event-form {
    padding: 22px;
}

.form-section + .form-section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.form-section h2 {
    margin-bottom: 18px;
    font-size: 1.45rem;
}

.form-grid {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 700;
}

label span {
    font-size: 0.95rem;
}

input,
textarea {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(123, 47, 47, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font: inherit;
}

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

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(123, 47, 47, 0.42);
    box-shadow: 0 0 0 4px rgba(123, 47, 47, 0.1);
}

.form-grid--checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(123, 47, 47, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
}

.checkbox-field input {
    width: 18px;
    min-height: 18px;
    margin: 0;
    padding: 0;
}

.checkbox-field span {
    font-size: 0.96rem;
}

#formValidationFeedback {
    margin-top: 12px;
}

.detail-card {
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 248, 239, 0.98) 100%);
}

.detail-summary {
    max-width: 64ch;
    margin: 14px 0 0;
}

.detail-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.1rem, 4.2vw, 4.1rem);
    line-height: 0.95;
    text-wrap: balance;
}

.detail-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.detail-main,
.detail-sidebar {
    display: grid;
    gap: 18px;
}

.detail-meta-grid {
    display: grid;
    gap: 12px;
}

.detail-meta-grid strong {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-section h2,
.detail-block h2 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.detail-copy p {
    margin: 0 0 12px;
}

.detail-copy p:last-child {
    margin-bottom: 0;
}

.detail-block {
    padding: 20px;
    border: 1px solid rgba(123, 47, 47, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(44, 28, 22, 0.05);
}

.stack-links {
    display: grid;
    gap: 12px;
}

.map-placeholder {
    min-height: 220px;
    margin-top: 12px;
    border: 1px solid rgba(123, 47, 47, 0.12);
    border-radius: 18px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(185, 138, 61, 0.18) 0%, rgba(185, 138, 61, 0) 48%),
        linear-gradient(135deg, var(--accent-soft) 0%, var(--soft) 100%);
    color: var(--muted);
    font-weight: 700;
}

.map-embed-shell {
    margin-top: 12px;
    border: 1px solid rgba(123, 47, 47, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(44, 28, 22, 0.05);
}

.map-embed {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
    background: #eef4fb;
}

.center-layout {
    min-height: 80vh;
    display: grid;
    place-items: center;
}

.text-link--spaced {
    display: inline-block;
    margin-top: 14px;
}

.site-footer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(123, 47, 47, 0.12);
}

.site-footer-meta {
    color: var(--muted);
}

.site-footer-links a {
    color: var(--accent);
    font-weight: 700;
}

.cookie-banner {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    padding: 16px 18px;
    border: 1px solid rgba(123, 47, 47, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 251, 245, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 34px rgba(31, 26, 23, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-copy {
    max-width: 62ch;
}

.cookie-copy strong {
    display: block;
    margin-bottom: 6px;
}

.cookie-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (min-width: 760px) {
    .form-grid,
    .detail-grid,
    .detail-meta-grid,
    .review-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .candidate-list,
    .preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    }

    .featured-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .featured-item {
        border-top: 0;
        padding: 0;
        min-height: 100%;
        padding-right: 12px;
        border-right: 1px solid rgba(185, 138, 61, 0.24);
    }

    .featured-item:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .detail-hero h1 {
        max-width: 14ch;
    }
}

@media (max-width: 860px) {
    .agenda-row {
        grid-template-columns: 1fr;
    }

    .agenda-side--time {
        text-align: left;
    }

    .review-item {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .brand {
        font-size: 1.7rem;
    }

    h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .hero {
        padding: 24px 18px 20px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .month-title {
        letter-spacing: 0.12em;
    }

    .form-grid,
    .form-grid--checks {
        grid-template-columns: 1fr;
    }

    .filters {
        align-items: stretch;
    }

    .filters input,
    .filters select,
    .filter-button {
        width: 100%;
    }

    .agenda-month-nav {
        padding: 14px;
    }

    .agenda-month-nav__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .agenda-month-nav__link {
        flex: 0 0 auto;
    }

    .detail-hero h1 {
        max-width: none;
        font-size: clamp(1.95rem, 11vw, 3rem);
        line-height: 0.98;
        text-wrap: pretty;
    }
}

/* 2026 visual refresh aligned with approved mockup */
:root {
    --bg: #f4f7fb;
    --bg-deep: #e8eef6;
    --paper: rgba(255, 255, 255, 0.86);
    --paper-strong: rgba(255, 255, 255, 0.96);
    --ink: #111827;
    --muted: #667085;
    --line: #dbe3ee;
    --line-strong: #c6cfdb;
    --accent: #172033;
    --accent-strong: #0f172a;
    --accent-soft: #ddf3f0;
    --accent-gold: #0f766e;
    --soft: #eef4fb;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 18px 60px rgba(15, 23, 42, 0.12);
    --container: 1160px;
    --radius-lg: 26px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 24%),
        radial-gradient(circle at left 20%, rgba(59, 130, 246, 0.08), transparent 20%),
        linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

body::before {
    opacity: 0;
}

.brand,
h1,
h2,
h3 {
    font-family: 'Newsreader', serif;
}

.month-title,
.dayline,
.detail-link {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
}

.site-header,
.page-topbar,
.hero,
.agenda-panel,
.detail-card,
.event-form,
.message-card,
.empty-state,
.ad,
.cookie-banner,
.review-panel,
.review-login-card,
.review-item,
.legal-card,
.contact-card,
.contact-form,
.featured-list-shell {
    backdrop-filter: blur(18px);
}

.site-header,
.page-topbar,
.hero,
.agenda-panel,
.detail-card,
.event-form,
.message-card,
.empty-state,
.ad,
.legal-card,
.contact-card,
.contact-form,
.review-panel,
.review-login-card,
.review-item {
    background: var(--paper);
    border: 1px solid rgba(23, 32, 51, 0.07);
    box-shadow: var(--shadow-soft);
}

.topbar,
.page-topbar {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 20px;
}

.topbar-link,
.text-link {
    color: var(--accent);
    font-weight: 700;
}

.hero {
    margin-top: 20px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.94) 55%, rgba(221, 243, 240, 0.92) 100%);
}

.hero::before {
    width: 300px;
    height: 300px;
    right: -80px;
    top: -110px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(59, 130, 246, 0.12));
    transform: rotate(18deg);
}

.hero::after {
    display: none;
}

h1 {
    font-size: clamp(2.26rem, 5vw, 4rem);
    line-height: 0.93;
    letter-spacing: -0.05em;
    max-width: 12ch;
}

h2 {
    font-size: clamp(1.44rem, 2.9vw, 2.08rem);
    letter-spacing: -0.03em;
}

.hero-text {
    font-size: 1.04rem;
}

.button-primary,
.quick-chip.is-active {
    background: linear-gradient(135deg, var(--accent) 0%, #1f3657 100%);
    border-color: transparent;
    color: #fff;
}

.featured-list-shell {
    position: relative;
    padding: 18px;
    border-radius: var(--radius-lg);
}

.featured-list-shell::after {
    content: '';
    position: absolute;
    top: 22px;
    right: 22px;
    bottom: 42px;
    width: 58px;
    background: linear-gradient(90deg, rgba(244, 247, 251, 0), rgba(244, 247, 251, 0.96));
    pointer-events: none;
    border-radius: 0 22px 22px 0;
}

.featured-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    background: transparent;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.featured-list::-webkit-scrollbar {
    height: 8px;
}

.featured-list::-webkit-scrollbar-thumb {
    background: rgba(23, 32, 51, 0.16);
    border-radius: 999px;
}

.featured-item {
    min-width: min(84vw, 320px);
    padding: 16px;
    border: 1px solid rgba(23, 32, 51, 0.09);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
    scroll-snap-align: start;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.featured-item h3 {
    margin: 12px 0 10px;
    font-size: 1.02rem;
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.featured-item h3 a {
    color: var(--ink);
    text-decoration: none;
}

.featured-meta,
.featured-submeta {
    margin: 0;
}

.featured-meta {
    font-size: 0.94rem;
    color: #52627c;
    line-height: 1.45;
}

.featured-submeta {
    margin-top: 4px;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.45;
}

.featured-kicker {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.featured-hint {
    margin: 8px 2px 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.filter-bar {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(23, 32, 51, 0.04), rgba(15, 118, 110, 0.08));
    margin-bottom: 22px;
    border: 1px solid rgba(23, 32, 51, 0.06);
}

.filters input,
.filters select {
    border: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.agenda-panel {
    padding: 22px;
}

.agenda-month-nav {
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
    padding: 16px 18px;
    border: 1px solid rgba(23, 32, 51, 0.06);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.agenda-month-nav__label {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agenda-month-nav__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.agenda-month-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.agenda-month-nav__link:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 118, 110, 0.22);
    background: rgba(221, 243, 240, 0.72);
}

.agenda-month-nav__link[hidden] {
    display: none;
}

.month-title {
    border-left: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #172033, #243755);
    color: #f8fafc;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: none;
}

.day-group {
    position: relative;
    margin: 14px 0 18px 8px;
    padding: 8px 0 0 20px;
}

.day-group::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 10px;
    left: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(32, 122, 122, 0.24), rgba(32, 122, 122, 0.08));
}

.dayline {
    display: inline-block;
    margin: 0 0 10px;
    padding: 6px 12px 6px 14px;
    border: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--accent);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
}

.agenda-row {
    margin-left: 6px;
    padding-left: 12px;
    border-bottom: 1px solid rgba(23, 32, 51, 0.06);
}

.agenda-row:hover {
    background: rgba(248, 250, 252, 0.9);
}

@media (min-width: 860px) {
    .agenda-month-nav {
        grid-template-columns: auto 1fr;
        align-items: center;
        position: sticky;
        top: 18px;
        z-index: 8;
    }

    .agenda-month-nav__label {
        min-width: 96px;
    }

    .agenda-month-nav__list {
        justify-content: flex-end;
    }

    .featured-list-shell::after,
    .featured-hint {
        display: none;
    }

    .featured-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
        align-items: start;
    }

    .featured-item {
        min-width: 0;
        padding: 16px;
        border: 1px solid rgba(23, 32, 51, 0.09);
        border-radius: 22px;
        padding-right: 16px;
    }

    .featured-item:first-child,
    .featured-item:last-child {
        padding: 16px;
        border: 1px solid rgba(23, 32, 51, 0.09);
        border-radius: 22px;
        padding-right: 16px;
    }

    .featured-kicker {
        margin: 0;
    }
}

select {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 32, 51, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font: inherit;
}

select:focus {
    outline: none;
    border-color: rgba(23, 32, 51, 0.28);
    box-shadow: 0 0 0 4px rgba(23, 32, 51, 0.08);
}

.scraping-source-list {
    display: grid;
    gap: 12px;
}

.scraping-source-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
}

.scraping-source-item input {
    width: 18px;
    min-height: 18px;
    margin-top: 3px;
}

.scraping-source-item span {
    display: grid;
    gap: 4px;
}

.scraping-source-item small {
    color: var(--muted);
    font-weight: 500;
    line-height: 1.55;
    word-break: break-word;
}

/* Cinema identity refresh: classic theatre, film stock and projector light */
:root {
    --bg: #07080b;
    --bg-deep: #16100f;
    --paper: #fff7df;
    --paper-strong: #fff1bd;
    --ink: #17110e;
    --muted: #675d51;
    --line: #d9bd79;
    --line-strong: #b8842f;
    --accent: #a32317;
    --accent-strong: #63130f;
    --accent-soft: #f6d99a;
    --accent-gold: #d6a647;
    --soft: #f3ead3;
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.34);
    --shadow-card: 0 30px 78px rgba(0, 0, 0, 0.42);
    --container: 1180px;
    --radius-lg: 8px;
    --radius-md: 6px;
}

body {
    color: var(--paper);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        linear-gradient(115deg, rgba(246, 217, 154, 0.18) 0 1px, transparent 1px 58%),
        repeating-linear-gradient(90deg, rgba(255, 241, 189, 0.035) 0 2px, transparent 2px 34px),
        linear-gradient(180deg, #07080b 0%, #110d0d 48%, #221411 100%);
}

body::before {
    opacity: 1;
    background:
        linear-gradient(90deg, transparent 0 calc(50% - 16px), rgba(255, 238, 184, 0.1) calc(50% - 16px) calc(50% + 16px), transparent calc(50% + 16px)),
        repeating-linear-gradient(90deg, rgba(255, 245, 208, 0.14) 0 10px, transparent 10px 24px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%, rgba(0, 0, 0, 0.22));
    background-size: 100% 100%, 100% 52px, 100% 100%;
    mix-blend-mode: screen;
}

.site-shell {
    padding-top: 18px;
}

.brand,
h1,
h2,
h3 {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.brand {
    color: #fff1bd;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.28rem, 3vw, 1.78rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header,
.page-topbar,
.hero,
.agenda-panel,
.detail-card,
.event-form,
.message-card,
.empty-state,
.ad,
.legal-card,
.contact-card,
.contact-form,
.review-panel,
.review-login-card,
.review-item,
.featured-list-shell {
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 247, 223, 0.98), rgba(244, 229, 196, 0.98));
    border: 1px solid rgba(216, 166, 71, 0.72);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: none;
}

.site-header {
    position: relative;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, #24100e 0%, #100909 100%);
    border-color: rgba(214, 166, 71, 0.78);
}

.site-header::before,
.site-header::after {
    content: '';
    display: block;
    height: 22px;
    background:
        repeating-linear-gradient(90deg, #f7d37b 0 14px, #3c1713 14px 26px);
    border-bottom: 1px solid rgba(255, 241, 189, 0.28);
}

.site-header::after {
    border-top: 1px solid rgba(255, 241, 189, 0.24);
    border-bottom: 0;
}

.topbar,
.page-topbar {
    padding: 18px 20px;
    background:
        linear-gradient(180deg, rgba(58, 20, 17, 0.96), rgba(22, 10, 10, 0.96));
    border-radius: 0;
    border-bottom: 1px solid rgba(214, 166, 71, 0.36);
}

.page-topbar {
    border: 1px solid rgba(214, 166, 71, 0.55);
    border-radius: var(--radius-lg);
}

.topbar-link,
.text-link,
.site-footer-links a {
    color: #f6d99a;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link {
    color: var(--accent);
}

.hero {
    margin: 0;
    padding: clamp(28px, 5vw, 54px);
    min-height: 390px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff8df;
    background:
        linear-gradient(100deg, rgba(255, 236, 175, 0.22) 0%, rgba(255, 236, 175, 0.08) 34%, transparent 64%),
        linear-gradient(180deg, rgba(18, 9, 9, 0.18), rgba(0, 0, 0, 0.42)),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0 10px, transparent 10px 78px),
        linear-gradient(135deg, #2c1210 0%, #0a080b 58%, #231611 100%);
}

.hero::before {
    width: 68%;
    height: 100%;
    right: -14%;
    top: 0;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(105deg, rgba(255, 236, 175, 0.34), rgba(255, 236, 175, 0.09) 46%, transparent 70%);
    transform: skewX(-14deg);
    opacity: 0.82;
}

.hero::after {
    display: block;
    inset: auto 0 0 0;
    height: 46px;
    background:
        linear-gradient(180deg, transparent 0 8px, rgba(0, 0, 0, 0.78) 8px 38px, transparent 38px),
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 241, 189, 0.78) 18px 30px, transparent 30px 48px);
}

.hero-content {
    max-width: 820px;
}

h1 {
    max-width: 13ch;
    color: #fff7df;
    font-size: clamp(2.45rem, 6vw, 5.2rem);
    line-height: 0.9;
    letter-spacing: 0.025em;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.54);
}

h2 {
    color: #fff1bd;
    letter-spacing: 0.035em;
}

.section-header h2 {
    color: #fff1bd;
}

.hero-text,
.hero-trust {
    color: rgba(255, 247, 223, 0.82);
}

.eyebrow,
.section-kicker,
.featured-kicker,
.preview-label {
    color: var(--accent-gold);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    letter-spacing: 0.18em;
}

.section-copy {
    color: rgba(255, 247, 223, 0.68);
}

.button,
.quick-chip,
.agenda-month-nav__link {
    border-radius: 4px;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.button-primary,
.quick-chip.is-active {
    background:
        linear-gradient(180deg, #d14b2e, #8f2118);
    border-color: #f1b65a;
    color: #fff7df;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.button-secondary,
.quick-chip {
    background: rgba(255, 247, 223, 0.1);
    border-color: rgba(246, 217, 154, 0.48);
    color: #fff1bd;
}

.message-card .button-secondary,
.event-form .button-secondary,
.detail-card .button-secondary,
.legal-card .button-secondary {
    color: var(--accent-strong);
    background: #fff7df;
}

.quick-chip:hover,
.button:hover {
    transform: translateY(-2px);
}

.featured-list-shell {
    position: relative;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(28, 16, 13, 0.96), rgba(10, 8, 9, 0.98));
}

.featured-list-shell::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(214, 166, 71, 0.42);
    pointer-events: none;
}

.featured-list-shell::after {
    display: none;
}

.featured-list {
    background: transparent;
}

.featured-item {
    color: var(--ink);
    border-radius: 6px;
    border: 1px solid rgba(214, 166, 71, 0.66);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 8px, transparent 8px calc(100% - 8px), rgba(0, 0, 0, 0.08) calc(100% - 8px)),
        linear-gradient(180deg, #fff7df, #f0dfb6);
}

.featured-item h3 {
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.35rem;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured-kicker {
    color: #3a1713;
    background: #f2ca70;
    border-radius: 3px;
}

.featured-meta {
    color: #4c3329;
}

.agenda-panel {
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 247, 223, 0.98), rgba(242, 224, 184, 0.98));
}

.filter-bar,
.agenda-month-nav {
    border-radius: 6px;
    background:
        linear-gradient(180deg, #2a1311, #120909);
    border-color: rgba(214, 166, 71, 0.58);
    color: #fff7df;
}

.agenda-month-nav__label {
    color: #f6d99a;
}

.filters input,
.filters select,
select,
input,
textarea {
    border-radius: 4px;
    border-color: rgba(99, 19, 15, 0.24);
    background: rgba(255, 251, 238, 0.96);
}

.month-title {
    position: relative;
    padding: 15px 18px;
    border-radius: 4px;
    color: #fff7df;
    background:
        linear-gradient(180deg, #8f2118, #4d1511);
    border: 1px solid rgba(214, 166, 71, 0.68);
    text-align: center;
}

.month-title::before,
.month-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 22%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #f6d99a 0 8px, transparent 8px 16px);
    transform: translateY(-50%);
}

.month-title::before {
    left: 14px;
}

.month-title::after {
    right: 14px;
}

.day-group {
    margin-left: 0;
    padding-left: 0;
}

.day-group::before {
    display: none;
}

.dayline {
    border-radius: 4px;
    color: #3a1713;
    background: #f4d282;
    border-color: rgba(99, 19, 15, 0.18);
}

.agenda-row {
    margin-left: 0;
    padding: 18px 14px;
    grid-template-columns: minmax(0, 2fr) minmax(160px, 0.8fr) minmax(90px, 0.55fr);
    border-bottom: 1px solid rgba(99, 19, 15, 0.18);
    background:
        linear-gradient(90deg, rgba(99, 19, 15, 0.07) 0 8px, transparent 8px);
}

.agenda-row:hover {
    background:
        linear-gradient(90deg, rgba(99, 19, 15, 0.14) 0 8px, rgba(255, 255, 255, 0.28) 8px);
}

.agenda-main strong,
.detail-link {
    color: var(--accent-strong);
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.28rem;
    line-height: 1.08;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.agenda-main .place {
    color: #5b332a;
}

.tag {
    border-radius: 3px;
    color: #38100d;
    background: #f1c96e;
    border-color: rgba(99, 19, 15, 0.16);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tag--muted {
    background: #e5dac4;
    color: #726353;
}

.detail-card,
.event-form,
.message-card,
.empty-state,
.legal-card,
.contact-card,
.contact-form,
.review-panel,
.review-login-card,
.review-item {
    background:
        linear-gradient(180deg, #fff7df, #f0dfb6);
}

.detail-hero h1 {
    color: var(--accent-strong);
    text-shadow: none;
}

.hero-text,
.section-copy,
.featured-item p,
.detail-summary,
.detail-copy,
.detail-block p,
.form-intro p,
.message-card p,
.empty-state p,
.site-footer,
.agenda-main small,
.agenda-side,
input,
textarea,
select {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 640px) {
    .brand {
        letter-spacing: 0.05em;
    }

    h1 {
        font-size: clamp(2.25rem, 14vw, 3.7rem);
        line-height: 0.94;
        letter-spacing: 0.018em;
        max-width: 11ch;
    }

    h2 {
        letter-spacing: 0.02em;
    }

    .agenda-main strong {
        font-size: 1.2rem;
        line-height: 1.12;
    }
}

.detail-block,
.candidate-card,
.checkbox-field,
.map-embed-shell,
.agenda-month-nav__link {
    border-radius: 6px;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 18px 24px;
    margin-top: 28px;
    padding: 18px 20px;
    color: rgba(255, 247, 223, 0.8);
    border: 1px solid rgba(214, 166, 71, 0.48);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(48, 18, 15, 0.96), rgba(15, 8, 8, 0.98));
    overflow: visible;
}

.site-footer-meta {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.site-footer-meta span:first-child {
    color: #fff1bd;
    font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer-meta span:last-child {
    max-width: 42ch;
    color: rgba(255, 247, 223, 0.64);
    line-height: 1.45;
}

.site-footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px 16px;
    flex-wrap: wrap;
    min-width: 0;
    max-width: 100%;
}

.site-footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 2px;
    white-space: nowrap;
    color: #f6d99a;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.topbar-actions {
    justify-content: flex-end;
    min-width: 0;
}

.topbar-link {
    white-space: nowrap;
}

.cookie-banner {
    border-radius: 6px;
    background: rgba(255, 247, 223, 0.96);
    border-color: rgba(214, 166, 71, 0.7);
}

@media (min-width: 860px) {
    .agenda-month-nav {
        border-radius: 6px;
    }
}

@media (max-width: 860px) {
    .agenda-row {
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .topbar,
    .page-topbar {
        padding: 16px;
    }

    .topbar {
        align-items: flex-start;
    }

    .topbar-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .topbar-link,
    .site-footer-links a {
        font-size: 0.76rem;
        letter-spacing: 0.05em;
    }

    .hero {
        min-height: 420px;
        padding: 28px 18px 58px;
    }

    .month-title::before,
    .month-title::after {
        display: none;
    }
}

/* Softer professional cinema pass: keep the identity, lower the spectacle */
:root {
    --bg: #111112;
    --bg-deep: #1b1715;
    --paper: #f6efd9;
    --paper-strong: #fbf3d9;
    --ink: #171411;
    --muted: #6b6255;
    --line: #c8ae73;
    --line-strong: #a87d35;
    --accent: #8f251c;
    --accent-strong: #4f1713;
    --accent-soft: #ead19a;
    --accent-gold: #c99a45;
    --soft: #eee2c5;
}

body {
    background:
        linear-gradient(180deg, rgba(255, 241, 189, 0.03), transparent 26%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body::before {
    opacity: 0.28;
    background:
        repeating-linear-gradient(90deg, rgba(255, 245, 208, 0.08) 0 1px, transparent 1px 72px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%);
    mix-blend-mode: normal;
}

.site-header {
    background:
        linear-gradient(180deg, #251614 0%, #15100f 100%);
}

.site-header::before,
.site-header::after {
    height: 10px;
    background:
        repeating-linear-gradient(90deg, rgba(234, 209, 154, 0.76) 0 12px, rgba(80, 28, 22, 0.92) 12px 22px);
}

.topbar,
.page-topbar {
    background:
        linear-gradient(180deg, rgba(38, 22, 20, 0.97), rgba(21, 15, 14, 0.97));
}

.hero {
    min-height: 340px;
    padding: clamp(30px, 5vw, 52px);
    background:
        linear-gradient(92deg, rgba(246, 217, 154, 0.16) 0%, rgba(246, 217, 154, 0.07) 38%, transparent 66%),
        linear-gradient(180deg, rgba(25, 17, 16, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(135deg, #251614 0%, #121112 62%, #1f1713 100%);
}

.hero::before {
    width: 48%;
    right: -18%;
    opacity: 0.46;
    background:
        linear-gradient(105deg, rgba(255, 236, 175, 0.28), rgba(255, 236, 175, 0.06) 52%, transparent 76%);
}

.hero::after {
    height: 22px;
    background:
        linear-gradient(180deg, transparent 0 5px, rgba(0, 0, 0, 0.44) 5px 18px, transparent 18px),
        repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 241, 189, 0.5) 28px 36px, transparent 36px 58px);
}

h1 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 5.4vw, 4.65rem);
    line-height: 0.94;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.hero-text {
    max-width: 68ch;
}

.button-primary,
.quick-chip.is-active {
    background:
        linear-gradient(180deg, #aa3426, #762119);
}

.featured-list-shell {
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(34, 22, 18, 0.95), rgba(17, 14, 13, 0.98));
}

.featured-list-shell::before {
    inset: 10px;
    opacity: 0.62;
}

.featured-item {
    background:
        linear-gradient(180deg, #fbf3d9, #efe1bd);
}

.agenda-panel,
.detail-card,
.event-form,
.message-card,
.empty-state,
.legal-card,
.contact-card,
.contact-form,
.review-panel,
.review-login-card,
.review-item {
    background:
        linear-gradient(180deg, #fbf3d9, #efe1bd);
}

.month-title {
    background:
        linear-gradient(180deg, #6f2119, #3f1512);
}

.month-title::before,
.month-title::after {
    opacity: 0.55;
}

.dayline {
    background: #ead19a;
}

.agenda-row {
    background:
        linear-gradient(90deg, rgba(79, 23, 19, 0.045) 0 6px, transparent 6px);
}

.agenda-row:hover {
    background:
        linear-gradient(90deg, rgba(79, 23, 19, 0.09) 0 6px, rgba(255, 255, 255, 0.18) 6px);
}

.tag {
    background: #e7c675;
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(38, 22, 20, 0.96), rgba(17, 13, 12, 0.98));
}

@media (max-width: 640px) {
    .hero {
        min-height: 360px;
        padding: 28px 18px 46px;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(2.18rem, 12.4vw, 3.45rem);
        line-height: 0.98;
    }
}

/* UX refinement: prioritize the agenda over the spectacle */
.site-shell {
    padding-top: 14px;
}

.site-header::before,
.site-header::after {
    height: 7px;
}

.topbar {
    gap: 18px;
}

.topbar-actions {
    gap: 10px 18px;
}

.hero {
    min-height: 285px;
    padding: clamp(24px, 4vw, 42px) clamp(20px, 4.6vw, 48px) 42px;
}

.hero::before {
    opacity: 0.34;
}

.hero::after {
    height: 14px;
    opacity: 0.72;
}

h1 {
    max-width: 16ch;
    font-size: clamp(2.1rem, 4.7vw, 4.15rem);
}

.hero-text {
    margin-top: 12px;
    max-width: 74ch;
    font-size: 1rem;
}

.hero-actions {
    margin-top: 16px;
}

.hero-trust {
    margin-top: 10px;
}

.quick-links {
    margin-top: 14px;
    gap: 8px;
}

.quick-chip {
    min-height: 34px;
    padding: 0 11px;
    border-color: rgba(246, 217, 154, 0.34);
    background: rgba(255, 247, 223, 0.07);
    font-size: 0.78rem;
}

.quick-chip.is-active {
    border-color: #f0c877;
    box-shadow: inset 0 0 0 1px rgba(255, 247, 223, 0.2);
}

.main-content {
    padding-top: 18px;
}

.section-header {
    margin: 28px 0 14px;
}

.audience-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 20px;
    align-items: center;
}

.audience-card h2,
.audience-card p {
    max-width: 68ch;
}

.audience-card .hero-actions {
    margin-top: 0;
}

.filter-bar {
    margin-bottom: 18px;
}

.filters {
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(220px, 1.4fr) auto auto;
    gap: 10px;
}

.filters input,
.filters select,
.filter-button {
    min-height: 42px;
}

.field-hint {
    max-width: 78ch;
    color: rgba(255, 247, 223, 0.72);
    font-size: 0.9rem;
}

.agenda-panel {
    padding: 16px;
}

.month-title {
    padding: 11px 16px;
    font-size: 1.1rem;
}

.day-group {
    padding-top: 6px;
}

.dayline {
    margin-bottom: 8px;
    font-size: 0.86rem;
}

.agenda-row {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 0.42fr) minmax(96px, 0.28fr);
    gap: 12px;
    padding: 14px 12px;
}

.agenda-main {
    gap: 5px;
}

.agenda-main strong,
.detail-link {
    font-size: 1.18rem;
}

.agenda-main small {
    max-width: 76ch;
}

.agenda-side {
    align-self: center;
    line-height: 1.35;
}

.agenda-side--time {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(79, 23, 19, 0.18);
    border-radius: 4px;
    background: rgba(255, 247, 223, 0.62);
    color: var(--accent-strong);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    text-align: center;
}

.tag-row {
    gap: 6px;
    margin-top: 6px;
}

.tag {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.72rem;
}

.site-footer {
    margin-top: 22px;
    padding: 16px 18px;
    background:
        linear-gradient(180deg, rgba(32, 21, 19, 0.94), rgba(17, 13, 12, 0.96));
}

@media (max-width: 980px) {
    .filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filters input,
    .filter-button--location {
        grid-column: 1 / -1;
    }

    .filter-button {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .audience-card {
        grid-template-columns: 1fr;
    }

    .audience-card .hero-actions {
        justify-content: flex-start;
    }

    .agenda-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .agenda-main {
        grid-column: 1 / -1;
    }

    .agenda-side--time {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--container));
    }

    .hero {
        min-height: 315px;
        padding: 24px 16px 36px;
    }

    h1 {
        max-width: 13ch;
        font-size: clamp(2rem, 11vw, 3.12rem);
    }

    .hero-actions {
        gap: 8px;
    }

    .button {
        min-height: 40px;
        padding: 0 12px;
    }

    .quick-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-chip {
        justify-content: center;
        width: 100%;
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .filters input,
    .filter-button--location {
        grid-column: auto;
    }

    .agenda-panel {
        padding: 12px;
    }

    .agenda-row {
        padding: 13px 10px;
    }

    .agenda-side {
        font-size: 0.9rem;
    }

    .agenda-side--time {
        min-height: 34px;
        font-size: 0.82rem;
    }
}

/* Detail page polish: restore hierarchy, contrast and compact badges */
.site-shell--detail .detail-card {
    padding: clamp(22px, 3vw, 34px);
}

.site-shell--detail .detail-grid {
    gap: 28px;
    margin-top: 22px;
}

.site-shell--detail .detail-meta-grid {
    gap: 18px 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(79, 23, 19, 0.12);
}

.site-shell--detail .detail-meta-grid div {
    display: grid;
    align-content: start;
    gap: 6px;
}

.site-shell--detail .detail-meta-grid strong {
    margin-bottom: 0;
    color: #942a20;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
}

.site-shell--detail .detail-meta-grid span {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.35;
}

.site-shell--detail .tag-row {
    align-items: flex-start;
    gap: 8px;
}

.site-shell--detail .tag-row--spaced {
    margin-top: 4px;
}

.site-shell--detail .tag {
    align-self: flex-start;
    min-height: 0;
    padding: 7px 10px;
    border-radius: 4px;
    line-height: 1.15;
    white-space: nowrap;
}

.site-shell--detail .detail-section {
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.site-shell--detail .detail-section h2,
.site-shell--detail .detail-block h2 {
    color: #4f1713;
    font-size: 1.06rem;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-shell--detail .detail-summary {
    color: #5f5548;
}

.site-shell--detail .detail-copy {
    color: #6a6257;
    font-size: 1.02rem;
    line-height: 1.8;
}

.site-shell--detail .detail-block {
    padding: 18px;
    background: rgba(255, 252, 244, 0.76);
}

@media (max-width: 760px) {
    .site-shell--detail .tag {
        white-space: normal;
    }

    .site-shell--detail .detail-meta-grid {
        gap: 16px;
    }
}
