/* =========================================================
   YPEE — OFFICIAL WEBSITE
   Design language: Ghanaian night-market / soundsystem flyer
   ========================================================= */

:root {
    --bg: #0E0C0A;
    --bg-panel: #17130F;
    --bg-panel-2: #1F1913;
    --paper: #F4EEE1;
    --muted: #B8AA95;
    --gold: #F3B200;
    --red: #D42A2A;
    --green: #1F5C43;

    --font-display: 'Anton', 'Arial Narrow', sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --container: 1180px;
    --edge: clamp(20px, 5vw, 64px);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--paper);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

::selection {
    background: var(--red);
    color: var(--paper);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================================
   GRAIN / TEXTURE
   ========================================================= */

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: 0.05;
    mix-blend-mode: overlay;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.6) 1px,
            transparent 1px
        );

    background-size: 3px 3px;
}


/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 14px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.02;
    letter-spacing: 0.01em;
    margin: 0 0 20px;
    color: var(--paper);
}

.section-title--light {
    color: var(--paper);
}

.section-sub {
    color: var(--muted);
    max-width: 46ch;
    margin: 0;
}

.section-note {
    color: var(--muted);
    font-size: 14px;
    margin-top: 18px;
}

.section-head {
    margin-bottom: 44px;
}

.section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.link-arrow {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.link-arrow:hover {
    border-color: var(--gold);
}

section {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 100px var(--edge);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    padding: 16px 30px;

    border-radius: 2px;
    border: 1px solid transparent;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--solid {
    background: var(--red);
    color: var(--paper);
}

.btn--solid:hover {
    background: #B81F1F;
}

.btn--ghost {
    border-color: rgba(244, 238, 225, 0.35);
    color: var(--paper);
    background: transparent;
}

.btn--ghost:hover {
    border-color: var(--paper);
}

.btn--outline {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--bg);
}

.btn--lg {
    padding: 20px 40px;
    font-size: 14px;
}


/* =========================================================
   TAGS
   ========================================================= */

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: var(--bg);
    background: var(--gold);

    padding: 8px 12px;
    border-radius: 2px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px var(--edge);

    background:
        linear-gradient(
            to bottom,
            rgba(14, 12, 10, 0.92),
            rgba(14, 12, 10, 0)
        );

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.nav__mark {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--paper);
}

.nav__mark span {
    color: var(--red);
}

.nav__links {
    display: flex;
    gap: 34px;
}

.nav__links a {
    position: relative;

    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--muted);

    transition: color 0.2s ease;
}

.nav__links a:hover {
    color: var(--paper);
}

.nav__links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.2s ease;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__social {
    display: flex;
    gap: 16px;

    font-family: var(--font-mono);
    font-size: 12px;
}

.nav__social a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav__social a:hover {
    color: var(--gold);
}

.nav__toggle {
    display: none;

    flex-direction: column;
    gap: 5px;

    background: none;
    border: none;

    cursor: pointer;
    padding: 6px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;

    display: block;

    background: var(--paper);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.nav.is-open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
    opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;

    text-align: left;

    padding: 140px var(--edge) 110px;

    overflow: hidden;

    background: var(--bg);
}


/* Hero background */

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position:  center;

    opacity: 0;
    transform: scale(1.06);

    transition:
        opacity 1.8s ease,
        transform 8s ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__slide::before {
    content: attr(data-label);

    position: absolute;
    top: 96px;
    left: var(--edge);

    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.05em;

    color: rgba(244, 238, 225, 0.35);
}


/* Hero overlay */

.hero__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(14, 12, 10, 0.82) 0%,
            rgba(14, 12, 10, 0.54) 32%,
            rgba(14, 12, 10, 0.60) 58%,
            rgba(14, 12, 10, 0.97) 100%
        ),
        linear-gradient(
            90deg,
            rgba(14, 12, 10, 0.84) 0%,
            rgba(14, 12, 10, 0.39) 55%,
            rgba(14, 12, 10, 0.64) 100%
        );
}

.hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 760px;
}

.hero__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 16px;
}

.hero__eyebrow-row .eyebrow {
    margin: 0;
}


/* Mini equalizer */

.eq-mini {
    display: inline-flex;
    align-items: flex-end;

    gap: 3px;
    height: 14px;
}

.eq-mini span {
    width: 3px;
    height: 14px;

    border-radius: 1px;

    background: var(--gold);

    animation: riddim 1s ease-in-out infinite;

    transform-origin: bottom;
}

.eq-mini span:nth-child(1) {
    height: 14px;
}

.eq-mini span:nth-child(2) {
    height: 14px;
    animation-delay: 0.2s;
}

.eq-mini span:nth-child(3) {
    height: 14px;
    animation-delay: 0.4s;
}


/* Hero typography */

.hero__title {
    font-family: var(--font-display);
    font-weight: 400;

    text-transform: uppercase;

    line-height: 0.88;

    font-size: clamp(56px, 10.5vw, 140px);

    margin: 0 0 20px;

    color: var(--paper);

    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.hero__tag {
    font-family: var(--font-mono);

    color: var(--muted);

    font-size: clamp(13px, 1.6vw, 16px);

    letter-spacing: 0.03em;

    margin: 0 0 40px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* Hero dots */

.hero__dots {
    position: absolute;

    z-index: 2;

    right: var(--edge);
    bottom: 130px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__dots button {
    width: 8px;
    height: 8px;

    padding: 0;

    border-radius: 50%;

    background: rgba(244, 238, 225, 0.3);

    border: none;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.hero__dots button.is-active {
    background: var(--gold);
    transform: scale(1.4);
}


/* =========================================================
   RIDDIM VISUALIZER
   ========================================================= */

.riddim {
    position: absolute;
    inset: 0;

    z-index: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 0 var(--edge);

    opacity: 0.5;

    pointer-events: none;
}

.riddim__bar {
    width: 2.4%;

    background:
        linear-gradient(
            to top,
            var(--red),
            var(--gold) 60%,
            transparent
        );

    animation: riddim 1.8s ease-in-out infinite;

    opacity: 0.55;

    transform-origin: bottom;
}

@keyframes riddim {
    0%,
    100% {
        transform: scaleY(0.2);
    }

    50% {
        transform: scaleY(1);
    }
}


/* Scroll cue */

.scroll-cue {
    position: absolute;

    bottom: 32px;
    left: var(--edge);

    width: 22px;
    height: 36px;

    border: 1px solid rgba(244, 238, 225, 0.4);
    border-radius: 20px;

    z-index: 2;
}

.scroll-cue span {
    position: absolute;

    top: 6px;
    left: 50%;

    transform: translateX(-50%);

    width: 4px;
    height: 8px;

    border-radius: 2px;

    background: var(--gold);

    animation: scrollcue 1.6s ease-in-out infinite;
}

@keyframes scrollcue {
    0% {
        opacity: 1;
        top: 6px;
    }

    70% {
        opacity: 0;
        top: 20px;
    }

    100% {
        opacity: 0;
        top: 6px;
    }
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 64px;

    align-items: start;

    padding-top: 120px;
}

.about__media {
    position: sticky;
    top: 110px;
}


/* Photo placeholder */

.photo-slot {
    position: relative;

    aspect-ratio: 4 / 5;

    border: 1px dashed rgba(244, 238, 225, 0.25);

    border-radius: 3px;

    background:
        linear-gradient(
            155deg,
            var(--bg-panel),
            var(--bg-panel-2)
        );

    overflow: hidden;
}

.photo-slot::before {
    content: attr(data-label);

    position: absolute;

    bottom: 10px;
    left: 10px;
    right: 10px;

    font-family: var(--font-mono);
    font-size: 10px;

    color: var(--muted);

    letter-spacing: 0.02em;
}

.photo-slot__frame {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 2px solid, white;

    gap: 10px;

    color: rgba(244, 238, 225, 0.3);
}

.photo-slot__icon {
    font-size: 28px;
    font-family: var(--font-mono);
}

.photo-slot__text {
    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}

.photo-slot--sm {
    aspect-ratio: 1 / 1;
}

.photo-slot--sm .photo-slot__frame {
    font-size: 14px;
}


/* About stats */

.stat-strip {
    margin-top: 22px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    background: rgba(244, 238, 225, 0.12);
}

.stat {
    background: var(--bg);
    padding: 16px;
}

.stat__label {
    display: block;

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: var(--muted);

    margin-bottom: 6px;
}

.stat__value {
    display: block;

    font-family: var(--font-body);

    font-weight: 600;

    font-size: 14px;

    color: var(--paper);
}


/* About text */

.about__copy p {
    color: #D9D0C0;

    max-width: 64ch;

    margin: 0 0 20px;

    font-size: 16px;
}

.about__copy strong {
    color: var(--paper);
}


/* =========================================================
   MUSIC / DISCOGRAPHY
   ========================================================= */

.release-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 2px;

    background: rgba(244, 238, 225, 0.1);
}

.release-card {
    background: var(--bg);

    padding: 0;

    display: flex;
    flex-direction: column;

    min-width: 0;

    transition: background 0.25s ease;
}

.release-card:hover {
    background: var(--bg-panel);
}


/* Featured release */

.release-card--feature {
    grid-column: span 2;

    flex-direction: row;
}

.release-card--feature .release-card__art {
    width: 42%;
    aspect-ratio: auto;
}

.release-card--feature .release-card__body {
    flex: 1;
}


/* Artwork */

.release-card__art {
    position: relative;

    aspect-ratio: 1 / 1;

    background:
        linear-gradient(
            150deg,
            var(--bg-panel-2),
            var(--bg-panel)
        );

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-bottom: 1px solid rgba(244, 238, 225, 0.08);
}

.release-card__art::after {
    content: attr(data-year);

    position: absolute;

    top: 14px;
    left: 14px;

    font-family: var(--font-mono);

    font-size: 11px;

    color: var(--muted);

    z-index: 2;
}


/* Cover image */

.release-card__art img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 5px;

    border: 2px solid rgba(248, 248, 248, 0.83);

    transition: transform 0.6s ease;
}

.release-card:hover .release-card__art img {
    transform: scale(1.05);
}


/* Placeholder mark */

.release-card__mark {
    font-family: var(--font-display);

    font-size: clamp(28px, 4vw, 48px);

    color: rgba(244, 238, 225, 0.18);

    letter-spacing: 0.05em;
}


/* Release information */

.release-card__body {
    padding: 24px;

    display: flex;
    flex-direction: column;

    gap: 8px;

    flex: 1;
}

.release-card__type {
    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    color: var(--gold);

    margin: 0;
}

.release-card__body h3 {
    font-family: var(--font-body);

    font-weight: 700;

    font-size: 20px;

    margin: 0;

    color: var(--paper);
}

.release-card__desc {
    color: var(--muted);

    font-size: 14px;

    margin: 0;

    flex: 1;
}

.release-card__link {
    font-family: var(--font-mono);

    font-size: 12px;

    color: var(--paper);

    margin-top: 8px;

    transition: color 0.2s ease;
}

.release-card__link:hover {
    color: var(--gold);
}


/* =========================================================
   VIDEOS
   ========================================================= */

.video-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
}

.video-slot {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 16px;

    background: #111;
}

.video-slot iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    border-radius: inherit;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    background: rgba(244, 238, 225, 0.08);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: top center;

    aspect-ratio: 4 / 5;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.gallery-grid a,
.gallery-grid figure {
    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    margin: 0;

    background: var(--bg-panel);
}

.gallery-grid a:hover img,
.gallery-grid figure:hover img {
    transform: scale(1.04);
}


/* =========================================================
   GALLERY — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    .gallery-grid img {
        aspect-ratio: 4 / 5;
        object-position: top center;
    }
}


/* =========================================================
   GALLERY — MOBILE
   ========================================================= */

@media (max-width: 720px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;

        width: 100%;
    }

    .gallery-grid img {
        width: 100%;
        height: 100%;

        aspect-ratio: 4 / 5;

        object-fit: cover;
        object-position: top center;
    }
}


/* =========================================================
   GALLERY — SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;
    }

    .gallery-grid img {
        aspect-ratio: 3 / 4;
        object-position: top center;
    }
}


/* =========================================================
   TOUR
   ========================================================= */

.tour__empty {
    border: 1px solid rgba(244, 238, 225, 0.14);

    border-radius: 3px;

    padding: 48px;

    text-align: center;

    color: var(--muted);

    font-size: 15px;
}

.tour__empty a {
    color: var(--gold);

    border-bottom: 1px solid var(--gold);
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking {
    position: relative;

    width: 100%;
    max-width: none;

    background: var(--red);

    overflow: hidden;

    padding: 110px var(--edge);
}

.booking .riddim--flip {
    opacity: 0.15;
}

.booking__inner {
    position: relative;

    z-index: 2;

    max-width: var(--container);

    margin: 0 auto;

    text-align: center;
}

.booking .eyebrow {
    color: var(--bg);

    text-align: center;
}

.booking .section-title {
    color: var(--paper);

    text-align: center;
}

.booking__copy {
    color: rgba(244, 238, 225, 0.85);

    max-width: 50ch;

    margin: 0 auto 34px;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
    width: 100%;

    max-width: 480px;

    margin: 64px auto 0;
}

.newsletter label {
    display: block;

    font-family: var(--font-mono);

    font-size: 12px;

    letter-spacing: 0.04em;

    color: rgba(244, 238, 225, 0.85);

    margin-bottom: 14px;
}

.newsletter__row {
    display: flex;

    gap: 10px;
}

.newsletter input {
    flex: 1;

    min-width: 0;

    padding: 14px 16px;

    border: 1px solid rgba(244, 238, 225, 0.5);

    background: rgba(0, 0, 0, 0.15);

    color: var(--paper);

    font-family: var(--font-body);

    border-radius: 2px;

    font-size: 14px;
}

.newsletter input::placeholder {
    color: rgba(244, 238, 225, 0.5);
}

.newsletter__msg {
    margin: 12px 0 0;

    font-family: var(--font-mono);

    font-size: 12px;

    color: var(--paper);

    min-height: 1em;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 60px var(--edge) 40px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 22px;

    text-align: center;
}

.footer__mark {
    font-family: var(--font-display);

    font-size: 24px;

    text-transform: uppercase;
}

.footer__mark span {
    color: var(--red);
}

.footer__social {
    display: flex;

    gap: 24px;

    flex-wrap: wrap;

    justify-content: center;
}

.footer__social a {
    font-family: var(--font-mono);

    font-size: 12px;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    color: var(--muted);

    transition: color 0.2s ease;
}

.footer__social a:hover {
    color: var(--gold);
}

.footer__copy {
    font-family: var(--font-mono);

    font-size: 11px;

    color: var(--muted);

    margin: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    /* About */

    .about {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about__media {
        position: static;
    }


    /* Releases */

    .release-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .release-card--feature {
        grid-column: span 2;

        flex-direction: column;
    }

    .release-card--feature .release-card__art {
        width: 100%;

        aspect-ratio: 16 / 9;
    }


    
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 720px) {

    .nav {
        padding: 16px 20px;
    }

    .nav__links,
    .nav__social {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav.is-open .nav__links {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;

        gap: 22px;

        background: var(--bg);

        padding: 24px 20px 30px;

        border-bottom: 1px solid rgba(244, 238, 225, 0.1);
    }

    .nav.is-open .nav__social {
        position: absolute;

        top: calc(100% + 190px);

        left: 0;
        right: 0;

        display: flex;

        justify-content: center;

        padding: 20px;

        background: var(--bg);

        border-bottom: 1px solid rgba(244, 238, 225, 0.1);
    }


    /* =====================================================
       HERO MOBILE
       ===================================================== */

    .hero {
        min-height: 100svh;

        padding:
            120px
            20px
            90px;

        align-items: flex-end;
    }

    .hero__inner {
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(58px, 18vw, 100px);
    }

    .hero__tag {
        font-size: 13px;

        max-width: 38ch;

        margin-bottom: 30px;
    }

    .hero__cta {
        gap: 10px;
    }

    .hero__cta .btn {
        padding: 14px 20px;
    }

    .hero__dots {
        display: none;
    }

    .hero__slide::before {
        top: 80px;
        left: 20px;
    }

    .scroll-cue {
        left: 20px;
        bottom: 25px;
    }


    /* =====================================================
       SECTIONS MOBILE
       ===================================================== */

    section {
        padding:
            70px
            20px;
    }

    .section-head {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: clamp(36px, 11vw, 52px);
    }


    /* =====================================================
       ABOUT MOBILE
       ===================================================== */

    .about {
        gap: 30px;
        padding-top: 70px;
    }

    .about__copy p {
        font-size: 15px;
    }


    /* =====================================================
       MUSIC MOBILE
       ===================================================== */

    .release-grid {
        grid-template-columns: 1fr;

        gap: 2px;
    }

    .release-card--feature {
        grid-column: span 1;

        flex-direction: column;
    }

    .release-card--feature .release-card__art {
        width: 100%;

        aspect-ratio: 1 / 1;
    }

    .release-card__body {
        padding: 20px;
    }


    /* =====================================================
       VIDEOS MOBILE
       ===================================================== */

    .video-grid {
        grid-template-columns: 1fr;

        gap: 24px;

        width: 100%;
    }

    .video-slot {
        width: 100%;

        aspect-ratio: 16 / 9;

        border-radius: 14px;
    }

    .video-slot iframe {
        width: 100%;
        height: 100%;

        border-radius: 14px;
    }


    /* =====================================================
       GALLERY MOBILE
       ===================================================== */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* =====================================================
       BOOKING MOBILE
       ===================================================== */

    .booking {
        padding:
            80px
            20px;
    }

    .booking__copy {
        font-size: 15px;
    }


    /* =====================================================
       NEWSLETTER MOBILE
       ===================================================== */

    .newsletter {
        margin-top: 50px;
    }

    .newsletter__row {
        flex-direction: column;
    }

    .newsletter input {
        width: 100%;
    }

    .newsletter .btn {
        width: 100%;
    }


    /* =====================================================
       FOOTER MOBILE
       ===================================================== */

    .footer {
        padding:
            50px
            20px
            30px;
    }

    .footer__social {
        gap: 16px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        padding:
            110px
            18px
            80px;
    }

    .hero__title {
        font-size: clamp(52px, 19vw, 82px);
    }

    .hero__cta {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .hero__cta .btn {
        width: 100%;
    }


    .section-title {
        font-size: 36px;
    }


    /* Stats */

    .stat-strip {
        grid-template-columns: 1fr;
    }


    /* Gallery */

    .gallery-grid {
        grid-template-columns: 1fr;
    }


    /* Videos */

    .video-grid {
        gap: 18px;
    }

    .video-slot {
        border-radius: 12px;
    }


    /* Releases */

    .release-card__art {
        aspect-ratio: 1 / 1;
    }

    .release-card__body {
        padding: 18px;
    }
}

/* =========================================================
   FLOATING NEW RELEASE
   ========================================================= */

.floating-release {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 150;

    width: 320px;

    display: flex;
    align-items: center;

    padding: 10px;

    gap: 14px;

    background: rgba(23, 19, 15, 0.94);

    border: 1px solid rgba(244, 238, 225, 0.16);

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-release:hover {
    transform: translateY(-5px);

    border-color: rgba(243, 178, 0, 0.6);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(243, 178, 0, 0.08);
}


/* Cover art */

.floating-release__art {
    flex: 0 0 68px;

    width: 68px;
    height: 68px;

    overflow: hidden;

    border-radius: 4px;

    background: var(--bg-panel-2);
}

.floating-release__art img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Text */

.floating-release__info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.floating-release__eyebrow {
    font-family: var(--font-mono);

    font-size: 9px;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    color: var(--gold);
}

.floating-release__info strong {
    font-family: var(--font-display);

    font-size: 20px;

    line-height: 1.05;

    font-weight: 400;

    text-transform: uppercase;

    color: var(--paper);

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.floating-release__action {
    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: 0.04em;

    color: var(--muted);

    transition: color 0.2s ease;
}

.floating-release:hover .floating-release__action {
    color: var(--gold);
}


/* Close button */

.floating-release__close {
    position: absolute;

    top: -8px;
    right: -8px;

    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--paper);

    color: var(--bg);

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.floating-release__close:hover {
    transform: scale(1.1);

    background: var(--gold);
}


/* =========================================================
   FLOATING RELEASE — MOBILE
   ========================================================= */

@media (max-width: 720px) {

    .floating-release {
        right: 14px;
        bottom: 14px;

        width: calc(100% - 28px);

        max-width: 360px;

        padding: 8px;

        gap: 12px;

        border-radius: 8px;
    }

    .floating-release__art {
        flex-basis: 58px;

        width: 58px;
        height: 58px;
    }

    .floating-release__info strong {
        font-size: 18px;
    }

    .floating-release__close {
        top: -7px;
        right: -7px;

        width: 22px;
        height: 22px;

        font-size: 15px;
    }
}


/* =========================================================
   SHOP
   ========================================================= */

.shop {
    padding-top: 120px;
}

.shop__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* Coming soon placeholder */

.shop__coming-soon {
    grid-column: 1 / -1;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 100px 24px;

    text-align: center;
}

.shop__coming-soon-text {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}


/* Product card */

.product-card {
    display: flex;
    flex-direction: column;

    background: var(--bg-panel);
    border: 1px solid rgba(244, 238, 225, 0.1);
    border-radius: 4px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 178, 0, 0.45);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(243, 178, 0, 0.08);
}


/* Product artwork */

.product-card__art {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-panel-2);
}

.product-card__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.product-card:hover .product-card__art img {
    transform: scale(1.05);
}


/* Product body */

.product-card__body {
    padding: 22px;

    display: flex;
    flex-direction: column;

    gap: 12px;

    flex: 1;
}

.product-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.product-card__name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--paper);
    margin: 0;
}

.product-card__price {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--gold);
    white-space: nowrap;
    padding-top: 4px;
}

.product-card__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}


/* Variant options */

.product-card__variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.product-card__variant-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card__variant-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.product-card__variant-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-card__variant-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    padding: 7px 12px;

    background: transparent;
    color: var(--paper);

    border: 1px solid rgba(244, 238, 225, 0.25);
    border-radius: 2px;

    cursor: pointer;

    transition:
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.product-card__variant-btn:hover {
    border-color: var(--paper);
}

.product-card__variant-btn.is-selected {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}


/* Buy button */

.product-card__buy {
    margin-top: auto;
    width: 100%;
    padding: 14px 18px;
}


/* Tablet */

@media (max-width: 960px) {
    .shop__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}


/* Mobile */

@media (max-width: 600px) {
    .shop__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-card__body {
        padding: 18px;
    }

    .product-card__name {
        font-size: 20px;
    }
}