/* =======================================================
   TABBYBLAKES - EDITORIAL REDESIGN
   Black / white editorial system
   ======================================================= */

:root {
    --hot-red: #d71920;
    --bone: #080808;
    --bone-soft: #202020;
    --bone-muted: rgba(8, 8, 8, 0.68);
    --gold: #d71920;
    --line: rgba(8, 8, 8, 0.12);
    --ash-hover: rgba(215, 25, 32, 0.07);
    --ash-border: rgba(8, 8, 8, 0.18);
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    --hero-image: url("IMG_3175.PNG");

    --f-display: "Anton", Impact, sans-serif;
    --f-body: "Archivo", Arial, sans-serif;
    --f-nav: "Barlow Condensed", "Arial Narrow", sans-serif;

    --shell-w: 1220px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    color: var(--bone-soft);
    font-family: var(--f-body);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f7f7 50%, #ffffff 100%);
    overflow-x: hidden;
}

@supports (overflow-x: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    z-index: -3;
    background:
        radial-gradient(circle at 12% 8%, rgba(215, 25, 32, 0.055), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(215, 25, 32, 0.08), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.035));
    filter: none;
}

body::after {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.42;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.46);
}

::-webkit-scrollbar-thumb {
    background: rgba(215, 25, 32, 0.56);
    border-radius: 999px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    width: min(calc(100% - 28px), 1280px);
    max-width: 100%;
    margin: 10px auto 0;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: none;
}

.site-menu {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
    flex: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-copy strong {
    color: var(--bone);
    font-family: var(--f-nav);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    background: #ffffff;
    color: var(--bone);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    position: relative;
    color: rgba(8, 8, 8, 0.58);
    font-family: var(--f-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.28s ease, opacity 0.28s ease, transform 0.28s ease, text-shadow 0.28s ease;
}

.nav-link + .nav-link::before {
    content: "";
    position: absolute;
    left: -19px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.2);
    transform: translateY(-50%);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 26px;
    height: 3px;
    background: var(--hot-red);
    border-radius: 999px;
    opacity: 0;
    transform: translateX(-50%) scaleX(0.5);
    transform-origin: center;
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bone);
    text-shadow: 0 0 18px rgba(215, 25, 32, 0.18);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    box-shadow: none;
}

.header-cta,
.btn-primary,
.btn-secondary,
.fan-btn,
.submit-btn,
.mobile-bookbar-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 999px;
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.header-cta::before,
.btn-primary::before,
.btn-secondary::before,
.fan-btn::before,
.submit-btn::before,
.mobile-bookbar-link::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.36) 45%, transparent 62% 100%);
    pointer-events: none;
    transform: translateX(-130%) skewX(-18deg);
    transition: transform 0.64s ease;
}

.header-cta:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
.fan-btn:hover::before,
.submit-btn:hover::before,
.mobile-bookbar-link:hover::before {
    transform: translateX(130%) skewX(-18deg);
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mail-trigger {
    position: relative;
    z-index: 0;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    background: rgba(245, 245, 245, 0.86);
    transition: color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.mail-trigger svg {
    position: relative;
    z-index: 1;
    transition: transform 0.32s ease;
}

.mail-trigger::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    background: rgba(215, 25, 32, 0.16);
    clip-path: polygon(50% 0, 57% 30%, 85% 15%, 70% 43%, 100% 50%, 70% 57%, 85% 85%, 57% 70%, 50% 100%, 43% 70%, 15% 85%, 30% 57%, 0 50%, 30% 43%, 15% 15%, 43% 30%);
    animation: navSpin 18s linear infinite;
}

.mail-trigger:hover {
    color: var(--gold);
    border-color: rgba(8, 8, 8, 0.24);
    transform: translateY(-2px) rotate(-3deg);
    box-shadow: 0 0 24px rgba(215, 25, 32, 0.16);
}

.mail-trigger:hover svg {
    transform: scale(1.12) rotate(6deg);
}

.header-cta {
    padding: 13px 20px;
    color: #fff8f1;
    background: #080808;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08), 0 10px 24px rgba(215, 25, 32, 0.18);
}

.header-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.fan-btn:hover,
.submit-btn:hover,
.mobile-bookbar-link:hover {
    transform: translateY(-3px) scale(1.02);
}

.page-shell {
    width: min(calc(100% - 28px), var(--shell-w));
    max-width: 100%;
    margin: 18px auto 0;
    padding-bottom: 42px;
    overflow-x: hidden;
}

.hero-panel,
.section-panel {
    position: relative;
    overflow: hidden;
}

.hero-panel {
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--hero-image) 52% 16% / cover no-repeat;
    box-shadow: var(--shadow);
}

.section-panel {
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    overflow: hidden;
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 36px;
    min-height: calc(100vh - 150px);
    padding: 52px;
    align-items: center;
}

.hero-copy {
    max-width: 610px;
    padding-top: 8px;
    padding-bottom: 18px;
}

.hero-copy,
.panel-head,
.release-listen-layout,
.featured-release,
.platform-grid,
.show-layout,
.show-poster,
.show-details,
.gallery-copy,
.gallery-content,
.merch-copy,
.merch-grid,
.contact-copy,
.contact-list,
.booking-panel {
    position: relative;
    z-index: 2;
}

.eyebrow,
.panel-label,
.mini-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: rgba(215, 25, 32, 0.9);
    font-family: var(--f-nav);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-title,
.panel-title {
    margin: 0;
    color: var(--bone);
    line-height: 0.94;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(5.8rem, 9.6vw, 9.25rem);
    letter-spacing: 0.01em;
    max-width: 6.2ch;
    text-transform: uppercase;
    text-shadow: none;
}

.hero-title span {
    color: var(--hot-red);
    text-shadow: none;
}

.lightbox-caption {
    color: var(--bone-muted);
    line-height: 1.9;
    font-size: 0.97rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-panel .eyebrow {
    margin-bottom: 10px;
    color: rgba(8, 8, 8, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
}

.hero-panel .btn-primary {
    color: #ffffff;
    background: #080808;
    box-shadow: 0 18px 34px rgba(215, 25, 32, 0.22), 0 14px 34px rgba(215, 25, 32, 0.16);
}

.hero-panel .btn-secondary {
    color: var(--bone);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.btn-primary,
.btn-secondary,
.fan-btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 15px 25px;
}

.btn-primary svg,
.btn-secondary svg,
.fan-btn svg,
.submit-btn svg,
.mobile-bookbar-link svg,
.text-action svg {
    transition: transform 0.32s ease, filter 0.32s ease;
}

.btn-primary:hover svg,
.btn-secondary:hover svg,
.fan-btn:hover svg,
.submit-btn:hover svg,
.mobile-bookbar-link:hover svg,
.text-action:hover svg {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.18));
    transform: translateX(3px) scale(1.08);
}

.btn-primary,
.submit-btn,
.fan-btn {
    color: #ffffff;
    background: #080808;
    border: 1px solid transparent;
}

.btn-secondary {
    color: var(--bone);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
    color: var(--gold);
    border-color: rgba(215, 25, 32, 0.32);
    box-shadow: 0 14px 30px rgba(215, 25, 32, 0.08), inset 0 0 0 1px rgba(215, 25, 32, 0.08);
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    opacity: 0.78;
}

.hero-socials a {
    color: var(--bone-soft);
}

.hero-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 245, 0.86);
    backdrop-filter: blur(10px);
    transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-socials a svg {
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), filter 0.34s ease;
}

.hero-socials a:hover {
    color: var(--gold);
    border-color: rgba(215, 25, 32, 0.28);
    background: rgba(215, 25, 32, 0.08);
    box-shadow: 0 0 24px rgba(215, 25, 32, 0.12);
    transform: translateY(-3px);
}

.hero-socials a:hover svg {
    filter: drop-shadow(0 0 8px rgba(215, 25, 32, 0.4));
    transform: scale(1.18) rotate(-6deg);
}

.section-panel {
    margin-top: 22px;
    padding: 38px;
}

#shows,
#contact {
    background: #080808;
    color: #ffffff;
}

#shows .panel-title,
#contact .panel-title,
#contact .contact-item {
    color: #ffffff;
}

#shows .panel-label {
    color: var(--hot-red);
}

#contact .panel-label {
    color: rgba(255, 255, 255, 0.72);
}

#contact .panel-title::after {
    background: rgba(255, 255, 255, 0.28);
}

#shows .panel-head,
#contact .contact-copy {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.panel-title {
    position: relative;
    display: block;
    max-width: 880px;
    font-family: var(--f-display);
    font-size: clamp(2.7rem, 5.8vw, 4.75rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.9;
    text-transform: uppercase;
}

.panel-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    margin-top: 18px;
    background: var(--hot-red);
    border-radius: 999px;
}

.panel-head,
.gallery-copy,
.merch-copy,
.contact-copy {
    max-width: 860px;
    padding-top: 18px;
    border-top: 1px solid rgba(8, 8, 8, 0.12);
}

.release-listen-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 18px;
    margin-top: 30px;
}

.featured-release,
.platform-link {
    position: relative;
    border: 1px solid rgba(8, 8, 8, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.featured-release {
    min-height: 420px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(280px, 1fr);
    align-items: stretch;
}

.featured-release::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 18%, rgba(215, 25, 32, 0.08), transparent 28%),
        linear-gradient(120deg, transparent 0 46%, rgba(215, 25, 32, 0.08));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}

.featured-release-art {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.featured-release-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.96) contrast(1.07) brightness(0.88);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.featured-release-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 58%, rgba(8, 5, 6, 0.62) 100%),
        linear-gradient(180deg, transparent 42%, rgba(5, 4, 4, 0.34) 100%);
}

.featured-release-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 34px;
}

.featured-release-copy h3 {
    margin: 0;
    color: var(--bone);
    font-family: var(--f-display);
    font-size: clamp(3.1rem, 5.6vw, 5.05rem);
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
    text-shadow: 0 5px 0 rgba(0, 0, 0, 0.18);
}

.release-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 20px;
    border-radius: 999px;
    color: #ffffff;
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    background: #080808;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.release-cta svg {
    transition: transform 0.32s ease;
}

.featured-release:hover,
.featured-release:focus-visible {
    border-color: rgba(215, 25, 32, 0.28);
    background:
        linear-gradient(180deg, var(--ash-hover), rgba(245, 245, 245, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
    box-shadow: 0 24px 52px rgba(215, 25, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.featured-release:hover::after,
.featured-release:focus-visible::after {
    opacity: 1;
}

.featured-release:hover .featured-release-art img,
.featured-release:focus-visible .featured-release-art img {
    filter: saturate(1.04) contrast(1.08) brightness(0.94);
    transform: scale(1.04);
}

.featured-release:hover .release-cta,
.featured-release:focus-visible .release-cta {
    box-shadow: 0 18px 34px rgba(215, 25, 32, 0.18), 0 14px 34px rgba(215, 25, 32, 0.14);
}

.featured-release:hover .release-cta svg,
.featured-release:focus-visible .release-cta svg {
    transform: translateX(4px);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.platform-link {
    min-height: 96px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
}

.platform-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(8, 8, 8, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    background: rgba(8, 8, 8, 0.045);
    flex-shrink: 0;
    transition: transform 0.32s ease, color 0.32s ease, background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.platform-link strong {
    display: block;
    font-style: normal;
    text-transform: uppercase;
}

.platform-link strong {
    color: var(--bone);
    font-family: var(--f-nav);
    font-size: 1.25rem;
    line-height: 1.15;
}

.platform-link em {
    display: block;
    margin-bottom: 4px;
    color: rgba(8, 8, 8, 0.5);
    font-family: var(--f-nav);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.28s ease;
}

.track-link {
    min-height: 112px;
}

.platform-link:hover,
.platform-link:focus-visible {
    border-color: rgba(215, 25, 32, 0.3);
    background:
        linear-gradient(180deg, var(--ash-hover), rgba(245, 245, 245, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
    box-shadow: 0 16px 34px rgba(215, 25, 32, 0.13), 0 16px 34px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.platform-link:hover .platform-icon,
.platform-link:focus-visible .platform-icon {
    color: #ffffff;
    border-color: var(--hot-red);
    background: var(--hot-red);
    box-shadow: 0 0 24px rgba(215, 25, 32, 0.14);
    transform: scale(1.1) rotate(-6deg);
}

.platform-link:hover em,
.platform-link:focus-visible em {
    color: var(--hot-red);
}

.show-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 22px;
    margin-top: 30px;
    align-items: stretch;
}

.show-poster,
.show-details {
    border: 1px solid rgba(8, 8, 8, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.show-poster {
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.show-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.06) brightness(0.92);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.show-poster:hover {
    border-color: var(--ash-border);
    background:
        linear-gradient(180deg, var(--ash-hover), rgba(245, 245, 245, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
    transform: translateY(-4px);
}

.show-poster:hover img {
    filter: saturate(1.08) contrast(1.08) brightness(0.98);
    transform: scale(1.035);
}

.show-details {
    position: relative;
    min-height: 560px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
}

.show-details::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(215, 25, 32, 0.08), transparent 30%),
        radial-gradient(circle at 12% 86%, rgba(0, 0, 0, 0.06), transparent 28%);
    pointer-events: none;
}

.show-details > * {
    position: relative;
    z-index: 1;
}

.show-details h3 {
    max-width: 620px;
    margin: 0;
    color: var(--bone);
    font-family: var(--f-display);
    font-size: clamp(4rem, 7vw, 6.6rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 5px 0 rgba(0, 0, 0, 0.18), 0 0 34px rgba(215, 25, 32, 0.14);
}

.show-date-card {
    width: 148px;
    min-height: 158px;
    margin-top: 26px;
    border: 1px solid rgba(215, 25, 32, 0.24);
    border-radius: 22px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.14), rgba(215, 25, 32, 0.08)),
        rgba(5, 4, 4, 0.38);
    box-shadow: 0 18px 34px rgba(215, 25, 32, 0.08);
}

.show-date-card span,
.show-date-card strong {
    font-family: var(--f-display);
    text-transform: uppercase;
}

.show-date-card span {
    color: var(--hot-red);
    font-size: 2rem;
    line-height: 1;
}

.show-date-card strong {
    color: var(--bone);
    font-size: 5.2rem;
    font-weight: 400;
    line-height: 0.9;
}

.show-meta-grid {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.show-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(8, 8, 8, 0.76);
    font-family: var(--f-nav);
    font-size: 1.08rem;
    font-weight: 900;
    text-transform: uppercase;
}

.show-meta-item svg {
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.32s ease, filter 0.32s ease;
}

.show-meta-item:hover svg {
    filter: drop-shadow(0 0 8px rgba(215, 25, 32, 0.36));
    transform: scale(1.1) rotate(-5deg);
}

.show-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 54px;
    margin-top: 28px;
    padding: 15px 25px;
    border-radius: 999px;
    color: #ffffff;
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    background: #080808;
    box-shadow: 0 18px 34px rgba(215, 25, 32, 0.2), 0 14px 34px rgba(215, 25, 32, 0.14);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.show-cta::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.36) 45%, transparent 62% 100%);
    pointer-events: none;
    transform: translateX(-130%) skewX(-18deg);
    transition: transform 0.64s ease;
}

.show-cta svg {
    transition: transform 0.32s ease;
}

.show-cta:hover {
    box-shadow: 0 22px 42px rgba(215, 25, 32, 0.22), 0 18px 40px rgba(215, 25, 32, 0.16);
    transform: translateY(-3px) scale(1.02);
}

.show-cta:hover::before {
    transform: translateX(130%) skewX(-18deg);
}

.show-cta:hover svg {
    transform: translateX(4px);
}

.merch-card,
.booking-form,
.fan-form,
.lightbox-panel {
    border: 1px solid rgba(8, 8, 8, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.merch-card {
    padding: 22px;
    border-radius: 24px;
}

.merch-card h3,
.lightbox-title {
    margin: 0 0 10px;
    color: var(--bone);
    font-family: var(--f-nav);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--gold);
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.28s ease, transform 0.28s ease;
}

.text-action:hover {
    color: var(--bone);
    transform: translateX(3px);
}

.gallery-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 24px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-family: var(--f-nav);
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-toggle:hover,
.gallery-toggle:focus-visible,
.after-hours-archive.gallery-open .gallery-toggle {
    border-color: var(--hot-red);
    color: #ffffff;
    background: rgba(215, 25, 32, 0.88);
    box-shadow: 0 18px 36px rgba(215, 25, 32, 0.18);
    transform: translateY(-2px);
}

.gallery-layout .gallery-content {
    display: grid;
    gap: 66px;
    margin-top: 0;
}

.after-hours-archive {
    position: relative;
    isolation: isolate;
    color: #f7f4ee;
    background:
        radial-gradient(circle at 74% 34%, rgba(117, 149, 201, 0.2), transparent 29%),
        linear-gradient(145deg, #11141c 0%, #080a0f 52%, #151820 100%);
    border-color: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.gallery-reveal-panel {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: blur(12px);
    transform: translateY(-20px);
    transition: max-height 0.78s cubic-bezier(0.22, 1, 0.36, 1), margin-top 0.38s ease, opacity 0.34s ease, filter 0.5s ease, transform 0.5s ease, visibility 0.34s ease;
}

.after-hours-archive.gallery-open .gallery-reveal-panel {
    max-height: 6200px;
    margin-top: 46px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    filter: blur(0);
    transform: translateY(0);
}

.gallery-reveal-panel > * {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(34px);
    transition: opacity 0.58s ease, filter 0.58s ease, transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.after-hours-archive.gallery-open .gallery-reveal-panel > *,
.after-hours-archive.gallery-open .gallery-reveal-panel .fade-in-up,
.after-hours-archive.gallery-open .gallery-reveal-panel .fade-in-left,
.after-hours-archive.gallery-open .gallery-reveal-panel .fade-in-right {
    opacity: 1;
    filter: blur(0);
    transform: translate(0);
}

.after-hours-archive.gallery-open .gallery-reveal-panel > *:nth-child(1) {
    transition-delay: 0.08s;
}

.after-hours-archive.gallery-open .gallery-reveal-panel > *:nth-child(2) {
    transition-delay: 0.16s;
}

.after-hours-archive.gallery-open .gallery-reveal-panel > *:nth-child(3) {
    transition-delay: 0.24s;
}

.after-hours-archive.gallery-open .gallery-reveal-panel > *:nth-child(4) {
    transition-delay: 0.32s;
}

.after-hours-archive::before {
    background:
        radial-gradient(circle at 75% 36%, rgba(136, 165, 215, 0.17), transparent 25%),
        linear-gradient(90deg, rgba(215, 25, 32, 0.1), transparent 24%);
}

.after-hours-archive .panel-label,
.archive-index {
    color: var(--hot-red);
}

.after-hours-archive .panel-title {
    color: #ffffff;
}

.archive-chapter-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.archive-index {
    font-family: var(--f-nav);
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.archive-chapter-head h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--f-display);
    font-size: clamp(2.45rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 0.98;
    text-transform: uppercase;
}

.archive-level2-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.archive-frame,
.earlier-frame,
.motion-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    color: inherit;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0a0b10;
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.archive-frame {
    border-radius: 25px;
}

.archive-frame img,
.earlier-frame img,
.motion-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.03) saturate(0.96);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.archive-frame::after,
.motion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 5, 9, 0.82) 100%);
}

.archive-frame-candid {
    aspect-ratio: 3 / 4;
}

.archive-frame-shift {
    margin-top: 62px;
}

.archive-frame-copy {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    transform: translateY(6px);
    transition: transform 0.3s ease;
}

.archive-frame-copy strong,
.motion-label {
    color: var(--hot-red);
    font-family: var(--f-nav);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.archive-frame:hover,
.earlier-frame:hover,
.motion-card:hover {
    border-color: rgba(215, 25, 32, 0.54);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.archive-frame:hover img,
.earlier-frame:hover img,
.motion-card:hover img {
    filter: contrast(1.08) saturate(1.02);
    transform: scale(1.035);
}

.archive-frame:hover .archive-frame-copy {
    transform: translateY(0);
}

.archive-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(245px, 1.08fr) repeat(3, minmax(145px, 0.72fr));
    gap: 16px;
    align-items: end;
}

.archive-frame-hero,
.archive-frame-portrait,
.archive-frame-wide {
    aspect-ratio: 4 / 5;
}

.archive-frame-hero {
    transform: translateY(-14px);
}

.archive-frame-hero:hover {
    transform: translateY(-18px);
}

.motion-card {
    aspect-ratio: 16 / 8;
    min-height: 0;
    border-radius: 28px;
}

.motion-card img {
    object-position: center 40%;
    filter: brightness(0.56) contrast(1.05) saturate(0.85);
}

.motion-card::after {
    background:
        linear-gradient(90deg, rgba(6, 8, 12, 0.62), transparent 64%),
        linear-gradient(180deg, transparent 45%, rgba(3, 5, 9, 0.76) 100%);
}

.motion-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 128px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    color: #ffffff;
    font-family: var(--f-nav);
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.motion-card:hover .motion-play {
    border-color: var(--hot-red);
    background: rgba(215, 25, 32, 0.88);
    transform: translate(-50%, -50%) scale(1.04);
}

.motion-label {
    position: absolute;
    left: 26px;
    bottom: 24px;
    z-index: 1;
}

.archive-earlier {
    padding-top: 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.archive-earlier .archive-chapter-head h3 {
    font-size: clamp(2rem, 3.7vw, 3rem);
}

.earlier-frames {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.earlier-frame {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    opacity: 0.74;
}

.earlier-frame:hover {
    opacity: 1;
}

.merch-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
    gap: 26px;
    align-items: start;
}

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

.merch-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.merch-card:hover {
    border-color: var(--ash-border);
    background:
        linear-gradient(180deg, var(--ash-hover), rgba(245, 245, 245, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

.merch-card-featured {
    justify-content: center;
    border-color: rgba(8, 8, 8, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
}

.merch-card-featured .mini-kicker {
    color: rgba(8, 8, 8, 0.56);
}

.merch-card-featured:hover,
.merch-card-featured:focus-within {
    border-color: rgba(215, 25, 32, 0.28);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
}

.merch-card-featured:hover .mini-kicker,
.merch-card-featured:focus-within .mini-kicker {
    color: var(--hot-red);
}

.merch-image {
    position: relative;
    min-height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    width: 100%;
    padding: 0;
    color: inherit;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    filter: contrast(1.02) saturate(0.98);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.merch-card:hover .merch-image img {
    filter: contrast(1.04) saturate(1.04);
    transform: scale(1.035);
}

.merch-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.merch-info .btn-secondary {
    margin-top: 18px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bone-soft);
    font-size: 0.92rem;
}

.contact-item svg {
    color: rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
    transition: color 0.28s ease, transform 0.34s ease, filter 0.34s ease;
}

.contact-item:hover svg {
    color: var(--hot-red);
    filter: drop-shadow(0 0 8px rgba(215, 25, 32, 0.36));
    transform: scale(1.1) rotate(-5deg);
}

.fan-form,
.booking-form {
    border-radius: 28px;
}

.fan-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 26px;
    padding: 16px;
}

.fan-form input,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(8, 8, 8, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--bone);
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.26s ease, background 0.26s ease;
}

.fan-form input {
    min-height: 52px;
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.fan-form input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(8, 8, 8, 0.4);
}

.fan-form input:focus,
.fan-form input:hover,
.form-group input:focus,
.form-group input:hover,
.form-group select:focus,
.form-group select:hover,
.form-group textarea:focus,
.form-group textarea:hover {
    border-color: rgba(215, 25, 32, 0.34);
    background: rgba(215, 25, 32, 0.05);
}

.booking-form {
    padding: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-group + .form-group,
.form-row + .form-group {
    margin-top: 12px;
}

.form-group select,
.form-group textarea,
.form-group input {
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.form-group select option {
    background: #ffffff;
    color: var(--bone);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.submit-btn,
.fan-btn {
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.submit-btn:hover,
.submit-btn:focus-visible,
.fan-btn:hover,
.fan-btn:focus-visible {
    box-shadow: 0 18px 34px rgba(215, 25, 32, 0.18), 0 14px 34px rgba(215, 25, 32, 0.14);
}

.submit-btn {
    width: 100%;
    margin-top: 14px;
}

.form-note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--f-body);
    font-size: 0.82rem;
    line-height: 1.55;
}

.site-footer {
    width: min(calc(100% - 28px), var(--shell-w));
    margin: 0 auto 28px;
    padding: 28px 0 100px;
    border-top: 1px solid rgba(8, 8, 8, 0.1);
}

.footer-brand {
    display: inline-flex;
    color: rgba(8, 8, 8, 0.2);
    font-family: var(--f-display);
    font-size: 4.4rem;
    line-height: 0.9;
    letter-spacing: 0;
    transition: color 0.28s ease, text-shadow 0.28s ease, transform 0.28s ease;
}

.footer-brand:hover {
    color: rgba(8, 8, 8, 0.36);
    text-shadow: 0 0 28px rgba(215, 25, 32, 0.16);
    transform: translateY(-2px);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(8, 8, 8, 0.08);
}

.footer-nav,
.footer-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-nav a {
    padding: 9px 12px;
    color: rgba(8, 8, 8, 0.54);
    font-family: var(--f-nav);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.footer-nav a:hover {
    color: var(--gold);
    background: rgba(215, 25, 32, 0.08);
    transform: translateY(-2px);
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer p {
    margin: 0;
    color: rgba(8, 8, 8, 0.5);
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(8, 8, 8, 0.14);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bone-soft);
    background: rgba(5, 4, 4, 0.38);
    transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.footer-socials a:hover {
    color: var(--gold);
    border-color: rgba(215, 25, 32, 0.28);
    background: rgba(215, 25, 32, 0.08);
    transform: translateY(-3px);
}

.showcase-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: rgba(0, 0, 0, 0.86);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.showcase-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: var(--f-nav);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.lightbox-panel {
    width: min(100%, 980px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.96));
}

.lightbox-media-wrap {
    min-height: 520px;
    background: rgba(255, 255, 255, 0.02);
}

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

.lightbox-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: contain;
    background: #050608;
}

.lightbox-media[hidden],
.lightbox-video[hidden] {
    display: none;
}

.lightbox-copy {
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-bookbar {
    position: fixed;
    left: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
    bottom: 14px;
    z-index: 320;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(8, 8, 8, 0.1);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.mobile-bookbar-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-bookbar-copy strong {
    color: var(--bone);
    font-family: var(--f-nav);
    font-size: 1.05rem;
    letter-spacing: 0;
}

.mobile-bookbar-link {
    padding: 12px 16px;
    color: #ffffff;
    background: #080808;
}

.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.78s ease, transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), filter 0.78s ease;
}

.fade-in-up {
    transform: translateY(42px) scale(0.98);
}

.fade-in-left {
    transform: translateX(-42px) scale(0.98);
}

.fade-in-right {
    transform: translateX(42px) scale(0.98);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
}

@keyframes navSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .site-header {
        width: min(calc(100% - 20px), var(--shell-w));
        justify-content: space-between;
        gap: 18px;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 22px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        z-index: 120;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .site-header.menu-open .site-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-link {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px 12px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 999px;
        background: #f5f5f5;
        font-family: var(--f-nav);
        font-size: 0.92rem;
    }

    .nav-link + .nav-link::before,
    .nav-link::after {
        content: none;
    }

    .nav-link.active {
        color: #ffffff;
        background: #080808;
        text-shadow: none;
    }

    .header-actions {
        justify-content: stretch;
    }

    .header-actions .header-cta {
        flex: 1;
    }

    .merch-layout,
    .contact-layout,
    .gallery-layout .gallery-content,
    .lightbox-panel {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        grid-template-columns: minmax(0, 0.92fr) minmax(220px, 0.8fr);
        min-height: calc(100svh - 150px);
        padding: 42px;
        background: var(--hero-image) 52% 14% / cover no-repeat;
    }

    .release-listen-layout,
    .featured-release,
    .show-layout {
        grid-template-columns: 1fr;
    }

    .show-poster,
    .show-details {
        min-height: auto;
    }

    .show-poster {
        aspect-ratio: 4 / 5;
    }

    .show-details h3 {
        font-size: clamp(3.5rem, 10vw, 5rem);
    }

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

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

    .archive-frame-hero {
        grid-column: span 2;
    }

    .lightbox-media-wrap {
        min-height: 340px;
    }

    .lightbox-video {
        min-height: 340px;
    }
}

@media (max-width: 780px) {
    .site-header {
        width: min(calc(100% - 20px), var(--shell-w));
        margin-top: 10px;
    }

    .site-nav {
        grid-template-columns: 1fr;
    }

    .page-shell {
        width: min(calc(100% - 20px), var(--shell-w));
        margin-top: 14px;
    }

    .hero-panel {
        display: flex;
        min-height: calc(100svh - 118px);
        padding: 0;
        border-radius: 28px;
        align-items: flex-end;
        background: var(--hero-image) 50% top / cover no-repeat;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        margin-top: 62svh;
        padding: 22px 22px 26px;
        background: #ffffff;
    }

    .hero-actions {
        margin-top: 16px;
        gap: 10px;
    }

    .fade-in-left,
    .fade-in-right {
        transform: translateY(42px) scale(0.98);
    }

    .section-panel {
        padding: 26px;
        border-radius: 0;
    }

    .platform-grid,
    .form-row,
    .fan-form {
        grid-template-columns: 1fr;
    }

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

    .gallery-layout .gallery-content {
        gap: 46px;
        margin-top: 0;
    }

    .after-hours-archive.gallery-open .gallery-reveal-panel {
        margin-top: 36px;
    }

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

    .archive-frame-shift {
        margin-top: 28px;
    }

    .archive-frame-hero {
        grid-column: span 2;
        transform: none;
    }

    .archive-frame-hero:hover {
        transform: translateY(-4px);
    }

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

    .merch-card-featured {
        grid-column: span 2;
    }

    .featured-release {
        min-height: auto;
    }

    .featured-release-art {
        min-height: 300px;
    }

    .featured-release-copy {
        padding: 26px;
    }

    .featured-release-copy h3 {
        font-size: clamp(2.85rem, 11vw, 4rem);
    }

    .show-details {
        padding: 26px;
    }

    .show-details h3 {
        font-size: clamp(3rem, 12vw, 4rem);
    }

    .show-date-card {
        width: 124px;
        min-height: 132px;
    }

    .show-date-card span {
        font-size: 1.6rem;
    }

    .show-date-card strong {
        font-size: 4.3rem;
    }

    .hero-title {
        font-size: clamp(3.25rem, 11vw, 4.35rem);
    }

    .panel-title {
        font-size: 2.7rem;
    }

    .mobile-bookbar {
        display: flex;
    }

    .site-footer {
        padding-bottom: 122px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav,
    .footer-socials {
        justify-content: flex-start;
    }

    .footer-brand {
        font-size: clamp(3rem, 15vw, 4.2rem);
    }
}

@media (max-width: 560px) {
    .brand-copy strong {
        font-size: 0.82rem;
    }

    .hero-title {
        font-size: clamp(2.75rem, 13vw, 3.35rem);
    }

    .hero-panel {
        min-height: calc(100svh - 104px);
        padding: 0;
        align-items: flex-end;
        background: var(--hero-image) 50% top / cover no-repeat;
    }

    .hero-copy {
        margin-top: 64svh;
        padding: 20px 18px 24px;
        background: #ffffff;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .show-poster {
        aspect-ratio: 1 / 1.2;
    }

    .show-details h3 {
        font-size: clamp(2.62rem, 14vw, 3.3rem);
    }

    .show-meta-item {
        align-items: flex-start;
        font-size: 0.98rem;
    }

    .merch-grid {
        gap: 12px;
    }

    .merch-image {
        min-height: 190px;
    }

    .merch-image img {
        padding: 10px;
    }

    .merch-card {
        gap: 12px;
    }

    .merch-info h3 {
        font-size: 1.22rem;
    }

    .panel-title {
        font-size: 2.2rem;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .archive-chapter-head {
        margin-bottom: 18px;
    }

    .archive-frame-copy {
        left: 16px;
        bottom: 15px;
    }

    .motion-card {
        aspect-ratio: 16 / 9;
        border-radius: 20px;
    }

    .motion-play {
        min-width: 88px;
        min-height: 88px;
        padding: 12px;
        font-size: 0.88rem;
    }

    .motion-label {
        left: 18px;
        bottom: 18px;
    }

    .booking-form,
    .lightbox-copy {
        padding: 20px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .footer-nav {
        gap: 4px;
    }

    .footer-nav a {
        padding: 8px 10px 8px 0;
    }

    .site-footer p {
        font-size: 0.86rem;
        line-height: 1.45;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .gallery-reveal-panel,
    .gallery-reveal-panel > *,
    .mail-trigger::before {
        animation: none;
        transition: none;
        transform: none;
        opacity: 1;
        filter: none;
    }
}

