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

        :root {
            --bg: #fdf8ef;
            --bg-alt: #f5ead0;
            --bg-card: #faf3e6;
            --brown-deep: #2c1810;
            --brown: #5c3218;
            --brown-mid: #7a4422;
            --amber: #b06c1f;
            --gold: #c17b2e;
            --gold-dark: #9a5e16;
            --text: #2c1810;
            --text-soft: #4a2e1a;
            --text-muted: #7a5a40;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Crimson Pro', Georgia, serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }

        img {
            height: auto;
        }

        /* ===== NOISE TEXTURE OVERLAY ===== */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(253,248,239,0.97) 0%, rgba(253,248,239,0.9) 100%);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(44,24,16,0.1);
            transition: transform 0.3s ease;
        }

        nav .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 2rem;
        }

        nav .nav-logo img {
            height: 40px;
            width: auto;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        nav .nav-logo img:hover { opacity: 1; }

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

        nav .nav-links li {
            display: flex;
            align-items: center;
        }

        nav .nav-links a {
            display: inline-flex;
            align-items: center;
            color: var(--brown-deep);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 600;
            opacity: 0.6;
            transition: opacity 0.3s, color 0.3s;
            position: relative;
            line-height: 1;
        }

        nav .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--amber);
            transition: width 0.3s ease;
        }

        nav .nav-links a:hover { opacity: 1; color: var(--amber); }
        nav .nav-links a:hover::after { width: 100%; }

        nav .nav-links a.nav-social-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.42rem 0.85rem;
            border: 1px solid rgba(176,108,31,0.18);
            border-radius: 999px;
            color: var(--amber);
            background: rgba(176,108,31,0.06);
            opacity: 1;
            letter-spacing: 0.08em;
            line-height: 1;
        }

        nav .nav-links a.nav-social-link::after {
            display: none;
        }

        nav .nav-links a.nav-social-link:hover {
            color: var(--brown-deep);
            background: rgba(176,108,31,0.14);
            border-color: rgba(176,108,31,0.3);
            transform: translateY(-1px);
        }

        nav .nav-links a.nav-social-link svg {
            width: 16px;
            height: 16px;
            display: block;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex: 0 0 auto;
        }

        /* Mobile hamburger */
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
        .nav-toggle span {
            display: block; width: 24px; height: 2px; background: var(--brown-deep);
            margin: 5px 0; transition: all 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 50% at 50% 40%, rgba(193,123,46,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 60% 80% at 20% 80%, rgba(245,234,208,0.5) 0%, transparent 60%),
                radial-gradient(ellipse 60% 80% at 80% 80%, rgba(245,234,208,0.5) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Decorative line art */
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--amber), transparent);
        }

        .hero-logo-wrap {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            margin-top: 2rem;
        }

        .hero-logo-wrap::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130%;
            height: 150%;
            background: radial-gradient(ellipse at center, #ffffff 0%, #ffffff 25%, var(--bg) 70%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
        }

        .hero-logo {
            width: min(600px, 85vw);
            height: auto;
            animation: fadeInScale 1.2s ease-out both;
            filter: drop-shadow(0 20px 60px rgba(44,24,16,0.08));
        }

        .hero-tagline {
            font-family: 'Crimson Pro', serif;
            font-style: italic;
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--amber);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            letter-spacing: 0.05em;
        }

        .hero-sub {
            margin-top: 0.5rem;
            font-size: 0.95rem;
            color: var(--text-soft);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.9s both;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hero-scroll {
            position: relative;
            margin-top: 3.2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 1.4s both;
            width: fit-content;
            align-self: center;
        }

        .hero-scroll a {
            color: var(--amber);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .hero-scroll a:hover { opacity: 1; }

        .hero-scroll .arrow {
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, var(--amber), transparent);
            animation: pulse 2s ease-in-out infinite;
        }

        /* ===== SECTIONS ===== */
        section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        /* Skip heavy rendering work for below-the-fold sections until needed */
        section:not(.hero) {
            content-visibility: auto;
            contain-intrinsic-size: 800px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Rye', cursive;
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--brown-deep);
            letter-spacing: 0.04em;
            position: relative;
            display: inline-block;
        }

        .section-header h2::before,
        .section-header h2::after {
            content: '✦';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.4em;
            color: var(--amber);
            opacity: 0.6;
        }

        .section-header h2::before { left: -1.5em; }
        .section-header h2::after { right: -1.5em; }

        .section-header p {
            margin-top: 1rem;
            color: var(--text-muted);
            font-style: italic;
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .divider {
            width: 60px;
            height: 1px;
            background: var(--amber);
            margin: 1.5rem auto 0;
            opacity: 0.4;
        }

        /* ===== OVER ONS ===== */
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            text-align: center;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-soft);
            max-width: 750px;
            margin: 0 auto;
        }

        .members {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 1rem;
        }

        .member {
            background: var(--bg-card);
            border: 1px solid rgba(44,24,16,0.08);
            border-radius: 2px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: border-color 0.4s, transform 0.3s, box-shadow 0.4s;
        }

        .member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--amber);
            opacity: 0;
            transition: opacity 0.4s, width 0.4s;
        }

        .member:hover {
            border-color: rgba(176,108,31,0.25);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(44,24,16,0.06);
        }

        .member:hover::before { opacity: 1; width: 60px; }

        .member-photo-wrap {
            width: 200px;
            height: 200px;
            margin: 0 auto 1.1rem;
            padding: 4px;
            border-radius: 50%;
            background: linear-gradient(145deg, rgba(193,123,46,0.45), rgba(122,68,34,0.15));
            box-shadow: 0 10px 26px rgba(44,24,16,0.12);
        }

        .member-photo {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid rgba(253,248,239,0.8);
        }

        .member h3 {
            font-family: 'Rye', cursive;
            font-size: 1.3rem;
            color: var(--brown-deep);
            margin-bottom: 0.3rem;
        }

        .member .role {
            color: var(--text-muted);
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 600;
        }

        /* ===== REPERTOIRE ===== */
        .setlist-wrapper {
            position: relative;
        }

        .setlist-wrapper::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 700px;
            height: calc(100% + 40px);
            background: var(--bg-card);
            border: 1px solid rgba(44,24,16,0.06);
            border-radius: 2px;
            z-index: -1;
        }

        .setlist {
            max-width: 700px;
            margin: 0 auto;
            width: 100%;
        }

        .setlist-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 0.85rem 1.5rem;
            border-bottom: 1px solid rgba(44,24,16,0.06);
            transition: background 0.3s, padding-left 0.3s;
        }

        .setlist-item:hover {
            background: rgba(193,123,46,0.06);
            padding-left: 2rem;
        }

        .setlist-item:last-child { border-bottom: none; }

        .song-title {
            font-weight: 600;
            color: var(--brown-deep);
            font-size: 1.05rem;
            min-width: 0;
            overflow-wrap: anywhere;
        }

        .song-dots {
            flex: 1;
            margin: 0 1rem;
            border-bottom: 1px dotted rgba(44,24,16,0.15);
            min-width: 2rem;
            align-self: center;
            margin-bottom: 4px;
        }

        .song-artist {
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.95rem;
            white-space: nowrap;
            min-width: 0;
        }

        /* ===== OPTREDENS ===== */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .countdown-wrap {
            max-width: 900px;
            margin: 0 auto 2rem;
        }

        .countdown-card {
            background: linear-gradient(160deg, rgba(176,108,31,0.09) 0%, rgba(250,243,230,1) 40%, rgba(250,243,230,1) 100%);
            border: 1px solid rgba(176,108,31,0.28);
            border-radius: 2px;
            padding: 1.5rem 1.6rem;
            text-align: center;
            box-shadow: 0 12px 34px rgba(44,24,16,0.07);
        }

        .countdown-label {
            font-family: 'Stint Ultra Expanded', serif;
            font-size: 0.75rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 0.4rem;
        }

        .countdown-event {
            font-family: 'Rye', cursive;
            color: var(--brown-deep);
            font-size: clamp(1.15rem, 2.7vw, 1.5rem);
            margin-bottom: 0.2rem;
        }

        .countdown-date {
            color: var(--text-muted);
            font-size: 0.9rem;
            letter-spacing: 0.04em;
            margin-bottom: 1.1rem;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.7rem;
        }

        .countdown-unit {
            background: rgba(253,248,239,0.9);
            border: 1px solid rgba(44,24,16,0.08);
            padding: 0.75rem 0.4rem;
            border-radius: 2px;
        }

        .countdown-value {
            display: block;
            font-family: 'Stint Ultra Expanded', serif;
            font-size: clamp(1.1rem, 3vw, 1.7rem);
            color: var(--brown-deep);
            line-height: 1;
        }

        .countdown-unit-label {
            display: block;
            margin-top: 0.35rem;
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .countdown-fallback {
            font-size: 0.95rem;
            color: var(--text-soft);
        }

        .event-card {
            background: var(--bg-card);
            border: 1px solid rgba(44,24,16,0.08);
            border-radius: 2px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
        }

        .event-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--amber), var(--brown));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .event-card:hover {
            border-color: rgba(176,108,31,0.25);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(44,24,16,0.06);
        }

        .event-card:hover::before { opacity: 1; }

        .event-date {
            font-family: 'Stint Ultra Expanded', serif;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .event-date::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--amber);
            border-radius: 50%;
            display: inline-block;
            opacity: 0.7;
        }

        .event-name {
            font-family: 'Rye', cursive;
            font-size: 1.3rem;
            color: var(--brown-deep);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .event-details {
            color: var(--text-soft);
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        .event-time {
            color: var(--text-muted);
            font-style: italic;
            font-size: 0.95rem;
        }

        .event-countdown {
            margin-top: 0.9rem;
            padding-top: 0.9rem;
            border-top: 1px dashed rgba(44,24,16,0.14);
            font-family: 'Stint Ultra Expanded', serif;
            font-size: 0.72rem;
            letter-spacing: 0.11em;
            text-transform: uppercase;
            color: var(--amber);
            line-height: 1.55;
        }

        .event-link {
            display: inline-block;
            margin-top: 1.2rem;
            color: var(--amber);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 600;
            border-bottom: 1px solid rgba(193,123,46,0.3);
            padding-bottom: 2px;
            transition: border-color 0.3s, color 0.3s;
        }

        .event-link:hover {
            color: var(--gold-dark);
            border-color: var(--gold-dark);
        }

        /* ===== FOTO'S ===== */
        .gallery-section {
            max-width: 1200px;
            position: relative;
        }

        .gallery-section::before {
            content: '';
            position: absolute;
            inset: 2rem 1rem 0;
            background:
                linear-gradient(180deg, rgba(193,123,46,0.06), rgba(193,123,46,0)),
                radial-gradient(circle at top left, rgba(176,108,31,0.08), transparent 45%);
            border: 1px solid rgba(44,24,16,0.06);
            z-index: -1;
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
            gap: 1.8rem;
            align-items: start;
        }

        .gallery-intro {
            background: linear-gradient(180deg, rgba(250,243,230,0.96), rgba(245,234,208,0.88));
            border: 1px solid rgba(44,24,16,0.08);
            padding: 2rem;
            box-shadow: 0 14px 40px rgba(44,24,16,0.05);
        }

        .gallery-kicker {
            font-family: 'Stint Ultra Expanded', serif;
            font-size: 0.75rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 1rem;
        }

        .gallery-intro p {
            color: var(--text-soft);
            font-size: 1.08rem;
            line-height: 1.8;
        }

        .gallery-note {
            margin-top: 1.25rem;
            font-style: italic;
            color: var(--text-muted);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 1rem;
        }

        .gallery-card {
            display: block;
            position: relative;
            overflow: hidden;
            grid-column: span 4;
            min-height: 280px;
            background: var(--bg-card);
            border: 1px solid rgba(44,24,16,0.08);
            box-shadow: 0 14px 34px rgba(44,24,16,0.08);
            transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
        }

        .gallery-card:nth-child(1) {
            grid-column: span 7;
            min-height: 360px;
        }

        .gallery-card:nth-child(2) {
            grid-column: span 5;
            min-height: 280px;
            margin-top: 2rem;
        }

        .gallery-card:nth-child(3) {
            grid-column: span 5;
            min-height: 260px;
            margin-top: -3.5rem;
        }

        .gallery-card:nth-child(4) {
            grid-column: span 7;
            min-height: 340px;
        }

        .gallery-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(44,24,16,0) 35%, rgba(44,24,16,0.52) 100%);
            opacity: 0.85;
            transition: opacity 0.35s ease;
        }

        .gallery-card:hover {
            transform: translateY(-6px) rotate(-0.3deg);
            box-shadow: 0 20px 44px rgba(44,24,16,0.14);
            border-color: rgba(176,108,31,0.24);
        }

        .gallery-card:hover::after {
            opacity: 1;
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.55s ease;
        }

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

        .gallery-caption {
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: 1rem;
            z-index: 1;
            color: #fff9f0;
        }

        .gallery-caption strong {
            display: block;
            font-family: 'Rye', cursive;
            font-size: 1.15rem;
            margin-bottom: 0.25rem;
            letter-spacing: 0.03em;
        }

        .gallery-caption span {
            font-size: 0.82rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            opacity: 0.92;
        }

        /* ===== LIGHTBOX ===== */
        .lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(4px);
        }

        .lightbox-overlay.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 2rem;
            position: relative;
        }

        .lightbox-image-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 90vw;
            max-height: 80vh;
            position: relative;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 2px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, border-color 0.3s;
            z-index: 2001;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 2px;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, border-color 0.3s;
            z-index: 2001;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .lightbox-prev {
            left: 1.5rem;
        }

        .lightbox-next {
            right: 1.5rem;
        }

        .lightbox-counter {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 1.5rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .lightbox-prev {
                left: 0.75rem;
            }

            .lightbox-next {
                right: 0.75rem;
            }

            .lightbox-close {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
                top: 1rem;
                right: 1rem;
            }
        }

        @media (max-width: 480px) {
            .lightbox-container {
                padding: 1rem;
            }

            .lightbox-image-wrapper {
                max-width: 100vw;
                max-height: 70vh;
            }

            .lightbox-nav {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }

            .lightbox-prev {
                left: 0.5rem;
            }

            .lightbox-next {
                right: 0.5rem;
            }
        }

        /* ===== CONTACT / FOOTER ===== */
        footer {
            border-top: 1px solid rgba(44,24,16,0.08);
            text-align: center;
            padding: 4rem 2rem 3rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--amber), transparent);
        }

        .footer-logo {
            width: 180px;
            height: auto;
            opacity: 0.5;
            margin-bottom: 1.5rem;
        }

        .footer-tagline {
            font-style: italic;
            color: var(--text-muted);
            opacity: 0.7;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .footer-contact {
            margin-bottom: 2rem;
        }

        .footer-contact a {
            color: var(--amber);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            border-bottom: 1px solid rgba(193,123,46,0.3);
            padding-bottom: 2px;
            transition: color 0.3s, border-color 0.3s;
        }

        .footer-contact a:hover {
            color: var(--gold-dark);
            border-color: var(--gold-dark);
        }

        .footer-copy {
            font-size: 0.8rem;
            color: var(--text-muted);
            opacity: 0.5;
            letter-spacing: 0.05em;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.92); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        /* Scroll-triggered fade in */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger children */
        .stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
        .stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
        .stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            nav .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--bg);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 1.5rem;
                transition: right 0.4s ease;
                border-left: 1px solid rgba(193,123,46,0.12);
            }

            nav .nav-links a.nav-social-link {
                width: fit-content;
            }

            nav .nav-links.open { right: 0; }

            .nav-toggle { display: block; z-index: 1001; }

            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .nav-toggle.active span:nth-child(2) { opacity: 0; }
            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .members { grid-template-columns: 1fr; gap: 1.2rem; }

            .member { padding: 1.8rem 1.2rem; }

            .member-photo-wrap {
                width: 180px;
                height: 180px;
            }

            .setlist-item { padding: 0.75rem 0.8rem; }

            .song-artist {
                text-align: right;
                white-space: normal;
            }

            .setlist-wrapper::before {
                width: 100%;
                left: 0;
                transform: none;
            }

            section { padding: 4rem 1.2rem; }

            .event-card { padding: 1.8rem; }

            .gallery-section::before {
                inset: 1.2rem 0 0;
            }

            .gallery-layout {
                grid-template-columns: 1fr;
            }

            .gallery-intro {
                padding: 1.5rem;
            }

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

            .gallery-card,
            .gallery-card:nth-child(1),
            .gallery-card:nth-child(2),
            .gallery-card:nth-child(3),
            .gallery-card:nth-child(4) {
                grid-column: span 1;
                height: auto;
                min-height: 0;
                aspect-ratio: 16 / 9;
                margin-top: 0;
            }

            .gallery-card img {
                width: 100%;
                height: 100%;
                object-position: center center;
            }

            .gallery-caption {
                left: 0.85rem;
                right: 0.85rem;
                bottom: 0.85rem;
            }

            .countdown-card {
                padding: 1.3rem 1rem;
            }

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

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

            .gallery-card,
            .gallery-card:nth-child(1),
            .gallery-card:nth-child(2),
            .gallery-card:nth-child(3),
            .gallery-card:nth-child(4) {
                grid-column: span 1;
                height: auto;
                min-height: 0;
                aspect-ratio: 16 / 9;
                margin-top: 0;
            }

            .gallery-caption {
                left: 0.75rem;
                right: 0.75rem;
                bottom: 0.75rem;
            }

            .gallery-caption strong {
                font-size: 1rem;
            }

            .setlist-item {
                flex-wrap: wrap;
                align-items: flex-start;
                gap: 0.3rem;
                padding: 0.75rem;
            }

            .song-dots { display: none; }

            .song-title {
                width: 100%;
                font-size: 0.98rem;
                line-height: 1.35;
            }

            .song-artist {
                width: 100%;
                font-size: 0.85rem;
                white-space: normal;
                text-align: left;
            }
        }

