:root {
    --navy: #10104d;
    --navy-deep: #090a2f;
    --blue: #085c96;
    --red: #a31417;
    --red-dark: #781013;
    --cream: #f5f1e8;
    --paper: #fffdf8;
    --ink: #171725;
    --muted: #6e6c69;
    --line: rgba(23, 23, 37, 0.14);
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.navbar,
.section-inner {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
}

/* =========================
   Hero
   ========================= */
.hero {
    min-height: 92vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center 52%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: */
    /*     linear-gradient(180deg, rgba(4, 10, 41, 0.50) 0%, rgba(4, 10, 41, 0.12) 36%, rgba(4, 10, 41, 0.18) 62%, rgba(4, 10, 41, 0.72) 100%), */
    /*     linear-gradient(90deg, rgba(3, 12, 42, 0.16), rgba(3, 12, 42, 0.02), rgba(3, 12, 42, 0.16)); */
}

.site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    /* background: var(--navy-deep); */
    background: var(--red-dark);
}

.is-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

.navbar {
    position: relative;
    z-index: 10;
    /* width: min(calc(100% - 48px), var(--max-width)); */
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 104px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    /* text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); */
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.35);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), 900px);
    padding-top: 70px;
}

.hero-content h1,
.hero-content .eyebrow,
.hero-subtitle,
.hero-dates {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}

.eyebrow,
.section-kicker {
    margin-bottom: 12px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 8.6rem);
    line-height: 0.86;
    letter-spacing: -0.065em;
    color: #fff;
    text-shadow: 0 8px 34px rgba(4, 6, 31, 0.42);
}

.hero-subtitle {
    margin-top: 18px;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    font-weight: 700;
}

.hero-dates {
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 18px;
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-dates span:not(:last-child)::after {
    content: '•';
    margin-left: 18px;
    opacity: 0.65;
}

.hero-actions,
.show-actions {
    margin-top: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 48px;
    padding: 12px 21px;
    border: 2px solid transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--red);
    color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--red-dark);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(4, 8, 38, 0.18);
    color: #fff;
    backdrop-filter: blur(7px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: #fff;
    color: var(--navy-deep);
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-cue__arrow {
    font-size: 1.35rem;
    line-height: 1;
    animation: floatArrow 1.6s ease-in-out infinite;
}

@keyframes floatArrow {
    50% { transform: translateY(5px); }
}

/* =========================
   Voorstelling
   ========================= */
.show-section {
    padding: 110px 0;
    background: var(--cream);
}

.show-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(48px, 7vw, 92px);
    align-items: center;
}

.poster-wrap {
    position: relative;
}

.poster-wrap::before {
    content: '';
    position: absolute;
    width: 72%;
    height: 72%;
    right: -22px;
    bottom: -22px;
    background: var(--red);
    z-index: 0;
}

.poster {
    position: relative;
    z-index: 1;
    width: 100%;
    box-shadow: 0 24px 58px rgba(30, 21, 18, 0.22);
}

.show-copy h2,
.about-copy h2,
.section-heading h2,
.contact-inner h2 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.show-copy h2 em,
.contact-inner h2 em {
    color: var(--red);
    font-style: normal;
}

.lead {
    margin-top: 25px;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    line-height: 1.65;
}

.show-copy > p:not(.section-kicker):not(.lead) {
    margin-top: 16px;
    color: var(--muted);
}

.show-details {
    margin-top: 34px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.show-details > div {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 1.05fr 1.35fr 0.55fr;
    gap: 18px;
    align-items: baseline;
}

.show-details > div + div {
    border-top: 1px solid var(--line);
}

.detail-label {
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.show-actions {
    justify-content: space-between;
}

.text-link {
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    display: inline-block;
    margin-left: 5px;
    transition: transform 160ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.button--dark {
    background: var(--navy);
    color: #fff;
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--navy-deep);
}

/* =========================
   Over ons
   ========================= */
.about-section {
    padding: 110px 0;
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.section-kicker--light {
    color: #efb5b6;
}

.about-copy .lead {
    color: rgba(255, 255, 255, 0.93);
}

.about-copy > p:not(.section-kicker):not(.lead) {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.67);
}

.button--light {
    margin-top: 30px;
    background: #fff;
    color: var(--navy-deep);
}

.about-visual {
    min-height: 420px;
    position: relative;
    display: grid;
    place-items: center;
}

.about-visual::before,
.about-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.about-visual::before {
    width: min(36vw, 430px);
    aspect-ratio: 1;
    background: var(--red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-visual::after {
    width: min(27vw, 320px);
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, 0.22);
    top: 50%;
    left: 50%;
    transform: translate(-39%, -62%);
}

.about-quote {
    position: relative;
    z-index: 2;
    width: min(100%, 350px);
    padding: 35px;
}

.about-quote > span {
    display: block;
    height: 64px;
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 0.78;
    color: rgba(255, 255, 255, 0.35);
}

.about-quote p {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
    font-weight: 800;
}

/* =========================
   Kaarten
   ========================= */
.cards-section {
    padding: 110px 0;
    background: var(--paper);
}

.section-heading {
    margin-bottom: 42px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
}

.section-heading > p {
    max-width: 430px;
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.info-card {
    min-height: 315px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.info-card + .info-card {
    border-left: 1px solid var(--line);
}

.info-card:hover,
.info-card:focus-visible {
    background: var(--navy);
    color: #fff;
    transform: translateY(-5px);
}

.info-card__number {
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.info-card h3 {
    margin-top: 52px;
    font-size: 1.6rem;
}

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

.info-card:hover p,
.info-card:focus-visible p {
    color: rgba(255, 255, 255, 0.72);
}

.info-card__link {
    margin-top: auto;
    padding-top: 24px;
    font-weight: 800;
    font-size: 0.9rem;
}

/* =========================
   Contact + footer
   ========================= */
.contact-section {
    padding: 90px 0;
    background: var(--red);
    color: #fff;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: center;
}

.contact-inner h2 em {
    color: #fff;
}

.contact-copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
}

.contact-copy .button {
    margin-top: 24px;
    background: #fff;
    color: var(--red-dark);
}

.footer {
    padding: 28px 0;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 0.84rem;
}

.footer a {
    text-decoration: none;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 820px) {
    .navbar {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .logo img {
        /* width: 78px; */
        width: 120px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.83rem;
    }

    .hero {
        min-height: 88svh;
        background-attachment: scroll;
    }

    .show-grid,
    .about-grid,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .poster-wrap {
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .about-visual {
        min-height: 310px;
    }

    .about-visual::before {
        width: 310px;
    }

    .about-visual::after {
        width: 240px;
    }


    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }

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

    .info-card {
        min-height: 255px;
    }

    .info-card + .info-card {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 600px) {
    .section-inner {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .hero {
        min-height: 92svh;
    }

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

    .nav-links {
        width: min(64vw, 255px);
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 7px 15px;
    }

    .nav-links li:first-child {
        display: none;
    }

    .hero-content {
        padding-top: 95px;
    }

    .hero h1 {
        font-size: clamp(4rem, 20vw, 6.4rem);
    }

    .hero-dates {
        max-width: 320px;
        display: grid;
        gap: 3px;
    }

    .hero-dates span::after {
        display: none;
    }

    .hero-actions {
        width: min(100%, 330px);
        margin-inline: auto;
    }

    .hero-actions .button {
        width: 100%;
    }

    .scroll-cue {
        display: none;
    }

    .show-section,
    .about-section,
    .cards-section {
        padding: 78px 0;
    }

    .show-details > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .show-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-visual::before {
        width: 270px;
    }

    .about-visual::after {
        width: 205px;
    }

    .contact-inner {
        gap: 30px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================
   Hugo archief + detail
   ========================= */
.archive-hero,
.detail-hero {
    /* padding: 150px 0 80px; */
    padding: 80px 0 70px;
    /* background: var(--navy-deep); */
    background: var(--red-dark);
    color: #fff;
}

.archive-hero h1,
.detail-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.archive-hero > .section-inner > p:last-child {
    max-width: 650px;
    margin-top: 20px;
    color: rgba(255,255,255,.72);
    font-size: 1.1rem;
}

.archive-section {
    padding: 90px 0 110px;
    background: var(--cream);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 30px;
}

.archive-card a {
    display: block;
    text-decoration: none;
}

.archive-card__poster {
    /* aspect-ratio: 3 / 4; */
    aspect-ratio: 297 / 420;
    overflow: hidden;
    background: #e7e1d5;
}

.archive-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.archive-card a:hover .archive-card__poster img {
    transform: scale(1.025);
}

.archive-card__placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-weight: 800;
}

.archive-card__copy {
    padding-top: 18px;
}

.archive-card__year {
    color: var(--red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.archive-card h2 {
    margin-top: 5px;
    font-size: 1.6rem;
}

.archive-card p {
    margin-top: 4px;
    color: var(--muted);
}

.archive-card__link {
    display: inline-block;
    margin-top: 13px;
    font-size: .9rem;
    font-weight: 800;
}

.back-link {
    display: inline-block;
    margin-bottom: 42px;
    color: rgba(255,255,255,.76);
    text-decoration: none;
    font-weight: 700;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 8vw, 100px);
    align-items: center;
}

.detail-poster img {
    width: 100%;
    box-shadow: 0 24px 58px rgba(0,0,0,.28);
}

.detail-subtitle {
    margin-top: 15px;
    font-size: 1.25rem;
    color: rgba(255,255,255,.76);
}

.detail-meta dl {
    margin-top: 35px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.detail-meta dl div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.detail-meta dt {
    color: rgba(255,255,255,.58);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.detail-meta dd {
    margin: 0;
    font-weight: 700;
}

.detail-content {
    padding: 100px 0;
    background: var(--paper);
}

.detail-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: clamp(60px, 9vw, 120px);
}

.detail-story h2,
.cast h2,
.downloads-section h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.prose {
    margin-top: 28px;
    max-width: 760px;
    font-size: 1.06rem;
}

.prose p + p {
    margin-top: 18px;
}

.cast ul {
    margin-top: 28px;
    list-style: none;
    border-top: 1px solid var(--line);
}

.cast li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.cast li strong,
.cast li span {
    display: block;
}

.cast li span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .9rem;
}

.downloads-section {
    padding: 80px 0;
    /* background: var(--navy); */
    background: var(--red-dark);
    color: #fff;
}

.download-grid {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.download-card {
    min-height: 140px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,.22);
    text-decoration: none;
}

.download-card strong {
    font-size: 1.25rem;
}

.download-card span {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}

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

    .detail-grid,
    .detail-content__grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(100%, 480px);
    }

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

@media (max-width: 600px) {
    .archive-hero,
    .detail-hero {
        padding-top: 125px;
    }

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

    .detail-meta dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}



/* =========================================
   SPEELDATA & LOCATIE
   ========================================= */

.visit-section {
    padding: 100px 0;
    background: var(--navy-deep);
    color: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(70px, 10vw, 140px);
}

.visit-section h2 {
    margin: 0 0 40px;
    color: #fff;

    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1;
}


/* SPEELDATA */

.date-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.date-row {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 25px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.date-day {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.date-day strong {
    font-size: 1.65rem;
    line-height: 1;
}

.date-day span {
    color: rgba(255, 255, 255, 0.7);
}

.date-weekday {
    color: rgba(255, 255, 255, 0.7);
}

.date-time {
    font-size: 1.15rem;
    font-weight: 800;
}

.visit-button {
    margin-top: 35px;
}


/* LOCATIE */

.venue {
    padding-top: 3px;
}

.venue-name {
    display: block;

    margin-bottom: 12px;

    font-size: 1.5rem;
}

.venue address {
    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.05rem;
    line-height: 1.7;
    font-style: normal;
}

.button--outline-light {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    background: transparent;
}

.button--outline-light:hover {
    background: #fff;
    color: var(--navy);
}


/* MOBIEL */

@media (max-width: 800px) {

    .visit-section {
        padding: 70px 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .date-row {
        grid-template-columns: 125px 1fr auto;
        gap: 15px;
    }

}


@media (max-width: 520px) {

    .date-row {
        grid-template-columns: 1fr auto;
    }

    .date-weekday {
        grid-column: 1;
        grid-row: 2;
    }

    .date-time {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

}

.about-photo {
    width: min(100%, 430px);
    aspect-ratio: 1;
    position: relative;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.about-photo::after {
    content: "";
    position: absolute;

    width: 82%;
    aspect-ratio: 1;

    top: 4%;
    left: 14%;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    pointer-events: none;
}

