/* HERO */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(3, 3, 8, 0.35) 0%, rgba(3, 3, 8, 0.8) 70%),
        url('../../assets/images/press-3.jpg') center 20%/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 60%, rgba(26, 92, 255, 0.15) 0%, transparent 70%);
}

/* Grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 92, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 92, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-title {
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero-title span {
    display: block;
    position: relative;
}

/* Blue underline bar */
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--blue);
    box-shadow: 0 0 20px var(--blue), 0 0 40px var(--blue-glow);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineIn 0.6s 1.2s ease forwards;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--grey-light);
    text-transform: uppercase;
    margin-top: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s ease forwards;
}

.hero-socials a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
    padding: 0.65rem 1.4rem;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.hero-socials a:hover {
    color: var(--white);
    border-color: var(--blue);
    background: rgba(26, 92, 255, 0.22);
    box-shadow: 0 0 20px rgba(26, 92, 255, 0.3);
}

/* Hero CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--blue);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s ease forwards;
}

.hero-cta:hover {
    background: #2d6fff;
    box-shadow: 0 0 30px rgba(26, 92, 255, 0.5), 0 0 60px rgba(26, 92, 255, 0.3);
    transform: translateY(-2px);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.4s ease forwards;
}

.scroll-indicator span {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--grey);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollPulse 2s infinite;
}

/* RELEASE */

/* RELEASE */
#release {
    padding: var(--section-space) var(--page-gutter);
    max-width: var(--content-max);
    margin: 0 auto;
}

.section-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--blue);
}

.release-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--blue-faint);
    position: relative;
    overflow: hidden;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.release-artwork {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.release-artwork img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    filter: brightness(0.85) contrast(1.1);
}

.release-artwork::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(26, 92, 255, 0.18) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26, 92, 255, 0.012) 2px, rgba(26, 92, 255, 0.012) 4px);
    z-index: 1;
}

.release-info {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.release-track {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--white);
}

.release-collab {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--grey-light);
    text-transform: uppercase;
}

.release-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.release-meta-item {
    display: flex;
    gap: 1rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--grey);
    letter-spacing: 0.15em;
}

.release-meta-item strong {
    color: var(--blue);
    font-weight: 400;
}

.release-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--bg);
    box-shadow: 0 0 30px var(--blue-glow);
}

.btn-outline {
    background: transparent;
    color: var(--grey-light);
    border: 1px solid var(--border);
    padding: 0.9rem 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* MARQUEE */

/* MARQUEE */
#support {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--blue-faint);
}

.marquee-label {
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    color: var(--grey);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding-right: 1.8rem;
}

.marquee-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: var(--grey-light);
    text-transform: uppercase;
}

.marquee-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    opacity: 0.7;
}

/* WORKS */

/* WORKS / BOOKING section accents */
#works,
#booking {
    position: relative;
}

#works::before,
#booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: min(320px, 58vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(26, 92, 255, 0.14) 18%,
        rgba(26, 92, 255, 0.92) 50%,
        rgba(26, 92, 255, 0.14) 82%,
        transparent 100%
    );
    box-shadow: 0 0 22px rgba(26, 92, 255, 0.2);
}

#works::after,
#booking::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    z-index: 1;
    width: 68px;
    height: 7px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0) 100%
    ),
    rgba(26, 92, 255, 0.95);
    box-shadow: 0 0 14px rgba(26, 92, 255, 0.55), 0 0 28px rgba(26, 92, 255, 0.18);
}

/* BOOKING */

/* BOOKING */
#booking {
    padding: var(--section-space) var(--page-gutter);
    position: relative;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 3, 8, 0.92) 0%, rgba(3, 3, 8, 0.72) 50%, rgba(3, 3, 8, 0.92) 100%),
        url('../../assets/images/booking-bg.jpg') center/cover no-repeat;
    filter: saturate(0.7);
}

.booking-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.booking-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 2rem;
}

.booking-title em {
    color: var(--blue);
    font-style: normal;
    display: block;
}

.booking-body {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--grey-light);
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.booking-dates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-date-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border);
    background: var(--blue-faint);
    position: relative;
}

.booking-date-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
}

.bdi-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--blue);
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.bdi-venue {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
}

.bdi-city {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--grey-light);
    letter-spacing: 0.1em;
    margin-left: auto;
}

.booking-contact-email {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(26, 92, 255, 0.1);
}

.bce-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--blue);
    letter-spacing: 0.18em;
    min-width: 120px;
    text-transform: uppercase;
}

.bce-address {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--grey-light);
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s;
}

.bce-address:hover {
    color: var(--white);
}

.bdi-available {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--blue);
    text-transform: uppercase;
    margin-left: auto;
}

.booking-contact {
    padding: 3rem;
    border: 1px solid var(--border);
    background: var(--blue-faint);
    position: relative;
}

.booking-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), transparent);
}

.booking-contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.booking-contact-sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--grey-light);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-email-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    margin-top: 0.5rem;
}

.booking-email-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    background: var(--bg2);
    text-decoration: none;
    transition: background 0.2s, border-left-color 0.2s;
    border-left: 3px solid transparent;
    position: relative;
}

.booking-email-block:hover {
    background: rgba(26, 92, 255, 0.08);
    border-left-color: var(--blue);
}

.beb-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    min-width: 110px;
    flex-shrink: 0;
}

.beb-address {
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    color: var(--white);
    letter-spacing: 0.06em;
    flex: 1;
}

.booking-email-block:hover .beb-address {
    color: var(--white);
}

.beb-arrow {
    width: 0.85rem;
    height: 0.85rem;
    color: var(--grey);
    transition: color 0.2s, transform 0.2s;
    margin-left: auto;
    position: relative;
    flex-shrink: 0;
}

.beb-arrow::before,
.beb-arrow::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 999px;
}

.beb-arrow::before {
    width: 0.8rem;
    height: 2px;
    top: 0.12rem;
    right: 0;
    transform: rotate(-45deg);
    transform-origin: right center;
}

.beb-arrow::after {
    width: 2px;
    height: 0.8rem;
    top: 0.05rem;
    right: 0.05rem;
}

.booking-email-block:hover .beb-arrow {
    color: var(--blue);
    transform: translateX(3px) translateY(-3px);
}

/* FOOTER */

/* RESPONSIVE — tablet */
@media (max-width: 900px) {
    #release,
    #booking {
        padding: 5rem var(--page-gutter);
    }

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

    .release-artwork {
        min-height: 260px;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* RESPONSIVE — iPhone */

/* RESPONSIVE — iPhone */
@media (max-width: 540px) {
    /* Hero */
    #hero {
        min-height: 100svh;
    }

    .hero-content {
        width: min(100%, 25rem);
        padding-inline: var(--page-gutter);
    }

    .hero-title img {
        width: clamp(200px, 72vw, 300px);
    }

    .hero-socials {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        margin-top: 2rem;
        width: 100%;
        max-width: none;
    }

    .hero-socials a {
        max-width: none;
    }

    .hero-socials a {
        font-size: 0.82rem;
        padding: 0.7rem 0.75rem;
        text-align: center;
        letter-spacing: 0.08em;
        justify-content: center;
        backdrop-filter: none;
    }

    .hero-socials a:last-child {
        grid-column: 1 / -1;
    }

    .scroll-indicator {
        display: none;
    }

    /* Release */
    #release {
        padding: var(--section-space) var(--page-gutter);
    }

    .release-artwork {
        min-height: 220px;
    }

    .release-info {
        padding: var(--card-padding-lg);
        gap: 1.2rem;
    }

    .release-track {
        font-size: 2.2rem;
    }

    .release-collab {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    .release-ctas {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
        padding: 0.85rem 1.5rem;
    }

    /* Marquee */
    #support {
        padding: 1.2rem 0 1.8rem;
    }

    .marquee-name {
        font-size: 0.78rem;
    }

    /* Booking */
    #booking {
        padding: var(--section-space) var(--page-gutter);
    }

    .booking-contact {
        padding: var(--card-padding-lg);
    }

    .booking-contact-title {
        font-size: 1.5rem;
    }

    .booking-email-block {
        padding: var(--card-padding);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        position: relative;
    }

    .beb-label {
        min-width: unset;
        font-size: 0.56rem;
    }

    .beb-address {
        font-size: 0.78rem;
        letter-spacing: 0.03em;
    }

    .beb-arrow {
        position: absolute;
        top: 1rem;
        right: var(--card-padding);
    }
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 6, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 1.25rem 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 2rem;
}

#cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1 1 32rem;
    font-size: 0.85rem;
    color: var(--grey-light);
    max-width: 800px;
    font-weight: 300;
    line-height: 1.5;
    min-width: 0;
}

.cookie-text a {
    color: var(--blue);
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: var(--white);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
}

.btn-cookie {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-cookie:hover {
    background: var(--white);
    color: var(--bg);
    box-shadow: 0 0 20px var(--blue-glow);
}

.btn-cookie-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.6rem 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-cookie-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(26, 92, 255, 0.08);
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        padding: 1.25rem var(--page-gutter);
        gap: 1rem;
        text-align: center;
        backdrop-filter: none;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cookie,
    .btn-cookie-outline {
        flex: 1 1 12rem;
        text-align: center;
        padding: 0.8rem 1rem;
    }
}

/* ─── Reduced Motion ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}