:root {
    --navy: #141c2b;
    --navy-2: #1e2a40;
    --ink: #1b1d21;
    --muted: #5b6470;
    --paper: #fffcf7;
    --cream: #f3eee6;
    --line: #e4ddd2;
    --copper: #c45c26;
    --copper-2: #a84b1c;
    --sand: #e8d3b0;
    --ok: #2d6a4f;
    --shadow: 0 18px 40px rgba(20, 28, 43, 0.1);
    --radius: 16px;
    --max: 1120px;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--copper-2); }
h1, h2, h3, h4 {
    font-family: Newsreader, Georgia, serif;
    line-height: 1.18;
    margin: 0 0 0.5em;
    font-weight: 600;
}

.demo-banner {
    background: #2a2118;
    color: #f0e2c8;
    font-size: 13px;
    text-align: center;
    padding: 8px 16px;
}
.demo-banner a { color: var(--sand); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--navy);
    color: #fff;
    border-bottom: 3px solid var(--copper);
}
.header-inner {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    min-width: 0;
}
.brand-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name { font-weight: 700; font-size: 15px; }
.brand-sub { font-size: 12px; color: var(--sand); }

.nav {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2px;
}
.nav a {
    color: #d7dee8;
    text-decoration: none;
    padding: 8px 9px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.nav a:hover, .nav a.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.nav a.active { color: var(--sand); }

.nav-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    border-radius: 8px;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    font: inherit;
    font-weight: 700;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.hero {
    background: var(--navy);
    color: #fff;
    padding: 48px 20px 40px;
}
.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 32px;
    align-items: center;
}
.kicker {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    margin-bottom: 12px;
}
.hero p { font-size: 1.12rem; max-width: 38em; color: #dbe3ee; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.event-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius);
    padding: 18px 20px;
}
.event-card h2 { font-size: 1.15rem; }
.event-card .when {
    color: var(--sand);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
}
.stat {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.stat b {
    display: block;
    font-size: 1.45rem;
    font-family: Newsreader, Georgia, serif;
    color: var(--navy);
}

.section-title { margin: 40px 0 16px; font-size: 1.85rem; }
.muted { color: var(--muted); }

.grid-3, .grid-2, .cards {
    display: grid;
    gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}
.card h3 { font-size: 1.15rem; }
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 0 12px;
}
.card.poster img { height: 280px; object-fit: contain; background: #fff; }

.date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-height: 64px;
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
}
.date-badge b { font-size: 1.4rem; line-height: 1; }
.date-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sand); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    font: inherit;
}
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-2); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-line { background: #fff; color: var(--navy); border: 1px solid var(--line); }

.page-hero {
    background: var(--navy-2);
    color: #fff;
    padding: 44px 20px 32px;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero p { max-width: 44em; color: #d5deea; }

.people { display: grid; gap: 12px; }
.person {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    align-items: center;
}
.person .role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--copper-2);
}

.quote {
    font-family: Newsreader, Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy);
}
.tribute {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
}
.tribute img {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.timeline { display: grid; gap: 14px; }
.t-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
}
.t-item time {
    font-weight: 700;
    color: var(--copper-2);
}

.links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip-link {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

form.stack { display: grid; gap: 12px; max-width: 520px; }
label { font-weight: 600; font-size: 14px; }
input, textarea, select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit;
    font-size: 16px;
    background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.form-ok {
    display: none;
    background: #e7f5ec;
    color: var(--ok);
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.price {
    font-family: Newsreader, Georgia, serif;
    font-size: 2rem;
    color: var(--navy);
    margin: 8px 0;
}
.price small { font-size: 1rem; color: var(--muted); }

.map-embed {
    border: 0;
    width: 100%;
    min-height: 280px;
    border-radius: var(--radius);
}

.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    color: var(--muted);
    font-weight: 700;
}
.partners a { color: var(--navy); text-decoration: none; }

.site-footer {
    background: var(--navy);
    color: #c5ced8;
    padding: 28px 20px;
    font-size: 14px;
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.site-footer a { color: var(--sand); }

@media (max-width: 1100px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--navy-2);
        flex-direction: column;
        gap: 2px;
        padding: 8px 10px 14px;
        margin: 0;
        z-index: 50;
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    }
    .nav.open { display: flex; }
    .nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 10px 14px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .hero-inner, .stats, .grid-3, .grid-2, .tribute, .person, .t-item {
        grid-template-columns: 1fr;
    }
    .hero { padding: 28px 16px 32px; }
    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 1rem; }
    .wrap { padding: 20px 16px 48px; }
    .stats { margin-top: 16px; }
    .section-title { font-size: 1.4rem; }
    .page-hero { padding: 28px 16px 24px; }
    .hero-actions .btn { flex: 1 1 160px; }
    .brand-sub { display: none; }
    .card img { height: 160px; }
}

@media (max-width: 520px) {
    .brand-name { font-size: 13px; }
    .brand-logo { width: 40px; height: 40px; }
    .demo-banner { font-size: 12px; padding: 7px 10px; }
}
