/* ==============================================
   Čápi v máku — Design System v3
   Clean rewrite. Zero legacy. Zero conflicts.
   ============================================== */

:root {
    --bg: #FEFCFB;
    --ink: #1A1525;
    --ink-soft: #6B5F7B;
    --line: rgba(26, 21, 37, 0.08);
    --coral: #FF5757;
    --purple: #7B61FF;
    --teal: #00D4AA;
    --gold: #FFB800;
    --pink: #FF85A1;
    --sky: #4DACFF;
    --gradient-brand: linear-gradient(135deg, #FF5757, #FF85A1 30%, #7B61FF 60%, #4DACFF);
    --gradient-warm: linear-gradient(135deg, #FF5757, #FFB800);
    --gradient-cool: linear-gradient(135deg, #7B61FF, #4DACFF, #00D4AA);
    --gradient-wild: linear-gradient(135deg, #FF5757, #7B61FF, #00D4AA, #FFB800);
    --shadow: 0 20px 60px rgba(26, 21, 37, 0.12);
    --shadow-lg: 0 32px 80px rgba(26, 21, 37, 0.16);
    --shadow-color: 0 20px 60px rgba(123, 97, 255, 0.2);
    --radius: 24px;
    --radius-lg: 36px;
    --radius-full: 999px;
    --container: 1200px;
    --section-gap: clamp(5rem, 10vw, 9rem);
    --font-display: "Nunito", system-ui, sans-serif;
    --font-body: "Nunito Sans", "Nunito", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 500px 500px at 10% 10%, rgba(255,87,87,0.08), transparent),
        radial-gradient(ellipse 400px 400px at 90% 10%, rgba(123,97,255,0.08), transparent),
        radial-gradient(ellipse 450px 450px at 80% 80%, rgba(0,212,170,0.06), transparent),
        radial-gradient(ellipse 400px 400px at 15% 85%, rgba(255,184,0,0.06), transparent);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}


img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    display: block;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; top: -120px; left: 1rem; z-index: 9999;
    padding: 0.9rem 1.25rem; border-radius: var(--radius-full);
    background: var(--ink); color: #fff; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

/* --- Progress Bar --- */
.site-progress {
    position: fixed; inset: 0 0 auto; z-index: 10000;
    height: 4px; pointer-events: none;
}
.site-progress span {
    display: block; width: 100%; height: 100%;
    transform-origin: left; transform: scaleX(0);
    background: var(--gradient-wild);
    border-radius: 0 4px 4px 0;
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 5000;
    padding: 0.9rem 0;
    transition: background 0.4s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
    padding: 0.55rem 0;
    background: rgba(26, 21, 37, 0.85);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

/* Nav bar: 3-column grid — hamburger | links | right */
.nav-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none;
    width: 2.8rem; height: 2.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    justify-content: center; align-items: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s ease;
}
.nav-hamburger:active { background: rgba(255,255,255,0.14); }

.nav-hamburger-lines,
.nav-hamburger-lines::before,
.nav-hamburger-lines::after {
    display: block; width: 18px; height: 2px;
    border-radius: 999px; background: #fff;
    position: relative;
    transition: transform 0.3s ease, opacity 0.25s ease;
}
.nav-hamburger-lines::before,
.nav-hamburger-lines::after { content: ""; position: absolute; left: 0; }
.nav-hamburger-lines::before { top: -6px; }
.nav-hamburger-lines::after { top: 6px; }
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines { background: transparent; }
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines::before { transform: translateY(6px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile brand — hidden on desktop */
.nav-brand-mobile {
    display: none;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    letter-spacing: -0.03em;
}

/* Desktop links — centered */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    grid-column: 2;
}

.nav-links-extra { display: none; }

.nav-links a {
    position: relative;
    display: inline-flex;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 14px rgba(0,0,0,0.25);
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: #fff; transform: translateY(-2px); }
.nav-links a.is-active { color: #fff; }

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0.8rem; right: 0.8rem; bottom: 0.2rem;
    height: 3px;
    border-radius: var(--radius-full);
    background: var(--gradient-wild);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
    transform: scaleX(1); opacity: 1;
}

/* Desktop right side */
.nav-desktop-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    grid-column: 3;
    justify-self: end;
}

/* Cart icon (shared desktop + mobile top) */
.nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem; height: 2.6rem;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s ease, transform 0.2s var(--ease);
}
.nav-cart:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.nav-cart-count {
    position: absolute; top: -4px; right: -4px;
    min-width: 1.1rem; height: 1.1rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--coral);
    color: #fff; font-size: 0.65rem; font-weight: 800;
    display: grid; place-items: center; line-height: 1;
}

/* Booking button */
.nav-booking {
    white-space: nowrap;
    text-shadow: none;
}

/* Mobile cart in top bar — hidden on desktop */
.nav-bar > .nav-cart { display: none; }

/* Bottom bar — hidden on desktop */
.mobile-bar { display: none; }

.mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 1rem;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}
.mobile-bar-btn:active,
.mobile-bar-btn:hover { color: #fff; }
.mobile-bar-btn svg { width: 22px; height: 22px; }

.mobile-bar-home {
    width: 3.6rem; height: 3.6rem;
    margin-top: -1.2rem;
    border-radius: 50%;
    background: var(--gradient-wild);
    color: #fff;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 18px rgba(255,87,87,0.35);
}
.mobile-bar-home:hover { color: #fff; }

.mobile-bar-badge {
    position: absolute; top: 0; right: 0.4rem;
    min-width: 1rem; height: 1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--coral);
    color: #fff; font-size: 0.6rem; font-weight: 800;
    display: grid; place-items: center; line-height: 1;
}

/* Mobile menu overlay — outside header, always accessible */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9998;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 3rem 2rem 5rem;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s var(--ease);
}

.mobile-menu::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,87,87,0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(123,97,255,0.15), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(0,212,170,0.12), transparent 35%);
    pointer-events: none;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 340px;
    text-align: center;
    padding: 0.95rem 1.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-radius: 14px;
    transform: translateY(14px);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s ease, color 0.2s ease, background 0.2s ease;
}

.mobile-menu.is-open a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.04s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.07s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.13s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.16s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.19s; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: 0.22s; }

.mobile-menu a:hover,
.mobile-menu a:focus-visible { color: #fff; background: rgba(255,255,255,0.06); }

.mobile-menu a.is-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255,87,87,0.14), rgba(123,97,255,0.14));
}

.mobile-menu-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-extra a {
    transform: none;
    opacity: 1;
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
}

/* =============================================
   MOBILE: max-width 1080px
   ============================================= */
@media (max-width: 1080px) {
    .site-header { display: none; }

    .mobile-menu { display: flex; }

    .mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 9999;
        height: 3.8rem;
        background: var(--ink);
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 -6px 28px rgba(26,21,37,0.3);
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    body { padding-bottom: 4rem; }
    .site-footer { margin-bottom: 1rem; }
}

/* --- Hero Sections --- */
.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0 0 4rem;
}

.page-hero {
    min-height: 70vh;
    padding: 10rem 0 4rem;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    background: linear-gradient(
        180deg,
        rgba(26, 21, 37, 0.5) 0%,
        rgba(26, 21, 37, 0.2) 40%,
        rgba(26, 21, 37, 0.55) 100%
    );
}

.page-hero::before {
    background: linear-gradient(
        180deg,
        rgba(26, 21, 37, 0.4) 0%,
        rgba(0, 0, 0, 0.08) 60%,
        rgba(26, 21, 37, 0.35) 100%
    );
}

.hero .container,
.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-media,
.page-hero-bg {
    position: absolute;
    inset: 0;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-watermark,
.page-watermark { display: none; }

.hero-canvas,
.hero-vignette,
.hero-gridlines,
.hero-blob,
.page-hero-gradient,
.page-hero-media { display: none; }

.page-hero-bg {
    background-size: cover;
    background-position: center;
}

.page-hero--band .page-hero-bg {
    background: linear-gradient(135deg, #FF5757 0%, #7B61FF 50%, #4DACFF 100%);
}
.page-hero--music .page-hero-bg {
    background: linear-gradient(135deg, #7B61FF 0%, #4DACFF 50%, #00D4AA 100%);
}
.page-hero--concerts .page-hero-bg {
    background: linear-gradient(135deg, #00D4AA 0%, #FFB800 50%, #FF5757 100%);
}
.page-hero--gallery .page-hero-bg {
    background: linear-gradient(135deg, #FF85A1 0%, #7B61FF 50%, #4DACFF 100%);
}
.page-hero--contact .page-hero-bg {
    background: linear-gradient(135deg, #4DACFF 0%, #00D4AA 50%, #FFB800 100%);
}
.page-hero--shop .page-hero-bg {
    background: linear-gradient(135deg, #FF5757 0%, #FFB800 50%, #00D4AA 100%);
}

.hero-content {
    width: min(100%, 780px);
    display: grid;
    gap: 1.5rem;
}

.page-hero-inner {
    width: min(100%, 780px);
    display: grid;
    gap: 1.4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: fit-content;
    padding: 0.7rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-badge-dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    background: var(--gradient-wild);
    box-shadow: 0 0 0 4px rgba(255, 87, 87, 0.25);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 87, 87, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(255, 87, 87, 0.1); }
}

.hero-title,
.page-title {
    margin: 0;
    font-family: var(--font-display);
    color: #fff;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: clamp(3.8rem, 10vw, 8rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 14ch;
}

.hero-lead {
    margin: 0;
    max-width: 38rem;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.65;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 0.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.hero-stat {
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(26, 21, 37, 0.12);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1;
    margin-bottom: 0.3rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-stat span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.hero-stats .hero-stat:nth-child(1) strong { background: var(--gradient-warm); -webkit-background-clip: text; background-clip: text; }
.hero-stats .hero-stat:nth-child(2) strong { background: var(--gradient-cool); -webkit-background-clip: text; background-clip: text; }
.hero-stats .hero-stat:nth-child(3) strong { background: var(--gradient-wild); -webkit-background-clip: text; background-clip: text; }

/* --- Sections & Typography --- */
.section {
    position: relative;
    padding: var(--section-gap) 0;
}

.eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
}

.section-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--ink);
    max-width: 14ch;
}

.lead {
    margin: 0;
    max-width: 42rem;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.7;
}

.prose {
    margin: 0;
    max-width: 48rem;
    color: var(--ink-soft);
    line-height: 1.75;
}

.prose strong,
.bio-text strong { color: var(--coral); }

.section-head {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.8rem;
    max-width: 52rem;
}

.section-divider {
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: var(--gradient-wild);
    opacity: 0.3;
    margin: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3.4rem;
    padding: 0.9rem 1.6rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-3px);
}

.btn-primary {
    color: #fff;
    background: var(--gradient-brand);
    background-size: 300% 300%;
    background-position: 0% 50%;
    box-shadow: 0 14px 36px rgba(255, 87, 87, 0.3);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-position 0.6s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-position: 100% 50%;
    box-shadow: 0 18px 48px rgba(123, 97, 255, 0.4);
}

.btn-ghost {
    color: var(--ink);
    background: rgba(255,255,255,0.7);
    border-color: var(--line);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: rgba(123, 97, 255, 0.3);
    box-shadow: var(--shadow-color);
}

.btn-light {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.5s ease, border-color 0.5s ease, color 0.3s ease;
}

.btn-light:hover,
.btn-light:focus-visible {
    background: var(--gradient-wild);
    background-size: 300% 300%;
    background-position: 100% 50%;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 40px rgba(123, 97, 255, 0.35);
}

.button-row {
    display: flex; flex-wrap: wrap; gap: 0.9rem;
}

/* --- Cards --- */
.card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 97, 255, 0.18);
}

.card-gradient {
    position: relative;
    overflow: hidden;
}

.card-gradient::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-wild);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

/* --- Layout Grids --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.split {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: center;
}

.split-copy { display: grid; gap: 1.2rem; align-content: center; }

/* --- Feature Grid --- */
.feature-card {
    display: block;
    padding: 1.8rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78)) padding-box,
        var(--gradient-wild) border-box;
    background-size: 100% 100%, 300% 300%;
    background-position: center, 0% 50%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition:
        transform 0.5s var(--ease),
        box-shadow 0.5s var(--ease),
        background-position 0.8s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(123, 97, 255, 0.08),
        rgba(255, 87, 87, 0.06),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

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

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.6) 0%,
        rgba(255,255,255,0) 50%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

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

.feature-card:hover {
    background-position: center, 100% 50%;
    box-shadow:
        0 24px 56px rgba(123, 97, 255, 0.16),
        0 0 0 1px rgba(123, 97, 255, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem; height: 3rem;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    background: var(--gradient-wild);
    background-size: 200% 200%;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 20px rgba(123, 97, 255, 0.25);
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease, background-position 0.6s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-index {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(255, 87, 87, 0.3);
    background-position: 100% 100%;
}

.feature-card h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease);
}

.feature-card:hover h3 { transform: translateX(4px); }

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover p { color: var(--ink); }

.feature-card:nth-child(1) { --card-hue: var(--coral); }
.feature-card:nth-child(2) { --card-hue: var(--purple); }
.feature-card:nth-child(3) { --card-hue: var(--teal); }
.feature-card:nth-child(4) { --card-hue: var(--gold); }
.feature-card:nth-child(5) { --card-hue: var(--sky); }
.feature-card:nth-child(6) { --card-hue: var(--pink); }

/* --- Music Cards --- */
.music-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.music-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.music-card-link { display: block; text-decoration: none; color: inherit; }

.music-card-media {
    height: 220px;
    overflow: hidden;
}

.music-card-bg {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #9B8AFF, #4A3B99);
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--tone, #7B61FF) 85%, white),
        color-mix(in srgb, var(--tone, #7B61FF) 60%, #1A1525)
    );
    transition: transform 0.5s var(--ease);
}

.music-card:hover .music-card-bg { transform: scale(1.08); }

.music-card-media--video {
    position: relative;
    height: 320px;
}

.music-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.music-card-meta {
    padding: 1.3rem 1.4rem;
}

.music-card-meta h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.music-card-meta p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* --- Bio / Band --- */
.bio-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.6rem;
}

.bio-card {
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
}

.bio-lead {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.bio-quote {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.bio-text { margin: 0; color: var(--ink-soft); line-height: 1.75; }

/* --- Lineup --- */
.lineup-panel { display: grid; gap: 2rem; }

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    perspective: 1200px;
}

.lineup-item {
    position: relative;
    padding: 1.2rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow);
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    overflow: hidden;
}

.lineup-item::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-wild);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.5s ease, background-position 1.5s ease;
    z-index: 0;
}

.lineup-item:hover::before {
    opacity: 1;
    background-position: 100% 100%;
}

.lineup-item::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: var(--glow-x, 50%);
    top: var(--glow-y, 50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,97,255,0.3), rgba(255,87,87,0.18), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    z-index: 1;
    filter: blur(35px);
}

.lineup-item:hover::after {
    opacity: 1;
}

.lineup-item:hover {
    box-shadow:
        0 28px 60px rgba(123, 97, 255, 0.18),
        0 0 0 1px rgba(123, 97, 255, 0.08);
}

.lineup-photo-wrap {
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 2;
}

.lineup-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,87,87,0.1), rgba(123,97,255,0.1), rgba(0,212,170,0.1));
    transition: transform 0.5s var(--ease), filter 0.5s ease;
    will-change: transform;
}

.lineup-item:hover .lineup-photo {
    transform: scale(1.04);
    filter: saturate(1.15) contrast(1.05);
}

.lineup-photo--placeholder {
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    border: 2px dashed rgba(26,21,37,0.1);
}

.lineup-item h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--ease);
}

.lineup-item:hover h3 {
    transform: translateY(-2px);
}

.lineup-item p {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--ease), letter-spacing 0.4s ease;
}

.lineup-item:hover p {
    transform: translateY(-2px);
    letter-spacing: 0.22em;
}

.lineup-item:nth-child(1)::after { background: radial-gradient(circle, rgba(255,87,87,0.3), transparent 70%); }
.lineup-item:nth-child(2)::after { background: radial-gradient(circle, rgba(123,97,255,0.3), transparent 70%); }
.lineup-item:nth-child(3)::after { background: radial-gradient(circle, rgba(0,212,170,0.3), transparent 70%); }
.lineup-item:nth-child(4)::after { background: radial-gradient(circle, rgba(255,184,0,0.3), transparent 70%); }
.lineup-item:nth-child(5)::after { background: radial-gradient(circle, rgba(77,172,255,0.3), transparent 70%); }
.lineup-item:nth-child(6)::after { background: radial-gradient(circle, rgba(255,133,161,0.3), transparent 70%); }

/* --- Bandline / Feature Cards --- */
.bandline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.bandline-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.75);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.bandline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bandline-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.bandline-card p { margin: 0; color: var(--ink-soft); }

/* --- Tour / Concerts --- */
.tour-list { display: grid; gap: 1rem; }

.tour-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr auto auto;
    gap: 1.2rem;
    align-items: center;
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.75);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
    text-decoration: none;
}

.tour-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 97, 255, 0.18);
}

.tour-city {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.tour-venue, .tour-date { color: var(--ink-soft); }

.tour-cta {
    display: inline-flex;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

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

.gallery-card {
    position: relative;
    min-height: 260px;
    grid-column: span 4;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.gallery-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.gallery-card:nth-child(1) { background: linear-gradient(135deg, #FF5757, #FF85A1, #7B61FF); }
.gallery-card:nth-child(2) { background: linear-gradient(135deg, #7B61FF, #4DACFF, #00D4AA); }
.gallery-card:nth-child(3) { background: linear-gradient(135deg, #00D4AA, #FFB800); }
.gallery-card:nth-child(4) { background: linear-gradient(135deg, #FFB800, #FF5757, #FF85A1); }
.gallery-card:nth-child(5) { background: linear-gradient(135deg, #4DACFF, #7B61FF, #FF85A1); }

.gallery-card::after {
    content: attr(aria-label);
    position: absolute;
    left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.gallery-card--large { grid-column: span 8; min-height: 460px; }
.gallery-card--wide { grid-column: span 8; min-height: 320px; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.contact-card {
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
    align-content: start;
}

.contact-card .section-title { max-width: none; }
.contact-card .section-title a { text-decoration: none; }

/* --- Shop / Product Detail --- */
.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.product-detail-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f8f6f4;
}

.product-detail-img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.5s var(--ease), opacity 0.3s ease;
}

.product-detail-img.is-switching {
    opacity: 0.4;
    transform: scale(0.97);
}

.product-detail-placeholder {
    display: grid;
    place-items: center;
    min-height: 360px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px dashed var(--line);
    border-radius: var(--radius);
}

.product-detail-info {
    display: grid;
    gap: 1.2rem;
    align-content: start;
}

.product-detail-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

.product-detail-text {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

.product-option {
    display: grid;
    gap: 0.6rem;
}

.product-option-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.product-colors {
    display: flex;
    gap: 0.6rem;
}

.product-color-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.88rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.product-color-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-color-btn.is-active {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.15);
}

.product-color-swatch {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-size-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    padding: 0 0.8rem;
    border-radius: 14px;
    border: 2px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.92rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease), background 0.25s ease;
}

.product-size-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-size-btn.is-active {
    border-color: var(--purple);
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 20px rgba(123, 97, 255, 0.25);
}

.product-order-btn {
    justify-self: start;
    margin-top: 0.5rem;
}


/* --- Spotify --- */
.spotify-embed-wrap {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    box-shadow: var(--shadow);
}

.spotify-embed { display: block; border: 0; border-radius: var(--radius); }

/* --- Album Cover Image --- */
.album-cover-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}

.album-cover-img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 36px 80px rgba(123, 97, 255, 0.22);
}

.album-cover-img--tall {
    min-height: 480px;
    object-fit: cover;
}

/* --- Release Cover --- */
.release-cover {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gradient-wild);
    box-shadow: var(--shadow-color);
}

.release-cover--tall { min-height: 520px; }

.release-cover-inner {
    position: absolute;
    inset: 1.2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,0.35), transparent 26%),
        radial-gradient(circle at 80% 78%, rgba(255,255,255,0.2), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
}

.release-cover::after {
    content: "Podzimni";
    position: absolute;
    left: 2rem; bottom: 1.8rem;
    color: rgba(255,255,255,0.88);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.07em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

/* --- CTA Panel --- */
.cta-panel {
    display: grid;
    gap: 1.2rem;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    background: var(--gradient-wild);
    color: #fff;
    box-shadow: var(--shadow-color);
}

.cta-panel .eyebrow {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: rgba(255,255,255,0.8);
}

.cta-panel .section-title { color: #fff; }
.cta-panel .lead { color: rgba(255,255,255,0.88); }

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-top: 1rem;
}

.stat-card {
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.3rem;
}

.stat-card span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
}

/* --- Footer --- */
.site-footer {
    position: relative;
    padding: 1.8rem 0 1rem;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 500px;
    background: radial-gradient(ellipse at 20% 0%, rgba(255,87,87,0.2), transparent 45%),
                radial-gradient(ellipse at 50% 0%, rgba(123,97,255,0.18), transparent 40%),
                radial-gradient(ellipse at 80% 0%, rgba(0,212,170,0.15), transparent 45%);
    filter: blur(60px);
    pointer-events: none;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: var(--gradient-wild);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: -0.05em;
    box-shadow: 0 10px 28px rgba(123,97,255,0.25);
    flex-shrink: 0;
}

.footer-title {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 28ch;
    font-weight: 500;
}

.footer-cta {
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0.8rem;
}

.footer-col {
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.footer-col-label {
    margin: 0 0 0.3rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    margin: 0;
    color: rgba(255,255,255,0.3);
    font-size: 0.88rem;
}

.footer-credit {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-credit a {
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s ease;
}

.footer-credit a:hover { color: #fff; }

.footer-admin { margin: 0; }
.footer-admin a { text-decoration: none; color: rgba(255,255,255,0.2); font-size: 0.82rem; }
.footer-admin a:hover { color: rgba(255,255,255,0.5); }

/* --- Scroll Reveal --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(4px);
    transition:
        opacity 0.9s var(--ease),
        transform 0.9s var(--ease),
        filter 0.9s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.feature-card,
.music-card,
.lineup-item,
.bandline-card,
.contact-card,
.tour-row {
    transition:
        transform 0.4s var(--ease),
        box-shadow 0.4s var(--ease),
        border-color 0.4s ease;
}

/* --- Background Decorations --- */
.section-bg-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(123, 97, 255, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* --- Responsive: Ultrawide 1920+ --- */
@media (min-width: 1920px) {
    :root { --container: 1400px; }
    .hero-title { font-size: 9rem; }
    .page-title { font-size: 7rem; }
    .section-title { font-size: 5rem; }
    .hero { min-height: 100vh; }
}

/* --- Responsive: Large desktop 1440–1919 --- */
@media (min-width: 1440px) and (max-width: 1919px) {
    :root { --container: 1280px; }
}

/* --- Responsive: Tablet landscape / small desktop 1081–1439 --- */

/* --- Responsive: Tablet portrait 769–1080 --- */
@media (max-width: 1080px) {
    .hero { min-height: 85vh; }

    .split,
    .bio-grid,
    .contact-grid,
    .grid-2 { grid-template-columns: 1fr; }

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

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

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

    .gallery-card { grid-column: span 6; }
    .gallery-card--large,
    .gallery-card--wide { grid-column: span 12; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { flex-direction: column; align-items: flex-start; }

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

    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-aside { position: static; }
}

/* --- Responsive: Large phone / small tablet 481–768 --- */
@media (max-width: 768px) {
    #bg-canvas { display: none; }
    .container { width: min(calc(100% - 1.5rem), var(--container)); }

    .hero { min-height: 80vh; padding-bottom: 2.5rem; }
    .page-hero { padding-top: 7.5rem; min-height: 50vh; }

    .hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
    .page-title { font-size: clamp(2.2rem, 9vw, 3.5rem); max-width: none; }
    .section-title { font-size: clamp(1.8rem, 5vw, 2.8rem); max-width: none; }

    .hero-lead { font-size: 1.05rem; }
    .lead { font-size: 1rem; }
    .eyebrow { font-size: 0.8rem; }

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

    .hero-stats,
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }

    .hero-stat,
    .stat-card { padding: 0.85rem 0.9rem; }
    .hero-stat strong,
    .stat-card strong { font-size: 1.3rem; }
    .hero-stat span,
    .stat-card span { font-size: 0.78rem; }

    .tour-row { grid-template-columns: 1fr; justify-items: start; gap: 0.6rem; padding: 1rem; }

    .gallery-card { grid-column: span 6; min-height: 200px; }
    .gallery-card--large { min-height: 300px; }
    .gallery-card--wide { min-height: 240px; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

    .product-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-detail-price { font-size: 1.5rem; }
    .product-colors { flex-wrap: wrap; }

    .form-row { grid-template-columns: 1fr; }
    .confirmation-details { grid-template-columns: 1fr; }

    .cart-table thead { display: none; }
    .cart-table tr { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
    .cart-table td { display: flex; justify-content: space-between; padding: 0.3rem 1rem; border: 0; }
    .cart-table td::before { content: attr(data-label); font-weight: 700; color: var(--ink-soft); font-size: 0.82rem; }
    .cart-summary { max-width: none; }
    .cart-actions { flex-direction: column; }

    .btn { min-height: 3.2rem; padding: 0.85rem 1.3rem; font-size: 0.92rem; }

    .release-cover { min-height: 340px; }
    .release-cover--tall { min-height: 400px; }
    .album-cover-img--tall { min-height: 380px; }

    .spotify-embed-wrap { padding: 0.6rem; }

    .bio-lead { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
    .bio-quote { font-size: clamp(1.3rem, 2.8vw, 1.8rem); }

    .cta-panel { padding: clamp(1.4rem, 4vw, 2rem); }

    .music-card-media { height: 180px; }
    .music-card-media--video { height: 260px; }
}

/* --- Responsive: Phone 320–480 --- */
@media (max-width: 480px) {
    #bg-canvas { display: none; }

    .nav-links,
    .hero-stat,
    .stat-card,
    .feature-card,
    .lineup-item,
    .bio-card,
    .checkout-option {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .container { width: calc(100% - 1rem); }

    :root { --section-gap: clamp(3rem, 8vw, 5rem); }

    .site-header { padding: 0.4rem 0; }

    .hero { min-height: 75vh; padding-bottom: 2rem; }
    .page-hero { padding-top: 6.5rem; min-height: 45vh; }

    .hero-title { font-size: clamp(2.2rem, 13vw, 3.4rem); }
    .page-title { font-size: clamp(1.8rem, 10vw, 2.8rem); }
    .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }

    .hero-lead { font-size: 0.95rem; max-width: none; }
    .lead { font-size: 0.92rem; max-width: none; }

    .hero-stats,
    .stats-grid { grid-template-columns: 1fr; gap: 0.5rem; }

    .hero-stat,
    .stat-card { padding: 0.75rem 0.85rem; }
    .hero-stat strong,
    .stat-card strong { font-size: 1.15rem; }

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

    .gallery-card { grid-column: span 12; min-height: 180px; }
    .gallery-card--large { min-height: 240px; grid-column: span 12; }
    .gallery-card--wide { min-height: 200px; grid-column: span 12; }

    .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .footer-title { font-size: 1.3rem; }
    .footer-col-label { font-size: 0.72rem; }
    .footer-col a { font-size: 0.88rem; }

    .product-detail { padding: 1rem; }
    .product-detail-title { font-size: 1.4rem; }
    .product-detail-price { font-size: 1.35rem; }
    .product-size-btn { min-width: 2.6rem; height: 2.6rem; font-size: 0.82rem; }
    .product-color-btn { padding: 0.5rem 0.8rem; font-size: 0.82rem; }

    .feature-index { width: 2.4rem; height: 2.4rem; font-size: 0.72rem; }
    .feature-card h3 { font-size: 1.2rem; }
    .feature-card { padding: 1.2rem; }

    .music-card-media { height: 160px; }
    .music-card-media--video { height: 220px; }
    .music-card-meta { padding: 1rem; }
    .music-card-meta h3 { font-size: 1.15rem; }

    .bandline-card { padding: 1.1rem; }
    .bandline-card h3 { font-size: 1.15rem; }

    .tour-city { font-size: 1.2rem; }

    .release-cover { min-height: 280px; }
    .release-cover--tall { min-height: 320px; }
    .release-cover::after { font-size: 2rem; }
    .album-cover-img--tall { min-height: 300px; }

    .btn { min-height: 3rem; padding: 0.75rem 1.1rem; font-size: 0.88rem; }
    .btn-primary { box-shadow: 0 10px 24px rgba(255, 87, 87, 0.2); }

    .bio-card { padding: 1.2rem; }
    .bio-lead { font-size: 1.15rem; }
    .bio-quote { font-size: 1.2rem; }

    .contact-card { padding: 1.2rem; }

    .cta-panel { padding: 1.2rem; border-radius: var(--radius); }

    .confirmation-card { padding: 1.2rem; }
    .confirmation-actions { flex-direction: column; }

    .checkout-option { padding: 0.7rem 0.8rem; }
    .checkout-option-body { flex-direction: column; gap: 0.15rem; }
}

/* --- Cart --- */
.cart-empty { text-align: center; padding: 3rem 0; }

.cart-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    box-shadow: var(--shadow);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cart-table th {
    text-align: left;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-bottom: 2px solid var(--line);
}

.cart-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--line);
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--coral);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cart-remove-btn:hover {
    background: var(--coral);
    color: #fff;
}

.cart-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    box-shadow: var(--shadow);
    max-width: 400px;
    margin-left: auto;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
}

.cart-summary-note {
    margin: 0.5rem 0 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.cart-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

/* --- Checkout --- */
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: start;
}

.checkout-form {
    display: grid;
    gap: 1rem;
}

.checkout-errors {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,87,87,0.08);
    border: 1px solid rgba(255,87,87,0.2);
    color: var(--coral);
    font-size: 0.92rem;
}

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

.form-field {
    display: grid;
    gap: 0.3rem;
}

.form-field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.form-field input,
.form-field textarea,
.form-field select {
    font: inherit;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(123,97,255,0.1);
}

.checkout-options {
    display: grid;
    gap: 0.5rem;
}

.checkout-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-option:has(input:checked) {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(123,97,255,0.1);
}

.checkout-option input[type="radio"] {
    accent-color: var(--purple);
}

.checkout-option-body {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.checkout-aside {
    position: sticky;
    top: 6rem;
}

.checkout-summary {
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    box-shadow: var(--shadow);
}

.checkout-summary h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}

.checkout-item--total {
    border-bottom: 0;
    font-size: 1.05rem;
    padding-top: 0.75rem;
}

.checkout-summary-note {
    margin: 0.5rem 0 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

/* --- Confirmation --- */
.confirmation-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    box-shadow: var(--shadow);
}

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

.confirmation-col h3 {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.confirmation-col p { margin: 0.2rem 0; }

.confirmation-breakdown {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.confirmation-payment {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: var(--radius);
    background: rgba(123,97,255,0.06);
    border: 1px solid rgba(123,97,255,0.12);
}

.confirmation-payment h3 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
    font-weight: 700;
}

.confirmation-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.confirmation-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* --- Shop extras --- */
.shop-flash {
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: rgba(0,212,170,0.08);
    border: 1px solid rgba(0,212,170,0.2);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.shop-flash a {
    color: var(--purple);
    font-weight: 700;
    margin-left: 0.5rem;
}

.product-detail-price {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

