/* home.css — split from styles.css. Edit here; npm run build copies to /css. */

html:not(.js-animations) .tour-table tbody tr,
html:not(.js-animations) .store-item,
html:not(.js-animations) .contact-section,
html:not(.js-animations) .highlight-card,
html:not(.js-animations) .release-container,
html:not(.js-animations) .media-container,
html:not(.js-animations) .press-block,
html:not(.js-animations) .listen-inner,
html:not(.js-animations) .band-intro-inner {
    opacity: 1;
    transform: none;
}

.hero-content h1,
.hero-title-standalone,
.highlights-heading,
.page-header-title,
.tour-title {
    text-wrap: balance;
}

@media (max-width: 1024px) {
    .hero-content h1,
    .hero-title-standalone {
        font-size: 5rem;
        letter-spacing: 6px;
    }

    .hero {
        padding: 3rem 2rem;
    }
}

@media (max-width: 900px) {
    .hero-content h1,
    .hero-title-standalone {
        font-size: 4.5rem;
        letter-spacing: 5px;
    }

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

    .gallery-slide {
        height: 280px;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 200% 100%;
    background-position: 200% 0;
    animation: heroLightSweep 14s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    z-index: 1;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(24vh, 14rem);
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0) 0%,
        rgba(13, 13, 13, 0.38) 58%,
        var(--bg-darker) 100%
    );
}

@media (max-width: 768px) {
    .hero-image {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 26, 58, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(255, 26, 58, 0.6), 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 26, 58, 0.3);
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.92;
    letter-spacing: 1px;
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.75rem;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 12px rgba(196, 30, 58, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-brand {
    position: relative;
    z-index: 3;
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.85);
    animation: fadeInUp 1s ease-out 0.08s both;
}

.hero-scroll-hint {
    position: relative;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-top: 1.35rem;
    padding: 0.45rem 1rem 0.25rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.68rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.25s ease;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
    color: var(--accent-color);
    transform: translateY(2px);
}

.hero-scroll-hint-label {
    display: block;
}

.hero-scroll-hint-icon {
    display: block;
    width: 9px;
    height: 9px;
    margin-top: 0.15rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.9;
    animation: heroScrollCue 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-hint-icon {
        animation: none;
    }
}

.hero-tour .hero-title-standalone {
    position: relative;
    z-index: 3;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero-title-standalone {
    position: relative;
    z-index: 3;
    font-size: 6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(255, 26, 58, 0.6), 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 26, 58, 0.3);
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-tour .hero-title-standalone {
    letter-spacing: 6px;
    text-shadow: none;
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 35%,
        rgba(255, 255, 255, 0.65) 50%,
        #fff 65%,
        #fff 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 18px rgba(255, 26, 58, 0.22)) drop-shadow(0 14px 46px rgba(0, 0, 0, 0.85));
    animation: heroTitleShimmer 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hero::after { animation: none; }

    .hero-brand {
        animation: none;
        opacity: 1;
    }

    .hero-tour .hero-title-standalone {
        animation: none;
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: inherit;
        color: #fff;
        text-shadow: 0 0 18px rgba(255, 26, 58, 0.22), 0 14px 46px rgba(0, 0, 0, 0.85);
        filter: none;
    }

    .gallery-marquee {
        animation: none;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-slide[aria-hidden="true"] {
        display: none;
    }
}

.hero.hero-tour {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 100vh;
    position: relative;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}

.hero-image--img {
    background: none !important;
}

.hero-image--img picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image--img .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: none !important;
}

.hero-tour .hero-image--img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        ellipse min(100vw, 720px) 58% at 50% 100%,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 42%,
        transparent 68%
    );
}

.hero-tour .hero-image {
    background-attachment: scroll;
    background-position: center 38%;
    transform: none !important;
    will-change: auto;
}

.hero-tour .hero-overlay {
    display: none;
}

.hero-tour .hero-overlay::before {
    display: none;
}

.hero-tour .hero-content {
    position: relative;
    z-index: 3;
    align-self: flex-start;
    width: 100%;
    max-width: min(42rem, calc(100vw - 2rem));
    padding: 0 0 0.35rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    overflow: visible;
}

.hero-tour .hero-scroll-hint {
    align-self: center;
    margin-top: 0.55rem;
    margin-right: 0;
}

.hero-tour .hero-content .hero-title-standalone {
    margin-bottom: 0.35rem;
    font-size: clamp(2.6rem, 8.5vw, 3.85rem);
    letter-spacing: 4px;
    line-height: 1;
}

.hero-tour .hero-subtitle {
    max-width: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-tour .hero-subtitle--tour {
    font-size: 0.82rem;
    margin: 0 0 0.6rem;
    padding: 0 0.15rem;
    opacity: 0.9;
    letter-spacing: 0.14em;
    line-height: 1.45;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.hero-next-show {
    margin: -0.25rem 0 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.hero-tour .hero-buttons--tour {
    gap: 0.45rem 0.55rem;
    max-width: none;
    margin: 0;
    justify-content: center;
}

.hero-tour .hero-content .btn--compact {
    padding: 0.65rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 1.35px;
}

.hero-tour-extra {
    margin: 0.55rem 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.4;
}

.hero-tour-extra a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-tour-extra a:hover {
    color: var(--accent-color);
}

.hero-tour .hero-content > * {
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .hero.hero-tour {
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
        padding-top: calc(100vw / 1.86 + 1rem);
        padding-bottom: 2rem;
    }

    .hero-tour .hero-content {
        align-self: stretch;
        max-width: 100%;
    }

    .hero-tour .hero-scroll-hint {
        align-self: center;
        margin-right: 0;
    }

    .hero-tour .hero-image--img::after {
        background: radial-gradient(
            ellipse 120% 65% at 50% 100%,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.45) 48%,
            transparent 74%
        );
    }
}

.platform-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    /* Size to the label, never shrink it: a squeezed card wraps "Apple Music" onto two lines. */
    flex: 1 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 26, 58, 0.4);
}

.section-kicker {
    margin-bottom: 0.85rem;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.section-link {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.section-link:hover {
    color: var(--accent-color);
    letter-spacing: 0.2em;
}

.press-mentions {
    padding: var(--section-y) 0;
    background: #0a0a0a;
}

.press-mentions-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 1.4fr);
    grid-template-areas:
        "intro list"
        "intro link";
    align-items: start;
    gap: 1.5rem 2rem;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
}

.press-mentions-intro {
    grid-area: intro;
}

.press-mentions-list {
    grid-area: list;
    display: grid;
    gap: 0.35rem;
}

.press-mentions-inner > .section-link,
.press-mentions-inner > .press-fastlane {
    grid-area: link;
    align-self: start;
}

.press-fastlane a:not(.section-link) {
    padding-bottom: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.press-fastlane a:not(.section-link):hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.press-fastlane .section-link {
    margin-left: auto;
}

.press-mention-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.75rem;
    margin-inline: -0.75rem;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.press-mention-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.press-mention-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
}

.press-mention-item strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.press-mention-item:hover strong {
    color: #fff;
}

.press-mentions h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        var(--shadow-large),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 70px -24px rgba(255, 26, 58, 0.22);
    background: #000;
    transition: box-shadow 0.55s var(--ease-premium);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .media-player:hover .video-frame {
        box-shadow:
            0 28px 90px rgba(0, 0, 0, 0.55),
            0 0 0 1px rgba(255, 26, 58, 0.18),
            0 0 90px -18px rgba(255, 26, 58, 0.35);
    }
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery {
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.gallery::before,
.gallery::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(5.5rem, 14vw);
    z-index: 4;
    pointer-events: none;
}

.gallery::before {
    left: 0;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.65) 45%, transparent 100%);
}

.gallery::after {
    right: 0;
    background: linear-gradient(-90deg, #000 0%, rgba(0, 0, 0, 0.65) 45%, transparent 100%);
}

.gallery-label {
    position: absolute;
    top: 1.5rem;
    left: max(var(--page-gutter), calc((100% - min(100%, var(--page-width))) / 2 + var(--page-gutter)));
    z-index: 5;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.gallery-marquee:hover,
.gallery-marquee:focus-within,
.gallery-marquee.is-paused {
    animation-play-state: paused;
}

.gallery-slide {
    position: relative;
    flex: 0 0 auto;
    height: 340px;
    overflow: hidden;
    cursor: zoom-in;
    touch-action: manipulation;
}

.gallery-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-slide img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.gallery-slide:nth-child(6n+1)::after,
.gallery-slide:nth-child(6n+2)::after,
.gallery-slide:nth-child(6n+3)::after,
.gallery-slide:nth-child(6n+4)::after,
.gallery-slide:nth-child(6n+5)::after,
.gallery-slide:nth-child(6n+6)::after { background: var(--accent-color); }

.gallery-slide:hover::after {
    opacity: 0.45;
}

.gallery-slide:hover img {
    transform: scale(1.08);
    filter: saturate(1.4) contrast(1.1);
}

.gallery-slide .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 2;
}

.gallery-slide:hover .gallery-caption {
    transform: translateY(0);
}

@media (hover: none) {
    .gallery-slide .gallery-caption {
        transform: translateY(0);
    }
}

.newsletter {
    padding: var(--section-y) 0 5.25rem;
    background: linear-gradient(145deg, #0a0a0a 0%, #141414 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255, 26, 58, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    max-width: 36rem;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
    text-align: center;
}

.newsletter h2 {
    font-size: 3.5rem;
    margin: 0 0 1rem;
    color: #fff;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 5px;
    line-height: 1.1;
}

.newsletter > p,
.newsletter-inner > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 260px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow:
        0 0 0 3px rgba(255, 26, 58, 0.22),
        0 0 28px rgba(255, 26, 58, 0.12);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-success {
    display: block;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.15rem;
    text-align: center;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.newsletter-success::before {
    content: '✓ ';
    font-weight: 700;
    margin-right: 0.35em;
}

.newsletter-error {
    color: #ff6b6b;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 107, 107, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 2rem 1.5rem;
    }

    .hero.hero-tour {
        background: var(--bg-darker);
        justify-content: flex-start;
        min-height: auto;
        padding-top: calc(100vw / 1.86 + 1rem);
        padding-bottom: 2rem;
    }

    .hero-tour .hero-image--img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: var(--bg-darker) !important;
    }

    .hero-tour .hero-image--img picture {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        max-height: none;
        overflow: hidden;
    }

    .hero-tour .hero-image--img .hero-photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: contain;
        object-position: center top;
        transform: none !important;
        transform-origin: center top;
        animation: none !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1,
    .hero-title-standalone {
        font-size: 3.5rem;
        letter-spacing: 5px;
        margin-bottom: 1rem;
    }

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

    .hero-highlights {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-brand {
        font-size: 0.72rem;
        letter-spacing: 0.28em;
        margin-bottom: 0.25rem;
    }

    .hero-scroll-hint {
        margin-top: 1rem;
        letter-spacing: 0.32em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .gallery-slide {
        height: 240px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        min-width: 0;
    }

    .newest-release-inner .platform-links {
        grid-column: 1 / -1;
    }

    .platform-links {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .platform-link {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .press-mentions {
        padding: var(--section-y) 0;
    }

    .press-mentions-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "list"
            "link";
        align-items: start;
        gap: 1.25rem;
    }

    .newsletter {
        padding: var(--section-y) 0 4.5rem;
    }

    .newsletter h2 {
        font-size: 2.5rem;
        margin: 0 0 0.5rem;
    }

    .newsletter-inner > p,
    .newsletter > p {
        font-size: 1rem;
        margin: 0 0 1.5rem;
    }

    *:not(.gallery-marquee):not(.gallery-slide):not(.gallery-slide img) {
        max-width: 100%;
    }

    img:not(.gallery-slide img):not(.sponsor-logo):not(.hero-photo), video, iframe {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 1.5rem 1rem;
    }

    .hero-content h1,
    .hero-title-standalone {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .hero-highlights {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-brand {
        font-size: 0.65rem;
        letter-spacing: 0.22em;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .platform-links {
        gap: 0.75rem;
    }

    .press-mentions {
        padding: var(--section-y) 0;
    }

    .press-mentions-inner {
        padding: 0 var(--page-gutter);
    }

    .newsletter {
        padding: var(--section-y) 0 4rem;
    }

    .newsletter h2 {
        font-size: 2rem;
        margin: 0 0 0.5rem;
    }

    .newsletter-inner > p,
    .newsletter > p {
        font-size: 0.95rem;
        margin: 0 0 1.25rem;
    }

    .gallery-slide {
        height: 220px;
    }
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.section-kicker::before {
    content: '';
    width: 1.75rem;
    height: 2px;
    background: var(--accent-color);
    flex-shrink: 0;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: repeating-radial-gradient(circle at 17% 32%, transparent 0, rgba(255, 255, 255, 0.12) 1px, transparent 2px);
    background-size: 3px 3px;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-image--kenburns .hero-photo {
        animation: heroKenBurns 22s ease-in-out infinite alternate;
        transform-origin: center 38%;
    }
}

.hero-tour .hero-content {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 26, 58, 0.06);
}

.hero-tour .hero-content::after {
    content: '';
    position: absolute;
    inset: -45%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 42% 34% at 28% 38%, rgba(255, 26, 58, 0.17), transparent 70%),
        radial-gradient(ellipse 38% 30% at 72% 62%, rgba(255, 26, 58, 0.11), transparent 70%),
        radial-gradient(ellipse 30% 26% at 55% 24%, rgba(255, 255, 255, 0.05), transparent 70%);
    filter: blur(18px);
    animation: heroBadgeDrift 18s ease-in-out infinite alternate;
}

.hero-tour .hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 58, 0.65), transparent);
    border-radius: 1px;
}

.hero-tour .hero-brand {
    margin: 0 0 0.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.36em;
    color: rgba(255, 255, 255, 0.72);
}

.hero-tour .hero-buttons--tour {
    flex-wrap: wrap;
}

html[lang="de"] .hero-next-show {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

html[lang="de"] .hero-tour .hero-content .btn--compact {
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 0.62rem 0.95rem;
}

@media (max-width: 480px) {
    html[lang="de"] .hero-tour .hero-buttons--tour {
        width: 100%;
    }

    html[lang="de"] .hero-tour .hero-buttons--tour .btn--compact {
        width: 100%;
        max-width: 100%;
    }
}

.next-show-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 26, 58, 0.2);
    border: 1px solid rgba(255, 26, 58, 0.42);
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.next-show-badge--past {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.48);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background 0.35s ease, opacity 0.35s ease;
}

.video-play-overlay__icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: rgba(255, 26, 58, 0.92);
    box-shadow: 0 0 40px rgba(255, 26, 58, 0.45);
    position: relative;
}

.video-play-overlay__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 0.7rem 0 0.7rem 1.15rem;
    border-color: transparent transparent transparent #fff;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.22);
}

.video-play-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.gallery-hint {
    text-align: center;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

button.gallery-slide {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    font: inherit;
    color: inherit;
    text-align: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox__close {
    position: absolute;
    top: calc(1rem + env(safe-area-inset-top, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox__figure {
    margin: 0;
    max-width: min(92vw, 1100px);
    text-align: center;
}

.gallery-lightbox__figure img {
    max-width: 100%;
    max-height: min(78vh, 900px);
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.gallery-lightbox__figure figcaption {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .press-mentions-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "list"
            "link";
    }
}

@media (min-width: 1100px) {
    .hero-tour .hero-content {
        max-width: var(--page-width);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image--kenburns .hero-photo,
    .newest-release-artwork--float img,
    .hero-tour .hero-content::after {
        animation: none !important;
    }
}

.tour-map {
    padding: var(--section-y) 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 26, 58, 0.1), transparent 58%),
        linear-gradient(180deg, #0a0a0a 0%, var(--bg-primary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tour-map-inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
}

.tour-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

.tour-map-header h2 {
    margin: 0 0 0.35rem;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 0.95;
    text-transform: uppercase;
}

.tour-map-header p {
    margin: 0;
    max-width: 52ch;
    color: var(--text-muted);
    line-height: 1.65;
}

.tour-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
    gap: 1.25rem;
    align-items: start;
}

.tour-map-stage {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    background: #0b0b0f;
    min-height: 0;
}

.tour-map-canvas {
    position: relative;
    width: 100%;
    line-height: 0;
}

.tour-map-svg {
    display: block;
    width: 100%;
    height: auto;
}

.tour-map-canvas .tour-map-pins {
    position: absolute;
    inset: 0;
}

.tour-map-land {
    fill: rgba(255, 255, 255, 0.045);
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1.5;
}

.tour-map-region-label {
    fill: rgba(255, 255, 255, 0.35);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.tour-map-region-label--us {
    font-size: 14px;
    letter-spacing: 0.22em;
}

.tour-map-route {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tour-map-route--eu {
    stroke: rgba(255, 26, 58, 0.75);
    filter: drop-shadow(0 0 8px rgba(255, 26, 58, 0.35));
    marker-mid: url(#tourMapArrow);
}

.tour-map-route--eu-past {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    filter: none;
}

.tour-map-route--ocean {
    stroke: rgba(255, 255, 255, 0.28);
    stroke-dasharray: 8 10;
    stroke-width: 2;
}

.tour-map-route--ocean.tour-map-route--past {
    stroke: rgba(255, 255, 255, 0.14);
}

.tour-map-pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tour-map-pin {
    position: absolute;
    left: var(--pin-x);
    top: var(--pin-y);
    transform: translate(-50%, -50%);
    pointer-events: auto;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    z-index: 2;
}

.tour-map-pin__dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid #fff;
    box-shadow: 0 0 16px rgba(255, 26, 58, 0.55);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.tour-map-pin__stop {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.48rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    pointer-events: none;
}

.tour-map-pin--eu .tour-map-pin__dot {
    width: 1.05rem;
    height: 1.05rem;
}

.tour-map-pin--eu .tour-map-pin__stop {
    font-size: 0.54rem;
}

.tour-map-pin__label {
    position: absolute;
    left: 50%;
    top: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.04rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.16rem 0.4rem 0.14rem;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    line-height: 1.15;
}

.tour-map-pin__date {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent-color);
}

.tour-map-pin__city {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.88);
}

.tour-map-pin--next .tour-map-pin__label,
.tour-map-pin.is-active .tour-map-pin__label,
.tour-map-pin:hover .tour-map-pin__label,
.tour-map-pin:focus-visible .tour-map-pin__label {
    opacity: 1;
    transform: translate(calc(-50% + var(--label-dx, 0)), var(--label-dy, 0.3rem));
}

.tour-map-pin--next .tour-map-pin__label,
.tour-map-pin.is-active .tour-map-pin__label,
.tour-map-pin:hover .tour-map-pin__label,
.tour-map-pin:focus-visible .tour-map-pin__label {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 26, 58, 0.35);
}

.tour-map-pin:hover .tour-map-pin__dot,
.tour-map-pin.is-active .tour-map-pin__dot,
.tour-map-pin:focus-visible .tour-map-pin__dot {
    transform: scale(1.25);
    box-shadow: 0 0 22px rgba(255, 26, 58, 0.75);
}

.tour-map-pin.is-active .tour-map-pin__dot {
    background: #fff;
    border-color: var(--accent-color);
}

.tour-map-pin.is-active .tour-map-pin__stop {
    color: var(--accent-color);
}

.tour-map-pin.is-active {
    z-index: 4;
}

.tour-map-pin--next .tour-map-pin__dot {
    animation: tourMapPulse 2.2s ease-in-out infinite;
}

.tour-map-pin--past {
    opacity: 0.62;
    z-index: 1;
}

.tour-map-pin--past .tour-map-pin__dot {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: none;
}

.tour-map-pin--past .tour-map-pin__stop {
    color: rgba(255, 255, 255, 0.72);
}

.tour-map-pin--past .tour-map-pin__label {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.08);
}

.tour-map-pin--past .tour-map-pin__date {
    color: rgba(255, 255, 255, 0.38);
}

.tour-map-pin--past .tour-map-pin__city {
    color: rgba(255, 255, 255, 0.42);
}

.tour-map-pin--past:hover .tour-map-pin__dot,
.tour-map-pin--past.is-active .tour-map-pin__dot,
.tour-map-pin--past:focus-visible .tour-map-pin__dot {
    transform: scale(1.1);
    box-shadow: none;
}

.tour-map-pin--past.is-active .tour-map-pin__dot {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(255, 255, 255, 0.55);
}

.tour-map-pin--past.is-active .tour-map-pin__stop {
    color: rgba(255, 255, 255, 0.88);
}

.tour-map-pin--past.is-active .tour-map-pin__label {
    border-color: rgba(255, 255, 255, 0.16);
}

.tour-map-pin--past.is-active .tour-map-pin__city {
    color: rgba(255, 255, 255, 0.72);
}

.tour-map-rail {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.tour-map-panel {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tour-map-panel__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-map-panel__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tour-map-panel__hint {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.6;
}

.tour-map-panel__date {
    margin: 0;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tour-map-panel__city {
    margin: 0;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.85rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

.tour-map-panel__venue {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.tour-map-panel__detail {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.tour-map-panel__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-map-panel__actions .btn--compact {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.74rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 26, 58, 0.28);
}

.tour-map-panel__actions .btn--compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 26, 58, 0.34);
}

.tour-map-panel__link {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.22);
    text-underline-offset: 0.2em;
    text-align: center;
}

.tour-map-panel__link:hover {
    color: var(--accent-color);
}

.tour-map-panel__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.3rem 1rem;
}

.tour-map-panel__links:empty {
    display: none;
}

.tour-map-request {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem 1.25rem 1.15rem;
    border-radius: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
}

.tour-map-request__eyebrow {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tour-map-request__copy {
    margin: 0 0 0.35rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.tour-map-request .btn--compact {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
    text-align: center;
}

.tour-map-regions {
    display: none;
    grid-column: 1 / -1;
    gap: 0.4rem;
    margin: 0 0 0.15rem;
}

.tour-map-region {
    flex: 1;
    min-height: 2.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tour-map-region.is-active {
    background: rgba(255, 26, 58, 0.18);
    border-color: rgba(255, 26, 58, 0.5);
    color: #fff;
}

.tour-map-pin--offstage {
    display: none !important;
}

@media (max-width: 900px) {
    .tour-map {
        padding: var(--section-y) 0;
    }

    .tour-map-layout {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .tour-map-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 1.15rem;
    }

    .tour-map-header h2 {
        font-size: clamp(2.1rem, 9vw, 3.1rem);
    }

    .tour-map-header p {
        font-size: 0.92rem;
        max-width: none;
    }

    .tour-map-regions {
        display: flex;
    }

    .tour-map-stage {
        border-radius: 16px;
    }

    .tour-map-region-label {
        font-size: 20px;
    }

    .tour-map-region-label--us {
        font-size: 16px;
    }

    .tour-map-route--eu {
        stroke-width: 3.25;
    }

    .tour-map-land {
        fill: rgba(255, 255, 255, 0.09);
        stroke: rgba(255, 255, 255, 0.22);
    }

    .tour-map-pin {
        padding: 0.7rem;
        margin: -0.7rem;
    }

    .tour-map-pin__dot {
        width: 1.15rem;
        height: 1.15rem;
        border-width: 2.5px;
    }

    .tour-map-pin--eu .tour-map-pin__dot {
        width: 1.5rem;
        height: 1.5rem;
    }

    .tour-map-pin__stop {
        font-size: 0.62rem;
    }

    .tour-map-pin--eu .tour-map-pin__stop {
        font-size: 0.78rem;
    }

    .tour-map-pin__label {
        padding: 0.22rem 0.45rem 0.18rem;
        border-radius: 6px;
    }

    .tour-map-pin__date {
        font-size: 0.58rem;
    }

    .tour-map-pin__city {
        font-size: 0.62rem;
    }

    .tour-map-pin--next .tour-map-pin__label,
    .tour-map-pin.is-active .tour-map-pin__label,
    .tour-map-pin:focus-visible .tour-map-pin__label {
        opacity: 1;
        transform: translate(-50%, 0.45rem);
    }

    .tour-map-panel {
        position: relative;
        bottom: auto;
        gap: 0.55rem;
        padding: 1rem 1.05rem 1.1rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .tour-map-panel__city {
        font-size: 1.65rem;
    }

    .tour-map-panel__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.65rem 0.85rem;
    }

    .tour-map-panel__actions .btn--compact {
        width: auto;
        flex: 1 1 auto;
        min-width: 8.5rem;
        min-height: 2.65rem;
        font-size: 0.78rem;
    }

    .tour-map-panel__links {
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 0.3rem 1.1rem;
    }

    .tour-map-panel__link {
        text-align: left;
        min-height: 2.4rem;
        display: inline-flex;
        align-items: center;
    }

    .hero.hero-tour {
        padding-top: calc(100vw / 1.86 + 0.85rem);
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .hero-tour .hero-content {
        padding: 0.25rem 0 0;
        border-radius: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-tour .hero-content .hero-title-standalone {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
        letter-spacing: 3px;
    }

    .hero-next-show {
        margin: -0.1rem 0 0.7rem;
        font-size: 0.68rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .hero-tour .hero-buttons--tour {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .hero-tour .hero-buttons--tour .btn {
        width: 100%;
        max-width: 100%;
        min-height: 2.75rem;
        box-sizing: border-box;
    }

    .hero-tour .hero-content .btn--compact {
        padding: 0.72rem 1rem;
        font-size: 0.8rem;
    }

    .hero-tour-extra {
        margin-top: 0.65rem;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .newest-release-inner .platform-links {
        grid-column: 1 / -1;
    }

    .highlights,
    .media-feature,
    .home-bio,
    .press-mentions,
    .newsletter {
        padding-left: 0;
        padding-right: 0;
    }

    .media-copy__title,
    .home-bio-copy h2,
    .press-mentions-intro h2 {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 600px) {
    .tour-map-panel__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tour-map-panel__actions .btn--compact {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .tour-map-panel__links {
        justify-content: center;
    }

    .hero.hero-tour {
        /* Match landscape band aspect (~1.86:1) so contain fills the reserved top */
        padding-top: calc(100vw / 1.86 + 0.75rem);
    }

    .hero-tour .hero-content .hero-title-standalone {
        font-size: clamp(2.2rem, 13vw, 2.85rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tour-map-pin--next .tour-map-pin__dot {
        animation: none !important;
    }
}

.hero::after {
    display: none;
}

.hero.hero-tour {
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-content h1,
.hero-title-standalone,
.hero-tour .hero-title-standalone {
    animation: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
    filter: none;
}

.hero-tour .hero-content {
    width: 100%;
    max-width: var(--page-width);
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 0.35rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: left;
    overflow: visible;
}

.hero-tour .hero-content::before,
.hero-tour .hero-content::after {
    display: none;
}

.hero-tour .hero-image--img::after {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.55) 28%,
        rgba(0, 0, 0, 0.12) 52%,
        transparent 72%
    );
}

.hero-tour .hero-buttons--tour {
    justify-content: flex-start;
    align-items: center;
    gap: 1.1rem;
}

.hero-tour .hero-content .btn-primary {
    padding: 0.85rem 1.65rem;
}

.hero-listen-link {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 0.12rem;
}

.hero-listen-link:hover {
    color: #fff;
    border-bottom-color: var(--accent-color);
}

.listen {
    padding: var(--section-y) 0;
    background: var(--bg-primary);
}

.listen-inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
}

.listen-inner h2 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.listen-intro {
    max-width: 42rem;
    margin: 0 0 2.25rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.listen-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.4vw, 1.75rem);
    width: 100%;
}

.listen-album {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.listen-album__art {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
}

.listen-album__art::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.listen-album__art::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 0.7rem 0 0.7rem 1.15rem;
    border-color: transparent transparent transparent #fff;
    transform: translate(-40%, -50%) scale(0.92);
    opacity: 0;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.listen-album__art picture,
.listen-album__art img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.listen-album__art img {
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 0.45s var(--ease-premium);
}

.listen-album__year {
    margin-top: 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.listen-album h3 {
    margin: 0.1rem 0 0;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    letter-spacing: 0.06em;
    line-height: 1;
}

.listen-album:hover .listen-album__art,
.listen-album:focus-visible .listen-album__art {
    border-color: rgba(255, 26, 58, 0.55);
}

.listen-album:hover .listen-album__art::before,
.listen-album:focus-visible .listen-album__art::before,
.listen-album:hover .listen-album__art::after,
.listen-album:focus-visible .listen-album__art::after {
    opacity: 1;
}

.listen-album:hover .listen-album__art::after,
.listen-album:focus-visible .listen-album__art::after {
    transform: translate(-40%, -50%) scale(1);
}

.listen-album:hover .listen-album__art img,
.listen-album:focus-visible .listen-album__art img {
    transform: scale(1.05);
}

.listen .platform-links {
    margin-top: 2rem;
}

.listen .platform-link {
    border-radius: var(--radius);
    background: transparent;
    box-shadow: none;
}

.band-intro {
    padding: var(--section-y) 0;
    background: var(--bg-primary);
}

.band-intro-inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 2.5rem 3rem;
    align-items: center;
}

.band-intro-copy h2 {
    margin: 0.35rem 0 1rem;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.band-intro-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.band-intro-note {
    margin-top: 1rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.band-intro .video-frame {
    border-radius: var(--radius);
    box-shadow: none;
}

.press-mentions {
    padding: var(--section-y) 0;
    background: var(--bg-primary);
}

.press-mentions-inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.gallery-hint {
    display: none;
}

.gallery-slide {
    width: 240px;
    height: 320px;
    flex: 0 0 240px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .band-intro-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-tour .hero-content {
        align-self: stretch;
        margin-left: 0;
        max-width: none;
        text-align: left;
        padding: 0.25rem 0 0;
    }

    .hero-tour .hero-image--img::after {
        background: linear-gradient(to top, #0d0d0d 0%, rgba(13, 13, 13, 0.2) 40%, transparent 70%);
    }
}

@media (max-width: 720px) {
    .listen-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.75rem;
    }

    .listen-album {
        width: min(100%, 22rem);
    }
}

@media (max-width: 640px) {
    .listen,
    .band-intro {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .listen-album__art::before,
    .listen-album__art::after,
    .listen-album__art img {
        transition: none;
    }

    .listen-album:hover .listen-album__art img,
    .listen-album:focus-visible .listen-album__art img {
        transform: none;
    }

    .hero-image--kenburns .hero-photo,
    .newest-release-artwork--float img {
        animation: none;
    }
}

/* Homepage hero: poster + one show line. Later rules win over split leftovers. */
.hero.hero-tour {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    min-height: 100svh;
    padding: 6.5rem 0 2.25rem;
    text-align: left;
}

.hero.hero-tour::after {
    display: none;
}

.hero-tour .hero-overlay {
    display: block;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.18) 36%, transparent 58%),
        linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 42%, transparent 64%);
    z-index: 2;
}

.hero-tour .hero-overlay::before {
    display: none;
}

.hero-tour .hero-image--img::after {
    display: none;
}

.hero-tour .hero-image--img .hero-photo {
    object-position: center 28%;
}

.hero-tour .hero-content {
    align-self: stretch;
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    box-sizing: border-box;
}

.hero-tour .hero-content > * {
    max-width: 36rem;
}

.hero-tour .hero-content::before,
.hero-tour .hero-content::after {
    display: none;
}

.hero-kicker {
    margin: 0 0 0.4rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
}

.hero-tour .hero-content .hero-title-standalone {
    margin: 0 0 0.55rem;
    font-size: clamp(2.6rem, 7vw, 4.15rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
    filter: none;
    animation: none;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
    text-wrap: balance;
}

.hero-tour--archive .hero-content .hero-title-standalone {
    font-size: clamp(2.4rem, 6.5vw, 3.6rem);
    letter-spacing: 0.03em;
}

.hero-next-show {
    margin: 0 0 1.15rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.45;
    text-transform: none;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75);
}

.hero-tour .hero-buttons--tour {
    justify-content: flex-start;
    align-items: center;
    gap: 0.85rem 1.25rem;
    margin: 0;
    max-width: none;
}

.hero-secondary-link,
.hero-listen-link {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 0.12rem;
}

.hero-secondary-link:hover,
.hero-listen-link:hover {
    color: #fff;
    border-bottom-color: var(--accent-color);
}

@media (max-width: 900px) {
    .hero.hero-tour {
        min-height: 0;
        justify-content: flex-start;
        padding: 0;
        background: var(--bg-dark);
    }

    .hero-tour .hero-overlay {
        display: none;
    }

    .hero-tour .hero-image--img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1680 / 905;
        background: var(--bg-darker);
    }

    .hero-tour .hero-image--img picture,
    .hero-tour .hero-image--img .hero-photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 22%;
    }

    .hero-tour .hero-content {
        align-self: stretch;
        max-width: var(--page-width);
        padding: 1.25rem var(--page-gutter) 2rem;
        padding-left: max(var(--page-gutter), env(safe-area-inset-left));
        padding-right: max(var(--page-gutter), env(safe-area-inset-right));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        background: var(--bg-dark);
    }

    .hero-tour .hero-content > * {
        max-width: none;
    }

    .hero-tour .hero-content .hero-title-standalone {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
    }

    .hero-next-show {
        font-size: 0.95rem;
    }

    .hero-tour .hero-buttons--tour {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.85rem;
    }

    .hero-tour .hero-buttons--tour .btn {
        width: 100%;
        max-width: none;
        min-height: 2.75rem;
    }

    .hero-secondary-link,
    .hero-listen-link {
        align-self: flex-start;
        width: auto;
    }
}
