:root {
    --bg: #0b0b0d;
    --bg-soft: #141418;
    --bg-elevated: rgba(24, 24, 29, 0.88);
    --panel: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f5f2ee;
    --muted: #c0b7ae;
    --accent: #ff6b35;
    --accent-soft: #ffc157;
    --ice: #79f2df;
    --menu-accent: #3d8856;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 26px;
    --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
    --font-display: "Metal Mania", Georgia, serif;
    --font-display-soft: "Eagle Lake", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(255, 107, 53, 0.08), transparent 22%),
        linear-gradient(180deg, #0b0b0d 0%, #060607 100%);
    color: var(--text);
    font-family: var(--font-body);
}

.theme-admin {
    background:
        radial-gradient(circle at top, rgba(121, 242, 223, 0.08), transparent 20%),
        linear-gradient(180deg, #080809 0%, #111114 100%);
}

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

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

.site-header .container {
    width: calc(100% - 1.2rem);
    max-width: none;
}

.eyebrow,
.card-kicker {
    margin: 0 0 .8rem;
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #7fc46f;
    text-shadow:
        0 1px 0 rgba(255, 193, 87, 0.75),
        0 0 14px rgba(255, 193, 87, 0.18);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0 .75rem;
    position: relative;
}

.brand {
    max-width: 240px;
}

.brand img {
    max-height: 56px;
    width: auto;
    height: auto;
    aspect-ratio: 484 / 92;
}

.brand-mobile {
    display: none;
}

.brand-desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.brand-desktop img {
    max-height: 74px;
}

.main-nav {
    flex: 1;
    display: grid;
    gap: 0;
}

.main-nav a,
.menu-link,
.nav-ghost,
.button-primary,
.button-secondary,
.button-ghost,
.text-link {
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.main-nav a,
.menu-link,
.nav-ghost {
    padding: .85rem 1rem .75rem;
    border-radius: 999px;
    color: var(--muted);
}

.main-nav a:hover,
.menu-link:hover,
.text-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.menu-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .9rem;
}

.menu-side {
    display: flex;
    align-items: center;
    gap: .15rem;
    min-width: 0;
    flex-wrap: nowrap;
}

.menu-side-left {
    justify-content: flex-end;
}

.menu-side-right {
    justify-content: flex-start;
}

.menu-edge-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .45rem;
    margin-left: auto;
    white-space: nowrap;
}

.menu-edge-spacer {
    min-width: 220px;
}

.menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    font-size: 1rem;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: .45rem;
    width: calc(100% - 2rem);
    height: 2px;
    border-radius: 999px;
    background: var(--menu-accent);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.menu-link:hover::after,
.menu-dropdown[open] > .menu-link::after {
    transform: translateX(-50%) scaleX(1);
}

.menu-dropdown {
    position: relative;
}

.menu-dropdown summary {
    list-style: none;
}

.menu-dropdown summary::-webkit-details-marker {
    display: none;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + .75rem);
    left: 50%;
    min-width: 220px;
    display: grid;
    gap: .25rem;
    padding: .55rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 12, 0.98);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.dropdown-panel a {
    padding: .85rem 1rem;
    border-radius: 14px;
    color: var(--muted);
}

.dropdown-panel a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.nav-ghost,
.button-secondary,
.button-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.nav-ghost:hover,
.button-secondary:hover,
.button-ghost:hover,
.button-primary:hover {
    transform: translateY(-1px);
}

.nav-cart {
    white-space: nowrap;
}

.nav-account,
.nav-cart {
    margin-left: 0;
    padding-inline: .95rem;
}

.button-primary,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .85rem 1.25rem;
    border-radius: 999px;
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), #ff9348);
    color: #111;
    font-weight: 700;
}

.button-column,
.button-row,
.meta-row,
.product-card-footer,
.footer-grid,
.footer-links,
.flash-stack,
.cart-layout,
.cart-actions,
.buy-box-row,
.concert-card,
.split-panel,
.detail-aside {
    display: flex;
    gap: 1rem;
}

.button-column {
    flex-direction: column;
    align-items: flex-start;
}

.pill,
.chip,
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    font-size: .9rem;
}

.status-announced { color: var(--ice); }
.status-sold_out { color: var(--accent-soft); }
.status-completed { color: var(--muted); }

.hero-section,
.page-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    content-visibility: visible;
}

.page-banner {
    min-height: clamp(280px, 46vh, 500px);
    --banner-image: var(--site-section-bg-primary);
    background: #09090b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 -80px 140px rgba(0, 0, 0, 0.35);
}

.page-banner--bg-1 {
    --banner-image: var(--site-section-bg-primary);
}

.page-banner--bg-2 {
    --banner-image: var(--site-section-bg-secondary);
}

.page-banner--bg-3 {
    --banner-image: var(--site-section-bg-tertiary);
}

.page-banner::before,
.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-banner::before {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(6, 6, 8, 0.12), rgba(6, 6, 8, 0.36) 26%, rgba(6, 6, 8, 0.72) 72%, rgba(6, 6, 8, 0.94) 100%),
        linear-gradient(90deg, rgba(7, 7, 9, 0.5), rgba(7, 7, 9, 0.1) 18%, rgba(7, 7, 9, 0.1) 82%, rgba(7, 7, 9, 0.44)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
        var(--banner-image) center/cover no-repeat;
    filter: saturate(0.92) contrast(1.06) brightness(0.86);
    transform: scale(1.018);
}

.page-banner::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 14%, transparent 78%, rgba(0, 0, 0, 0.48)),
        radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.1), transparent 18%);
}

.page-banner > .container {
    position: relative;
    z-index: 2;
}

.hero-animated {
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(180deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.88)),
        var(--hero-image-initial, url("../uploads/legacy/htmlwallpaper.jpg"));
    background-size: cover;
    background-position: center;
    transition: opacity 1.1s ease;
    opacity: 0;
}

.hero-bg--current {
    opacity: 1;
}

.hero-bg.is-visible {
    opacity: 1;
}

.hero-grid,
.product-detail-grid,
.cart-layout,
.split-panel {
    display: grid;
    gap: 1.5rem;
}

.hero-grid,
.product-detail-grid {
    grid-template-columns: 1.1fr .9fr;
}

h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 5vw, 4.35rem);
    line-height: .98;
    letter-spacing: .02em;
    text-wrap: balance;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

h2 {
    font-family: var(--font-display-soft);
    line-height: 1.04;
    letter-spacing: .015em;
    text-wrap: balance;
    text-shadow: 0 4px 16px rgba(255, 193, 87, 0.14);
}

.hero-text,
.product-lead,
.narrow-copy p,
.product-card-copy p,
.cta-panel p,
.concert-copy p,
.prose-block p,
.site-footer p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-visual-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.hero-glow {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 242, 223, 0.2), rgba(255, 107, 53, 0));
    filter: blur(24px);
}

.hero-visual {
    position: relative;
    width: min(420px, 82%);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transform: rotate(-5deg);
}

.hero-video-card {
    position: relative;
    width: min(700px, 100%);
    padding: 1rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.78)),
        linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(121, 242, 223, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-video-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(8, 8, 10, 0.16), rgba(8, 8, 10, 0.46)),
        var(--hero-video-poster, url("../uploads/optimized/legacy/SofM-cover.jpg")) center / cover no-repeat;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-video-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem .15rem .1rem;
}

.hero-video-card__meta .card-kicker {
    margin-bottom: .25rem;
}

.hero-video-card__meta strong {
    font-size: .98rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.theme-store-home .home-hero-cinematic {
    min-height: 100svh;
    padding: clamp(7rem, 10vw, 9rem) 0 clamp(6rem, 9vw, 7.5rem);
    align-items: stretch;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 193, 87, 0.1), transparent 24%),
        radial-gradient(circle at 82% 24%, rgba(121, 242, 223, 0.1), transparent 20%),
        #040506;
}

.theme-store-home .home-hero-cinematic__media,
.theme-store-home .home-hero-cinematic__veil {
    position: absolute;
    inset: 0;
}

.theme-store-home .home-hero-cinematic__media {
    z-index: -3;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(3, 4, 5, 0.55), rgba(3, 4, 5, 0.88)),
        var(--hero-poster) center / cover no-repeat;
}

.theme-store-home .home-hero-cinematic__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.06) brightness(0.48);
    transform: scale(1.08) translateY(calc(var(--parallax-y, 0) * -0.55));
    transform-origin: center;
    will-change: transform;
}

.theme-store-home .home-hero-cinematic__veil {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.78) 24%, rgba(5, 6, 8, 0.48) 54%, rgba(5, 6, 8, 0.82) 100%),
        linear-gradient(180deg, rgba(7, 7, 9, 0.06) 0%, rgba(7, 7, 9, 0.18) 36%, rgba(7, 7, 9, 0.86) 100%),
        radial-gradient(circle at 24% 18%, rgba(255, 107, 53, 0.18), transparent 24%),
        radial-gradient(circle at 74% 24%, rgba(121, 242, 223, 0.12), transparent 18%);
}

.theme-store-home .home-hero-cinematic__center-mark {
    position: absolute;
    left: 50%;
    top: 36%;
    z-index: 5;
    width: min(88vw, clamp(320px, 42vw, 920px));
    aspect-ratio: 484 / 92;
    translate: -50% -50%;
    pointer-events: none;
    isolation: isolate;
    animation: som-logo-breathe 5.8s ease-in-out infinite;
}

.theme-store-home .home-hero-cinematic__center-glow,
.theme-store-home .home-hero-cinematic__logo-ghost,
.theme-store-home .home-hero-cinematic__center-logo {
    position: absolute;
    inset: 0;
}

.theme-store-home .home-hero-cinematic__center-glow {
    inset: -34%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 24%),
        radial-gradient(circle at 35% 54%, rgba(255, 107, 53, 0.28), transparent 28%),
        radial-gradient(circle at 66% 48%, rgba(121, 242, 223, 0.22), transparent 24%);
    filter: blur(28px);
    opacity: 0.92;
    animation: som-logo-aura 6.5s ease-in-out infinite;
}

.theme-store-home .home-hero-cinematic__logo-ghost {
    background: var(--hero-logo-url) center / contain no-repeat;
    opacity: 0.38;
    mix-blend-mode: screen;
}

.theme-store-home .home-hero-cinematic__logo-ghost--warm {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.45));
    animation: som-logo-jitter-warm 220ms steps(2, end) infinite;
}

.theme-store-home .home-hero-cinematic__logo-ghost--cool {
    filter: drop-shadow(0 0 20px rgba(121, 242, 223, 0.42));
    animation: som-logo-jitter-cool 180ms steps(2, end) infinite;
}

.theme-store-home .home-hero-cinematic__center-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 0 30px rgba(255, 255, 255, 0.18))
        drop-shadow(0 12px 34px rgba(0, 0, 0, 0.42));
    animation: som-logo-jitter-main 170ms steps(2, end) infinite;
}

@keyframes som-logo-jitter-main {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(1.5px, -0.8px) rotate(-0.35deg); }
    40% { transform: translate(-1.2px, 0.9px) rotate(0.28deg); }
    60% { transform: translate(1px, 0.5px) rotate(-0.2deg); }
    80% { transform: translate(-1.1px, -0.7px) rotate(0.24deg); }
    100% { transform: translate(0.6px, 0.3px) rotate(-0.12deg); }
}

@keyframes som-logo-jitter-warm {
    0% { transform: translate(-5px, 1px); opacity: 0.22; }
    25% { transform: translate(4px, -2px); opacity: 0.38; }
    50% { transform: translate(-3px, 2px); opacity: 0.18; }
    75% { transform: translate(5px, 1px); opacity: 0.34; }
    100% { transform: translate(-4px, -1px); opacity: 0.24; }
}

@keyframes som-logo-jitter-cool {
    0% { transform: translate(5px, -1px); opacity: 0.16; }
    25% { transform: translate(-4px, 2px); opacity: 0.32; }
    50% { transform: translate(3px, -2px); opacity: 0.14; }
    75% { transform: translate(-5px, -1px); opacity: 0.28; }
    100% { transform: translate(4px, 1px); opacity: 0.18; }
}

@keyframes som-logo-breathe {
    0%, 100% { scale: 0.99; }
    50% { scale: 1.03; }
}

@keyframes som-logo-aura {
    0%, 100% { transform: scale(0.98); opacity: 0.72; }
    50% { transform: scale(1.04); opacity: 0.98; }
}

.theme-store-home .home-hero-cinematic__grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: end;
    width: 100%;
}

.theme-store-home main > .masked-image-section,
.theme-store-home main > .section.som-hero,
.theme-store-home main > .editorial-press-section {
    padding-top: clamp(7rem, 9vw, 9.5rem);
    padding-bottom: clamp(7rem, 9vw, 9.5rem);
}

.theme-store .section-divider-mask + .masked-image-section,
.theme-store .section-divider-mask + .section,
.theme-store .section-divider-mask + .editorial-press-section {
    padding-top: clamp(8rem, 10vw, 10.5rem);
}

.theme-store-home .home-hero-cinematic__copy {
    display: grid;
    gap: 1.15rem;
    align-self: end;
    max-width: 46rem;
}

.theme-store-home .home-hero-cinematic__kicker {
    margin: -0.35rem 0 0;
    color: rgba(247, 241, 232, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 700;
}

.theme-store-home .home-hero-cinematic__lead {
    max-width: 42rem;
    font-size: clamp(1.02rem, 1.45vw, 1.18rem);
    color: rgba(247, 241, 232, 0.82);
}

.theme-store-home .home-hero-cinematic__actions {
    flex-wrap: wrap;
    align-items: center;
}

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

.theme-store-home .home-hero-cinematic__fact {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(17, 17, 20, 0.82), rgba(8, 8, 10, 0.7)),
        linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(121, 242, 223, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.theme-store-home .home-hero-cinematic__fact strong {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.theme-store-home .home-hero-cinematic__fact span {
    color: rgba(247, 241, 232, 0.68);
    font-size: 0.84rem;
    line-height: 1.45;
}

.theme-store-home .home-hero-cinematic__aside {
    display: grid;
    gap: 1rem;
    align-self: center;
    justify-self: end;
    width: min(100%, 29rem);
}

.theme-store-home .home-hero-cinematic__panel {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(15, 15, 18, 0.82), rgba(7, 7, 9, 0.7)),
        linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(121, 242, 223, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.theme-store-home .home-hero-cinematic__panel--poster {
    padding: 0.95rem;
}

.theme-store-home .home-hero-cinematic__poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(6, 6, 8, 0.08), rgba(6, 6, 8, 0.36)),
        var(--hero-cover) center / cover no-repeat;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-store-home .home-hero-cinematic__poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.theme-store-home .home-hero-cinematic__poster-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(5, 6, 8, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f7f1e8;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.theme-store-home .home-hero-cinematic__poster-tag::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #ff6b35;
    box-shadow: 0 0 16px rgba(255, 107, 53, 0.8);
}

.theme-store-home .home-hero-cinematic__panel--meta h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.3rem);
    color: #f7f1e8;
}

.theme-store-home .home-hero-cinematic__panel--meta p {
    margin: 0;
}

.theme-store-home .home-hero-cinematic__meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.theme-store-home .home-hero-cinematic__meta-grid div {
    display: grid;
    gap: 0.22rem;
    padding: 0.75rem 0.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-store-home .home-hero-cinematic__meta-grid strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 193, 87, 0.84);
}

.theme-store-home .home-hero-cinematic__meta-grid span {
    color: rgba(247, 241, 232, 0.72);
    font-size: 0.82rem;
    line-height: 1.5;
}

.theme-store .section-divider-mask {
    --divider-band-height: clamp(76px, 6vw, 128px);
    position: relative;
    z-index: 5;
    left: 50%;
    width: 100vw;
    height: 0;
    margin-left: -50vw;
    margin-top: calc(var(--divider-band-height) * -0.28);
    margin-bottom: calc(var(--divider-band-height) * -0.02);
    pointer-events: none;
    isolation: isolate;
    overflow: visible;
}

.theme-store .section-divider-mask__asset {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 106vw;
    aspect-ratio: 2980 / 1000;
    display: block;
    background: url("../images/masks/section-som-mask.svg") center / 100% 100% no-repeat;
    opacity: 1;
    filter:
        drop-shadow(0 24px 34px rgba(0, 0, 0, 0.18))
        drop-shadow(0 10px 16px rgba(255, 255, 255, 0.08));
    transform: translate3d(-50%, calc(-50% + var(--parallax-y, 0) * -0.22), 0);
    transform-origin: center;
    will-change: transform;
}

.theme-store .section-divider-mask::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: var(--divider-band-height);
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 236, 0.94));
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.34);
}

.theme-store .section-divider-mask::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: calc(var(--divider-band-height) * 1.9);
    transform: translateY(-50%);
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.2), transparent 72%);
    filter: blur(30px);
    opacity: 0.5;
}

@media (max-width: 980px) {
    .theme-store-home .home-hero-cinematic {
        min-height: auto;
    }

    .theme-store-home .home-hero-cinematic__grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .theme-store-home .home-hero-cinematic__center-mark {
        left: 50%;
        top: 32%;
        width: min(86vw, clamp(280px, 62vw, 700px));
    }

    .theme-store-home .home-hero-cinematic__copy {
        max-width: 100%;
    }

    .theme-store-home .home-hero-cinematic__aside {
        width: min(100%, 34rem);
        justify-self: start;
    }

    .theme-store-home .home-hero-cinematic__facts,
    .theme-store-home .home-hero-cinematic__meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .theme-store-home .home-hero-cinematic {
        padding-top: 6.75rem;
        padding-bottom: 5.5rem;
    }

    .theme-store-home .home-hero-cinematic__veil {
        background:
            linear-gradient(180deg, rgba(5, 6, 8, 0.76) 0%, rgba(5, 6, 8, 0.48) 24%, rgba(5, 6, 8, 0.84) 100%),
            linear-gradient(90deg, rgba(5, 6, 8, 0.88) 0%, rgba(5, 6, 8, 0.44) 40%, rgba(5, 6, 8, 0.88) 100%);
    }

    .theme-store-home .home-hero-cinematic__center-mark {
        left: 50%;
        top: 28%;
        width: min(90vw, 520px);
    }

    .theme-store-home .home-hero-cinematic__actions {
        display: grid;
        justify-content: stretch;
    }

    .theme-store-home .home-hero-cinematic__facts,
    .theme-store-home .home-hero-cinematic__meta-grid {
        grid-template-columns: 1fr;
    }

    .theme-store-home .home-hero-cinematic__panel,
    .theme-store-home .home-hero-cinematic__panel--poster {
        border-radius: 22px;
    }

    .theme-store-home .home-hero-cinematic__poster-frame {
        aspect-ratio: 16 / 10;
    }

    .theme-store .section-divider-mask {
        --divider-band-height: clamp(48px, 8vw, 72px);
        margin-top: calc(var(--divider-band-height) * -0.18);
        margin-bottom: 0;
    }

    .theme-store .section-divider-mask__asset {
        width: 108vw;
    }

    .theme-store .section-divider-mask + .masked-image-section,
    .theme-store .section-divider-mask + .section,
    .theme-store .section-divider-mask + .editorial-press-section {
        padding-top: clamp(8rem, 18vw, 10.5rem);
    }
}

@media (max-width: 520px) {
    .theme-store-home .home-hero-cinematic__center-mark {
        top: 24%;
        width: min(92vw, 420px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-store-home .home-hero-cinematic__center-mark,
    .theme-store-home .home-hero-cinematic__center-glow,
    .theme-store-home .home-hero-cinematic__logo-ghost,
    .theme-store-home .home-hero-cinematic__center-logo {
        animation: none;
    }
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    z-index: 14;
    bottom: clamp(3rem, 5vw, 4.2rem);
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: .65rem .9rem .5rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(8, 8, 10, 0.46);
    color: #f7f4ed;
    font-weight: 800;
    letter-spacing: .12em;
    box-shadow:
        0 20px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(8, 8, 10, 0.64);
}

.scroll-indicator__monogram {
    font-size: .78rem;
}

.scroll-indicator__logo {
    max-height: 24px;
    max-width: 120px;
    height: auto;
    aspect-ratio: 484 / 92;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
}

.scroll-indicator__chevron {
    opacity: 0.8;
}

.masked-image-section {
    position: relative;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: #121316;
    color: #1b1715;
}

.masked-image-section__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: 1fr;
}

.masked-image-section__copy {
    display: grid;
    gap: 1rem;
}

.masked-image-section__copy h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4.2vw, 3.35rem);
    line-height: .95;
    color: #f7f1e8;
}

.masked-image-section__lead {
    margin: 0;
    max-width: 42rem;
    color: rgba(247, 241, 232, 0.76);
    line-height: 1.75;
}

.masked-image-section__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.masked-image-section__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .55rem .95rem;
    border: 1px solid rgba(31, 22, 20, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #f7f1e8;
    font-size: .92rem;
    font-weight: 700;
}

.masked-image-section__action {
    width: fit-content;
}

.masked-image-section__media {
    position: relative;
}

.masked-image-section__art {
    min-height: clamp(340px, 72vw, 720px);
    background:
        linear-gradient(180deg, rgba(12, 10, 10, 0.18), rgba(12, 10, 10, 0.4)),
        radial-gradient(circle at 24% 18%, rgba(255, 222, 173, 0.16), transparent 20%),
        var(--masked-image-url) center/cover no-repeat;
    -webkit-mask-image: url("../images/masks/section-grunge-mask.svg");
    mask-image: url("../images/masks/section-grunge-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.18));
}

.masked-image-section__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.08), transparent 18%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.masked-image-section.is-reverse .masked-image-section__grid {
    direction: rtl;
}

.masked-image-section.is-reverse .masked-image-section__copy {
    direction: ltr;
}

.som-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.section.som-hero {
    padding: clamp(5rem, 9vw, 7.5rem) 0;
    background: #0b0b0d;
}

.page-banner + .section.som-hero,
.section.som-hero + .section.som-hero {
    margin-top: 0;
    padding-top: clamp(5rem, 9vw, 7.5rem);
}

.section.som-hero::before,
.section.som-hero::after {
    display: block;
}

.som-hero__bg {
    display: none;
}

.som-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 0;
}

.section {
    position: relative;
    isolation: isolate;
    --section-image: var(--site-section-bg-primary);
    --section-overlay:
        linear-gradient(180deg, rgba(9, 10, 12, 0.18), rgba(9, 10, 12, 0.42) 30%, rgba(9, 10, 12, 0.78) 78%, rgba(9, 10, 12, 0.94)),
        linear-gradient(90deg, rgba(8, 8, 10, 0.5), rgba(8, 8, 10, 0.1) 18%, rgba(8, 8, 10, 0.1) 82%, rgba(8, 8, 10, 0.44)),
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.1), transparent 24%);
    padding: clamp(5rem, 9vw, 7.5rem) 0;
    border-radius: 0;
    overflow: hidden;
    background: #0b0b0d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 -80px 140px rgba(0, 0, 0, 0.3);
    content-visibility: auto;
    contain-intrinsic-size: 1px 860px;
}

.theme-store-section-slots main > .page-banner:not(.page-banner--bg-1):not(.page-banner--bg-2):not(.page-banner--bg-3):nth-of-type(3n + 1) {
    --banner-image: var(--site-section-bg-primary);
}

.theme-store-section-slots main > .page-banner:not(.page-banner--bg-1):not(.page-banner--bg-2):not(.page-banner--bg-3):nth-of-type(3n + 2) {
    --banner-image: var(--site-section-bg-secondary);
}

.theme-store-section-slots main > .page-banner:not(.page-banner--bg-1):not(.page-banner--bg-2):not(.page-banner--bg-3):nth-of-type(3n) {
    --banner-image: var(--site-section-bg-tertiary);
}

.theme-store-section-slots main > .section:not(.section-bg-none):not(.section-bg-1):not(.section-bg-2):not(.section-bg-3):nth-of-type(3n + 1) {
    --section-image: var(--site-section-bg-primary);
}

.theme-store-section-slots main > .section:not(.section-bg-none):not(.section-bg-1):not(.section-bg-2):not(.section-bg-3):nth-of-type(3n + 2) {
    --section-image: var(--site-section-bg-secondary);
}

.theme-store-section-slots main > .section:not(.section-bg-none):not(.section-bg-1):not(.section-bg-2):not(.section-bg-3):nth-of-type(3n) {
    --section-image: var(--site-section-bg-tertiary);
}

main > section {
    --section-copy-text-align: left;
    --section-copy-inline-start: 0;
    --section-copy-inline-end: auto;
    --section-copy-grid-align: start;
    --section-copy-flex-align: flex-start;
    --section-copy-self-align: start;
}

main > section:nth-of-type(4n + 2),
main > section:nth-of-type(4n) {
    --section-copy-text-align: center;
    --section-copy-inline-start: auto;
    --section-copy-inline-end: auto;
    --section-copy-grid-align: center;
    --section-copy-flex-align: center;
    --section-copy-self-align: center;
}

main > section:nth-of-type(4n + 3) {
    --section-copy-text-align: right;
    --section-copy-inline-start: auto;
    --section-copy-inline-end: 0;
    --section-copy-grid-align: end;
    --section-copy-flex-align: flex-end;
    --section-copy-self-align: end;
}

main > section .hero-copy,
main > section .narrow-copy,
main > section .masked-image-section__copy,
main > section .split-panel > div:first-child,
main > section .cta-panel > div:first-child,
main > section .section-head > div,
main > section .prose-block {
    text-align: var(--section-copy-text-align);
    margin-inline-start: var(--section-copy-inline-start);
    margin-inline-end: var(--section-copy-inline-end);
}

main > section .masked-image-section__copy {
    justify-items: var(--section-copy-grid-align);
}

main > section .hero-copy .button-row,
main > section .masked-image-section__meta {
    justify-content: var(--section-copy-flex-align);
}

main > section .masked-image-section__action {
    justify-self: var(--section-copy-self-align);
}

.page-banner + .section:not(.som-hero),
.section + .section:not(.som-hero) {
    margin-top: 0;
    padding-top: clamp(5rem, 9vw, 7.5rem);
}

.section::before,
.section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section::before {
    z-index: -2;
    background: var(--section-overlay), var(--section-image) center/cover no-repeat;
    filter: saturate(0.9) contrast(1.05) brightness(0.86);
    transform: scale(1.016);
}

.section::after {
    display: block;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 16%, transparent 78%, rgba(0, 0, 0, 0.44)),
        radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 18%);
}

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

.section-bg-1 {
    --section-image: var(--site-section-bg-primary);
}

.section-bg-2 {
    --section-image: var(--site-section-bg-secondary);
}

.section-bg-3 {
    --section-image: var(--site-section-bg-tertiary);
}

.section.section-bg-none {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.section.section-bg-none::before,
.section.section-bg-none::after {
    display: none;
}

.section-contrast {
    background: #16171b;
    border-radius: 0;
    --section-overlay:
        linear-gradient(180deg, rgba(13, 14, 18, 0.76), rgba(13, 14, 18, 0.92)),
        linear-gradient(90deg, rgba(255, 248, 232, 0.05), rgba(255, 248, 232, 0));
}

.section-contrast.som-hero,
.section-gallery.som-hero {
    border-radius: 0;
}

@media (min-width: 761px) {
    .theme-store-home main > .masked-image-section,
    .theme-store-home main > .section.som-hero,
    .theme-store-home main > .editorial-press-section,
    .theme-store-masked-auto main > .section:not(.section-bg-none),
    .theme-store-masked-auto main > .masked-image-section,
    .theme-store-masked-auto main > .editorial-press-section {
        min-height: clamp(520px, 56vh, 700px);
        padding-top: clamp(7rem, 8vw, 9rem);
        padding-bottom: clamp(7rem, 8vw, 9rem);
    }
}

@media (min-width: 981px) {
    .theme-store-home main > .masked-image-section,
    .theme-store-home main > .section.som-hero,
    .theme-store-home main > .editorial-press-section,
    .theme-store-masked-auto main > .section:not(.section-bg-none),
    .theme-store-masked-auto main > .masked-image-section,
    .theme-store-masked-auto main > .editorial-press-section {
        min-height: clamp(580px, 60vh, 760px);
        padding-top: clamp(7.5rem, 8.4vw, 9.5rem);
        padding-bottom: clamp(7.5rem, 8.4vw, 9.5rem);
    }

    .theme-store .section-divider-mask + .masked-image-section,
    .theme-store .section-divider-mask + .section,
    .theme-store .section-divider-mask + .editorial-press-section {
        padding-top: clamp(8.5rem, 10vw, 11rem);
    }
}

.section-contrast::before {
    display: block;
}

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

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-head h2,
.cta-panel h2,
.split-panel h2,
.prose-block h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.split-panel,
.cta-panel,
.product-card,
.concert-card,
.member-card,
.cart-item,
.cart-summary,
.empty-card,
.flash,
.buy-box,
.login-card,
.faq-item {
    padding: 1.35rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg-elevated);
    box-shadow: var(--shadow);
}

.split-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.vinyl-panel {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 320px;
}

.vinyl-disc {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.14) 0 8%, transparent 9% 100%),
        repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0 2px, rgba(0, 0, 0, 0) 3px 9px),
        #111;
    animation: disc-spin 12s linear infinite;
}

.vinyl-cover {
    position: relative;
    width: min(280px, 60%);
}

.card-grid,
.member-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-card,
.member-card {
    overflow: hidden;
}

.product-card-copy {
    display: grid;
    gap: .8rem;
    margin-top: 1rem;
}

.product-card h2,
.product-card h3,
.concert-card h2,
.concert-card h3,
.member-card h3,
.cart-item h2 {
    margin: 0;
    font-size: 1.25rem;
}

.product-card-footer,
.detail-aside,
.meta-row {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.product-media {
    min-height: 280px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.38));
    background-size: cover;
    background-position: center;
}

.product-media-spotlight,
.product-media-detail {
    min-height: 360px;
}

.concert-list {
    display: grid;
    gap: 1rem;
}

.concert-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) clamp(92px, 12vw, 132px);
    gap: 1rem 1.1rem;
    align-items: start;
}

.concert-card.is-highlighted {
    border-color: rgba(255, 193, 87, 0.42);
}

.concert-date {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-width: 0;
    text-align: center;
}

.concert-date strong {
    display: block;
    font-size: 2rem;
}

.concert-copy {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.concert-side {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    justify-items: end;
}

.concert-meta {
    grid-column: 2 / 4;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
}

.concert-poster {
    width: 100%;
    max-width: 132px;
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 87, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
        rgba(255, 255, 255, 0.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.concert-poster.is-empty {
    display: grid;
    place-items: center;
    padding: .7rem;
    text-align: center;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0;
}

.concert-poster img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.gallery-strip,
.gallery-wall {
    display: grid;
    gap: 1rem;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(1rem, 2.4vw, 1.5rem);
}

.press-card {
    position: relative;
    grid-column: span 4;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    min-height: 100%;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(32, 24, 16, 0.82), rgba(11, 11, 12, 0.96)),
        rgba(14, 13, 12, 0.92);
    border: 1px solid rgba(212, 168, 79, 0.28);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.press-card.is-featured {
    grid-column: span 6;
}

.press-card::before {
    content: "ROCK PRESS";
    position: absolute;
    top: 2.2rem;
    right: -2.85rem;
    z-index: 2;
    padding: .28rem .6rem;
    color: rgba(243, 234, 216, 0.84);
    background: rgba(20, 17, 14, 0.76);
    border: 1px solid rgba(212, 168, 79, 0.2);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    transform: rotate(90deg);
}

.press-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(27, 26, 26, 0.82), rgba(9, 9, 10, 0.94));
}

.press-card.is-featured .press-card__media {
    aspect-ratio: 16 / 10;
}

.press-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.06), rgba(7, 7, 7, 0.28)),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(7, 7, 7, 0.32));
    pointer-events: none;
}

.press-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.8) contrast(1.08) brightness(.92);
    transition: transform .6s ease, filter .6s ease;
}

.press-card:hover .press-card__media img,
.press-card:focus-within .press-card__media img {
    transform: scale(1.05);
    filter: saturate(.95) contrast(1.12) brightness(.98);
}

.press-card__media-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    color: rgba(244, 236, 221, 0.9);
    font-size: 1.1rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    text-align: center;
}

.press-card__content {
    display: grid;
    gap: .8rem;
    padding: 1rem 1rem 1.15rem;
}

.press-card__masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .72rem;
    border-bottom: 1px solid rgba(212, 168, 79, 0.16);
}

.press-card__source,
.press-card__issue {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.press-card__source {
    color: var(--sand);
}

.press-card__issue {
    color: rgba(243, 236, 223, 0.56);
}

.press-card h3 {
    margin: 0;
    line-height: 1;
    text-wrap: balance;
    font-size: clamp(1.5rem, 2vw, 2.15rem);
}

.press-card__lead,
.press-card__excerpt {
    margin: 0;
}

.press-card__lead {
    color: rgba(198, 223, 176, 0.92);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.press-card__excerpt {
    color: rgba(244, 236, 223, 0.82);
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.press-card__footer {
    margin-top: auto;
    padding-top: .2rem;
}

.press-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .82rem 1rem;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .78rem;
    font-weight: 700;
    border: 1px solid rgba(212, 168, 79, 0.26);
    background: rgba(255, 255, 255, 0.04);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.press-card__cta:hover,
.press-card__cta:focus-visible {
    background: rgba(212, 168, 79, 0.12);
    border-color: rgba(212, 168, 79, 0.4);
    transform: translateY(-1px);
}

.gallery-video-section {
    background: transparent;
    color: var(--text);
    text-align: center;
}

.gallery-video-section::before,
.gallery-video-section::after {
    display: none;
}

.gallery-video-head {
    justify-content: center;
    text-align: center;
}

.gallery-video-head h2,
.gallery-video-title {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 500;
}

.album-listen-section {
    color: var(--text);
}

.album-listen-layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(1.2rem, 3vw, 2.4rem);
    align-items: start;
}

.album-listen-copy,
.album-player-shell,
.album-player-card,
.album-player-card__content {
    display: grid;
    gap: 1rem;
}

.album-listen-copy {
    align-content: start;
}

.album-listen-copy h2 {
    margin: 0;
    max-width: 20ch;
}

.album-listen-copy > p:last-child {
    margin: 0;
    max-width: 56ch;
    color: var(--muted);
}

.album-player-switcher {
    display: grid;
    gap: .8rem;
    margin-top: .35rem;
}

.album-chip {
    appearance: none;
    display: grid;
    gap: .15rem;
    justify-items: start;
    padding: .95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 10, 12, 0.28)),
        rgba(15, 16, 18, 0.76);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.album-chip span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.album-chip small {
    color: rgba(248, 241, 223, 0.72);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.album-chip:hover,
.album-chip:focus-visible,
.album-chip.is-active {
    transform: translateY(-2px);
    border-color: rgba(255, 193, 87, 0.4);
    background:
        linear-gradient(180deg, rgba(255, 193, 87, 0.12), rgba(10, 10, 12, 0.24)),
        rgba(15, 16, 18, 0.88);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.album-player-card {
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    align-items: center;
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.18)),
        rgba(10, 10, 12, 0.76);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.album-player-card__visual {
    isolation: isolate;
    min-height: clamp(290px, 34vw, 420px);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(12, 12, 14, 0.18), rgba(12, 12, 14, 0.46)),
        var(--album-cover-url) center / cover no-repeat,
        radial-gradient(circle at 30% 38%, rgba(255, 193, 87, 0.22), transparent 38%),
        radial-gradient(circle at 72% 32%, rgba(109, 186, 132, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(6, 6, 7, 0.16)),
        rgba(15, 15, 17, 0.82);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 -24px 48px rgba(0, 0, 0, 0.24);
}

.album-player-card__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 32%),
        radial-gradient(circle at 50% 50%, rgba(6, 6, 8, 0.18), rgba(6, 6, 8, 0.64) 100%),
        radial-gradient(circle at 50% 50%, transparent 0 54%, rgba(0, 0, 0, 0.18) 80%, rgba(0, 0, 0, 0.38) 100%);
    backdrop-filter: blur(8px) saturate(0.95);
    pointer-events: none;
}

.album-player-card__disc {
    display: grid;
    place-items: center;
    top: 50%;
    left: 50%;
    width: min(320px, 76%);
    margin: 0;
    transform: translate(-50%, -50%);
    animation: album-disc-spin 12s linear infinite;
    animation-play-state: paused;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.28),
        inset 0 0 18px rgba(255, 255, 255, 0.06);
}

.album-player-card.is-playing .album-player-card__disc {
    animation-play-state: running;
}

.album-player-card__label {
    position: relative;
    z-index: 1;
    width: 34%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    box-shadow:
        0 0 0 2px rgba(255, 248, 229, 0.08),
        0 18px 28px rgba(0, 0, 0, 0.24);
    background: rgba(8, 8, 9, 0.9);
}

.album-player-card__label::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%);
    pointer-events: none;
}

.album-player-card__label-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-player-card__hole {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 5%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #0a0a0b;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(8, 8, 10, 0.72);
}

.album-player-card__type {
    margin: 0;
    color: rgba(255, 193, 87, 0.84);
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 700;
}

.album-player-card__content h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: .98;
}

.album-player-card__text {
    margin: 0;
    max-width: 52ch;
    color: rgba(248, 241, 223, 0.78);
}

.album-player-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.album-player-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .9rem;
    flex-wrap: wrap;
}

.album-player-control {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 46px;
    padding: .75rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 10, 12, 0.34)),
        rgba(14, 15, 18, 0.92);
    color: #fff6e3;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

.album-player-control:disabled {
    opacity: .55;
    cursor: wait;
}

.album-player-control:not(:disabled):hover,
.album-player-control:not(:disabled):focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 193, 87, 0.38);
    background:
        linear-gradient(180deg, rgba(255, 193, 87, 0.12), rgba(10, 10, 12, 0.34)),
        rgba(14, 15, 18, 0.98);
}

.album-player-control__icon {
    font-size: .88rem;
}

.album-player-status {
    margin: 0;
    color: rgba(248, 241, 223, 0.72);
    font-size: .92rem;
}

.album-stream-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.album-stream-link:hover,
.album-stream-link:focus-visible {
    transform: translateY(-1px);
}

.album-stream-link.is-spotify:hover,
.album-stream-link.is-spotify:focus-visible {
    color: #1db954;
    border-color: rgba(29, 185, 84, 0.48);
    background: rgba(29, 185, 84, 0.08);
}

.album-stream-link.is-apple:hover,
.album-stream-link.is-apple:focus-visible {
    color: #f5d29f;
    border-color: rgba(245, 210, 159, 0.42);
    background: rgba(245, 210, 159, 0.08);
}

.album-stream-link.is-youtube:hover,
.album-stream-link.is-youtube:focus-visible {
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.45);
    background: rgba(255, 107, 53, 0.08);
}

.album-stream-link.is-soundcloud:hover,
.album-stream-link.is-soundcloud:focus-visible {
    color: #ff7700;
    border-color: rgba(255, 119, 0, 0.48);
    background: rgba(255, 119, 0, 0.08);
}

.album-player-card__embed {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 4, 5, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.album-player-card__embed iframe,
.album-player-card__embed-host iframe {
    display: block;
    width: 100%;
    min-height: 352px;
    border: 0;
    background: #111;
}

.album-player-card__embed-host {
    min-height: 352px;
}

.carousel {
    padding: 20px;
    perspective: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel > * {
    flex: 0 0 auto;
}

.carousel figure {
    position: relative;
    margin: 0;
    width: 400px;
    transform-style: preserve-3d;
    transition: transform .5s ease;
    transform-origin: 50% 50% -540px;
}

.carousel figure::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2.25rem;
    width: 62%;
    height: 2.25rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.42), transparent 72%);
    transform: translateX(-50%);
    filter: blur(10px);
    pointer-events: none;
}

.carousel-card {
    position: relative;
    width: 100%;
    height: 500px;
    box-sizing: border-box;
    padding: 16px 44px 58px;
    border: 1px solid rgba(56, 43, 23, 0.32);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 248, 229, 0.96), rgba(214, 189, 146, 0.94)),
        linear-gradient(135deg, rgba(84, 57, 22, 0.08), transparent 42%);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.28),
        0 10px 18px rgba(64, 40, 10, 0.18),
        inset 0 0 0 1px rgba(255, 248, 229, 0.28),
        inset 0 -34px 48px rgba(78, 48, 16, 0.16);
    opacity: 0.97;
    filter: saturate(0.95) contrast(1.04);
}

.carousel-card-media {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    background: #050505;
}

.carousel-card-preview {
    position: relative;
    appearance: none;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    overflow: hidden;
}

.carousel-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.06);
}

.carousel-card-title {
    position: absolute;
    right: 44px;
    bottom: 16px;
    left: 44px;
    margin: 0;
    font-size: .84rem;
    line-height: 1.3;
    letter-spacing: .03em;
    color: #3d2810;
}

.carousel-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 44px;
    padding: .45rem .95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 248, 229, 0.48);
    background: rgba(12, 12, 12, 0.72);
    color: #fff6e3;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.carousel-card.is-active .carousel-play-badge {
    background: rgba(28, 22, 12, 0.8);
}

.carousel figure > .carousel-card:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: 50% 50% -540px;
}

.carousel figure .carousel-card:nth-child(2) { transform: rotateY(0.7853981634rad); }
.carousel figure .carousel-card:nth-child(3) { transform: rotateY(1.5707963268rad); }
.carousel figure .carousel-card:nth-child(4) { transform: rotateY(2.3561944902rad); }
.carousel figure .carousel-card:nth-child(5) { transform: rotateY(3.1415926536rad); }
.carousel figure .carousel-card:nth-child(6) { transform: rotateY(3.926990817rad); }
.carousel figure .carousel-card:nth-child(7) { transform: rotateY(4.7123889804rad); }
.carousel figure .carousel-card:nth-child(8) { transform: rotateY(5.4977871438rad); }

.carousel nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0;
}

.carousel nav button {
    flex: 0 0 auto;
    margin: 0 5px;
    cursor: pointer;
    color: currentColor;
    background: none;
    border: 1px solid currentColor;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.carousel nav button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.gallery-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 28vw);
    overflow-x: auto;
    padding-bottom: .5rem;
    cursor: grab;
    scrollbar-width: thin;
}

.gallery-strip.is-dragging { cursor: grabbing; }

.gallery-strip img,
.gallery-wall img,
.image-stack img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 22px;
}

.gallery-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-slider {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.photo-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    align-items: stretch;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: .25rem;
}

.photo-slider-track::-webkit-scrollbar {
    display: none;
}

.photo-slide {
    position: relative;
    height: clamp(240px, 58vw, 420px);
    max-height: 420px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(9, 9, 9, 0.2)),
        rgba(10, 10, 12, 0.84);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    scroll-snap-align: center;
}

.photo-slide-hit {
    appearance: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
}

.photo-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(8, 8, 10, 0), rgba(8, 8, 10, 0.88) 84%);
    pointer-events: none;
}

.photo-slide-frame,
.photo-slide-frame img {
    width: 100%;
    height: 100%;
}

.photo-slide-frame {
    margin: 0;
    min-height: 0;
}

.photo-slide-frame img {
    display: block;
    object-fit: cover;
    max-height: 100%;
    transform: scale(1.01);
    transition: transform .6s ease, filter .6s ease;
    filter: saturate(0.98) contrast(1.03);
}

.photo-slide-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    gap: .45rem;
    padding: 1.25rem;
    color: #f8f1df;
    pointer-events: none;
}

.photo-slide-copy h3 {
    margin: 0;
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1;
}

.photo-slide-copy p {
    margin: 0;
    max-width: 42rem;
    color: rgba(248, 241, 223, 0.84);
}

.photo-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.photo-slider-button {
    flex: 0 0 auto;
    min-width: 78px;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.photo-slider-button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.08);
}

.photo-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    flex-wrap: wrap;
}

.photo-slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.photo-slider-dot.is-active {
    background: #ff6b35;
    transform: scale(1.15);
}

.photo-slide:hover .photo-slide-frame img {
    transform: scale(1.04);
    filter: saturate(1.04) contrast(1.04);
}

.photo-lightbox {
    width: min(100vw - 1rem, 1320px);
    max-width: 1320px;
    margin: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
}

.photo-lightbox::backdrop {
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 36%),
        rgba(4, 4, 5, 0.88);
    backdrop-filter: blur(10px);
}

.photo-lightbox__shell {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: min(90vh, 920px);
}

.photo-lightbox__frame {
    margin: 0;
    overflow: hidden;
    background: rgba(8, 8, 10, 0.96);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.photo-lightbox__image {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #050506;
}

.photo-lightbox__caption {
    display: grid;
    gap: .25rem;
    padding: 1rem 1rem 0;
}

.photo-lightbox__caption strong {
    font-size: 1.05rem;
    color: #fff6e3;
}

.photo-lightbox__caption span {
    color: rgba(248, 241, 223, 0.76);
}

.photo-lightbox__caption strong:empty,
.photo-lightbox__caption span:empty {
    display: none;
}

.photo-lightbox__nav,
.photo-lightbox__close {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(12, 12, 14, 0.82);
    color: #fff6e3;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.photo-lightbox__nav:hover,
.photo-lightbox__nav:focus-visible,
.photo-lightbox__close:hover,
.photo-lightbox__close:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 193, 87, 0.38);
    background: rgba(18, 18, 22, 0.94);
}

.photo-lightbox__close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 3;
    font-size: 1.35rem;
}

.image-stack {
    display: grid;
    gap: 1rem;
}

.page-banner--band {
    min-height: clamp(420px, 72vh, 760px);
}

.about-hero-copy {
    width: min(780px, 100%);
}

.band-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.2rem;
}

.band-meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: .55rem .9rem;
    border: 1px solid rgba(255, 193, 87, 0.34);
    background: rgba(8, 8, 10, 0.42);
    color: #f4ead8;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.band-story-section .band-story-copy,
.band-lineup-section .section-head > div,
.band-discography-section .section-head > div {
    text-align: left;
    margin-inline: 0;
}

.band-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 1.5rem;
    align-items: start;
}

.band-story-copy {
    display: grid;
    gap: 1.15rem;
}

.band-bio {
    display: grid;
    gap: .95rem;
}

.band-bio p {
    margin: 0;
}

.band-story-visual {
    display: grid;
    gap: 1rem;
}

.band-story-photo,
.band-release-cover {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18)),
        rgba(11, 11, 13, 0.7);
    box-shadow: var(--shadow);
}

.band-story-photo img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
}

.band-story-note {
    display: grid;
    gap: .4rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid rgba(255, 193, 87, 0.4);
    background: rgba(8, 8, 10, 0.54);
    color: #f0e9de;
}

.band-story-note strong {
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.band-section-head {
    align-items: end;
}

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

.band-member-card {
    position: relative;
    display: grid;
    gap: .7rem;
    min-height: 230px;
    padding: 1.4rem 1.2rem 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(8, 8, 10, 0.12)),
        rgba(8, 8, 10, 0.56);
    box-shadow: var(--shadow);
}

.band-member-index {
    position: absolute;
    top: .9rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
}

.band-member-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.band-member-card p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.band-discography-grid {
    display: grid;
    gap: 1.2rem;
}

.band-release-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 1.15rem;
    align-items: stretch;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(8, 8, 10, 0.12)),
        rgba(8, 8, 10, 0.58);
    box-shadow: var(--shadow);
}

.band-release-cover img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.band-release-copy {
    display: grid;
    gap: .7rem;
    align-content: center;
}

.band-release-copy h3 {
    margin: 0;
    font-size: 1.8rem;
}

.band-release-copy p {
    margin: 0;
    color: var(--muted);
}

.band-release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.band-release-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .42rem .72rem;
    border: 1px solid rgba(255, 193, 87, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #f4ead8;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cta-panel {
    align-items: center;
    justify-content: space-between;
}

.narrow-copy {
    width: min(760px, 100%);
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at top left, rgba(255, 107, 53, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(121, 242, 223, 0.12), transparent 24%),
        linear-gradient(180deg, #070708 0%, #101114 100%);
}

.login-stage {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: .95fr .85fr;
    gap: 1.35rem;
    align-items: stretch;
}

.login-showcase {
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(255, 107, 53, 0.08), rgba(121, 242, 223, 0.04));
    box-shadow: var(--shadow);
    display: grid;
    align-content: center;
    gap: 1rem;
}

.login-showcase h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.login-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .5rem;
}

.login-feature-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: .7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.login-card {
    width: min(560px, 100%);
    display: grid;
    gap: 1rem;
}

.login-card-modern {
    width: 100%;
    padding: 1.6rem;
}

.login-card-modern h2 {
    margin: 0;
    font-size: 2rem;
}

.login-card-wide {
    width: min(840px, 100%);
}

.login-actions,
.form-grid {
    display: grid;
    gap: 1rem;
}

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

.form-grid-full {
    grid-column: 1 / -1;
}

.login-field-stack {
    display: grid;
    gap: .55rem;
}

.login-inline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.login-submit {
    width: 100%;
}

.login-footer-links {
    display: grid;
    gap: .75rem;
}

.social-auth-block {
    display: grid;
    gap: 1rem;
}

.social-auth-separator {
    position: relative;
    text-align: center;
    color: var(--muted);
    font-size: .92rem;
}

.social-auth-separator::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.social-auth-separator span {
    position: relative;
    padding: 0 .8rem;
    background: rgba(24, 24, 29, 0.92);
}

.social-auth-grid {
    display: grid;
    gap: .75rem;
}

.social-auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    min-height: 52px;
    padding: .9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.social-auth-button:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.social-auth-button svg {
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 auto;
}

.social-auth-button.is-disabled {
    opacity: .45;
}

.social-auth-note {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.6;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.product-detail-copy,
.cart-summary,
.prose-block,
.buy-box {
    display: grid;
    gap: 1rem;
}

.field-label {
    display: block;
    margin-bottom: .45rem;
    color: var(--muted);
}

input[type="number"],
input[type="email"],
input[type="text"],
input[type="password"],
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: .8rem .95rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

select,
textarea {
    font: inherit;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input[type="number"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255, 193, 87, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 193, 87, 0.14);
}

.address-autocomplete-wrapper {
    position: relative;
}

.address-guided-field {
    gap: .4rem;
}

.address-field-hint {
    margin: .15rem 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}

.address-field-hint[hidden],
.address-autocomplete-panel[hidden] {
    display: none !important;
}

.address-autocomplete-panel {
    position: absolute;
    top: calc(100% + .35rem);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: .3rem;
    max-height: 18rem;
    overflow-y: auto;
    padding: .45rem;
    border: 1px solid rgba(63, 44, 28, 0.14);
    border-radius: 14px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: 0 20px 42px rgba(32, 20, 12, 0.14);
    backdrop-filter: blur(10px);
}

.address-autocomplete-option {
    width: 100%;
    display: grid;
    gap: .16rem;
    padding: .78rem .85rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #241b14;
    text-align: left;
    cursor: pointer;
}

.address-autocomplete-option strong {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
}

.address-autocomplete-option span {
    color: #6d5d50;
    font-size: .82rem;
    line-height: 1.4;
}

.address-autocomplete-option:hover,
.address-autocomplete-option:focus-visible {
    outline: none;
    background: rgba(61, 136, 86, 0.1);
}

.address-autocomplete-option.is-department {
    background:
        linear-gradient(180deg, rgba(61, 136, 86, 0.12), rgba(255, 193, 87, 0.08)),
        rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(61, 136, 86, 0.16);
}

.address-autocomplete-option.is-department strong {
    color: #214b2d;
}

.buy-box-row {
    align-items: end;
}

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

.detail-panel {
    display: grid;
    gap: 1.15rem;
    padding: clamp(1.15rem, 2vw, 1.65rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(13, 14, 18, 0.88);
    box-shadow: var(--shadow);
}

.section-heading {
    display: grid;
    gap: .5rem;
}

.section-heading-compact {
    gap: .35rem;
}

.account-section-subtitle,
.help-text,
.checkout-submit-note,
.checkout-summary-intro {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.account-page-container,
.checkout-page-container {
    width: min(1280px, 100%);
}

.account-dashboard,
.checkout-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(300px, .66fr);
    gap: 1.5rem;
    align-items: start;
}

.account-main-column,
.account-side-column,
.checkout-main-column,
.checkout-side-column {
    display: grid;
    gap: 1.5rem;
}

.account-side-column,
.checkout-side-column {
    position: sticky;
    top: 6.7rem;
}

.summary-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.summary-line.total {
    padding-top: .9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: .84rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    justify-content: center;
}

.centered-panel {
    width: min(760px, 100%);
    margin-inline: auto;
    justify-items: center;
    text-align: center;
}

.centered-summary-list {
    width: min(520px, 100%);
    text-align: left;
}

.account-form-alert,
.form-error-message {
    margin: 0;
    color: #ffd0c4;
}

.checkout-page-intro,
.checkout-form,
.checkout-summary-panel,
.checkout-summary-list {
    display: grid;
    gap: 1rem;
}

.checkout-contact-line,
.checkout-status-line {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.checkout-contact-line span,
.checkout-status-line span,
.checkout-trust-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .35rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: .9rem;
}

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

.checkout-provider-card,
.checkout-consent-card,
.account-form-section,
.checkout-form-section {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.checkout-provider-card {
    display: grid;
    gap: .5rem;
}

.checkout-provider-card p,
.account-form-section-header p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.checkout-provider-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 30px;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(127, 196, 111, 0.12);
    border: 1px solid rgba(127, 196, 111, 0.22);
    color: #bde4a7;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.checkout-notice-stack {
    display: grid;
    gap: .75rem;
}

.checkout-notice {
    padding: .9rem 1rem;
    border-left: 3px solid rgba(121, 242, 223, 0.38);
    background: rgba(121, 242, 223, 0.06);
    color: #d9faf5;
}

.checkout-notice.is-warning {
    border-left-color: rgba(255, 193, 87, 0.55);
    background: rgba(255, 193, 87, 0.08);
    color: #ffe8bb;
}

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

.account-form-section-header {
    display: grid;
    gap: .35rem;
}

.account-form-section-header h3 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
}

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

.checkout-shipping-method-row {
    padding-top: .25rem;
}

.checkout-consent-toggle {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    cursor: pointer;
}

.checkout-consent-copy {
    display: grid;
    gap: .45rem;
}

.checkout-consent-label {
    font-weight: 700;
    line-height: 1.4;
}

.checkout-consent-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.checkout-consent-note.is-eligible,
.checkout-welcome-note.is-eligible {
    color: #dff2bf;
}

.checkout-welcome-note {
    padding: .95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    line-height: 1.6;
}

.checkout-submit-row {
    display: grid;
    gap: .75rem;
    align-items: start;
}

.checkout-submit {
    width: 100%;
}

.checkout-trust-list {
    display: grid;
    gap: .6rem;
}

.checkout-page-section {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.85), transparent 26%),
        linear-gradient(180deg, #f8f4ee 0%, #efe6db 100%);
    color: #241b14;
}

.checkout-page-section .container {
    position: relative;
    z-index: 1;
}

.checkout-page-container {
    display: grid;
    gap: 1.2rem;
}

.checkout-page-intro {
    width: min(100%, 1160px);
    gap: .9rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(63, 44, 28, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 242, 232, 0.92)),
        #fffaf4;
    box-shadow: 0 20px 44px rgba(48, 29, 14, 0.07);
}

.checkout-page-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
    gap: 1.2rem;
    align-items: center;
}

.checkout-page-copy {
    display: grid;
    gap: .65rem;
}

.checkout-page-section .eyebrow {
    color: #3d8856;
    text-shadow: none;
}

.checkout-page-intro h1 {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #1f140d;
    text-shadow: none;
}

.checkout-page-lead {
    margin: 0;
    max-width: 56ch;
    color: #4b3b30;
    font-size: 1.02rem;
    line-height: 1.65;
}

.checkout-page-section .detail-panel {
    gap: 1rem;
    border: 1px solid rgba(63, 44, 28, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(251, 245, 236, 0.96)),
        #fffaf4;
    box-shadow: 0 24px 56px rgba(48, 29, 14, 0.08);
}

.checkout-page-section .account-section-subtitle,
.checkout-page-section .help-text,
.checkout-page-section .checkout-submit-note,
.checkout-page-section .checkout-summary-intro,
.checkout-page-section .checkout-consent-note,
.checkout-page-section .checkout-welcome-note,
.checkout-page-section .field-label,
.checkout-page-section .account-form-section-header p:last-child {
    color: #6d5d50;
}

.checkout-page-section h1,
.checkout-page-section h2,
.checkout-page-section h3,
.checkout-page-section strong,
.checkout-page-section .checkout-consent-label,
.checkout-page-section label {
    color: #241b14;
}

.checkout-page-section h2,
.checkout-page-section h3 {
    font-family: var(--font-body);
    letter-spacing: -.02em;
}

.checkout-page-section .checkout-dashboard {
    gap: 1.35rem;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.62fr);
}

.checkout-page-section .checkout-main-column,
.checkout-page-section .checkout-side-column {
    gap: 1.2rem;
}

.checkout-page-section .checkout-contact-line,
.checkout-page-section .checkout-status-line {
    gap: .5rem;
}

.checkout-page-section .checkout-contact-line span,
.checkout-page-section .checkout-status-line span,
.checkout-page-section .checkout-trust-list span {
    min-height: 32px;
    padding: .34rem .72rem;
    border: 1px solid rgba(63, 44, 28, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #3d2c20;
    font-size: .83rem;
}

.checkout-stage-list {
    display: grid;
    gap: .65rem;
}

.checkout-stage-list span {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .78rem .9rem;
    border: 1px solid rgba(63, 44, 28, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: #413126;
    font-size: .95rem;
    line-height: 1.35;
}

.checkout-stage-list strong {
    display: inline-grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #1f1a16;
    color: #fff7ee;
    font-size: .88rem;
}

.checkout-page-section .checkout-notice {
    padding: .85rem .95rem;
    border: 1px solid rgba(63, 44, 28, 0.12);
    border-left: 0;
    background: #fff4e5;
    color: #5a4737;
}

.checkout-page-section .checkout-notice.is-warning {
    background: #ffeacf;
    color: #5b4021;
}

.checkout-page-section .account-form-section,
.checkout-page-section .checkout-form-section,
.checkout-page-section .checkout-consent-card,
.checkout-page-section .checkout-welcome-note {
    border: 1px solid rgba(63, 44, 28, 0.08);
    background: #fffaf3;
}

.checkout-step-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .9rem;
    align-items: start;
}

.checkout-step-index {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #1e1a16;
    color: #fffaf2;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1;
}

.checkout-page-section input[type="number"],
.checkout-page-section input[type="email"],
.checkout-page-section input[type="text"],
.checkout-page-section input[type="password"],
.checkout-page-section select,
.checkout-page-section textarea {
    border-radius: 10px;
    border: 1px solid rgba(63, 44, 28, 0.16);
    background: rgba(255, 255, 255, 0.96);
    color: #1f1711;
}

.checkout-page-section input[type="number"]:disabled,
.checkout-page-section input[type="email"]:disabled,
.checkout-page-section input[type="text"]:disabled,
.checkout-page-section input[type="password"]:disabled,
.checkout-page-section select:disabled,
.checkout-page-section textarea:disabled {
    background: #efe6da;
    color: #8a7b6f;
    cursor: not-allowed;
}

.checkout-page-section input[type="number"]:focus,
.checkout-page-section input[type="email"]:focus,
.checkout-page-section input[type="text"]:focus,
.checkout-page-section input[type="password"]:focus,
.checkout-page-section select:focus,
.checkout-page-section textarea:focus {
    border-color: rgba(61, 136, 86, 0.6);
    box-shadow: 0 0 0 3px rgba(127, 196, 111, 0.18);
}

.checkout-page-section .summary-line.total {
    border-top-color: rgba(63, 44, 28, 0.12);
}

.checkout-summary-total-card {
    display: grid;
    gap: .3rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(63, 44, 28, 0.1);
    background: linear-gradient(180deg, #1f1b17, #2d241d);
    color: #f6eee4;
}

.checkout-summary-total-card span {
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(246, 238, 228, 0.76);
}

.checkout-summary-total-card strong {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff8ef;
}

.checkout-page-section .checkout-submit-row {
    gap: .6rem;
}

.checkout-page-section .checkout-submit {
    width: 100%;
    max-width: 340px;
    min-height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #171412, #2a221b);
    color: #fff8ef;
    box-shadow: 0 18px 36px rgba(33, 22, 14, 0.16);
}

.checkout-page-section .checkout-submit:hover {
    background: linear-gradient(135deg, #23201d, #352b23);
}

.checkout-page-section .checkout-summary-panel {
    gap: .95rem;
}

.checkout-summary-items {
    display: grid;
    gap: .75rem;
}

.checkout-summary-item-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: .8rem;
    align-items: center;
    padding: .75rem;
    border: 1px solid rgba(63, 44, 28, 0.08);
    background: rgba(255, 255, 255, 0.78);
}

.checkout-summary-item-card__media {
    overflow: hidden;
    background: rgba(34, 24, 18, 0.05);
}

.checkout-summary-item-card__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.checkout-summary-item-card__media span {
    display: grid;
    place-items: center;
    min-height: 72px;
    color: #836f5e;
    font-size: .76rem;
}

.checkout-summary-item-card__copy {
    display: grid;
    gap: .2rem;
    min-width: 0;
}

.checkout-summary-item-card__copy strong,
.checkout-summary-item-card__price {
    font-family: var(--font-body);
    font-size: .98rem;
}

.checkout-summary-item-card__copy span {
    color: #6d5d50;
    font-size: .83rem;
}

.shop-catalog-section {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 24%),
        linear-gradient(180deg, #f7f2eb 0%, #efe5d8 100%);
    color: #241b14;
}

.shop-catalog-shell {
    display: grid;
    gap: 1.5rem;
}

.shop-catalog-intro {
    display: grid;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border: 1px solid rgba(63, 44, 28, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 239, 228, 0.94)),
        #fffaf4;
    box-shadow: 0 18px 38px rgba(48, 29, 14, 0.06);
}

.shop-catalog-copy {
    display: grid;
    gap: .65rem;
}

.shop-catalog-intro h1 {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #1f140d;
    text-shadow: none;
}

.shop-catalog-intro p:not(.eyebrow) {
    margin: 0;
    max-width: 62ch;
    color: #4e3e31;
    line-height: 1.65;
}

.shop-catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.shop-catalog-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .36rem .78rem;
    border: 1px solid rgba(63, 44, 28, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: #3d2c20;
    font-size: .84rem;
}

.shop-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.shop-catalog-card {
    padding: 0;
    border: 1px solid rgba(63, 44, 28, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(251, 245, 236, 0.96)),
        #fffaf4;
    box-shadow: 0 22px 48px rgba(48, 29, 14, 0.07);
}

.shop-catalog-card-media {
    display: block;
    padding: .8rem;
}

.shop-catalog-media {
    min-height: 320px;
    border-radius: 14px;
}

.shop-catalog-card-copy {
    gap: .9rem;
    margin-top: 0;
    padding: 0 1.05rem 1.05rem;
}

.shop-catalog-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
}

.shop-catalog-card h2 {
    font-family: var(--font-body);
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: -.02em;
    text-shadow: none;
}

.shop-catalog-card p:not(.card-kicker) {
    color: #65564a;
}

.shop-catalog-price {
    color: #1f140d;
    font-size: 1.02rem;
    white-space: nowrap;
}

.shop-catalog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.shop-catalog-stock {
    color: #6e5d4f;
    font-size: .9rem;
}

.shop-catalog-link {
    min-height: 40px;
    padding: .72rem 1rem;
    border-radius: 12px;
    border-color: rgba(63, 44, 28, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #241b14;
}

.shop-empty-card {
    grid-column: 1 / -1;
    border: 1px solid rgba(63, 44, 28, 0.1);
    background: rgba(255, 250, 244, 0.94);
    color: #241b14;
}

.shop-empty-card p {
    color: #65564a;
}

.cart-layout {
    grid-template-columns: 1.4fr .7fr;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 1rem;
}

.cart-actions {
    align-items: end;
    flex-wrap: wrap;
}

.cart-actions form {
    display: grid;
    gap: .5rem;
}

.cart-total {
    font-size: 2.1rem;
}

.member-card {
    text-align: center;
    gap: .8rem;
}

.member-avatar {
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--ice));
    color: #111;
    font-weight: 800;
    font-size: 1.35rem;
}

.flash-stack {
    flex-direction: column;
    margin-top: 1rem;
}

.flash-success { border-color: rgba(84, 202, 122, 0.4); }
.flash-warning { border-color: rgba(255, 193, 87, 0.4); }

.site-footer {
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 9, 0.96);
}

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

.footer-socials,
.footer-meta-links {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}

.footer-brand-mini,
.footer-icon-link,
.footer-meta-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .55rem .85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-brand-mini {
    min-width: 84px;
    border-color: rgba(255, 107, 53, 0.25);
    color: var(--accent);
    padding-inline: .7rem;
}

.footer-brand-mini img {
    display: block;
    max-width: 100%;
    max-height: 22px;
    height: auto;
    aspect-ratio: 484 / 92;
}

.footer-stream-links {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}

.footer-stream-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.footer-stream-link svg {
    display: block;
    width: 18px;
    height: 18px;
}

.footer-stream-link:hover,
.footer-stream-link:focus-visible {
    transform: translateY(-1px);
}

.footer-stream-link.is-soundcloud:hover,
.footer-stream-link.is-soundcloud:focus-visible {
    color: #ff7700;
    border-color: rgba(255, 119, 0, 0.45);
    background: rgba(255, 119, 0, 0.08);
}

.footer-stream-link.is-spotify:hover,
.footer-stream-link.is-spotify:focus-visible {
    color: #1db954;
    border-color: rgba(29, 185, 84, 0.45);
    background: rgba(29, 185, 84, 0.08);
}

.footer-stream-link.is-apple:hover,
.footer-stream-link.is-apple:focus-visible {
    color: #f5d29f;
    border-color: rgba(245, 210, 159, 0.42);
    background: rgba(245, 210, 159, 0.08);
}

.footer-stream-link.is-youtube:hover,
.footer-stream-link.is-youtube:focus-visible {
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.45);
    background: rgba(255, 107, 53, 0.08);
}

.footer-icon-link {
    min-width: 38px;
}

.footer-brand-mini:hover,
.footer-icon-link:hover,
.footer-meta-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 107, 53, 0.45);
    background: rgba(255, 107, 53, 0.08);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .28rem;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

@keyframes disc-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes album-disc-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 980px) {
    .hero-grid,
    .product-detail-grid,
    .split-panel,
    .band-story-layout,
    .cart-layout,
    .detail-aside,
    .login-stage,
    .account-dashboard,
    .checkout-dashboard {
        grid-template-columns: 1fr;
    }

    .hero-visual-shell {
        min-height: auto;
    }

    .hero-video-card {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .card-grid,
    .member-grid,
    .band-lineup-grid,
    .gallery-wall,
    .form-grid,
    .shop-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .band-release-card {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .concert-card {
        grid-template-columns: 82px minmax(0, 1fr) 92px;
        gap: .85rem;
    }

    .concert-side {
        grid-column: 3;
        grid-row: 1;
        justify-items: end;
    }

    .concert-meta {
        grid-column: 2 / 4;
        grid-row: 2;
    }

    .account-side-column,
    .checkout-side-column {
        position: static;
    }

    .album-listen-layout,
    .album-player-card {
        grid-template-columns: 1fr;
    }

    .album-listen-copy h2 {
        max-width: none;
    }

    .album-player-card__visual {
        min-height: 320px;
    }

    .album-player-card__disc {
        width: min(320px, 72%);
    }

    .photo-lightbox__shell {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .photo-lightbox__nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        transform: translateY(-50%);
    }

    .photo-lightbox__nav.is-prev {
        left: .55rem;
    }

    .photo-lightbox__nav.is-next {
        right: .55rem;
    }

    .photo-lightbox__nav:hover,
    .photo-lightbox__nav:focus-visible {
        transform: translateY(calc(-50% - 1px));
    }

    .form-grid-double {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {
    .container { width: min(100% - 1.2rem, 1180px); }
    .nav-toggle { display: inline-flex; }
    .brand-mobile { display: inline-flex; align-items: center; }
    .brand-mobile img { max-height: 54px; }
    .brand-desktop {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + .45rem);
        left: .6rem;
        right: .6rem;
        display: none;
        padding: .75rem;
        border-radius: 22px;
        background: rgba(0, 0, 0, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.is-open {
        display: grid;
    }

    .menu-shell,
    .menu-side {
        display: grid;
        gap: .35rem;
    }

    .menu-shell {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .menu-edge-actions {
        display: grid;
        gap: .35rem;
    }

    .menu-edge-spacer {
        display: none;
    }

    .main-nav a,
    .menu-link,
    .nav-ghost {
        width: 100%;
        justify-content: center;
    }

    .menu-side-left,
    .menu-side-right {
        justify-content: stretch;
    }

    .menu-link::after {
        width: calc(100% - 2.4rem);
    }

    .menu-dropdown {
        width: 100%;
    }

    .dropdown-panel {
        position: static;
        min-width: 0;
        margin-top: .45rem;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
    }

    .hero-section,
    .page-banner {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .card-grid,
    .member-grid,
    .band-lineup-grid,
    .gallery-wall,
    .form-grid,
    .shop-catalog-grid {
        grid-template-columns: 1fr;
    }

    .album-player-card__visual {
        min-height: 280px;
    }

    .album-player-card__disc {
        width: min(280px, 76%);
    }

    .album-player-card__label {
        width: 36%;
    }

    .album-player-card__links {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .album-player-card__actions {
        align-items: stretch;
    }

    .album-player-card__embed iframe,
    .album-player-card__embed-host iframe,
    .album-player-card__embed-host {
        min-height: 300px;
    }

    .about-hero-copy {
        width: min(100%, 42rem);
    }

    .band-hero-meta {
        gap: .55rem;
    }

    .band-meta-chip {
        width: 100%;
        justify-content: center;
    }

    .band-release-card {
        grid-template-columns: 1fr;
    }

    .band-release-cover {
        max-width: 220px;
    }

    .band-story-photo img {
        min-height: 260px;
    }

    .section-head,
    .footer-bar,
    .cta-panel,
    .concert-card {
        display: grid;
    }

    .button-row,
    .buy-box-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-video-card {
        padding: .75rem;
        border-radius: 24px;
    }

    .hero-video-frame {
        border-radius: 18px;
    }

    .hero-video-card__meta {
        display: grid;
        justify-content: stretch;
        padding: .85rem 0 0;
    }

    .login-showcase,
    .login-card-modern {
        padding: 1.2rem;
    }

    .login-inline-head {
        display: grid;
    }

    .gallery-strip {
        grid-auto-columns: 82vw;
    }

    .concert-card {
        grid-template-columns: 72px minmax(0, 1fr) 86px;
        gap: .8rem;
    }

    .concert-date strong {
        font-size: 1.65rem;
    }

    .concert-poster {
        max-width: 86px;
    }

    .concert-meta {
        grid-column: 1 / -1;
        gap: .65rem;
    }

    .checkout-contact-line,
    .checkout-status-line,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-page-intro-grid {
        grid-template-columns: 1fr;
    }

    .shop-catalog-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-consent-toggle {
        grid-template-columns: 1fr;
    }

    .summary-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel nav button {
        padding: 5px 10px;
    }

    .carousel figure {
        width: min(320px, calc(100vw - 2rem));
    }

    .carousel-card {
        height: 420px;
        padding: 14px 28px 46px;
    }

    .carousel-card-title {
        right: 28px;
        bottom: 12px;
        left: 28px;
    }

    .page-banner + .section.som-hero,
    .section.som-hero + .section.som-hero {
        margin-top: 0;
    }

    .photo-slider-controls {
        gap: .65rem;
        align-items: stretch;
    }

    .photo-slider-button {
        min-width: 68px;
    }

    .photo-slide {
        min-height: clamp(220px, 56vw, 320px);
    }

    .photo-lightbox {
        width: min(100vw - .4rem, 1320px);
    }

    .photo-lightbox__close {
        top: .45rem;
        right: .45rem;
    }

    .photo-lightbox__nav {
        width: 44px;
        height: 44px;
    }

    .masked-image-section__action {
        width: 100%;
        justify-content: center;
    }
}

.shop-storefront,
.shop-shelves-section,
.merch-product-section,
.merch-related-section,
.merch-cart-section,
.merch-cart-body {
    color: #f4eee6;
}

.shop-storefront-shell,
.shop-shelves,
.merch-product-shell,
.merch-cart-layout {
    display: grid;
    gap: 1.85rem;
}

.shop-storefront-header,
.merch-cart-header {
    display: grid;
    gap: 1rem;
}

.shop-storefront-copy,
.merch-cart-header > div:first-child {
    display: grid;
    gap: .75rem;
    max-width: 52rem;
}

.shop-storefront-copy h1,
.merch-cart-header h1 {
    margin: 0;
}

.shop-storefront-copy p:not(.eyebrow),
.merch-cart-header p:not(.eyebrow) {
    margin: 0;
    color: rgba(244, 238, 230, 0.8);
    line-height: 1.65;
}

.shop-storefront-stats,
.merch-cart-header__meta,
.merch-spotlight__meta,
.merch-product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.shop-storefront-stats span,
.merch-cart-header__meta span,
.merch-spotlight__meta span,
.merch-product-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: .36rem .72rem;
    border: 1px solid rgba(230, 205, 164, 0.12);
    background: rgba(15, 15, 18, 0.28);
    color: rgba(250, 243, 235, 0.82);
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.merch-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: .4rem .8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.merch-badge--steel {
    background: rgba(164, 175, 189, 0.16);
    color: #eef3f8;
}

.merch-badge--ember {
    background: rgba(255, 107, 53, 0.16);
    color: #ffd7c6;
}

.merch-badge--sand {
    background: rgba(230, 205, 164, 0.16);
    color: #fff1d4;
}

.merch-badge--forest {
    background: rgba(127, 196, 111, 0.16);
    color: #def4d7;
}

.merch-points {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.merch-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .38rem .72rem;
    border: 1px solid rgba(230, 205, 164, 0.1);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(248, 239, 227, 0.86);
    font-size: .8rem;
}

.merch-spotlight {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.3rem);
    border: 1px solid rgba(230, 205, 164, 0.12);
    background:
        linear-gradient(135deg, rgba(14, 14, 16, 0.62), rgba(24, 18, 16, 0.68)),
        rgba(12, 12, 15, 0.54);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.merch-spotlight__media,
.merch-spotlight__copy {
    min-width: 0;
}

.merch-spotlight__frame {
    min-height: clamp(320px, 48vw, 520px);
}

.merch-spotlight__copy {
    display: grid;
    align-content: center;
    gap: .8rem;
}

.merch-spotlight__copy h2,
.merch-shelf__header h2,
.merch-related-head h2 {
    margin: 0;
}

.merch-spotlight__copy p:not(.card-kicker),
.merch-shelf__header p:not(.eyebrow) {
    margin: 0;
    color: rgba(244, 238, 230, 0.76);
    line-height: 1.6;
}

.merch-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.merch-category-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    min-height: 42px;
    padding: .55rem 1rem;
    border: 1px solid rgba(230, 205, 164, 0.12);
    background: rgba(10, 10, 12, 0.24);
    color: #f8efe3;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .78rem;
}

.merch-category-nav a small {
    color: rgba(248, 239, 227, 0.58);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-shelves {
    gap: 2.6rem;
}

.merch-shelf {
    display: grid;
    gap: 1.15rem;
}

.merch-shelf__header {
    display: grid;
    gap: .55rem;
    align-items: end;
}

.merch-shelf__count {
    margin: 0;
    color: rgba(244, 238, 230, 0.58);
    font-size: .84rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.merch-shelf__grid,
.merch-related-grid {
    display: grid;
    gap: 1rem;
}

.merch-card {
    display: grid;
    gap: .8rem;
    padding: 1rem;
    border: 1px solid rgba(230, 205, 164, 0.1);
    background:
        linear-gradient(180deg, rgba(12, 12, 15, 0.76), rgba(18, 14, 13, 0.7)),
        rgba(10, 10, 13, 0.68);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.merch-card__media {
    display: block;
    text-decoration: none;
}

.merch-card__frame {
    min-height: 280px;
}

.merch-card__copy {
    display: grid;
    gap: .6rem;
}

.merch-card__head,
.merch-card__footer,
.merch-card__pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.merch-card__heading-meta {
    display: grid;
    gap: .35rem;
}

.merch-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.merch-card h3 a {
    color: inherit;
    text-decoration: none;
}

.merch-card p:not(.card-kicker) {
    margin: 0;
    color: rgba(244, 238, 230, 0.72);
    line-height: 1.55;
}

.merch-card__compare {
    color: rgba(244, 238, 230, 0.48);
    text-decoration: line-through;
    font-size: .88rem;
}

.merch-card__pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
}

.merch-card__pricing strong {
    font-size: 1.14rem;
}

.merch-card__pricing span {
    color: rgba(244, 238, 230, 0.62);
    font-size: .84rem;
}

.merch-card__button {
    min-width: 170px;
    justify-content: center;
}

.merch-card--compact .merch-card__frame {
    min-height: 220px;
}

.merch-product-shell {
    align-items: start;
}

.merch-product-gallery,
.merch-product-buybox,
.merch-product-panel,
.merch-cart-summary,
.merch-cart-item {
    border: 1px solid rgba(230, 205, 164, 0.1);
    background:
        linear-gradient(180deg, rgba(13, 13, 16, 0.78), rgba(20, 14, 13, 0.72)),
        rgba(9, 9, 12, 0.72);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.merch-product-gallery,
.merch-product-buybox {
    padding: clamp(1rem, 2vw, 1.4rem);
}

.merch-product-gallery {
    display: grid;
    gap: .9rem;
}

.merch-product-gallery__main {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.merch-product-gallery__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.merch-product-gallery__fallback {
    display: grid;
    place-items: center;
    min-height: 420px;
    color: rgba(244, 238, 230, 0.56);
}

.merch-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: .65rem;
}

.merch-product-gallery__thumb {
    padding: 0;
    border: 1px solid rgba(230, 205, 164, 0.12);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.merch-product-gallery__thumb.is-active {
    border-color: rgba(127, 196, 111, 0.7);
    box-shadow: 0 0 0 1px rgba(127, 196, 111, 0.28);
}

.merch-product-gallery__thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.merch-product-buybox {
    display: grid;
    gap: 1rem;
}

.merch-product-header-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
}

.merch-product-signals {
    display: grid;
    gap: .7rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merch-product-signal {
    display: grid;
    gap: .28rem;
    padding: .82rem .9rem;
    border: 1px solid rgba(230, 205, 164, 0.1);
    background: rgba(255, 255, 255, 0.025);
}

.merch-product-signal strong {
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(244, 238, 230, 0.62);
}

.merch-product-signal span {
    color: rgba(244, 238, 230, 0.9);
    line-height: 1.45;
}

.merch-product-facts {
    display: grid;
    gap: .7rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.merch-product-fact {
    display: grid;
    gap: .3rem;
    padding: .85rem .9rem;
    border: 1px solid rgba(230, 205, 164, 0.1);
    background: rgba(255, 255, 255, 0.025);
}

.merch-product-fact strong {
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(244, 238, 230, 0.62);
}

.merch-product-fact span {
    color: rgba(244, 238, 230, 0.86);
    line-height: 1.5;
}

.merch-product-buybox h1 {
    margin: 0;
}

.merch-product-lead {
    margin: 0;
    color: rgba(244, 238, 230, 0.82);
    line-height: 1.7;
}

.merch-product-pricing {
    display: grid;
    gap: .25rem;
}

.merch-product-pricing__compare {
    color: rgba(244, 238, 230, 0.48);
    font-size: .95rem;
    text-decoration: line-through;
}

.merch-product-pricing__compare.is-hidden {
    display: none;
}

.merch-product-pricing__main {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1;
}

.merch-product-pricing__stock {
    color: rgba(244, 238, 230, 0.74);
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.merch-product-pricing__saving {
    color: rgba(127, 196, 111, 0.92);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.merch-product-pricing__saving.is-hidden {
    display: none;
}

.merch-promo-note,
.merch-product-promo-state {
    margin: 0;
    color: rgba(230, 205, 164, 0.86);
    font-size: .9rem;
    line-height: 1.6;
}

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

.merch-product-options {
    display: grid;
    gap: .65rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.merch-product-options legend {
    padding: 0;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(244, 238, 230, 0.68);
}

.merch-product-options__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .7rem;
}

.merch-product-option {
    position: relative;
    display: grid;
    gap: .3rem;
    min-height: 88px;
    padding: .85rem .9rem;
    border: 1px solid rgba(230, 205, 164, 0.1);
    background: rgba(255, 255, 255, 0.018);
    cursor: pointer;
}

.merch-product-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.merch-product-option:has(input:checked) {
    border-color: rgba(127, 196, 111, 0.8);
    background: rgba(127, 196, 111, 0.08);
    box-shadow: 0 0 0 1px rgba(127, 196, 111, 0.28);
}

.merch-product-option.is-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.merch-product-option__label {
    font-size: 1rem;
    font-weight: 700;
}

.merch-product-option__meta {
    color: rgba(244, 238, 230, 0.66);
    font-size: .84rem;
}

.merch-product-form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: .85rem;
}

.field-shell {
    display: grid;
    gap: .45rem;
    min-width: 110px;
}

.merch-product-form__submit {
    min-width: min(100%, 280px);
}

.merch-product-guide-note,
.merch-product-form__note {
    margin: 0;
    color: rgba(244, 238, 230, 0.72);
    line-height: 1.6;
}

.merch-product-guide-note {
    font-size: .92rem;
}

.merch-product-form__note {
    font-size: .88rem;
}

.merch-product-panels {
    display: grid;
    gap: .9rem;
}

.merch-product-panel {
    padding: 1rem 1.05rem;
}

.merch-product-panel--story {
    background:
        linear-gradient(180deg, rgba(18, 16, 14, 0.8), rgba(24, 18, 16, 0.72)),
        rgba(9, 9, 12, 0.72);
}

.merch-product-panel h2,
.merch-cart-summary h2 {
    margin: 0 0 .6rem;
}

.merch-product-panel p,
.merch-cart-summary__note {
    margin: 0;
    color: rgba(244, 238, 230, 0.78);
    line-height: 1.7;
}

.merch-related-head {
    margin-bottom: 1rem;
}

.merch-cart-layout {
    align-items: start;
}

.merch-cart-items {
    display: grid;
    gap: 1rem;
}

.merch-cart-item {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.merch-cart-item__media {
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.merch-cart-item__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.merch-cart-item__media span {
    display: grid;
    place-items: center;
    min-height: 180px;
    color: rgba(244, 238, 230, 0.58);
}

.merch-cart-item__copy {
    display: grid;
    gap: .55rem;
    min-width: 0;
}

.merch-cart-item__copy h2 {
    margin: 0;
    font-size: 1.35rem;
}

.merch-cart-item__copy h2 a {
    color: inherit;
    text-decoration: none;
}

.merch-cart-item__copy p {
    margin: 0;
    color: rgba(244, 238, 230, 0.78);
    line-height: 1.6;
}

.merch-cart-item__variant {
    color: rgba(230, 205, 164, 0.86) !important;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .8rem;
}

.merch-cart-item__pricing {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
}

.merch-cart-item__pricing span {
    color: rgba(244, 238, 230, 0.6);
    font-size: .84rem;
}

.merch-cart-item__compare {
    color: rgba(244, 238, 230, 0.45) !important;
    text-decoration: line-through;
}

.merch-cart-item__actions,
.merch-cart-item__qty-form {
    display: grid;
    gap: .65rem;
}

.merch-cart-item__total {
    display: grid;
    gap: .2rem;
}

.merch-cart-item__total span {
    color: rgba(244, 238, 230, 0.58);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.merch-cart-summary {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.05rem;
}

.merch-cart-summary__total {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.merch-cart-summary__list {
    display: grid;
    gap: .65rem;
}

.merch-cart-summary__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.merch-cart-summary__trust span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .35rem .72rem;
    border: 1px solid rgba(230, 205, 164, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(244, 238, 230, 0.8);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

@media (min-width: 761px) {
    .merch-spotlight,
    .merch-product-shell,
    .merch-cart-item {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }

    .merch-product-buybox {
        position: sticky;
        top: 7rem;
    }

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

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

    .merch-cart-layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    }

    .merch-cart-item {
        grid-template-columns: 180px minmax(0, 1fr) 220px;
        align-items: center;
    }
}

@media (min-width: 1120px) {
    .merch-shelf__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .merch-card__footer,
    .merch-card__head,
    .merch-product-form__row {
        flex-direction: column;
        align-items: stretch;
    }

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

    .checkout-summary-item-card {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .checkout-summary-item-card__price {
        grid-column: 2;
    }

    .merch-card__button,
    .merch-product-form__submit {
        width: 100%;
    }

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

@media (min-width: 761px) {
    .masked-image-section__grid {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        gap: 3rem;
    }

    .press-card.is-featured {
        grid-column: span 6;
    }

    .press-card:not(.is-featured) {
        grid-column: span 3;
    }

    .photo-slider-track {
        grid-auto-columns: calc(100% - 4.5rem);
        padding-inline: 2.25rem;
    }

    .photo-slide {
        min-height: 420px;
    }
}

@media (min-width: 1120px) {
    .press-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .photo-slider-track {
        grid-auto-columns: min(980px, calc(100% - 8rem));
        padding-inline: 4rem;
    }
}

@media (max-width: 1119px) {
    .press-card,
    .press-card.is-featured,
    .press-card:not(.is-featured) {
        grid-column: span 6;
    }

    .press-card.is-featured .press-card__media {
        aspect-ratio: 4 / 5;
    }
}

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

    .press-card,
    .press-card.is-featured,
    .press-card:not(.is-featured) {
        grid-column: auto;
    }

    .press-card::before {
        top: 1.8rem;
        right: -3.15rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .photo-slider-button {
        display: none;
    }

    .photo-slider-controls {
        justify-content: center;
    }
}

/* Editorial about page */
.editorial-band-hero {
    position: relative;
    overflow: clip;
}

.editorial-band-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 10, 11, 0.86) 0%, rgba(9, 10, 11, 0.56) 48%, rgba(9, 10, 11, 0.2) 100%),
        radial-gradient(circle at top right, rgba(255, 112, 46, 0.22), transparent 32%);
    pointer-events: none;
}

.editorial-band-hero__layout,
.editorial-story-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3.25rem);
    align-items: center;
}

.editorial-band-hero__layout {
    min-height: clamp(24rem, 56vh, 40rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .92fr);
}

.editorial-band-hero__copy {
    max-width: 44rem;
}

.editorial-band-hero__copy h1 {
    max-width: 12ch;
}

.editorial-band-hero__lead {
    margin: 1rem 0 0;
    max-width: 34rem;
    font-size: clamp(1.02rem, 1.5vw, 1.28rem);
    line-height: 1.65;
    color: rgba(245, 239, 232, 0.94);
}

.editorial-band-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.5rem;
}

.editorial-band-hero__meta span,
.editorial-story-visual__note span,
.editorial-release-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: .45rem .8rem;
    border: 1px solid rgba(233, 206, 157, 0.18);
    background: rgba(17, 17, 17, 0.38);
    color: #f5efe8;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .74rem;
}

.editorial-band-hero__visual {
    justify-self: end;
    width: min(34rem, 100%);
    aspect-ratio: .95;
    margin: 0;
    border: 1px solid rgba(233, 206, 157, 0.14);
    background: rgba(17, 17, 17, 0.2);
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.editorial-band-hero__visual img,
.editorial-story-visual__figure img,
.editorial-release-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-band-hero__visual img {
    filter: saturate(0.86) contrast(1.04);
}

.editorial-story-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .92fr);
}

.editorial-story-copy,
.editorial-section-head > div {
    position: relative;
    padding-left: 1.35rem;
}

.editorial-story-copy::before,
.editorial-section-head > div::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, rgba(176, 214, 111, 0.9), rgba(233, 206, 157, 0.14));
}

.editorial-story-copy__lead,
.editorial-section-head__lead {
    max-width: 46rem;
    color: #efe8dd;
    font-size: 1.02rem;
}

.editorial-story-copy__body {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.editorial-story-copy__body p {
    margin: 0;
}

.editorial-story-visual {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.editorial-story-visual__figure {
    margin: 0;
    aspect-ratio: .92;
    overflow: hidden;
    border: 1px solid rgba(233, 206, 157, 0.14);
    box-shadow: 0 24px 44px rgba(8, 8, 8, 0.24);
}

.editorial-section-head {
    margin-bottom: 1.4rem;
}

.editorial-section-head h2 {
    max-width: 16ch;
    font-size: clamp(1.85rem, 3.2vw, 2.8rem);
}

.editorial-lineup-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.editorial-member-card,
.editorial-release-card {
    position: relative;
    display: grid;
    gap: .8rem;
    padding: 1.3rem;
    background:
        linear-gradient(180deg, rgba(19, 20, 22, 0.88), rgba(12, 13, 14, 0.9)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(233, 206, 157, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.editorial-member-card {
    align-content: start;
}

.editorial-member-card::after,
.editorial-release-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.editorial-member-card h3,
.editorial-release-card h3 {
    margin: 0;
}

.editorial-member-card__portrait {
    display: grid;
    place-items: center;
    width: min(100%, 9rem);
    aspect-ratio: 1;
    margin: .15rem 0 .1rem;
    overflow: hidden;
    border-radius: 1.15rem;
    background:
        radial-gradient(circle at top, rgba(233, 206, 157, 0.28), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(9, 10, 11, 0.72));
    border: 1px solid rgba(233, 206, 157, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.editorial-member-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-member-card__portrait span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    color: rgba(248, 236, 215, 0.88);
}

.editorial-member-card__subtitle,
.editorial-release-card__subtitle {
    margin: -.2rem 0 0;
    color: #d7c7b2;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .82rem;
}

.editorial-member-card p:last-child,
.editorial-release-card p:last-child {
    margin-bottom: 0;
}

.editorial-release-grid {
    display: grid;
    gap: 1.25rem;
}

.editorial-release-card {
    grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
    align-items: center;
}

.editorial-release-card__cover {
    margin: 0;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.editorial-release-card__copy {
    display: grid;
    gap: .8rem;
}

.editorial-release-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.editorial-concert-layout,
.editorial-merch-layout {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

.editorial-concert-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(18rem, .96fr);
}

.editorial-merch-layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, .92fr);
}

.editorial-concert-copy,
.editorial-merch-copy {
    display: grid;
    gap: 1rem;
}

.editorial-concert-copy__lead,
.editorial-merch-copy__lead {
    max-width: 46rem;
    color: #efe8dd;
    font-size: 1.02rem;
}

.editorial-concert-copy__body,
.editorial-merch-copy__body {
    display: grid;
    gap: 1rem;
}

.editorial-concert-copy__body p,
.editorial-merch-copy__body p {
    margin: 0;
}

.editorial-concert-meta,
.editorial-merch-meta,
.editorial-concert-beat__meta,
.editorial-merch-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.editorial-concert-meta span,
.editorial-merch-meta span,
.editorial-concert-beat__meta span,
.editorial-merch-card__meta span {
    padding: .45rem .7rem;
    border: 1px solid rgba(233, 206, 157, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #f5ecde;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .75rem;
}

.editorial-concert-rail,
.editorial-merch-grid {
    display: grid;
    gap: 1rem;
}

.editorial-concert-beat,
.editorial-merch-card {
    position: relative;
    display: grid;
    gap: .8rem;
    padding: 1.35rem;
    background:
        linear-gradient(180deg, rgba(19, 20, 22, 0.88), rgba(12, 13, 14, 0.9)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(233, 206, 157, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.editorial-concert-beat::after,
.editorial-merch-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.editorial-concert-beat h3,
.editorial-merch-card h3 {
    margin: 0;
}

.editorial-concert-beat__subtitle,
.editorial-merch-card__subtitle {
    margin: -.2rem 0 0;
    color: #d7c7b2;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .82rem;
}

.editorial-concert-beat p:last-child,
.editorial-merch-card p:last-child {
    margin-bottom: 0;
}

.editorial-merch-grid {
    margin-top: 1.35rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.editorial-merch-visual {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.editorial-merch-visual__figure {
    margin: 0;
    aspect-ratio: .98;
    overflow: hidden;
    border: 1px solid rgba(233, 206, 157, 0.14);
    box-shadow: 0 24px 44px rgba(8, 8, 8, 0.24);
}

[data-editorial-module][data-editorial-hydrated='true'] .editorial-band-hero__copy,
[data-editorial-module][data-editorial-hydrated='true'] .editorial-story-copy,
[data-editorial-module][data-editorial-hydrated='true'] .editorial-section-head > div,
[data-editorial-module][data-editorial-hydrated='true'] .editorial-concert-copy,
[data-editorial-module][data-editorial-hydrated='true'] .editorial-merch-copy {
    min-height: max(12rem, calc(var(--editorial-measured-height, 0px) + 2rem));
}

[data-editorial-tone='ember'] .eyebrow {
    color: #c4dc6b;
    text-shadow: 0 0 18px rgba(233, 206, 157, 0.35);
}

[data-editorial-tone='forest'] .eyebrow {
    color: #9dcf7a;
    text-shadow: 0 0 18px rgba(214, 178, 119, 0.26);
}

[data-editorial-tone='ocean'] .eyebrow {
    color: #a7d3d6;
    text-shadow: 0 0 18px rgba(233, 206, 157, 0.24);
}

[data-editorial-tone='ash'] .eyebrow,
[data-editorial-tone='sand'] .eyebrow {
    color: #c2d96b;
    text-shadow: 0 0 18px rgba(233, 206, 157, 0.28);
}

@media (max-width: 980px) {
    .editorial-band-hero__layout,
    .editorial-story-layout,
    .editorial-concert-layout,
    .editorial-merch-layout,
    .editorial-release-card {
        grid-template-columns: 1fr;
    }

    .editorial-band-hero__visual {
        justify-self: stretch;
        width: 100%;
        aspect-ratio: 1.05;
    }
}

@media (max-width: 760px) {
    .editorial-band-hero__copy h1,
    .editorial-section-head h2 {
        max-width: none;
    }

    .editorial-story-copy,
    .editorial-section-head > div {
        padding-left: 1rem;
    }

    .editorial-release-card__cover {
        max-width: 220px;
    }

    .editorial-merch-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAREWELL — Séparation du groupe + liens projets solos
   ═══════════════════════════════════════════════════════════════════════════ */

.farewell-section {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.farewell-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
}

/* ── Message de séparation ───────────────────────────────────────────────── */
.farewell-statement .eyebrow {
    color: var(--accent-soft, #ffc157);
}

.farewell-statement h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: .3rem 0 1rem;
    line-height: 1.1;
}

.farewell-statement p {
    color: var(--muted, #c0b7ae);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

/* ── Liste solos ─────────────────────────────────────────────────────────── */
.farewell-solos > .eyebrow {
    margin-bottom: .9rem;
}

.farewell-solos__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .4rem;
}

.farewell-solos__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .65rem .85rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .025);
    transition: border-color .2s, background .2s;
}

.farewell-solos__item:has(a):hover {
    border-color: rgba(255, 107, 53, .25);
    background: rgba(255, 107, 53, .04);
}

.farewell-solos__identity {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.farewell-solos__avatar {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #ff6b35), var(--ice, #79f2df));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .8rem;
    color: #111;
    flex-shrink: 0;
}

.farewell-solos__identity strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
}

.farewell-solos__identity span {
    display: block;
    font-size: .75rem;
    color: var(--muted, #c0b7ae);
}

.farewell-solos__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent, #ff6b35);
    text-decoration: none;
    white-space: nowrap;
    padding: .3rem .65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 53, .25);
    transition: background .2s, border-color .2s;
}

.farewell-solos__link:hover {
    background: rgba(255, 107, 53, .1);
    border-color: rgba(255, 107, 53, .45);
}

.farewell-solos__tba {
    font-size: .75rem;
    color: var(--muted, #c0b7ae);
    font-style: italic;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .farewell-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
