/* Contents Under Pressure — Winnipeg drum & bass.
   Broadcast poster aesthetic: near-black + a single bright red accent. */

:root {
    --bg: #0b0712;
    --bg-rgb: 11, 7, 18;        /* for rgba() scrims over imagery */
    --bg-2: #130c22;
    --panel: #1c1233;
    --ink: #f5edff;
    --muted: #9a8fb4;
    --line: #271b3d;

    /* Single accent — bright red. Used for kickers, buttons, links, ticker, hovers. */
    --accent: #ff2436;
    --accent-ink: #12040a;      /* text sitting on top of a solid accent fill */
    --accent-rgb: 255, 36, 54;  /* for rgba() glows/shadows */

    --display: "Anton", "Arial Narrow", sans-serif;
    --body: "Archivo", system-ui, sans-serif;
    --mono: "Space Mono", ui-monospace, monospace;
    --edge: clamp(1.1rem, 4vw, 3.5rem);
    /* Content column cap. On wide screens the side gutter grows so content
       never exceeds --maxw and stays centred; full-bleed backgrounds and
       hairline dividers still span the whole viewport. Narrow screens fall
       back to --edge. */
    --maxw: 1200px;
    --gutter: max(var(--edge), calc((100% - var(--maxw)) / 2));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg); color: var(--ink);
    font-family: var(--body); line-height: 1.5;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

.skip {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--accent); color: #fff;
    padding: .6rem 1rem; font-family: var(--mono); font-weight: 700;
}
.skip:focus { left: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--mono); font-weight: 700; font-size: .82rem;
    letter-spacing: .06em; text-transform: uppercase;
    padding: .85rem 1.4rem; border: 1px solid var(--line);
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}
.btn--acid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--acid:hover { transform: translateY(-2px); box-shadow: 0 8px 0 -2px rgba(var(--accent-rgb), .35); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.topbar {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; gap: 1.5rem;
    padding: .6rem var(--gutter);
    background: rgba(8,8,10,.72); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; line-height: 1; }
.brand__mark { font-family: var(--display); font-size: 1.5rem; letter-spacing: .04em; }
/* CUP logo, top-left. Vector — stays crisp at any DPR. */
.brand__logo {
    display: block; height: 44px; width: auto;
    transition: opacity .18s ease, transform .18s ease;
}
.brand:hover .brand__logo { opacity: .82; transform: translateY(-1px); }
.nav { margin-left: auto; display: flex; gap: 1.6rem; }
.nav a {
    font-family: var(--mono); font-size: .78rem; text-transform: uppercase;
    letter-spacing: .08em; color: var(--muted); transition: color .16s;
}
.nav a:hover { color: var(--accent); }
.menu-btn { display: none; background: none; border: 0; color: var(--ink); font-size: 1.4rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 90vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 4rem var(--gutter) 0; overflow: hidden;
    /* Base colour only — the photo + scrim live on .hero__photo so the
       image can't push layout around while it loads. */
    background: var(--bg);
}

/* Hero photograph: Pyramid Cabaret dancefloor. Sits behind everything,
   under a layered scrim that keeps the white copy fully legible. */
.hero__photo {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        /* accent glow, top-right — keeps the existing brand wash */
        radial-gradient(120% 80% at 80% -10%, rgba(var(--accent-rgb), .18), transparent 55%),
        /* vertical scrim: darken top under the sticky bar, and melt into the page at the bottom */
        linear-gradient(to bottom,
            rgba(var(--bg-rgb), .82) 0%,
            rgba(var(--bg-rgb), .55) 30%,
            rgba(var(--bg-rgb), .62) 62%,
            rgba(var(--bg-rgb), .94) 88%,
            var(--bg) 100%),
        /* horizontal scrim: heaviest behind the left-aligned copy */
        linear-gradient(to right,
            rgba(var(--bg-rgb), .92) 0%,
            rgba(var(--bg-rgb), .78) 34%,
            rgba(var(--bg-rgb), .42) 68%,
            rgba(var(--bg-rgb), .55) 100%),
        url("images/hero-club.jpg");
    background-repeat: no-repeat;
    /* focal point: the crowd + stage, biased slightly above centre */
    background-position: center, center, center, center 42%;
    background-size: cover, cover, cover, cover;
}
/* Lighter payload on phones (48 KB instead of 121 KB). */
@media (max-width: 700px) {
    .hero__photo {
        background-image:
            radial-gradient(120% 80% at 80% -10%, rgba(var(--accent-rgb), .18), transparent 55%),
            linear-gradient(to bottom,
                rgba(var(--bg-rgb), .82) 0%,
                rgba(var(--bg-rgb), .58) 30%,
                rgba(var(--bg-rgb), .68) 62%,
                rgba(var(--bg-rgb), .94) 88%,
                var(--bg) 100%),
            linear-gradient(to right,
                rgba(var(--bg-rgb), .88) 0%,
                rgba(var(--bg-rgb), .72) 50%,
                rgba(var(--bg-rgb), .62) 100%),
            url("images/hero-club-960.jpg");
    }
}
.hero__grid {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(120% 90% at 50% 20%, #000 30%, transparent 78%);
    opacity: .18;
}
.hero__inner { position: relative; z-index: 2; max-width: 62rem; }
.hero__eyebrow {
    font-family: var(--mono); font-size: .8rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.4rem;
}
.hero__title {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(3.4rem, 15vw, 12rem); line-height: .86;
    letter-spacing: .01em; text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__title--accent { color: var(--accent); }
.hero__tag { margin-top: 1.8rem; font-size: clamp(1.05rem, 2.4vw, 1.5rem); max-width: 36ch; }
.hero__genres { margin-top: .6rem; font-family: var(--mono); color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.hero__cta { margin-top: 2.4rem; display: flex; gap: .9rem; flex-wrap: wrap; }

/* Equalizer */
.eq { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 4px; height: 66px; margin-top: 3rem; opacity: .9; }
.eq span {
    flex: 1; background: linear-gradient(var(--accent), rgba(var(--accent-rgb), .25));
    height: 20%; transform-origin: bottom; animation: bar 1.1s ease-in-out infinite;
}
.eq span:nth-child(3n) { animation-duration: 1.5s; }
.eq span:nth-child(4n) { animation-duration: .8s; }
.eq span:nth-child(2n) { animation-delay: .2s; }
.eq span:nth-child(5n) { animation-delay: .45s; }
@keyframes bar { 0%,100% { height: 18%; } 50% { height: 100%; } }

/* ---------- Ticker ---------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--accent); color: var(--accent-ink); overflow: hidden; }
.ticker__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.ticker__track span { font-family: var(--display); font-size: 1.35rem; letter-spacing: .06em; padding: .55rem 0; white-space: pre; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.section-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2.2rem; }
.section-head__num { font-family: var(--mono); color: var(--accent); font-size: .9rem; }
.section-head__title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 6vw, 4rem); line-height: 1; letter-spacing: .02em; }
section { padding: clamp(4rem, 9vw, 8rem) var(--gutter); border-bottom: 1px solid var(--line); }

/* ---------- The Brand ---------- */
.brand-sec__lead { font-size: clamp(1.3rem, 3.2vw, 2.2rem); max-width: 30ch; line-height: 1.2; font-weight: 600; }
.pillars { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.6rem; }
.pillars > li { display: flex; }
.pillar { background: var(--bg); padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; width: 100%; color: inherit; transition: background .2s ease; }
.pillar:hover { background: var(--panel); }
.pillar__k { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; color: var(--accent); letter-spacing: .02em; }
.pillar__k::after { content: " →"; opacity: 0; transition: opacity .2s ease; }
.pillar:hover .pillar__k::after { opacity: 1; }
.pillar p { color: var(--muted); font-size: .96rem; }

/* ---------- Radio ---------- */
.radio__lead { font-size: clamp(1.2rem, 3vw, 2rem); max-width: 26ch; line-height: 1.2; font-weight: 600; margin-bottom: 2.4rem; }
.show__facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 2.4rem; }
.fact { background: var(--bg); padding: 1.3rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.fact__k { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.fact__v { font-family: var(--display); font-size: 1.4rem; letter-spacing: .02em; }
.mixes__player { border: 1px solid var(--line); margin-bottom: 1.8rem; background: var(--bg-2); }
.mixes__player iframe { display: block; }
.radio__cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.radio__archive { display: inline-block; margin-top: 1.1rem; font-family: var(--mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); transition: color .16s; }
.radio__archive:hover { color: var(--accent); }

/* ---------- Latest (YouTube) ---------- */
.latest__feature { position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: var(--bg-2); margin-bottom: 1.2rem; }
.latest__feature iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Events ---------- */
.events { background: var(--bg-2); }
.events__lead { font-size: clamp(1.3rem, 3.2vw, 2.2rem); max-width: 30ch; line-height: 1.2; font-weight: 600; }

/* Flyer wall — same hairline-grid construction as .merch__grid / .crew__grid.
   One fixed 2:3 card ratio, art cover-cropped, so mixed-ratio posters still
   hang square on the wall. */
.wall {
    list-style: none; display: grid; gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    background: var(--line); border: 1px solid var(--line);
    margin-top: clamp(2.4rem, 5vw, 3.4rem);
}
.wall > li { display: flex; }
.flyer {
    background: var(--bg); width: 100%; display: flex; flex-direction: column;
    border: 0; padding: 0; margin: 0; color: inherit; text-align: left;
    font: inherit; cursor: pointer; transition: background .2s ease;
}
.flyer:hover { background: var(--panel); }
.flyer__media {
    position: relative; display: block; aspect-ratio: 2 / 3; overflow: hidden;
    background: radial-gradient(115% 90% at 50% 6%, rgba(var(--accent-rgb), .12), transparent 62%), var(--bg-2);
}
.flyer__img {
    display: block; width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s ease, opacity .25s ease;
}
.flyer:hover .flyer__img, .flyer:focus-visible .flyer__img { transform: scale(1.04); opacity: .9; }
/* Zoom cue, mirrors the .dj ↗ affordance */
.flyer__media::after {
    content: "⤢"; position: absolute; top: .6rem; right: .7rem;
    font-family: var(--mono); font-size: .9rem; color: #fff;
    opacity: 0; transform: translateY(-4px); transition: opacity .2s ease, transform .2s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.flyer:hover .flyer__media::after, .flyer:focus-visible .flyer__media::after { opacity: 1; transform: none; }
.flyer__badge {
    position: absolute; left: .6rem; bottom: .6rem;
    font-family: var(--mono); font-weight: 700; font-size: .64rem;
    text-transform: uppercase; letter-spacing: .12em;
    color: #fff; background: var(--accent); padding: .3rem .55rem;
}
.flyer__meta { padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.flyer__name {
    font-family: var(--display); font-size: 1.25rem; text-transform: uppercase;
    letter-spacing: .02em; line-height: 1.05;
}
.flyer__date { font-family: var(--mono); font-size: .74rem; color: var(--accent); letter-spacing: .06em; }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 300; display: flex; }
.lb[hidden] { display: none; }
.lb__scrim { position: absolute; inset: 0; background: rgba(4, 2, 8, .92); backdrop-filter: blur(6px); }
.lb__dialog {
    position: relative; z-index: 1; margin: auto;
    width: 100%; height: 100%; padding: clamp(1rem, 4vw, 3rem);
    display: flex; align-items: center; justify-content: center;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.lb__figure {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    max-width: min(100%, 62rem); max-height: 100%;
}
.lb__img {
    display: block; max-width: 100%; max-height: 74vh; width: auto; height: auto;
    object-fit: contain; border: 1px solid var(--line);
    background: var(--bg-2); box-shadow: 0 26px 70px rgba(0,0,0,.6);
}
.lb__cap {
    display: flex; flex-direction: column; align-items: center; gap: .35rem;
    text-align: center; max-width: 46rem;
}
.lb__title { font-family: var(--display); font-size: clamp(1.4rem, 4vw, 2.2rem); text-transform: uppercase; letter-spacing: .02em; line-height: 1; }
.lb__meta { font-family: var(--mono); font-size: .76rem; color: var(--accent); letter-spacing: .05em; }
.lb__line { font-size: .9rem; color: var(--muted); }
.lb__credit { font-family: var(--mono); font-size: .74rem; color: var(--ink); letter-spacing: .06em; opacity: .85; }
.lb__count { font-family: var(--mono); font-size: .7rem; color: var(--muted); letter-spacing: .12em; }
.lb__title:empty, .lb__meta:empty, .lb__line:empty, .lb__credit:empty, .lb__count:empty { display: none; }

.lb__close, .lb__nav {
    position: absolute; z-index: 2; display: flex; align-items: center; justify-content: center;
    background: rgba(var(--bg-rgb), .7); color: var(--ink);
    border: 1px solid var(--line); cursor: pointer; line-height: 1;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.lb__close:hover, .lb__nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.lb__close { top: clamp(.6rem, 2vw, 1.4rem); right: clamp(.6rem, 2vw, 1.4rem); width: 2.75rem; height: 2.75rem; font-size: 1rem; font-family: var(--mono); }
.lb__nav { top: 50%; transform: translateY(-50%); width: 2.75rem; height: 4.5rem; font-size: 2rem; font-family: var(--body); padding-bottom: .2rem; }
.lb__nav--prev { left: clamp(.4rem, 2vw, 1.4rem); }
.lb__nav--next { right: clamp(.4rem, 2vw, 1.4rem); }
.lb__nav[hidden] { display: none; }

/* ---------- Crew ---------- */
.crew__grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dj {
    background: var(--bg); padding: 1.7rem 1.3rem 1.2rem;
    min-height: 8.5rem; display: flex; flex-direction: column; justify-content: space-between;
    transition: background .2s, color .2s; cursor: default;
}
.dj:hover { background: var(--accent); color: #fff; }
.dj__link { display: flex; flex-direction: column; justify-content: space-between; height: 100%; width: 100%; color: inherit; position: relative; }
.dj__link::after { content: "↗"; position: absolute; top: 0; right: 0; font-family: var(--mono); font-size: .8rem; color: var(--accent); }
.dj:hover .dj__link::after { color: #fff; }
.dj__link:not([href])::after { content: none; }   /* crew member without a profile link yet — no ↗ affordance */
.dj__num { font-family: var(--mono); font-size: .74rem; opacity: .6; }
.dj__name { font-family: var(--display); font-size: clamp(1.3rem, 3vw, 2rem); text-transform: uppercase; letter-spacing: .02em; line-height: 1; }

/* Crew portraits — a press shot sits behind the type under a scrim heavy enough
   to keep white-on-black legibility (which is why these cells were flat black to
   begin with). Crew with no photo on hand keep the plain fill; the scrim bottoms
   out near --bg so the two kinds of cell sit level next to each other. */
.dj--photo { position: relative; overflow: hidden; }
.dj__photo {
    position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
    /* Mono keeps a rack of mixed-quality press shots reading as one set. Most were
       shot in dark clubs or the CKUW library, so these lift rather than dim. */
    filter: grayscale(1) contrast(1.05) brightness(1.18);
    transition: filter .3s, transform .3s;
}
.dj--photo::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        rgba(var(--bg-rgb), .15) 0%, rgba(var(--bg-rgb), .5) 45%, rgba(var(--bg-rgb), .9) 100%);
    transition: background .2s;
}
.dj--photo .dj__link { z-index: 2; }
/* The number and name lose the flat-black backdrop they were tuned against. */
.dj--photo .dj__num { opacity: .85; }
.dj--photo .dj__num, .dj--photo .dj__name { text-shadow: 0 1px 12px rgba(var(--bg-rgb), .9); }
/* Hover: the accent wash rides on the scrim, since the photo covers .dj's fill. */
.dj--photo:hover::before { background: linear-gradient(180deg, rgba(var(--accent-rgb), .5), rgba(var(--accent-rgb), .86)); }
.dj--photo:hover .dj__photo { filter: grayscale(.2) contrast(1.05) brightness(.95); transform: scale(1.04); }

/* ---------- Merch ---------- */
.merch { text-align: center; }
.merch__inner { max-width: 40rem; margin: 0 auto; }
.merch__kicker { font-family: var(--mono); text-transform: uppercase; letter-spacing: .16em; color: var(--accent); font-size: .78rem; margin-bottom: 1rem; }
.merch__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.4rem, 8vw, 5rem); text-transform: uppercase; line-height: .95; }
.merch__body { color: var(--muted); margin: 1.2rem auto 2rem; max-width: 34ch; }

/* Merch grid — live products from the shop */
.merch__grid {
    list-style: none; display: grid; gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    background: var(--line); border: 1px solid var(--line);
    margin: clamp(2.6rem, 6vw, 4rem) auto 0; max-width: 68rem; text-align: left;
}
.merch__grid > li { display: flex; }
.product { background: var(--bg); width: 100%; display: flex; flex-direction: column; transition: background .2s ease; }
.product:hover { background: var(--panel); }
.product__media {
    aspect-ratio: 1 / 1; overflow: hidden;
    background: radial-gradient(115% 90% at 50% 6%, rgba(var(--accent-rgb), .12), transparent 62%), var(--bg-2);
}
.product__img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product:hover .product__img { transform: scale(1.04); }
.product__meta { padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.product__name { font-family: var(--display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .02em; line-height: 1.05; }
.product__price { font-family: var(--mono); font-size: .8rem; color: var(--accent); letter-spacing: .06em; }

/* ---------- Footer ---------- */
.footer { padding: clamp(3rem, 7vw, 5rem) var(--gutter) 2rem; }
.footer__top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer__brand { display: flex; flex-direction: column; gap: .5rem; }
.footer__brand .brand__mark { font-size: clamp(1.4rem, 4vw, 2.4rem); max-width: 14ch; line-height: 1; }
.footer__freq { font-family: var(--mono); font-size: .72rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.socials { display: grid; grid-template-columns: repeat(2, auto); gap: .5rem 2rem; }
.socials a { font-family: var(--mono); font-size: .84rem; color: var(--muted); transition: color .16s; }
.socials a:hover { color: var(--accent); }
.footer__bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
    margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
    font-family: var(--mono); font-size: .72rem; color: var(--muted); letter-spacing: .05em;
}
/* Bottom-right footer logo — small and quiet, doesn't compete with the socials. */
.footer__sign { display: flex; align-items: center; margin-left: auto; }
.footer__logo {
    display: block; height: 36px; width: auto;
    opacity: .55; transition: opacity .18s ease;
}
.footer__logo:hover { opacity: .9; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease var(--d, 0s), transform .7s ease var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* Locks the page behind an open lightbox */
body.lb-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .merch__grid { grid-template-columns: repeat(2, 1fr); max-width: 34rem; }
}
@media (max-width: 820px) {
    .nav { display: none; }
    .menu-btn { display: block; margin-left: auto; }
    .nav.open {
        display: flex; flex-direction: column; gap: 1.2rem;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-2); padding: 1.4rem var(--edge); border-bottom: 1px solid var(--line);
    }
    .pillars { grid-template-columns: 1fr; }
    .show__facts { grid-template-columns: repeat(2, 1fr); }
    .crew__grid { grid-template-columns: repeat(2, 1fr); }
    .wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .merch__grid { max-width: 24rem; }
    /* Lightbox on phones: flyers render full-width and legible, and the
       dialog scrolls — capping height made tall posters unreadable. */
    .lb__dialog { align-items: flex-start; padding: 3.75rem .75rem 2rem; }
    .lb__figure { max-height: none; }
    .lb__img { max-height: none; width: 100%; }
    .lb__nav { position: fixed; width: 2.4rem; height: 3.6rem; font-size: 1.6rem; }
    .lb__nav--prev { left: .25rem; }
    .lb__nav--next { right: .25rem; }
    .lb__cap { gap: .3rem; }
}
@media (max-width: 480px) {
    .footer__top { flex-direction: column; }
    .socials { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    .dj--photo:hover .dj__photo { transform: none; }
    html { scroll-behavior: auto; }
}
