:root {
    --bg: #050505;
    --bg-soft: #101010;
    --panel: #151515;
    --panel-strong: #1d1a14;
    --gold: #c99735;
    --gold-light: #f1c96a;
    --ink: #f7f3ea;
    --muted: #bdb6aa;
    --line: rgba(241, 201, 106, 0.28);
    --shadow: rgba(0, 0, 0, 0.45);
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.lightbox-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container,
.header-inner {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    transition: min-height 220ms ease;
}

.brand img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    transition: width 220ms ease, height 220ms ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 84px;
}

.site-header.is-scrolled .brand img {
    width: 62px;
    height: 62px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(241, 201, 106, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
    background: rgba(201, 151, 53, 0.14);
    border-color: var(--gold-light);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-drawer {
    display: contents;
}

.main-nav,
.header-contact,
.footer-links,
.hero-actions,
.contact-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.main-nav {
    justify-content: center;
}

.main-nav a {
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 7px 10px;
}

.main-nav a,
.header-contact a,
.footer-links a,
.contact-links a {
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.header-contact a:hover,
.footer-links a:hover,
.contact-links a:hover {
    color: var(--gold-light);
}

.main-nav a.is-active {
    border-color: rgba(241, 201, 106, 0.36);
    background: rgba(201, 151, 53, 0.13);
    color: var(--gold-light);
}

.header-contact {
    justify-content: flex-end;
    max-width: 560px;
}

.header-contact a {
    border-bottom: 1px solid transparent;
}

.icon-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(241, 201, 106, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.icon-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-link:hover {
    background: rgba(201, 151, 53, 0.14);
}

.contact-qr-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(241, 201, 106, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-light);
    font-weight: 800;
    text-transform: uppercase;
}

.contact-qr-link img {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    padding: 4px;
    border-radius: 6px;
    background: #fff;
}

.contact-qr-link span {
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.header-contact .contact-qr-link {
    padding: 6px 10px 6px 6px;
}

.header-contact .contact-qr-link img {
    width: 68px;
    height: 68px;
    padding: 5px;
}

.hero {
    position: relative;
    min-height: 78svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    filter: saturate(0.85) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.74) 58%, #050505 100%),
        linear-gradient(170deg, rgba(241, 201, 106, 0.18), transparent 42%),
        linear-gradient(15deg, rgba(201, 151, 53, 0.16), transparent 46%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 38%, transparent 62%, rgba(0, 0, 0, 0.8));
}

.hero-inner {
    width: min(100% - 32px, var(--max));
    padding: 84px 0 58px;
    text-align: center;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.72);
}

.hero-logo {
    width: 168px;
    margin: 0 auto 28px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.8));
}

.hero-kicker,
.section-kicker {
    margin: 0 0 12px;
    color: var(--gold-light);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero h1 {
    margin: 0;
    font-size: 4.2rem;
    line-height: 1;
    text-transform: uppercase;
}

.hero-title {
    margin: 8px 0 0;
    color: var(--gold-light);
    font-size: 5.8rem;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-subtitle {
    width: min(720px, 100%);
    margin: 22px auto 0;
    color: var(--ink);
    font-size: 1.2rem;
}

.hero-actions {
    justify-content: center;
    margin-top: 30px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 20px;
    color: var(--ink);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: var(--gold-light);
}

.button-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #110d06;
    font-weight: 800;
}

.button-ghost {
    background: rgba(255, 255, 255, 0.06);
}

.event-strip {
    width: min(920px, 100%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px auto 0;
    padding: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.event-strip li {
    color: var(--muted);
    font-size: 0.9rem;
}

.event-strip li:not(:last-child)::after {
    content: "·";
    margin-left: 10px;
    color: var(--gold);
}

.section {
    padding: 96px 0;
}

.section-about {
    background: linear-gradient(180deg, #050505, #0c0c0c);
}

.section-galleries {
    background: #0a0a0a;
}

.section-events {
    background: #0a0a0a;
}

.section-contact {
    background: linear-gradient(180deg, #0a0a0a, #050505);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
    margin: 0;
    font-size: 2.55rem;
    line-height: 1.08;
}

.section-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-copy p:last-child,
.contact-copy p:last-child {
    margin-bottom: 0;
}

.profile-frame {
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-strong);
    box-shadow: 0 24px 60px var(--shadow);
}

.profile-frame > img,
.profile-placeholder {
    width: 100%;
    height: 100%;
}

.profile-frame > img {
    object-fit: cover;
}

.profile-placeholder {
    display: grid;
    place-items: center;
    padding: 42px;
}

.profile-placeholder img {
    opacity: 0.72;
}

.section-heading {
    width: min(720px, 100%);
    margin-bottom: 34px;
}

.events-calendar {
    display: grid;
    gap: 18px;
}

.event-agenda-card {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 22px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    background: rgba(21, 21, 21, 0.86);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.event-agenda-card.has-poster {
    grid-template-columns: minmax(180px, 260px) 92px 1fr auto;
}

.event-poster {
    height: 100%;
    min-height: 168px;
    display: grid;
    place-items: center;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0f0f0f;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.event-date-box {
    min-height: 92px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-strong);
    color: var(--gold-light);
    text-align: center;
    text-transform: uppercase;
}

.event-date-box span {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.event-date-box small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.event-agenda-copy h3 {
    margin: 0;
    font-size: 1.28rem;
}

.event-agenda-copy p {
    margin: 8px 0 0;
    color: var(--muted);
}

.event-details {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.event-cta {
    white-space: nowrap;
}

.event-gallery-heading {
    margin-top: 76px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.gallery-card {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.gallery-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f0f0f;
}

.event-card .gallery-cover {
    aspect-ratio: 4 / 5;
}

.gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.gallery-cover-poster {
    display: grid;
    place-items: center;
    background: #050505;
}

.gallery-cover-poster img {
    object-fit: contain;
    padding: 16px;
}

.gallery-card:hover .gallery-cover img {
    transform: scale(1.04);
}

.gallery-card:hover .gallery-cover-poster img {
    transform: none;
}

.gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px 18px;
}

.gallery-meta span {
    font-size: 1.16rem;
    font-weight: 800;
}

.gallery-meta small {
    color: var(--muted);
    white-space: nowrap;
}

.event-card-footer {
    display: block;
    margin-top: -8px;
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.event-card-empty {
    cursor: default;
}

.event-card-empty:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.gallery-cover-empty {
    display: grid;
    place-items: center;
    background: #0f0f0f;
}

.gallery-cover-empty img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    opacity: 0.72;
}

.event-card-empty:hover .gallery-cover img {
    transform: none;
}

.empty-state {
    color: var(--muted);
}

.contact-grid {
    align-items: start;
}

.contact-links {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

.contact-links a {
    min-height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.contact-links .contact-qr-card {
    min-height: 88px;
    padding: 10px 12px;
}

.contact-links .contact-qr-card img {
    width: 64px;
    height: 64px;
    padding: 4px;
}

.contact-qr-card span {
    display: block;
}

.contact-qr-card strong {
    color: var(--ink);
    font-size: 0.82rem;
    line-height: 1.18;
    white-space: normal;
}

.contact-qr-card small {
    display: none;
}

.contact-form {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(21, 21, 21, 0.88);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field span {
    color: var(--muted);
    font-size: 0.92rem;
}

.field strong {
    color: var(--gold-light);
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 13px 14px;
    background: #090909;
    color: var(--ink);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(201, 151, 53, 0.22);
}

.field textarea {
    resize: vertical;
}

.field-hidden {
    position: absolute;
    left: -9999px;
}

.form-alert {
    margin: 0 0 18px;
    border-radius: 8px;
    padding: 12px 14px;
}

.form-alert-success {
    border: 1px solid rgba(100, 210, 140, 0.35);
    background: rgba(31, 122, 66, 0.22);
}

.form-alert-error {
    border: 1px solid rgba(255, 105, 105, 0.38);
    background: rgba(134, 36, 36, 0.24);
}

.form-note {
    margin: 4px 0 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.form-submit {
    width: 100%;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030303;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    align-items: start;
    gap: 26px;
    padding: 22px 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: min(360px, 58vw);
    height: auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.footer-nav a {
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-links {
    justify-content: flex-end;
    align-self: start;
}

.footer-links .contact-qr-link {
    gap: 8px;
    padding: 6px 10px 6px 6px;
}

.footer-links .contact-qr-link img {
    width: 68px;
    height: 68px;
    padding: 5px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 72px 1fr 72px;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.94);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-close,
.lightbox-nav {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink);
    cursor: pointer;
}

.lightbox-close {
    grid-column: 1 / -1;
    justify-self: end;
    min-height: 44px;
    padding: 10px 16px;
}

.lightbox-nav {
    align-self: center;
    min-height: 72px;
    padding: 10px;
}

.lightbox-stage {
    position: relative;
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 12px;
    min-width: 0;
    margin: 0;
}

.lightbox-stage::before {
    content: "";
    position: absolute;
    top: calc(50% - 34px);
    left: calc(50% - 26px);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 3px solid rgba(241, 201, 106, 0.22);
    border-top-color: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
    transition: opacity 160ms ease, transform 160ms ease;
}

.lightbox-stage.is-loading::before {
    opacity: 1;
    transform: scale(1);
    animation: gallery-loader 780ms linear infinite;
}

.lightbox-stage img {
    width: 100%;
    height: min(68vh, 760px);
    object-fit: contain;
    opacity: 1;
    transition: opacity 180ms ease;
}

.lightbox-stage.is-loading img {
    opacity: 0.18;
}

.lightbox-stage figcaption {
    color: var(--muted);
    text-align: center;
}

@keyframes gallery-loader {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.lightbox-prev {
    grid-column: 1;
    grid-row: 2;
}

.lightbox-next {
    grid-column: 3;
    grid-row: 2;
}

.lightbox-thumbs {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lightbox-thumbs button {
    position: relative;
    flex: 0 0 88px;
    height: 64px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    background: #111;
    cursor: pointer;
}

.lightbox-thumbs button.is-active {
    border-color: var(--gold-light);
}

.lightbox-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumb-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: var(--ink);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.lightbox-media {
    width: 100%;
    min-height: 0;
    max-height: min(82vh, 980px);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.lightbox-media img {
    display: block;
    max-width: 100%;
    max-height: min(82vh, 980px);
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 180ms ease;
}

.lightbox-stage.is-loading .lightbox-media img {
    opacity: 0.18;
}

.lightbox-video-wrapper {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.lightbox-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.event-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: var(--ink);
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.gallery-cover {
    position: relative;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto 1fr;
        padding: 10px 0;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .header-drawer {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: max-height 260ms ease, padding 260ms ease;
        z-index: 19;
    }

    .header-drawer.is-open {
        max-height: 100vh;
        padding: 16px 0 24px;
    }

    .main-nav,
    .header-contact {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .main-nav a,
    .header-contact a {
        padding: 10px 14px;
        font-size: 1rem;
    }

    .header-contact {
        justify-content: center;
        max-width: none;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--line);
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-title {
        font-size: 4.2rem;
    }

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

    .event-agenda-card {
        grid-template-columns: 82px 1fr;
    }

    .event-agenda-card.has-poster {
        grid-template-columns: minmax(150px, 220px) 82px 1fr;
    }

    .event-cta {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .profile-frame {
        max-width: 440px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.service-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    color: var(--gold-light);
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-card a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-cta {
    margin-top: 36px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.faq-item {
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}

.faq-item summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold-light);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 14px 0 0;
    color: var(--muted);
}

.faq-item a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.field-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    cursor: pointer;
}

.field-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: var(--gold);
}

.field-check span {
    color: var(--muted);
    line-height: 1.5;
}

.field-check a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(5, 5, 5, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.cookie-banner[hidden],
html[data-cookie-consent] .cookie-banner {
    display: none;
}

.cookie-banner-content {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
    align-items: center;
}

.cookie-banner-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    grid-column: 1 / -1;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-banner-link {
    color: var(--gold-light);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 1.5rem;
    color: var(--gold-light);
}

.legal-content p,
.legal-content ul {
    color: var(--muted);
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    border: 1px solid var(--line);
    text-align: left;
}

.legal-table th {
    background: var(--panel);
    color: var(--gold-light);
    font-weight: 600;
}

.footer-legal {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    text-align: right;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: var(--gold-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.video-card {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
    color: var(--ink);
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.video-thumb {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0a0a0a;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.04);
}

.video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    color: var(--ink);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.22);
    transition: background 220ms ease;
}

.video-card:hover .video-play {
    background: rgba(0, 0, 0, 0.12);
}

.video-embed {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    background: #0a0a0a;
}

.video-embed[hidden] {
    display: none;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px 18px;
    font-size: 1.16rem;
    font-weight: 800;
    color: var(--ink);
}

.section-spotify {
    background: #080808;
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.spotify-card {
    display: grid;
    gap: 8px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
    color: var(--ink);
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease;
}

.spotify-card:hover {
    transform: translateY(-4px);
    border-color: #1ed760;
}

.spotify-cover {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0a0a0a;
}

.spotify-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.spotify-card:hover .spotify-cover img {
    transform: scale(1.04);
}

.spotify-cover-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #1ed760;
}

.spotify-cover-placeholder svg {
    width: 64px;
    height: 64px;
    fill: currentColor;
}

.spotify-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #1ed760;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 220ms ease, background 220ms ease;
}

.spotify-play svg {
    width: 54px;
    height: 54px;
    fill: currentColor;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.spotify-card:hover .spotify-play {
    opacity: 1;
    background: rgba(0, 0, 0, 0.22);
}

.spotify-title {
    padding: 10px 18px 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-artist {
    padding: 0 18px 18px;
    font-size: 0.95rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-embed {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
}

.spotify-embed iframe {
    width: 100%;
    height: 352px;
    border: 0;
}

.icon-link-spotify {
    color: #1ed760;
    border-color: rgba(30, 215, 96, 0.35);
}

.icon-link-spotify svg {
    fill: currentColor;
    stroke: none;
}

.icon-link-spotify:hover {
    background: rgba(30, 215, 96, 0.12);
    border-color: #1ed760;
}

.spotify-card.is-playing {
    border-color: #1ed760;
}

.spotify-player {
    grid-column: 1 / -1;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 220ms ease;
}

.spotify-player:not([hidden]) {
    height: 80px;
    margin-top: 8px;
}

.spotify-player iframe {
    width: 100%;
    height: 80px;
    border: 0;
    border-radius: 8px;
}

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

@media (max-width: 680px) {
    .container,
    .header-inner,
    .hero-inner {
        width: min(100% - 24px, var(--max));
    }

    .header-inner {
        grid-template-columns: auto 1fr;
        gap: 10px;
        justify-items: initial;
    }

    .main-nav,
    .header-contact {
        justify-content: center;
    }

    .header-contact .contact-qr-link {
        padding: 5px;
    }

    .header-contact .contact-qr-link span {
        display: none;
    }

    .header-contact .contact-qr-link img {
        width: 64px;
        height: 64px;
    }

    .brand img {
        width: 74px;
        height: 74px;
    }

    .site-header.is-scrolled .brand img {
        width: 54px;
        height: 54px;
    }

    .hero {
        min-height: 74svh;
    }

    .hero-inner {
        padding: 54px 0 40px;
    }

    .hero-logo {
        width: 126px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 2.85rem;
    }

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

    .section {
        padding: 68px 0;
    }

    .section-copy h2,
    .section-heading h2,
    .contact-copy h2 {
        font-size: 2rem;
    }

    .event-agenda-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .event-agenda-card.has-poster {
        grid-template-columns: 1fr;
    }

    .event-poster {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .event-date-box {
        width: 86px;
        min-height: 86px;
    }

    .gallery-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-legal {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        text-align: center;
    }

    .contact-links {
        grid-template-columns: 1fr;
    }

    .contact-links .contact-qr-card {
        width: 100%;
        justify-content: center;
    }

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

    .service-card {
        padding: 22px;
    }

    .faq-item {
        padding: 18px 20px;
    }

    .faq-item summary {
        font-size: 1rem;
    }

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

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

    .cookie-banner-content {
        grid-template-columns: 1fr;
    }

    .cookie-banner-actions {
        justify-content: flex-start;
    }

    .lightbox {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr auto auto;
        padding: 16px;
    }

    .lightbox-stage {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .lightbox-stage img {
        height: 58vh;
    }

    .lightbox-prev,
    .lightbox-next {
        grid-row: 3;
        min-height: 48px;
    }

    .lightbox-prev {
        grid-column: 1;
    }

    .lightbox-next {
        grid-column: 2;
    }

    .lightbox-thumbs {
        grid-row: 4;
    }
}
