@font-face {
    font-family: "LastRainbow";
    src: url("../fonts/last-rainbow.woff2") format("woff2");
    font-display: swap;
}

:root {
    --bg: #050505;
    --bg-soft: #0b0b0b;
    --white: #f3f1eb;
    --muted: #aaa9a5;
    --muted-2: #777773;
    --border: rgba(255,255,255,.14);
    --concert-red: #ef3d3d;
    --news-violet: #a855f7;
    --group-orange: #ff7a2f;
    --music-green: #35c76f;
    --photos-yellow: #f4d63b;
    --shop-pink: #ff4fa3;
    --contact-blue: #3e8cff;
    --accent: var(--white);
    --accent-shadow: rgba(255,255,255,.20);
    --glow: rgba(255,255,255,.08);
    --hover-duration: .44s;
    --hover-ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html {
    margin: 0;
    background: var(--bg);
    color-scheme: dark;
    scroll-behavior: smooth;
}
body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(ellipse at 12% 4%, rgba(255,255,255,.025), transparent 24%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: var(--white);
    font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
code { font-family: Consolas, monospace; }

.grain {
    position: absolute;
    inset: 0;
    z-index: 40;
    pointer-events: none;
    opacity: .25;
    mix-blend-mode: screen;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.90' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 250px 250px;
}

main, .site-footer { position: relative; z-index: 10; }

/* ---------- Navigation ---------- */
.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 3vw;
    pointer-events: none;
}
.mini-logo,
.desktop-nav,
.menu-button { pointer-events: auto; }
.mini-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.mini-logo img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 118px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.65));
}
.menu-button {
    border: 0;
    padding: .4rem .1rem;
    background: transparent;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .11em;
    cursor: pointer;
    text-shadow: 0 2px 10px #000;
}
.desktop-nav {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(.8rem, 1.45vw, 1.65rem);
    margin-left: auto;
}
.desktop-nav a {
    position: relative;
    padding: .48rem .08rem .38rem;
    color: rgba(255,255,255,.92);
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(1.02rem, 1.38vw, 1.42rem);
    line-height: .9;
    letter-spacing: -.025em;
    text-decoration: none;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
    transition:
        color var(--hover-duration) var(--hover-ease),
        transform var(--hover-duration) var(--hover-ease);
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .05rem;
    height: 3px;
    background: var(--c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--hover-duration) var(--hover-ease);
}
.desktop-nav a:hover {
    color: var(--c);
    transform: translateY(-1px);
}
.desktop-nav a:hover::after { transform: scaleX(1); }

.rainbow-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: grid;
    place-items: center;
    padding: 5.2rem 6vw 2.2rem;
    background:
        radial-gradient(ellipse at 12% 25%, rgba(239,61,61,.16), transparent 34%),
        radial-gradient(ellipse at 40% 75%, rgba(168,85,247,.18), transparent 36%),
        radial-gradient(ellipse at 78% 28%, rgba(53,199,111,.12), transparent 34%),
        radial-gradient(ellipse at 92% 75%, rgba(62,140,255,.16), transparent 36%),
        #050505;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    pointer-events: none;
    transition: opacity var(--hover-duration) var(--hover-ease), visibility .32s linear;
}
.rainbow-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rainbow-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    opacity: .26;

    mix-blend-mode: screen;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.90' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");

    background-repeat: repeat;
    background-size: 190px 190px;
}

.rainbow-menu nav {
    position: relative;
    z-index: 1;
    width: min(820px, 86vw);
    display: flex;
    flex-direction: column;
}
.rainbow-menu nav a {
    padding: .12em 0;
    color: var(--white);
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(2.55rem, min(6.4vw, 9.2vh), 6.2rem);
    line-height: .88;
    letter-spacing: -.045em;
    text-decoration: none;
    text-shadow: 4px 4px 0 color-mix(in srgb, var(--c) 28%, #000 72%);
    transition:
        color var(--hover-duration) var(--hover-ease),
        text-shadow var(--hover-duration) var(--hover-ease),
        transform var(--hover-duration) var(--hover-ease);
}
.rainbow-menu nav a:hover {
    color: var(--c);
    text-shadow: 4px 4px 0 color-mix(in srgb, var(--c) 52%, #000 48%);
    transform: translateX(10px) rotate(-.2deg);
}

/* ---------- Accueil / hero ---------- */
.hero {
    position: relative;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    background: #080808;
}
.hero-video {
    --hero-x: 0;
    --hero-y: 0;
    position: absolute;
    inset: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    object-fit: cover;
    filter: contrast(1.18) saturate(.86) brightness(.70);
    transform: translate(calc(var(--hero-x) * 1px), calc(var(--hero-y) * 1px)) scale(1.02);
    transition: transform .22s ease-out;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, transparent 0 25%, rgba(0,0,0,.22) 60%, rgba(0,0,0,.74) 100%),
        linear-gradient(to top, rgba(0,0,0,.62), transparent 48%);
}
.hero-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6vw;
}
.hover-logo { position: relative; width: min(760px, 72vw); }
.hero-logo {
    display: block;
    width: 100%;
    max-height: 38vh;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,.55));
}
.hero-logo-animated {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .12s linear;
}
@media (hover:hover) and (pointer:fine) {
    .hover-logo:hover .hero-logo-static { opacity: 0; }
    .hover-logo:hover .hero-logo-animated { opacity: 1; }
}
.hero-logo-fallback {
    color: #fff;
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(4.5rem, 12vw, 11rem);
    line-height: .76;
    letter-spacing: -.05em;
    text-align: center;
    text-shadow: 4px 5px 0 rgba(168,85,247,.55), -3px -2px 0 rgba(62,140,255,.35);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
    margin-top: clamp(1rem, 2vw, 1.6rem);
}
.hero-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: .62rem 1rem;
    border: 1px solid rgba(255,255,255,.82);
    background: rgba(0,0,0,.18);
    color: #fff;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 3px 3px 0 rgba(0,0,0,.30);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition:
        background var(--hover-duration) var(--hover-ease),
        color var(--hover-duration) var(--hover-ease),
        transform var(--hover-duration) var(--hover-ease),
        box-shadow var(--hover-duration) var(--hover-ease);
}
.hero-actions a:hover {
    background: #fff;
    color: #050505;
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 rgba(0,0,0,.42);
}


/* ---------- Système de couleurs ---------- */
#concerts, .page-concerts {
    --accent: var(--concert-red);
    --accent-shadow: rgba(239,61,61,.42);
    --glow: rgba(239,61,61,.20);
}
#actualites, .page-actualites {
    --accent: var(--news-violet);
    --accent-shadow: rgba(168,85,247,.40);
    --glow: rgba(168,85,247,.19);
}
#groupe, .page-groupe {
    --accent: var(--group-orange);
    --accent-shadow: rgba(255,122,47,.40);
    --glow: rgba(255,122,47,.18);
}
#musique, .page-musique {
    --accent: var(--music-green);
    --accent-shadow: rgba(53,199,111,.37);
    --glow: rgba(53,199,111,.17);
}
#photos, .page-photos {
    --accent: var(--photos-yellow);
    --accent-shadow: rgba(244,214,59,.34);
    --glow: rgba(244,214,59,.15);
}
#boutique, .page-boutique {
    --accent: var(--shop-pink);
    --accent-shadow: rgba(255,79,163,.42);
    --glow: rgba(255,79,163,.19);
}
#contact, .page-contact {
    --accent: var(--contact-blue);
    --accent-shadow: rgba(62,140,255,.42);
    --glow: rgba(62,140,255,.19);
}

/* ---------- Titres / marqueur ---------- */
.section-title {
    position: relative;
    isolation: isolate;
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: flex-start;
    gap: 0;
    margin: 0 0 3rem;
    color: #fff;
}
.section-title h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: .78;
    letter-spacing: -.045em;
    text-shadow: 4px 4px 0 var(--accent-shadow);
}
.section-title::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 1%;
    right: -4%;
    bottom: 3%;
    height: clamp(9px, 1.1vw, 16px);
    background: var(--accent);
    opacity: .78;
    clip-path: polygon(0 34%, 6% 12%, 17% 31%, 29% 7%, 44% 28%, 58% 12%, 73% 32%, 88% 8%, 100% 27%, 98% 73%, 84% 61%, 70% 82%, 55% 63%, 39% 86%, 22% 66%, 7% 91%, 0 72%);
    transform-origin: left center;
    transform: translateX(0) rotate(-.65deg) scaleX(1);
    transition: transform .52s var(--hover-ease), opacity .52s var(--hover-ease);
}
.section-title:hover::after {
    transform: translateX(1.4%) rotate(-2.18deg) scaleX(1.025) skewX(-1deg);
    opacity: .88;
}
.section-title-link { text-decoration: none; }
.section-title-link:hover h1 { transform: translateX(6px); }
.section-title-link h1 { transition: transform var(--hover-duration) var(--hover-ease); }

/* ---------- Accueil : sections ---------- */
.page-section { position: relative; }
.home-image-section {
    isolation: isolate;
    min-height: 20vh;
    padding: clamp(5.3rem, 6.5vw, 7.4rem) 3vw clamp(2rem, 2.8vw, 3.4rem);
    background: transparent;
    overflow: hidden;
}
.home-image-section::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 116vw;
    height: 112%;
    max-width: none;
    max-height: none;
    left: -8vw;
    top: -6%;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, var(--glow) 7%, rgba(0,0,0,0) 76%);
    filter: blur(92px);
    opacity: .72;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.home-section-core {
    position: relative;
    z-index: 2;
    width: min(1180px, 76vw);
    margin: 0 auto;
}
.home-image-section .section-title {
    z-index: 5;
    margin: 0 auto clamp(2rem, 2.8vw, 3rem);
}
.home-image-section .section-title h1 {
    font-size: clamp(3.15rem, 6vw, 6.4rem);
    text-align: center;
}
.home-section-layout {
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(280px, 420px);
    gap: clamp(1.8rem, 3vw, 3rem);
    align-items: start;
    justify-content: center;
}
.home-section-layout.no-illustration {
    display: flex;
    justify-content: center;
    width: 100%;
}
.home-section-content {
    min-width: 0;
    width: 100%;
    max-width: 720px;
    justify-self: center;
}
.home-section-layout.no-illustration .home-section-content {
    width: min(100%, 820px);
    max-width: 820px;
    margin-inline: auto;
    justify-self: auto;
}
.home-section-layout.no-illustration .shop-grid-home,
.home-section-layout.no-illustration .photo-carousel {
    margin-inline: auto;
}
#musique .home-section-layout.no-illustration .music-home-main {
    width: min(100%, 680px);
    margin-inline: auto;
}
#concerts .home-section-content,
#concerts .concert-table {
    width: 100%;
    max-width: none;
}
.home-section-illustration {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-top: .25rem;
    overflow: visible;
    color: var(--accent);
    background: #090909;
    text-decoration: none;
    transform: rotate(.35deg);
    transition: transform var(--hover-duration) var(--hover-ease), filter var(--hover-duration) var(--hover-ease);
}
.home-section-illustration img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 1px solid rgba(255,255,255,.12);
}
#groupe .home-section-illustration img { object-position: center 42%; }
#musique .home-section-illustration img { object-position: center 48%; }
#concerts .home-section-illustration img { object-position: center 45%; }
#actualites .home-section-illustration img { object-position: center 50%; }
#boutique .home-section-illustration img { object-position: center 48%; }
#photos .home-section-illustration img { object-position: center 44%; }
#contact .home-section-illustration img { object-position: center 48%; }
.home-section-illustration::before,
.page-hero-media::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: -10px -12px -9px -11px;
    border: 7px solid currentColor;
    opacity: .77;
    clip-path: polygon(1% 8%,96% 1%,100% 12%,98% 91%,91% 100%,4% 97%,0 84%);
    transform: rotate(-.65deg);
    pointer-events: none;
}
.home-section-illustration::after,
.page-hero-media::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: -4px -7px -6px -5px;
    border: 3px solid currentColor;
    opacity: .38;
    clip-path: polygon(3% 3%,99% 6%,97% 96%,7% 100%,0 88%);
    transform: rotate(.45deg);
    pointer-events: none;
}
.home-side-decor {
    display: none;
    position: absolute;
    z-index: 1;
    top: 7%;
    bottom: 7%;
    width: clamp(68px, 7vw, 112px);
    height: auto;
    pointer-events: none;
    opacity: .96;
}
.home-side-decor-left { left: 1.2vw; transform: rotate(-1.5deg); }
.home-side-decor-right { right: 1.2vw; transform: rotate(1.5deg); }
.home-side-decor img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
@media (hover:hover) and (pointer:fine) {
    .home-section-illustration:hover { transform: rotate(-.15deg) scale(1.009); filter: contrast(1.03); }
}

.preview-kicker,
.home-card-kicker {
    display: inline-block;
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
}
.preview-head { margin-bottom: .7rem; }
.preview-copy,
.music-home-main,
.contact-preview-inner { max-width: 680px; }
.home-preview .big-copy {
    margin: 0 0 1.4rem;
    color: #fff;
    font-size: clamp(1.08rem, 1.6vw, 1.42rem);
    line-height: 1.58;
    letter-spacing: -.01em;
}
.home-section-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.35rem, 2vw, 2rem);
}
.section-link {
    display: inline-flex;
    width: auto;
    align-items: center;
    justify-content: center;
    padding: .52rem .72rem;
    border: 0;
    background: var(--white);
    color: #050505;
    font-size: .80rem;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--accent);
    transition: background var(--hover-duration) var(--hover-ease), transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease);
}
.section-link:hover {
    background: var(--accent);
    transform: translate(-1px,-1px) scale(1.012);
    box-shadow: 6px 6px 0 var(--accent-shadow);
}
.large-link { font-size: .80rem; }

/* Aperçus contenus dans la colonne centrale. */
.home-preview .concert-table { width: 100%; max-width: none; }
.news-grid-home { grid-template-columns: 1fr; max-width: 680px; }
.music-home-main { grid-template-columns: 1fr; align-items: start; }
.home-preview .photo-carousel { width: 100%; max-width: 720px; }
.home-preview .shop-grid-home { max-width: 680px; }
.contact-home-grid {
    display: grid;
    grid-template-columns: minmax(210px,.72fr) minmax(320px,1.28fr);
    gap: clamp(1.2rem, 2vw, 1.8rem);
    align-items: start;
}
.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
}
.contact-privacy {
    margin: .85rem 0 0;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.45;
}
.contact-privacy a { color: var(--accent); }

/* ---------- Concerts ---------- */
.concert-block { margin-bottom: 4.5rem; }
.concert-block > h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.concert-table,
.past-list { border-top: 1px solid var(--border); }
.concert-row {
    position: relative;
    display: grid;
    grid-template-columns: 130px minmax(190px,1.3fr) minmax(150px,1fr) auto;
    gap: 1.5rem;
    align-items: center;
    min-height: 86px;
    border-bottom: 1px solid var(--border);
    transition: transform var(--hover-duration) var(--hover-ease), background var(--hover-duration) var(--hover-ease);
}

.concert-row:hover {
    transform: translateX(3px);
    background: rgba(255,255,255,.024);
}
.concert-row time {
    color: var(--accent);
    font-weight: 800;
}
.concert-place { display: flex; flex-direction: column; gap: .12rem; }
.concert-place strong { color: #fff; font-size: 1.02rem; }
.concert-place span,
.concert-info { color: var(--muted); font-size: .92rem; }
.concert-ticket {
    display: inline-block;
    padding: .38rem .68rem;
    color: #fff;
    background: transparent;
    border: 2px solid var(--concert-red);
    box-shadow: 3px 3px 0 rgba(239,61,61,.22);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    text-decoration: none;
    transform: rotate(-.35deg);
    transition:
        background var(--hover-duration) var(--hover-ease),
        transform var(--hover-duration) var(--hover-ease),
        box-shadow var(--hover-duration) var(--hover-ease);
}
.concert-ticket:hover {
    background: var(--concert-red);
    color: #fff;
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 5px 5px 0 rgba(239,61,61,.30);
}
.concert-ticket.is-empty,
.concert-info.is-empty {
    visibility: hidden;
    pointer-events: none;
}
.muted { color: var(--muted-2); }
.past-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1rem;
    padding: 0 0 .8rem;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: none;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}
.past-toggle span { color: var(--accent); font-size: 1.25rem; }
.home-preview .concert-table { max-width: 980px; }
.home-preview .concert-row {
    grid-template-columns: 104px minmax(0,1fr) auto;
    gap: 1rem;
    min-height: 72px;
}
.home-preview .concert-info { display: none; }
.home-preview .concert-ticket { font-size: .76rem; }

/* ---------- Actualités ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1.35rem;
}
.news-card-link { display: block; color: inherit; text-decoration: none; }
.news-card {
    display: grid;
    grid-template-columns: 180px minmax(0,1fr);
    min-height: 150px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.025);
    transition: transform var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease), background var(--hover-duration) var(--hover-ease);
}
.news-card-link:hover .news-card {
    transform: translateY(-3px) rotate(-.10deg);
    border-color: var(--accent);
    background: rgba(255,255,255,.04);
}
.news-image { min-height: 150px; background: #111; }
.news-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.news-image-placeholder { display: grid; place-items: center; color: var(--accent); font-weight: 800; }
.news-copy { padding: 1.1rem 1.2rem; }
.news-copy time { color: var(--accent); font-size: .72rem; font-weight: 800; }
.news-card h2 {
    margin: .35rem 0 .5rem;
    color: #fff;
    font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.08;
}
.news-card p { margin: 0 0 .75rem; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.news-read-more { color: var(--accent); font-size: .76rem; font-weight: 800; }

/* ---------- Groupe ---------- */
.group-description {
    max-width: 1800px;
    margin: 0 0 4.5rem;
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.2rem);
    line-height: 1.55;
    letter-spacing: -.015em;
}
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(1.5rem,3vw,3rem);
}
.member {
    min-width: 0;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(255,255,255,.11);
    transition: transform var(--hover-duration) var(--hover-ease);
}
.member:hover { transform: translateY(-3px) rotate(.3deg); }
.member-photo,
.media-placeholder.portrait {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin-bottom: 1.35rem;
    background: #101010;
}
.member h2 {
    margin: 0;
    color: #fff;
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(2.2rem,3.5vw,4rem);
    line-height: .9;
    text-shadow: 3px 3px 0 var(--accent-shadow);
}
.member p { color: #fff; line-height: 1.62; }
.member-role {
    margin: .55rem 0 .8rem;
    color: var(--accent) !important;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ---------- Musique ---------- */
.music-home-main { display: grid; gap: 1.25rem; }
.home-singles-list { display: grid; gap: .72rem; }
.home-single-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 76px;
    padding: .35rem .65rem .35rem .35rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.025);
    text-decoration: none;
    transition: transform var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease);
}
.home-single-card:hover { transform: translateX(3px); border-color: rgba(53,199,111,.42); }
.home-single-card img,
.home-single-placeholder { width: 76px; height: 76px; object-fit: cover; background: #111; }
.home-single-placeholder { display: grid; place-items: center; color: var(--accent); font-size: .68rem; font-weight: 800; }
.home-single-card strong {
    display: block;
    color: #fff;
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: 1.65rem;
    line-height: .95;
}
.home-single-card span { color: var(--muted); font-size: .80rem; }
.home-album-card {
    padding: 1.05rem 1.15rem;
    border-left: 4px solid var(--accent);
    background: rgba(53,199,111,.045);
}
.home-album-card h2 {
    margin: .25rem 0 .55rem;
    color: #fff;
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(2rem,3vw,3.3rem);
    line-height: 1.3;
}
.home-album-card p { margin: 0; color: var(--muted); line-height: 1.5; }

.album-project {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(250px,360px);
    gap: clamp(2rem,5vw,5rem);
    align-items: start;
    margin-bottom: 5rem;
}
.album-copy { min-width: 0; }
.album-project .label {
    display: inline-block;
    margin: 0 0 1.2rem;
    padding: .28rem .46rem;
    background: var(--accent);
    color: #050505;
    font-size: .70rem;
    font-weight: 900;
    letter-spacing: .12em;
}
.album-project h2 {
    margin: 0 0 1.8rem;
    color: #fff;
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(3rem,6vw,6.2rem);
    line-height: .86;
    letter-spacing: -.035em;
    text-shadow: 4px 4px 0 var(--accent-shadow);
}
.album-project p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.album-media { width: 100%; max-width: 360px; justify-self: end; }
.album-cover,
.media-placeholder.square { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; background: #111; }
.singles > h2 {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: .78rem;
    letter-spacing: .15em;
}
.single {
    position: relative;
    display: grid;
    grid-template-columns: 120px minmax(0,1fr);
    gap: 1.5rem;
    align-items: center;
    min-height: 145px;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    transition: transform var(--hover-duration) var(--hover-ease), background var(--hover-duration) var(--hover-ease);
}
.single:last-child { border-bottom: 1px solid var(--border); }
.single:hover { transform: translateX(3px); background: rgba(53,199,111,.025); }
.single-card-overlay { position: absolute; inset: 0; z-index: 1; }
.single-cover,
.media-placeholder.cover { display: block; width: 120px; height: 120px; object-fit: cover; background: #111; }
.media-placeholder { display: grid; place-items: center; color: var(--muted-2); font-size: .72rem; letter-spacing: .08em; }
.single-copy { position: relative; z-index: 2; pointer-events: none; }
.single-copy h3 {
    margin: 0;
    color: #fff;
    font-family: "LastRainbow", "Segoe UI", sans-serif;
    font-size: clamp(2rem,4vw,4rem);
    line-height: .9;
}
.single-copy > p { margin: .35rem 0 .7rem; color: var(--muted); }
.stream-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.stream-links a {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    color: var(--accent);
    font-size: .80rem;
    font-weight: 800;
    text-decoration: none;
}

/* ---------- Photos ---------- */
.photo-grid { columns: 3 280px; column-gap: 1rem; }
.photo-item {
    position: relative;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    break-inside: avoid;
}
.photo-item img { display: block; width: 100%; height: auto; }
.photo-grid .photo-item::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 102px;
    height: 30px;
    left: 50%;
    top: -9px;
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(238,234,220,.52);
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
    pointer-events: none;
}
.photo-grid .photo-item:nth-child(3n+2)::before { left: 27%; transform: rotate(4deg); }
.photo-grid .photo-item:nth-child(3n)::before { left: 63%; transform: rotate(-6deg); }
.photo-carousel {
    position: relative;
    max-width: 720px;
    padding: 0 3.2rem;
}
.photo-strip {
    display: flex;
    gap: .8rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}
.photo-strip::-webkit-scrollbar { display: none; }

.photo-strip .photo-item {
    flex: 0 0 auto;
    width: auto;
    height: 270px;
    margin: 0;
}
.photo-strip .photo-item img { width: auto; height: 100%; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.photo-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    background: #0a0a0a;
    color: #fff;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background var(--hover-duration) var(--hover-ease), color var(--hover-duration) var(--hover-ease), transform var(--hover-duration) var(--hover-ease);
}
.photo-arrow:hover { background: var(--accent); color: #050505; transform: translateY(-50%) scale(1.045); }
.photo-arrow-left { left: 0; }
.photo-arrow-right { right: 0; }
.photo-empty { padding: 2rem; border: 1px dashed var(--border); color: var(--muted); }
.photo-empty p { color: #fff; font-weight: 800; }
.photo-empty.compact { max-width: 650px; }

/* ---------- Pages internes ---------- */
.inner-page {
    min-height: calc(100vh - 100px);
    background:
        radial-gradient(circle at 5% 18%, var(--glow) 5%, rgba(0,0,0,0) 60%),
        linear-gradient(180deg, #050505, #030303);
}
.inner-hero {
    padding: clamp(8rem,11vw,10rem) 4vw 2rem;
}
.inner-hero .section-title { margin-bottom: 2.75rem; }
.inner-hero-lower {
    display: block;
    max-width: 760px;
}
.page-intro {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.08rem,1.55vw,1.35rem);
    line-height: 1.62;
}
.page-hero-media {
    position: relative;
    width: min(100%,700px);
    aspect-ratio: 16 / 9;
    justify-self: end;
    color: var(--accent);
    background: #0b0b0b;
    transition: transform var(--hover-duration) var(--hover-ease);
}
.page-hero-media img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 1px solid rgba(255,255,255,.12);
}
@media (hover:hover) and (pointer:fine) {
    .page-hero-media:hover { transform: rotate(-.18deg) scale(1.005); }
}
.page-hero-placeholder {
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
}
.content-section { padding: 1.8rem 4vw 6.5rem; }
.page-concerts .content-section { padding-top: 1.35rem; }
.empty-state { color: var(--muted); }

/* ---------- Boutique ---------- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(1.2rem,2.4vw,2rem);
}
.shop-home-block {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
}
.shop-home-block .preview-head {
    width: 100%;
}
.shop-grid-home {
    width: fit-content;
    max-width: 680px;
    margin-inline: 0;
    grid-template-columns: repeat(var(--home-product-count, 3), minmax(180px, 210px));
    justify-content: start;
    gap: 1rem;
}
.shop-product {
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}
.shop-product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.025);
    transition:
        transform var(--hover-duration) var(--hover-ease),
        border-color var(--hover-duration) var(--hover-ease),
        background var(--hover-duration) var(--hover-ease);
}
.shop-product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #101010;
}
.shop-product-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity .48s var(--hover-ease),
        transform .62s var(--hover-ease),
        filter .48s var(--hover-ease);
}
.shop-product-image-primary { opacity: 1; }
.shop-product-image-hover { opacity: 0; transform: scale(1.025); }
.shop-product-placeholder {
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .11em;
}
.shop-product-copy {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem 1.05rem;
}
.shop-product-name {
    margin: 0;
    color: #fff;
    font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1rem,1.5vw,1.35rem);
    line-height: 1.12;
    letter-spacing: -.02em;
}
.shop-product-action {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 900;
    white-space: nowrap;
}
.shop-product.is-disabled .shop-product-action { color: var(--muted-2); }
.shop-empty {
    padding: 2rem;
    border: 1px dashed var(--border);
    color: var(--muted);
}
.shop-empty p { margin-top: 0; color: #fff; font-weight: 900; }
@media (hover:hover) and (pointer:fine) {
    .shop-product:not(.is-disabled):hover .shop-product-card {
        transform: translateY(-4px) rotate(-.12deg);
        border-color: var(--accent);
        background: rgba(255,255,255,.04);
    }
    .shop-product:hover .shop-product-image-primary.has-hover {
        opacity: 0;
        transform: scale(1.018);
        filter: contrast(1.03);
    }
    .shop-product:hover .shop-product-image-hover {
        opacity: 1;
        transform: scale(1);
        filter: contrast(1.03);
    }
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px,.85fr) minmax(360px,1.15fr);
    gap: clamp(2.5rem,6vw,6rem);
    align-items: start;
}
.contact-heading {
    max-width: 600px;
    margin: 0 0 1.6rem;
    color: #fff;
    font-size: clamp(1.55rem,2.35vw,2.3rem);
    line-height: 1.15;
    letter-spacing: -.02em;
}
.contact-direct-email,
.pressbook-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 0 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(62,140,255,.24);
    background: rgba(62,140,255,.035);
}
.contact-direct-email > span,
.pressbook-download > span:first-child {
    color: var(--accent);
    font-size: .70rem;
    font-weight: 900;
    letter-spacing: .13em;
}
.contact-direct-email a { color: #fff; font-weight: 700; text-decoration: none; }
.contact-direct-email a:hover { color: var(--accent); }
.pressbook-link {
    padding: .46rem .64rem;
    background: var(--white);
    color: #050505;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--accent);
}
.pressbook-link:hover { background: var(--accent); }
.pressbook-missing { color: var(--muted); font-size: .78rem; }
.social-list { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; margin-top: 1.4rem; }
.social-list .social-icon-link { color: rgba(255,255,255,.78); }
.social-list .social-icon-link:hover { color: var(--accent); }
.contact-form-wrap { min-width: 0; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .38rem; }
.contact-form label > span { color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .07em; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0;
    outline: 0;
    background: rgba(255,255,255,.025);
    color: #fff;
    padding: .78rem .85rem;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.contact-form button {
    justify-self: start;
    border: 0;
    padding: .58rem .78rem;
    background: var(--white);
    color: #050505;
    font-size: .82rem;
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--accent);
    cursor: pointer;
    transition: background var(--hover-duration) var(--hover-ease), transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease);
}
.contact-form button:hover {
    background: var(--accent);
    transform: translate(-1px,-1px) scale(1.012);
    box-shadow: 6px 6px 0 var(--accent-shadow);
}
.contact-form-note { margin: 1rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.form-status { margin: 0 0 1rem; padding: .75rem .9rem; border-left: 3px solid var(--accent); color: #fff; background: rgba(255,255,255,.035); }
.form-status.error { border-color: var(--concert-red); }
.form-status.success { border-color: var(--music-green); }


/* ---------- Mentions légales ---------- */
.legal-content { width: min(1180px, 100%); }
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1.3rem;
    margin-bottom: 1.3rem;
}
.legal-card,
.legal-text {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.022);
    padding: clamp(1.2rem, 2.5vw, 2rem);
}
.legal-text { margin-top: 1.3rem; }
.legal-card h2,
.legal-text h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 1.25rem;
}
.legal-card dl { margin: 0; }
.legal-card dl > div {
    display: grid;
    grid-template-columns: minmax(120px,.35fr) minmax(0,1fr);
    gap: 1rem;
    padding: .68rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.legal-card dl > div:first-child { border-top: 0; }
.legal-card dt { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.legal-card dd { margin: 0; color: #fff; overflow-wrap: anywhere; }
.legal-card a,
.legal-text a { color: var(--contact-blue); }
.legal-text p { max-width: 980px; color: var(--muted); line-height: 1.7; }
.legal-missing { color: #f0b56b; font-style: italic; }

/* ---------- Article ---------- */
.article-shell { width: min(900px,92vw); margin: 0 auto; padding: 9rem 0 6rem; }
.article-back { color: var(--accent); font-size: .80rem; font-weight: 800; text-decoration: none; }
.article-header { margin: 2.2rem 0 2rem; }
.article-header time { color: var(--accent); font-size: .78rem; font-weight: 800; }
.article-header h1 {
    margin: .6rem 0 1rem;
    color: #fff;
    font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2.6rem,6vw,5.8rem);
    line-height: .94;
    letter-spacing: -.045em;
}
.article-lead { color: #d3d3d0; font-size: clamp(1.15rem,2vw,1.5rem); line-height: 1.45; }
.article-cover { margin: 0 0 2.5rem; }
.article-cover img,
.article-inline-image { display: block; width: 100%; height: auto; }
.article-content { color: #e8e8e4; font-size: 1.03rem; line-height: 1.75; }
.article-content h2 { margin: 2.5rem 0 .8rem; color: #fff; font-size: 1.7rem; }
.article-content h3 { margin: 2rem 0 .6rem; color: #fff; font-size: 1.3rem; }
.article-content a { color: var(--accent); }
.article-content figure { margin: 2rem 0; }

/* ---------- Footer / réseaux ---------- */
.site-footer {
    display: grid;
    justify-items: center;
    gap: .9rem;
    margin: 0;
    padding: 1.55rem 4vw 1.3rem;
    border-top: 3px solid rgba(255,255,255,.1);
    background: transparent;
}
.footer-socials { display: flex; align-items: center; justify-content: center; gap: .75rem; min-height: 30px; }
.social-icon-link {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color var(--hover-duration) var(--hover-ease), transform var(--hover-duration) var(--hover-ease);
}
.social-icon-link:hover { color: #fff; transform: translateY(-1.5px); }
.social-icon-link svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-icon-link .fill-dot,
.social-icon-link .fill-shape { fill: currentColor; stroke: none; }
.social-icon-link .cut-line { fill: none; stroke: currentColor; stroke-width: 1.45; }
.footer-meta { display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap; }
.footer-copyright { color: rgba(255,255,255,.40); font-size: .64rem; letter-spacing: .11em; }
.footer-legal-link { color: rgba(255,255,255,.48); font-size: .68rem; text-decoration: none; }
.footer-legal-link:hover { color: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    grid-template-rows: 1fr auto;
    place-items: center;
    padding: 4rem 4vw 2rem;
    background: rgba(0,0,0,.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--hover-duration) var(--hover-ease), visibility .26s linear;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 78vh; object-fit: contain; }
.lightbox p { margin: 1rem 0 0; color: var(--muted); }
.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    border: 0;
    background: none;
    color: #fff;
    font-size: 2.3rem;
    cursor: pointer;
}

/* ---------- Mouvement léger, sans animation de halos ---------- */
.motion-ready {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .58s cubic-bezier(.22,.61,.36,1), transform .58s cubic-bezier(.22,.61,.36,1);
}
.motion-ready.motion-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* ---------- Navigation desktop ---------- */
@media (min-width: 1001px) {
    .topbar {
        min-height: 76px;
        padding: 16px 3vw;
        background: rgba(5,5,5,.38);
        border-bottom: 1px solid rgba(255,255,255,.06);
        backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        transition:
            background .3s ease,
            border-color .3s ease,
            backdrop-filter .3s ease,
            -webkit-backdrop-filter .3s ease;
    }
    .page-home .topbar:not(.is-scrolled) {
        background: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .mini-logo img { height: 46px; max-width: 132px; }
    .desktop-nav { display: flex; }
    .menu-button { display: none; }
    .rainbow-menu { display: none; }
}

@media (min-width: 1200px) {
    .home-side-decor { display: block; }
}

@media (max-width: 1100px) {
    .concert-row { grid-template-columns: 105px 1.2fr 1fr auto; gap: 1rem; }
    .members-grid { gap: 1.4rem; }
}

@media (max-width: 900px) {
    .topbar { padding: 18px 5vw; }
    .mini-logo img { height: 40px; }
    .menu-button { font-size: .96rem; }
    .home-image-section {
        min-height: auto;
        padding: 3rem 5vw 3rem;
        overflow: hidden;
    }
    .home-image-section::before {
        width: 124vw;
        height: 110%;
        max-height: none;
        left: -12vw;
        top: -5%;
        filter: blur(72px);
        opacity: .68;
    }
    .home-section-core { width: 100%; }
    .home-image-section .section-title { margin-bottom: 1.7rem; }
    .home-section-layout,
    .home-section-layout.no-illustration { grid-template-columns: 1fr; gap: 0; }
    .home-section-content { width: 100%; max-width: none; }
    .home-section-illustration,
    .home-side-decor { display: none; }
    .music-home-main,
    .contact-home-grid { grid-template-columns: 1fr; }
    .news-grid-home { grid-template-columns: 1fr; }
    .shop-home-block { width: 100%; }
    .shop-grid-home { margin-inline: auto; }
    .shop-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

    .inner-hero { padding: 8rem 5vw 2rem; }
    .content-section { padding: 1.6rem 5vw 5rem; }

    .concert-row { grid-template-columns: 100px 1fr auto; }
    .concert-info { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .members-grid { grid-template-columns: 1fr; }
    .member { max-width: 620px; }
    .album-project { grid-template-columns: 1fr; }
    .album-media { justify-self: start; max-width: 330px; }
    .contact-grid { grid-template-columns: 1fr; }
    .legal-grid { grid-template-columns: 1fr; }
}

@media (max-height: 760px) and (min-width: 621px) {
    .rainbow-menu { padding-top: 4.5rem; padding-bottom: 1.4rem; }
    .rainbow-menu nav a { font-size: clamp(2.3rem, 8.4vh, 4.8rem); line-height: .86; }
}

@media (max-width: 620px) {
    .topbar {
        width: 100%;
        max-width: 100vw;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .mini-logo,
    .menu-button { flex: 0 0 auto; }

    .rainbow-menu {
        place-items: start center;
        padding: 4.6rem 5vw 1rem;
    }
    .rainbow-menu nav {
        width: min(90vw, 520px);
        gap: .12rem;
    }
    .rainbow-menu nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 44px;
        padding: .16rem .08rem;
        font-size: clamp(2rem,9.2vw,3.25rem);
        line-height: 1;
        touch-action: manipulation;
    }

    .section-title h1 {
        max-width: 100%;
        font-size: clamp(2.6rem,11vw,4.8rem);
    }
    .home-image-section .section-title h1 {
        font-size: clamp(2.45rem,10.5vw,4.4rem);
    }
    .contact-form-row { grid-template-columns: 1fr; }
    .hero-actions {
        gap: .55rem;
        margin-top: 1rem;
    }
    .hero-actions a {
        min-height: 40px;
        padding: .55rem .78rem;
        font-size: .70rem;
    }

    .concert-row,
    .home-preview .concert-row {
        grid-template-columns: 88px 1fr;
        gap: .8rem;
        padding: .7rem 0;
    }
    .concert-ticket { grid-column: 2; justify-self: start; }
    .home-preview .concert-ticket { grid-column: 2; }

    .news-card { grid-template-columns: 1fr; }
    .news-image { min-height: 190px; }
    .single { grid-template-columns: 88px 1fr; gap: 1rem; }
    .single-cover,
    .media-placeholder.cover { width: 88px; height: 88px; }
    .single-copy h3 { font-size: 2rem; }
    .photo-carousel { width: 100%; padding: 0 2.45rem; }
    .photo-strip .photo-item { height: 210px; }
    .shop-grid,
    .shop-grid-home { grid-template-columns: 1fr; }
    .contact-direct-email,
    .pressbook-download { align-items: flex-start; flex-direction: column; }
    .site-footer { padding-bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .motion-ready { opacity: 1; transform: none; }
    .hero-video { transform: scale(1.02); }
}
