/*
Theme Name: Club Dims
Theme URI: https://clubdims.nl
Description: Premium nightclub theme for Club Dims with a luxurious nightlife aesthetic.
Version: 1.0.0
Author: Club Dims
Author URI: https://clubdims.nl
Text Domain: clubdims
*/

/* ============================================
   Google Fonts — loaded via <link preload> in performance.php
   ============================================ */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    --color-gold: #d4a843;
    --color-gold-light: #e4c36a;
    --color-gold-dark: #b8912e;
    --color-dark-brown: #0c0c0c;
    --color-black: #000;
    --color-white: #fff;
    --color-gray-light: #111111;
    --color-gray-medium: #1a1a1a;
    --color-text-muted: #888;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --header-height: 80px;
    --section-padding: 100px;
    --border-radius-pill: 50px;
    --border-radius-card: 20px;
    --border-radius-bar: 12px;
    --transition-speed: 0.3s;
    --max-width: 1280px;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-color: var(--color-gold) #111;
    scrollbar-width: thin;
}

/* Webkit scrollbar (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #000;
}

*::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* Firefox */
* {
    scrollbar-color: var(--color-gold) #000;
    scrollbar-width: thin;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    * { letter-spacing: 0 !important; }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-gold);
}

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    /* letter-spacing: removed */
    text-transform: uppercase;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    /* letter-spacing: removed */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    /* letter-spacing: removed */
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn--gold {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    font-weight: 400;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.25);
}

.btn--gold:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-black);
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark-brown);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn--outline-dark:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn--small {
    padding: 12px 32px;
    font-size: 1rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background-color var(--transition-speed) ease;
}

.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header--scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.site-header__logo-img {
    height: 48px;
    width: auto;
}

.site-header__logo:hover .site-header__logo-img {
    opacity: 0.85;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.site-header__nav .menu {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.site-header__nav .menu li a {
    display: block;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    /* letter-spacing: removed */
    color: var(--color-white);
    transition: color var(--transition-speed) ease;
    white-space: nowrap;
}

.site-header__nav .menu li a:hover,
.site-header__nav .menu li.current-menu-item a {
    color: var(--color-gold);
}

.site-header__cta {
    margin-left: 16px;
    font-size: 1.2rem !important;
    padding: 12px 32px !important;
}

.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.site-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-speed) ease;
    transform-origin: center;
}

.site-header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.site-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.site-header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .site-header__hamburger {
        display: flex;
    }

    .site-header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed) ease;
        overflow-y: auto;
        padding: 80px 0 40px;
    }

    .site-header__nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .site-header__nav .menu {
        flex-direction: column;
        align-items: center;
        gap: 0;
        text-align: center;
        width: 100%;
    }

    .site-header__nav .menu li {
        width: 100%;
        text-align: center;
    }

    .site-header__nav .menu li a {
        font-size: 1.6rem;
        padding: 6px 24px;
        display: block;
        text-align: center;
    }

    .site-header__nav .mobile-social {
        display: flex;
        gap: 20px;
        margin-top: 16px;
    }

    .site-header__nav .mobile-social a {
        color: var(--color-white);
        opacity: 0.6;
        transition: opacity var(--transition-speed) ease;
    }

    .site-header__nav .mobile-social a:hover {
        opacity: 1;
        color: var(--color-gold);
    }

    .site-header__cta {
        margin-left: 0;
        margin-top: 20px;
        font-size: 1.2rem !important;
        padding: 14px 40px !important;
    }

    .site-header__mobile-socials {
        display: flex;
        gap: 20px;
        margin-top: 24px;
    }

    .site-header__mobile-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all var(--transition-speed) ease;
    }

    .site-header__mobile-socials a:hover {
        border-color: var(--color-gold);
    }

    .site-header__mobile-socials svg {
        width: 20px;
        height: 20px;
        fill: rgba(255, 255, 255, 0.6);
        transition: fill var(--transition-speed) ease;
    }

    .site-header__mobile-socials a:hover svg {
        fill: var(--color-gold);
    }
}

/* Hide mobile socials on desktop, show on mobile */
@media (min-width: 1025px) {
    .site-header__mobile-socials {
        display: none;
    }
}

/* ============================================
   Hero / Agenda Carousel Section
   ============================================ */
.hero-agenda {
    position: relative;
    min-height: 100vh;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-padding) 0 calc(80px + 140px);
    overflow: visible;
}

.hero-agenda__content {
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
}

.hero-agenda::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 140px;
    background: #111;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 3;
}

.hero-agenda__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-agenda__video {
        display: none;
    }
}

.hero-agenda__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(17, 14, 8, 0.55) 40%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.hero-agenda > .container,
.hero-agenda > .event-carousel {
    position: relative;
    z-index: 2;
}

.hero-agenda::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 20%,
            rgba(212, 168, 67, 0.12) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 80%,
            rgba(212, 168, 67, 0.05) 0%,
            transparent 40%
        );
    pointer-events: none;
}

.hero-agenda__title {
    font-size: clamp(4rem, 12vw, 10rem);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 80px rgba(212, 168, 67, 0.3), 0 0 160px rgba(212, 168, 67, 0.1);
}

/* Carousel */
.event-carousel {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (min-width: 2000px) {
    .event-carousel {
        max-width: 1900px;
    }
}

.event-carousel__track-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-card);
}

.event-carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.event-carousel__slide {
    flex: 0 0 25%;
    padding: 0 8px;
}

.event-carousel__card {
    display: block;
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--color-dark-brown);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.event-carousel__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.2);
    color: var(--color-white);
}

.event-carousel__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.event-carousel__card:hover img {
    transform: scale(1.03);
}

.event-carousel__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    pointer-events: none;
}

.event-carousel__card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.event-carousel__card-date {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Carousel Ticket Button */
.event-carousel__slide {
    position: relative;
}

.event-carousel__ticket-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius-pill);
    background: var(--color-gold);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.25);
    transition: all var(--transition-speed) ease;
}

.event-carousel__ticket-btn:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-black);
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.4);
}

/* Carousel Navigation Arrows */
.event-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    z-index: 10;
}

.event-carousel__arrow:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-brown);
}

.event-carousel__arrow--prev {
    left: 8px;
}

.event-carousel__arrow--next {
    right: 8px;
}

.event-carousel__arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Carousel Responsive */
@media (max-width: 1024px) {
    .event-carousel__slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .event-carousel__slide {
        flex: 0 0 100%;
    }

    .event-carousel {
        padding: 0 48px;
    }
}

/* Scroll mouse hint - mobile only */
.hero-agenda__scroll-hint {
    display: none;
}

@media (max-width: 768px) {
    .hero-agenda__scroll-hint {
        display: flex;
        justify-content: center;
        padding: 16px 0 0;
        position: relative;
        z-index: 10;
    }
}

.hero-agenda__scroll-hint .scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-gold);
    border-radius: 13px;
    position: relative;
    opacity: 0.7;
}

.hero-agenda__scroll-hint .scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   Agenda List Section
   ============================================ */
.agenda-list {
    padding: 260px 0;
    position: relative;
    background: linear-gradient(180deg, #111 0%, #130f08 50%, #111 100%);
}

.agenda-list > .container {
    position: relative;
    z-index: 5;
    transform: translateY(-58%);
    margin-bottom: -58%;
}

@media (max-width: 768px) {
    .agenda-list {
        padding: 40px 0 80px;
    }

    .agenda-list > .container {
        transform: translateY(0);
        margin-bottom: 0;
    }

    .photos-section__bg {
        position: absolute !important;
        top: 0 !important;
        height: 100% !important;
        transform: none !important;
    }
}

.agenda-list__panel {
    background: linear-gradient(145deg, #111 0%, #0d0b07 100%);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--border-radius-card);
    padding: 48px 40px;
    box-shadow: 0 0 60px rgba(212, 168, 67, 0.06), inset 0 1px 0 rgba(212, 168, 67, 0.1);
    position: relative;
    z-index: 2;
}

.agenda-list__heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-dark-brown);
    margin-bottom: 32px;
    /* letter-spacing: removed */
    display: none;
}

.agenda-list__rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agenda-list__row {
    display: grid;
    grid-template-columns: 100px 60px 1fr auto;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-bar);
    padding: 16px 24px;
    transition: background-color var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.agenda-list__row:hover {
    background-color: rgba(212, 168, 67, 0.08);
    border-color: rgba(212, 168, 67, 0.2);
}

.agenda-list__date {
    font-family: var(--font-heading);
    font-size: 40px;
    /* letter-spacing: removed */
    color: var(--color-gold);
    white-space: nowrap;
}

.agenda-list__time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--color-text-muted);
    white-space: nowrap;
    min-width: 45px;
}

.agenda-list__time-start,
.agenda-list__time-end {
    display: block;
    line-height: 1.4;
}

.agenda-list__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.agenda-list__title {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agenda-list__title a {
    color: var(--color-white);
}

.agenda-list__title a:hover {
    color: var(--color-gold);
}

.agenda-list__lineup {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agenda-list__cta-wrap {
    text-align: center;
    margin-top: 32px;
    position: relative;
    z-index: 2;
}

/* Agenda Responsive */
@media (max-width: 768px) {
    .agenda-list__panel {
        padding: 32px 20px;
    }

    .agenda-list__row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 8px 16px;
        padding: 16px 20px;
    }

    .agenda-list__date {
        grid-column: 1;
        grid-row: 1;
    }

    .agenda-list__time {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        display: none;
    }

    .agenda-list__info {
        grid-column: 1;
        grid-row: 2;
    }

    .agenda-list__row .btn {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
}

/* ============================================
   Photos Section
   ============================================ */
.photos-section {
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: var(--section-padding) 0;
    padding-top: calc(var(--section-padding) + 140px);
    padding-bottom: calc(var(--section-padding) + 80px);
    margin-top: -140px;
    position: relative;
    clip-path: polygon(0 140px, 100% 0, 100% 100%, 0 100%);
}

.photos-section[style*="background-image"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(17, 14, 8, 0.72) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 0;
}

/* Hide the separate bg div - no longer needed */
.photos-section__bg {
    display: none;
}

.photos-section > .container {
    position: relative;
    z-index: 1;
}

.photos-section::after {
    display: none;
}

.photos-section__title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    margin-bottom: 48px;
    color: var(--color-white);
    /* letter-spacing: removed */
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.2);
    position: relative;
    z-index: 1;
}

.photos-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.photos-section__card {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #1a1a1a;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.photos-section__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
    border-color: rgba(212, 168, 67, 0.3);
}

.photos-section__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photos-section__card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* letter-spacing: removed */
}

.photos-section__cta-wrap {
    text-align: center;
}

@media (max-width: 768px) {
    .photos-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .photos-section__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, #111 0%, #130f08 50%, #111 100%);
    color: var(--color-white);
    padding: var(--section-padding) 0;
    padding-top: calc(var(--section-padding) + 140px);
    padding-bottom: calc(var(--section-padding) + 80px);
    margin-top: -140px;
    position: relative;
    clip-path: polygon(0 0, 100% 140px, 100% 100%, 0 100%);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(212, 168, 67, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-section__title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.0;
    color: var(--color-gold);
    /* letter-spacing: removed */
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.25);
    position: relative;
    z-index: 1;
}

.faq-section__accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--border-radius-bar);
    overflow: hidden;
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.faq-item:hover {
    border-color: rgba(212, 168, 67, 0.35);
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.faq-item__trigger:hover {
    color: var(--color-gold);
}

.faq-item__trigger:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: -2px;
    border-radius: var(--border-radius-bar);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform var(--transition-speed) ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    border-radius: 1px;
}

.faq-item__icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform var(--transition-speed) ease;
}

.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item__content-inner {
    padding: 0 24px 20px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.faq-item.is-open .faq-item__content {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-section__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, #080808 0%, #0c0a06 50%, #080808 100%);
    padding: var(--section-padding) 0;
    padding-top: calc(var(--section-padding) + 140px);
    margin-top: -140px;
    position: relative;
    clip-path: polygon(0 140px, 100% 0, 100% 100%, 0 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section__title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 48px;
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.15);
    position: relative;
    z-index: 1;
}

.contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-section__block {
    margin-bottom: 40px;
}

.contact-section__block-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--color-gold);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
}

.contact-section__block p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.contact-section__block a {
    color: var(--color-gold);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.contact-section__block a:hover {
    color: var(--color-gold-light);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    /* letter-spacing: removed */
    color: var(--color-text-muted);
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-bar);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-speed) ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 16px rgba(212, 168, 67, 0.15);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form__select option {
    background-color: var(--color-dark-brown);
    color: var(--color-white);
}

.contact-form__submit {
    align-self: flex-start;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .contact-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: var(--color-black);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    transition: all var(--transition-speed) ease;
}

.site-footer__social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.35);
}

.site-footer__social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.site-footer__legal-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-speed) ease;
}

.site-footer__legal-link:hover {
    color: var(--color-gold);
}

.site-footer__legal-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
}

.site-footer__contact {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
    opacity: 0.7;
}

.site-footer__contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.site-footer__contact a:hover {
    color: var(--color-gold);
}

.site-footer__copy {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.site-footer__credit {
    margin-top: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

.site-footer__credit a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-speed) ease;
}

.site-footer__credit a:hover {
    color: var(--color-gold);
}

/* ============================================
   Single Event Page
   ============================================ */
.single-event {
    padding-top: 0;
}

.single-event__hero {
    position: relative;
    min-height: 60vh;
    padding-top: var(--header-height);
    overflow: hidden;
    background-color: var(--color-dark-brown);
}

.single-event__hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.single-event__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-event__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 30%, transparent 100%);
    z-index: 1;
}

.single-event__hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 48px;
    width: 100%;
}

.single-event__title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 16px;
    color: var(--color-white);
}

.single-event__header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
}

.single-event__date-block {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
}

.single-event__date-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-gold);
    line-height: 1;
}

.single-event__date-divider {
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.single-event__header-right {
    flex: 1;
}

.single-event__body .single-event__title {
    margin-bottom: 8px;
}

.single-event__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--color-gold);
    margin-bottom: 32px;
}

.single-event__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-event__body {
    padding: 200px 0 160px;
    background-color: var(--color-dark-brown);
    margin-top: -140px;
    position: relative;
    clip-path: polygon(0 0, 100% 140px, 100% 100%, 0 100%);
    z-index: 3;
}

.single-event__two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.single-event__flyer {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.single-event__flyer-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.single-event__lineup-section {
    margin-bottom: 40px;
}

.single-event__lineup-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
}

.single-event__lineup-names {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single-event__lineup-artist {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .single-event__two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .single-event__flyer {
        position: static;
        max-width: 100%;
        margin: 0;
    }

    .single-event__back--desktop,
    .single-event__share--desktop {
        display: none !important;
    }

    .single-event__bottom-mobile {
        display: block;
    }

    .single-event__lineup-artist {
        font-size: 1.4rem;
    }
}

.single-event__bottom-mobile {
    display: none;
    margin-top: 32px;
}

.single-event__content {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.single-event__content p {
    margin-bottom: 16px;
}

.single-event__content h2,
.single-event__content h3 {
    color: var(--color-white);
    margin-top: 32px;
    margin-bottom: 12px;
}

.single-event__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.single-event__share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.single-event__share-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.single-event__share-buttons {
    display: flex;
    gap: 8px;
}

.single-event__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

.single-event__share-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(212, 168, 67, 0.1);
}

.single-event__share-btn--copied {
    border-color: #4ade80 !important;
    color: #4ade80 !important;
    background: rgba(74, 222, 128, 0.1) !important;
}

.single-event__back {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color var(--transition-speed) ease;
}

.single-event__back:hover {
    color: var(--color-gold);
}

/* Other Events (Single Event Page) */
.other-events {
    background-color: var(--color-black);
    padding: 200px 0 80px;
    margin-top: -140px;
    position: relative;
    z-index: 4;
    clip-path: polygon(0 140px, 100% 0, 100% 100%, 0 100%);
}

.other-events__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 32px;
    /* letter-spacing: removed */
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.2);
}

/* Other Albums (Single Album Page) */
.other-albums {
    background: linear-gradient(180deg, #111 0%, #130f08 50%, #111 100%);
    padding: 200px 0 80px;
    margin-top: -140px;
    position: relative;
    z-index: 4;
    clip-path: polygon(0 140px, 100% 0, 100% 100%, 0 100%);
}

.other-albums__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 32px;
    /* letter-spacing: removed */
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.2);
}

.other-albums__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.other-albums__card {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    background-color: #1a1a1a;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.other-albums__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
    border-color: rgba(212, 168, 67, 0.3);
}

.other-albums__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-albums__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
}

.other-albums__card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* letter-spacing: removed */
}

@media (max-width: 768px) {
    .other-albums__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============================================
   Default Page Template
   ============================================ */
.page-default__hero {
    background-color: var(--color-dark-brown);
    padding: calc(var(--header-height) + 60px) 0 60px;
}

.page-default__hero--image {
    position: relative;
    background-size: cover;
    background-position: center bottom !important;
    background-repeat: no-repeat;
    padding: calc(var(--header-height) + 100px) 0 100px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.page-default__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 0;
}

.page-default__hero--image .container {
    position: relative;
    z-index: 1;
}

.page-default__title {
    font-size: clamp(3rem, 8vw, 5rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-default__body .page-default__title {
    margin-bottom: 32px;
}

.page-default__body {
    background-color: var(--color-black);
    padding: 240px 0 160px;
    margin-top: -140px;
    position: relative;
    clip-path: polygon(0 0, 100% 140px, 100% 100%, 0 100%);
    z-index: 3;
}

.page-default__body--bottom {
    clip-path: none;
    margin-top: 0;
    padding: 20px 0 60px;
}

.page-default__content {
    max-width: 800px;
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.8;
}

.page-default__content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-gold);
    margin: 0 0 16px;
}

.page-default__content h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--color-gold);
    margin: 32px 0 12px;
}

.page-default__content p {
    margin-bottom: 20px;
    color: var(--color-white);
    opacity: 0.9;
}

.page-default__content ul {
    margin: 0 0 24px 20px;
    list-style: disc;
}

.page-default__content ul li {
    margin-bottom: 8px;
    color: var(--color-white);
    opacity: 0.85;
}

.page-default__content strong {
    color: var(--color-gold);
}

.page-default__two-col {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.page-default__two-col .page-default__content {
    max-width: none;
}

.page-default__sidebar {
    background: linear-gradient(145deg, #111 0%, #0d0b07 100%);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--border-radius-card);
    padding: 32px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.page-default__sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 24px;
    /* letter-spacing: removed */
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
}

.page-default__sidebar .contact-form__submit {
    width: 100%;
}

/* Verhuur gallery: desktop hidden (shown as separate section below) */
.verhuur-gallery--inline {
    display: none;
}

/* Verhuur gallery: standalone section on desktop */
.verhuur-gallery--standalone {
    display: block;
    background: linear-gradient(180deg, #111 0%, #130f08 50%, #111 100%) !important;
    padding: 200px 0 100px !important;
    margin-top: -140px;
    position: relative;
    z-index: 4;
    clip-path: polygon(0 140px, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 768px) {
    .page-default__two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-default__sidebar {
        position: static;
    }

    /* Mobile: hide inline, keep standalone with smaller skew */
    .verhuur-gallery--inline {
        display: none;
    }

    .verhuur-gallery--standalone {
        display: block !important;
        clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%) !important;
        margin-top: -60px !important;
        padding: 100px 0 60px !important;
    }
}

.page-default__back {
    display: inline-block;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color var(--transition-speed) ease;
}

.page-default__back:hover {
    color: var(--color-gold);
}

.page-default__body--bottom {
    padding-top: 0;
}

/* Verhuur Gallery */
.verhuur-gallery {
    background-color: var(--color-black);
    padding: 60px 0 80px;
}

.verhuur-gallery__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-white);
    margin-bottom: 40px;
    /* letter-spacing: removed */
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.2);
}

.verhuur-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.verhuur-gallery__item {
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius-bar);
    aspect-ratio: 4 / 3;
    position: relative;
}

.verhuur-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition-speed) ease;
}

.verhuur-gallery__item:hover::after {
    background: rgba(212, 168, 67, 0.15);
}

.verhuur-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.verhuur-gallery__item:hover img {
    transform: scale(1.05);
}

.verhuur-gallery__item--placeholder {
    cursor: default;
}

.verhuur-gallery__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-bar);
}

.verhuur-gallery__placeholder span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-muted);
    /* letter-spacing: removed */
    opacity: 0.5;
}

@media (max-width: 768px) {
    .verhuur-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox--active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}

.lightbox--active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox__close:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox__nav:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.lightbox__nav--prev {
    left: 24px;
}

.lightbox__nav--next {
    right: 24px;
}

/* ============================================
   Archive Events Page
   ============================================ */
.archive-events {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--color-black);
    min-height: 100vh;
}

.archive-events__title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 48px;
}

.archive-events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.archive-events__card {
    display: block;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    background-color: var(--color-black);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.archive-events__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.15);
    color: var(--color-white);
}

.archive-events__card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--color-dark-brown);
}

.archive-events__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.archive-events__card:hover .archive-events__card-image img {
    transform: scale(1.03);
}

.archive-events__card-body {
    padding: 20px;
}

.archive-events__card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.archive-events__card-date {
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.archive-events__no-events {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-align: center;
    padding: 60px 0;
}

/* Past events section - warm gradient with skew */
.archive-events__past-section {
    background: linear-gradient(180deg, #111 0%, #130f08 50%, #111 100%);
    padding: 200px 0 80px;
    margin-top: -140px;
    position: relative;
    z-index: 4;
    clip-path: polygon(0 140px, 100% 0, 100% 100%, 0 100%);
}

.archive-events__past-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 32px;
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.2);
}

.archive-events__past-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.archive-events__card--past {
    opacity: 0.6;
    filter: grayscale(40%);
    transition: opacity var(--transition-speed) ease, filter var(--transition-speed) ease;
}

.archive-events__card--past:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============================================
   WordPress Defaults
   ============================================ */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin: 0 auto 1em;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* ============================================
   Page/Post Content (fallback)
   ============================================ */
.site-main--default {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: var(--section-padding);
    min-height: 80vh;
}

.site-main--default .entry-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.site-main--default .entry-content {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.site-main--default .entry-content p {
    margin-bottom: 16px;
}

/* ============================================
   Gallery Album Archive
   ============================================ */
/* Old archive-albums hero/body - now using page-default classes */
.archive-albums__hero {
    display: none;
}

.archive-albums__body {
    display: none;
}

.archive-albums__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.archive-albums__card {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    background: var(--color-gray-medium);
}

.archive-albums__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-albums__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ccc 0%, #aaa 100%);
}

.archive-albums__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.archive-albums__card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    text-transform: uppercase;
    /* letter-spacing: removed */
}

.archive-albums__card:hover {
    transform: translateY(-4px);
    transition: transform var(--transition-speed) ease;
}

.archive-albums__back {
    margin-top: 48px;
}

@media (max-width: 768px) {
    .archive-albums__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .archive-albums__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Single Gallery Album
   ============================================ */
.single-album__hero {
    background-color: var(--color-dark-brown);
    padding: calc(var(--header-height) + 60px) 0 60px;
}

.single-album__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-white);
}

.single-album__body {
    background-color: var(--color-black);
    padding: 60px 0 100px;
}

.single-album__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.single-album__item {
    border-radius: var(--border-radius-bar);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.single-album__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease, opacity 0.3s ease;
}

.single-album__img--lazy {
    background: var(--color-dark-brown);
    opacity: 0;
}

.single-album__img--lazy[src] {
    opacity: 1;
}

.single-album__item:hover .single-album__img {
    transform: scale(1.05);
}

.single-album__load-more-wrap {
    text-align: center;
    margin: 48px 0 24px;
}

.single-album__load-more {
    font-size: 1rem;
    padding: 14px 40px;
    cursor: pointer;
}

.single-album__empty {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.single-album__content {
    margin-top: 48px;
    color: var(--color-white);
    opacity: 0.9;
    text-align: center;
}

.single-album__actions {
    margin-top: 48px;
    text-align: center;
}

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

@media (max-width: 480px) {
    .single-album__grid {
        grid-template-columns: 1fr;
    }
}
