:root {
    --bg: #050505;
    --bg2: #0D0D0C;
    --panel: rgba(255, 255, 255, .06);
    --line: rgba(255, 255, 255, .14);
    --text: #F2F2F0;
    --muted: #B8B8B2;
    --accent: #F9F900;
    --accent2: #BDBDB8;
    --shadow: 0 20px 80px rgba(0, 0, 0, .62);
    --r: 18px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(900px 600px at 12% -10%, rgba(255, 255, 0, .16), transparent 60%),
        radial-gradient(900px 600px at 95% 20%, rgba(190, 190, 184, .13), transparent 60%),
        linear-gradient(90deg, #050505 0%, #10100F 52%, #050505 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.45;
}

main {
    flex: 1 0 auto;
}

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

a:hover {
    opacity: .92;
}

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* Top bar */
.top {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 5, .82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 0, .38);
}

.top-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 5;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    transform: translateY(-50%);
    padding-left: 0;
    flex: 0 0 auto;
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 21px;
    line-height: 1;
    white-space: nowrap;
    color: var(--text);
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.mark {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 26px rgba(255, 255, 0, .35);
}

.mark::before,
.mark::after {
    content: "";
    position: absolute;
    display: block;
}

.mark::before {
    top: 4px;
    left: 5px;
    width: 2.5px;
    height: 5px;
    border-radius: 999px;
    background: var(--bg);
    box-shadow: 6px 0 0 var(--bg);
}

.mark::after {
    left: 4px;
    top: 8px;
    width: 10px;
    height: 6px;
    border-bottom: 2.5px solid var(--bg);
    border-radius: 0 0 999px 999px;
}

.menu {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translateX(-50%);
    transform: translate(-50%, -50%);
}

.menu a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.menu a:hover {
    color: var(--accent);
    border-color: rgba(255, 255, 0, .24);
    background: rgba(255, 255, 0, .08);
}

.menu a[aria-current="page"] {
    color: var(--accent);
    border-color: rgba(255, 255, 0, .26);
    background: rgba(255, 255, 0, .09);
}

.lang {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-left: auto;
    justify-self: end;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    background: rgba(13, 13, 12, .72);
}

.lang button {
    appearance: none;
    border: 0;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
}

.lang button[aria-pressed="true"] {
    color: #050505;
    background: var(--accent);
    border: 1px solid rgba(255, 255, 0, .35);
}

/* Hero */
.hero {
    padding: clamp(18px, 3vh, 34px) 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--r) + 6px);
    border: 1px solid rgba(255, 255, 0, .28);
    box-shadow: var(--shadow);
    background: #0D0D0C;
    min-height: clamp(560px, calc(100dvh - 190px), 820px);
}

.hero-media {
    position: absolute;
    inset: 0;
    background: #000;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: contrast(1.08) brightness(.76);
    display: block;
}

.hero-media img {
    transform: scale(1.02);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 560px at 55% 48%, rgba(0, 0, 0, .24), rgba(0, 0, 0, .78)),
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .46) 52%, rgba(0, 0, 0, .72)),
        radial-gradient(900px 600px at 16% 28%, rgba(255, 255, 0, .18), transparent 62%);
}

.hero-inner {
    position: relative;
    padding: clamp(24px, 4vw, 54px);
    display: grid;
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
    align-items: stretch;
    min-height: clamp(560px, calc(100dvh - 190px), 820px);
}

.hero-copy {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: clamp(14px, 2vh, 22px);
    width: 100%;
    max-width: 920px;
    text-align: center;
    justify-items: center;
}

.hero-heading {
    align-self: start;
}

.kicker {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 62px);
    letter-spacing: -.02em;
    line-height: 1.0;
    text-shadow: 2px 2px 0 rgba(255, 255, 0, .48);
}

.hero-brand {
    margin: 0 0 16px;
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.1;
    color: rgba(242, 242, 244, .78);
}

.hero-brand-name {
    color: rgba(242, 242, 244, .98);
}

.title-accent {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 0, .45);
    background: rgba(13, 13, 12, .55);
    color: rgba(242, 242, 240, .92);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 12px;
}

.lead {
    margin: 0 0 18px;
    color: rgba(242, 242, 240, .88);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 62ch;
}

.hero-about-copy {
    align-self: center;
    display: grid;
    gap: clamp(18px, 2.6vh, 28px);
    max-width: 82ch;
    margin: 0 auto;
}

.hero-about-copy p {
    margin: 0;
    color: rgba(242, 242, 240, .9);
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.72;
    text-align: center;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .72);
}

.hero-about-copy p+p {
    margin-top: 0;
}

.hero-style-line {
    align-self: end;
    margin: 0;
    color: rgba(255, 255, 0, .92);
    font-size: clamp(12px, 1.3vw, 15px);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .72);
}

.home-page main {
    display: grid;
    align-content: center;
}

.home-page .hero {
    padding: clamp(10px, 1.8vh, 22px) 0;
}

.home-page .hero-card,
.home-page .hero-inner {
    min-height: 0;
    height: clamp(500px, calc(100dvh - 235px), 720px);
}

.home-page .hero-inner {
    padding: clamp(20px, 3.2vh, 42px);
}

.home-page h1 {
    font-size: clamp(34px, 4.4vw, 56px);
}

.home-page .hero-about-copy p {
    font-size: clamp(18px, 1.75vw, 22px);
    line-height: 1.72;
}

.home-page .hero-style-line {
    font-size: clamp(11px, 1.1vw, 14px);
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.pill {
    font-size: 12px;
    color: rgba(242, 242, 240, .9);
    border: 1px solid rgba(255, 255, 0, .24);
    background: rgba(13, 13, 12, .68);
    padding: 8px 10px;
    border-radius: 999px;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(13, 13, 12, .74);
    color: var(--text);
    font-weight: 800;
    font-size: 14px;
}

.btn.primary {
    color: #050505;
    border-color: rgba(255, 255, 0, .68);
    background: var(--accent);
}

.btn .muted {
    color: currentColor;
    opacity: .64;
    font-weight: 700;
}

.hero-side {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.presskit-link {
    align-self: end;
    min-width: 168px;
    justify-content: center;
    padding: 14px 20px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

/* Mobile-only Press Kit button (shown next to Instagram on small screens) */
.presskit-mobile {
    display: none;
}

/* Sections */
section {
    padding: 48px 0;
    scroll-margin-top: 84px;
}

.head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

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

h2 {
    margin: 0;
    color: var(--accent);
    font-size: 22px;
    letter-spacing: -.01em;
    text-transform: uppercase;
}

.sub {
    color: var(--muted);
    font-size: 14px;
    max-width: 75ch;
}

#booking-pages .head {
    align-items: baseline;
}

#booking-pages .sub {
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    margin: 0 0 2px;
    text-align: right;
    white-space: nowrap;
}

.card {
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
    box-shadow: 0 16px 70px rgba(0, 0, 0, .38);
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
    align-items: stretch;
}

.about.video-about {
    display: block;
}

.about-video-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-color: rgba(255, 255, 0, .24);
    background: #000;
}

.about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) brightness(.9);
}

.about-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(900px 560px at 50% 48%, rgba(0, 0, 0, .25), rgba(0, 0, 0, .76)),
        linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .28) 48%, rgba(0, 0, 0, .58));
    opacity: .48;
    transition: opacity .7s ease;
    pointer-events: none;
}

.about-video-card.is-revealed::after {
    opacity: .82;
}

.about-video-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: 560px;
    max-width: 820px;
    margin: 0 auto;
    padding: 48px;
    box-sizing: border-box;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s ease, transform .7s ease;
}

.about-video-card.is-revealed .about-video-copy {
    opacity: 1;
    transform: translateY(0);
}

.about-video-copy p {
    margin: 0;
    color: rgba(242, 242, 240, .94);
    font-size: clamp(16px, 2vw, 21px);
    font-weight: 750;
    line-height: 1.62;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .72);
}

.about-video-copy p+p {
    margin-top: 24px;
}

.about-video-copy .about-video-fine {
    color: rgba(255, 255, 0, .9);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.about .text {
    padding: 18px;
}

.quote {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.3;
}

.about .text p {
    margin: 0;
    color: rgba(242, 242, 240, .9);
    font-size: 17px;
    line-height: 1.6;
}

.about .text p+p {
    margin-top: 16px;
}

.about .photo {
    overflow: hidden;
    position: relative;
}

.about .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.08) brightness(.9);
}

.about .photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 500px at 55% 30%, transparent, rgba(0, 0, 0, .66)),
        linear-gradient(180deg, rgba(255, 255, 0, .08), transparent 34%);
    pointer-events: none;
}

/* Music embeds */
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.embed {
    padding: 14px;
}

.profile-embed {
    grid-column: 1 / -1;
    border-color: rgba(255, 255, 0, .28);
    background:
        linear-gradient(180deg, rgba(255, 255, 0, .08), rgba(255, 255, 0, .025)),
        #030303;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 0, .08),
        0 18px 70px rgba(0, 0, 0, .52);
}

iframe {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #000;
}

.soundcloud-frame {
    display: block;
    background-color: #000;
    color-scheme: dark;
}

.soundcloud-placeholder {
    display: grid;
    align-content: center;
    min-height: 166px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 0, .34);
    background: rgba(0, 0, 0, .44);
    padding: 18px;
}

.soundcloud-placeholder h3 {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.soundcloud-placeholder p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

/* Shows */
.shows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.shows .list {
    padding: 14px;
}

.show {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(13, 13, 12, .62);
    margin-bottom: 10px;
}

.date {
    min-width: 74px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 0, .36);
    background: rgba(255, 255, 0, .12);
    padding: 10px;
    text-align: center;
    line-height: 1.05;
}

.date b {
    display: block;
    color: var(--accent);
    font-size: 16px;
}

.date span {
    color: var(--muted);
    font-size: 12px;
}

.show h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.show p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* Gallery */
#gallery {
    padding: clamp(22px, 3.3vh, 48px) 0;
}

#gallery .head {
    margin-bottom: clamp(8px, 1.4vh, 14px);
}

.gallery {
    --gallery-tile-height: clamp(136px, calc((100dvh - 235px) / 3), 318px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shot {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #101010;
    padding: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    position: relative;
    height: var(--gallery-tile-height);
}

.shot.video {
    grid-column: 2 / span 2;
}

.shot img,
.shot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.08);
}

.shot.video video {
    filter: none;
}

.shot::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .45));
    opacity: 0;
    transition: opacity .18s ease;
}

.shot:hover {
    border-color: rgba(255, 255, 0, .55);
}

.shot:hover::after {
    opacity: 1;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(52px, 1fr) minmax(0, 1180px) minmax(52px, 1fr);
    align-items: center;
    gap: 14px;
    padding: 28px;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(10px);
}

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

.gallery-lightbox-frame {
    grid-column: 2;
    display: grid;
    justify-items: center;
    gap: 12px;
    margin: 0;
}

.gallery-lightbox-frame img,
.gallery-lightbox-frame video {
    display: block;
    max-width: 100%;
    max-height: min(82vh, 900px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.gallery-lightbox-frame img[hidden],
.gallery-lightbox-frame video[hidden] {
    display: none;
}

.gallery-lightbox-frame figcaption {
    min-height: 18px;
    color: rgba(242, 242, 240, .72);
    font-size: 13px;
    font-weight: 800;
}

.gallery-lightbox-download {
    min-width: 190px;
    justify-content: center;
    padding: 13px 18px;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(12, 12, 12, .82);
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-arrow:focus-visible {
    border-color: rgba(255, 255, 0, .7);
    background: rgba(255, 255, 0, .14);
    outline: none;
    transform: translateY(-1px);
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 30px;
}

.gallery-lightbox-prev {
    grid-column: 1;
    justify-self: end;
}

.gallery-lightbox-next {
    grid-column: 3;
    justify-self: start;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
}

.contact .box {
    padding: 18px;
}

form {
    display: grid;
    gap: 10px;
}

input,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(13, 13, 12, .66);
    color: var(--text);
    outline: none;
    font-size: 14px;
}

input:focus,
textarea:focus {
    border-color: rgba(255, 255, 0, .58);
    box-shadow: 0 0 0 4px rgba(255, 255, 0, .12);
}

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

.booking-page main {
    display: grid;
    align-content: start;
    gap: clamp(12px, 2vh, 24px);
    padding: clamp(16px, 3vh, 36px) 0 clamp(12px, 2vh, 24px);
}

.booking-page section {
    padding: 0;
}

.booking-page .head {
    margin-bottom: clamp(7px, 1.1vh, 12px);
}

.booking-page h2 {
    font-size: clamp(20px, 2.8vh, 22px);
}

.booking-page .booking-links {
    gap: clamp(10px, 1.4vh, 14px);
}

.booking-page .booking-link-card {
    gap: clamp(7px, 1vh, 10px);
    padding: clamp(12px, 1.6vh, 16px);
}

.booking-page .booking-link-card h3 {
    font-size: clamp(17px, 2vh, 20px);
}

.booking-page .booking-link-card p {
    font-size: clamp(14px, 1.6vh, 15px);
    line-height: 1.42;
}

.booking-page .contact .box {
    padding: clamp(12px, 1.6vh, 16px);
}

.booking-page form {
    gap: clamp(6px, 1vh, 9px);
}

.booking-page input,
.booking-page textarea {
    padding: clamp(8px, 1.1vh, 11px) 12px;
}

.booking-page textarea {
    min-height: clamp(74px, 13vh, 120px);
}

.booking-page .btn {
    padding: clamp(9px, 1.2vh, 11px) 12px;
}

.booking-page .fine {
    font-size: 12px;
    line-height: 1.35;
}

.fine {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
}

footer {
    padding: 20px 0 24px;
    border-top: 1px solid rgba(255, 255, 0, .34);
    background: rgba(0, 0, 0, .18);
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.legal-links a {
    color: rgba(242, 242, 240, .84);
    font-weight: 800;
}

.legal-main {
    padding: 64px 0 58px;
}

.legal-hero {
    padding: 0 0 28px;
}

.legal-kicker {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.legal-main h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.02;
}

.legal-updated {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.legal-layout {
    display: grid;
    gap: 16px;
}

.legal-card {
    padding: 20px;
}

.legal-card h2 {
    margin-bottom: 12px;
    font-size: 18px;
}

.legal-card h3 {
    margin: 22px 0 8px;
    color: rgba(242, 242, 240, .95);
    font-size: 16px;
}

.legal-card p,
.legal-card li {
    color: rgba(242, 242, 240, .88);
    font-size: 15px;
}

.legal-card p {
    margin: 0 0 12px;
}

.legal-card ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.legal-card a {
    color: var(--accent);
    font-weight: 800;
}

.legal-card .fine {
    color: var(--muted);
}

/* SEO booking pages */
.seo-main {
    padding: 0 0 58px;
}

.seo-hero {
    padding: 48px 0 28px;
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 16px;
    align-items: stretch;
}

.seo-hero-copy {
    display: grid;
    align-content: center;
    padding: 18px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb a {
    color: var(--accent);
    font-weight: 800;
}

.seo-main h1 {
    max-width: 980px;
    font-size: clamp(34px, 4.8vw, 58px);
}

.seo-lead {
    max-width: 72ch;
    margin: 14px 0 0;
    color: rgba(242, 242, 240, .88);
    font-size: clamp(17px, 2vw, 20px);
}

.seo-panel {
    overflow: hidden;
    padding: 14px;
}

.seo-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08) brightness(.92);
}

.seo-panel.duo-panel img {
    aspect-ratio: 4 / 3;
    object-position: right center;
}

.seo-facts {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.seo-facts p {
    margin: 0;
    color: rgba(242, 242, 240, .88);
    font-size: 14px;
}

.seo-facts strong {
    color: var(--accent);
}

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

.seo-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.seo-card {
    padding: 18px;
}

.seo-card h2 {
    margin-bottom: 12px;
    font-size: 18px;
}

.seo-card h3 {
    margin: 0 0 10px;
    color: rgba(242, 242, 240, .96);
    font-size: 17px;
}

.seo-card p,
.seo-card li {
    color: rgba(242, 242, 240, .88);
    font-size: 15px;
    line-height: 1.58;
}

.seo-card p {
    margin: 0;
}

.seo-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 20px;
}

.seo-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
}

.seo-cta-band h2 {
    margin-bottom: 8px;
    font-size: 20px;
}

.seo-cta-band p {
    margin: 0;
    max-width: 72ch;
    color: var(--muted);
    font-size: 15px;
}

.booking-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-link-card {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.booking-link-card h3 {
    margin: 0;
    color: rgba(242, 242, 240, .96);
    font-size: 20px;
}

.booking-link-card p {
    margin: 0;
    color: rgba(242, 242, 240, .86);
    font-size: 15px;
    line-height: 1.58;
}

.booking-link-cta {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    width: min(960px, calc(100% - 32px));
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 0, .34);
    border-radius: var(--r);
    background: rgba(5, 5, 5, .94);
    box-shadow: var(--shadow);
    padding: 16px;
}

.cookie-banner h2 {
    margin: 0 0 4px;
    font-size: 17px;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-status {
    margin: 12px 0 0;
    color: var(--accent);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 980px) {
    .top-inner {
        gap: 12px;
    }

    .menu {
        gap: 14px;
    }

    .hero-inner {
        min-height: clamp(760px, calc(100dvh - 110px), 900px);
        padding: 24px;
    }

    .hero-card {
        min-height: clamp(760px, calc(100dvh - 110px), 900px);
    }

    /* Keep the duo as a background behind the text, but shift the crop so
       the two people land in the visual centre of the hero card on mobile.
       The photo is very wide, so filling the tall card crops the sides; the
       duo sits to the right of the source image, so anchor the crop further
       right to bring them to the middle of the card. */
    .hero-media img,
    .hero-media video {
        object-position: 75% 50%;
        filter: contrast(1.06) brightness(.86);
    }

    .hero-media video {
        object-position: 50% 50%;
    }

    .hero-media img {
        transform: none;
    }

    .hero-media::after {
        background:
            radial-gradient(760px 520px at 50% 40%, rgba(0, 0, 0, .22), rgba(0, 0, 0, .8)),
            linear-gradient(180deg, rgba(0, 0, 0, .44), rgba(0, 0, 0, .34) 38%, rgba(13, 13, 12, .92));
    }

    .hero-about-copy p {
        font-size: clamp(15px, 4.1vw, 17px);
        line-height: 1.56;
        text-align: center;
    }

    .hero-style-line {
        font-size: 11px;
        max-width: 31ch;
    }

    .home-page .hero {
        padding: 10px 0;
    }

    .home-page .hero-card,
    .home-page .hero-inner {
        min-height: 0;
        height: clamp(620px, calc(100dvh - 205px), 760px);
    }

    .home-page .hero-inner {
        padding: 20px;
    }

    .home-page h1 {
        font-size: clamp(30px, 8.6vw, 42px);
    }

    .home-page .hero-about-copy p {
        font-size: clamp(13.5px, 3.7vw, 15.5px);
        line-height: 1.56;
    }

    .hero-side {
        justify-items: start;
        display: none;
    }

    .presskit-mobile {
        display: inline-flex;
    }

    #booking-pages .head {
        align-items: flex-start;
        flex-direction: column;
    }

    #booking-pages .sub {
        text-align: left;
        white-space: normal;
    }

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

    .about-video-card {
        min-height: 600px;
    }

    .about-video-copy {
        min-height: 600px;
        padding: 28px;
    }

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

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

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

    .seo-hero-grid,
    .seo-split {
        grid-template-columns: 1fr;
    }

    .seo-panel img {
        aspect-ratio: 16 / 10;
    }

    .seo-panel.dj-panel img {
        aspect-ratio: 4 / 5;
        object-position: 50% 30%;
    }

    .seo-panel.duo-panel img {
        aspect-ratio: 16 / 10;
    }

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

    .seo-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-links {
        grid-template-columns: 1fr;
    }

    .shot.big {
        grid-column: span 12;
    }

    .shot.mid {
        grid-column: span 12;
    }

    .shot.tall {
        grid-column: span 6;
    }

    .shot.wide {
        grid-column: span 12;
    }
}

@media (max-width: 760px) {
    .gallery-lightbox {
        grid-template-columns: 1fr;
        align-items: center;
        padding: 64px 14px 84px;
    }

    .gallery-lightbox-frame {
        grid-column: 1;
    }

    .gallery-lightbox-frame img,
    .gallery-lightbox-frame video {
        max-height: 72vh;
        border-radius: 12px;
    }

    .gallery-lightbox-arrow {
        position: absolute;
        bottom: 20px;
        width: 46px;
        height: 46px;
    }

    .gallery-lightbox-prev {
        left: calc(50% - 58px);
    }

    .gallery-lightbox-next {
        right: calc(50% - 58px);
    }

    .top-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand lang"
            "menu menu";
        align-items: center;
        column-gap: 12px;
        row-gap: 8px;
        min-height: auto;
        padding: 12px 0 13px;
    }

    .brand {
        position: relative;
        left: auto;
        top: auto;
        grid-area: brand;
        transform: none;
        min-width: 0;
        font-size: 18px;
    }

    .lang {
        grid-area: lang;
        margin-left: 0;
    }

    .menu {
        grid-area: menu;
        display: flex;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        z-index: 4;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
        transform: none;
    }

    .menu a {
        font-size: 13px;
        padding: 0;
        border: 0;
        border-radius: 0;
    }

    .legal-main {
        padding-top: 44px;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .wrap {
        width: min(var(--max), calc(100% - 28px));
    }

    .menu {
        gap: 8px;
    }

    .shot.tall {
        grid-column: span 12;
    }
}

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

    .shot::after {
        transition: none;
    }
}
