:root {
    --black: #000000;
    --white: #ffffff;
    --red: #c92e23;
    --font-display: "Kanit", Impact, sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --container: min(1180px, calc(100vw - 32px));
    --transition: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--white);
    font-family: var(--font-body);
    line-height: 1.55;
}

body,
button,
a {
    font-synthesis: none;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

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

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 20;
    padding: 10px 14px;
    color: var(--black);
    background: var(--white);
    border: 2px solid var(--red);
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.press-header {
    position: sticky;
    top: 0;
    z-index: 10;
    color: var(--white);
    background: var(--black);
    border-bottom: 4px solid var(--red);
}

.press-header__inner {
    width: var(--container);
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.press-logo {
    width: 148px;
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.press-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.16);
}

.press-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.press-nav a {
    padding: 12px 13px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
}

.press-nav a:hover,
.press-nav a:focus-visible {
    color: var(--red);
    outline: none;
}

.press-nav .press-nav__download {
    margin-left: 8px;
    color: var(--white);
    background: var(--red);
}

.press-nav .press-nav__download:hover,
.press-nav .press-nav__download:focus-visible {
    color: var(--black);
    background: var(--white);
}

.press-hero {
    width: var(--container);
    margin: 0 auto;
    padding: 44px 0 28px;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(26px, 5vw, 68px);
    align-items: center;
}

.press-label {
    margin: 0 0 12px;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.press-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 6.2rem;
    font-weight: 900;
    line-height: 0.76;
    letter-spacing: 0;
    text-transform: uppercase;
}

.press-hero__lead {
    max-width: 30rem;
    margin: 28px 0 0;
    font-size: 1.24rem;
    font-weight: 700;
    line-height: 1.28;
}

.press-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.press-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 2px solid var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.press-button--primary {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.press-button:hover,
.press-button:focus-visible {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
    transform: translateY(-2px);
    outline: none;
}

.press-hero__media {
    margin: 0;
}

.press-hero__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 2px solid var(--black);
}

.press-hero__media figcaption {
    padding-top: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.release-bar {
    min-height: 70px;
    padding: 18px max(16px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--white);
    background: var(--red);
    border-block: 2px solid var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
}

.release-bar p,
.release-bar span {
    margin: 0;
}

.release-bar p {
    font-size: 1.45rem;
    font-weight: 900;
}

.press-facts {
    width: var(--container);
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-block: 2px solid var(--black);
}

.press-facts div {
    min-height: 108px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    border-left: 1px solid var(--black);
}

.press-facts div:first-child {
    border-left: 0;
}

.press-facts span,
.release-data dt,
.video-links span,
.press-photo-grid figcaption span,
.download-list small {
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.press-facts strong {
    font-size: 1.04rem;
    line-height: 1.15;
}

.press-section {
    width: var(--container);
    margin: 0 auto;
    padding: 78px 0;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 34px;
    border-bottom: 2px solid var(--black);
}

.press-section__index p {
    position: sticky;
    top: 100px;
    margin: 0;
    color: var(--red);
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 34px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h2,
.press-section--black h2,
.contact-section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 4.1rem;
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-heading p {
    max-width: 26rem;
    margin: 0;
    font-weight: 600;
}

.bio-entry {
    padding: 26px 0;
    border-top: 1px solid var(--black);
}

.bio-entry:last-child {
    border-bottom: 1px solid var(--black);
}

.bio-entry__top {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bio-entry h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.bio-entry button {
    min-width: 108px;
    min-height: 38px;
    padding: 7px 12px;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--black);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.bio-entry button:hover,
.bio-entry button:focus-visible,
.bio-entry button.is-copied {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    outline: none;
}

.bio-entry p {
    max-width: 800px;
    margin: 0 0 14px;
    font-size: 1.04rem;
}

.press-section--black {
    width: 100%;
    max-width: none;
    padding-inline: max(16px, calc((100vw - 1180px) / 2));
    grid-template-columns: 170px minmax(0, 1fr);
    color: var(--white);
    background: var(--black);
    border-bottom-color: var(--red);
}

.release-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1.2fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: start;
}

.release-data {
    margin: 0;
    border-top: 1px solid var(--white);
}

.release-data div {
    padding: 16px 0;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    border-bottom: 1px solid var(--white);
}

.release-data dd {
    margin: 0;
    font-weight: 700;
}

.lineup-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 2px solid var(--black);
}

.lineup-list li {
    min-height: 104px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--black);
}

.lineup-list li:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid var(--black);
}

.lineup-list li:nth-child(even) {
    padding-left: 24px;
}

.lineup-list strong {
    font-family: var(--font-display);
    font-size: 1.55rem;
    text-transform: uppercase;
}

.lineup-list span {
    color: var(--red);
    font-weight: 700;
}

.media-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 16px;
    align-items: stretch;
}

.media-frame {
    overflow: hidden;
    background: var(--black);
    border: 2px solid var(--black);
}

.media-frame iframe {
    display: block;
    width: 100%;
    border: 0;
}

.media-frame--spotify iframe {
    height: 100%;
    min-height: 352px;
}

.media-frame--video,
.media-frame--video iframe {
    min-height: 352px;
}

.video-links {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid var(--black);
}

.video-links a {
    min-height: 96px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--black);
}

.video-links a:first-child {
    border-left: 0;
}

.video-links a:hover,
.video-links a:focus-visible {
    color: var(--white);
    background: var(--red);
    outline: none;
}

.video-links a:hover span,
.video-links a:focus-visible span {
    color: var(--white);
}

.video-links strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading--actions {
    align-items: center;
}

.text-download {
    flex: 0 0 auto;
    padding-bottom: 3px;
    color: var(--red);
    border-bottom: 2px solid var(--red);
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
}

.text-download:hover,
.text-download:focus-visible {
    color: var(--black);
    border-color: var(--black);
    outline: none;
}

.press-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
}

.press-photo-grid figure {
    margin: 0;
}

.press-photo-grid img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border: 1px solid var(--black);
}

.press-photo-grid figcaption {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.82rem;
}

.press-photo-grid figcaption a {
    font-weight: 800;
    border-bottom: 1px solid var(--black);
}

.press-photo-grid figcaption a:hover,
.press-photo-grid figcaption a:focus-visible {
    color: var(--red);
    border-color: var(--red);
    outline: none;
}

.download-list {
    border-top: 2px solid var(--black);
}

.download-list > a {
    min-height: 94px;
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--black);
}

.download-list span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.download-list strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    text-transform: uppercase;
}

.download-list b {
    flex: 0 0 auto;
    padding: 9px 12px;
    color: var(--white);
    background: var(--black);
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.download-list > a:hover b,
.download-list > a:focus-visible b {
    background: var(--red);
}

.download-list > a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
}

.contact-section {
    padding: 82px max(16px, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    color: var(--white);
    background: var(--black);
    border-top: 8px solid var(--red);
}

.contact-section > div {
    min-width: 0;
}

.contact-section > div + div {
    padding-left: 40px;
    border-left: 1px solid var(--white);
}

.contact-section h2 {
    margin-bottom: 22px;
}

.contact-section a {
    width: max-content;
    max-width: 100%;
    display: block;
    margin-top: 8px;
    font-size: 1.02rem;
    font-weight: 700;
    word-break: break-word;
    border-bottom: 1px solid var(--white);
}

.contact-section a:hover,
.contact-section a:focus-visible {
    color: var(--red);
    border-color: var(--red);
    outline: none;
}

.press-footer {
    min-height: 74px;
    padding: 18px max(16px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--black);
    background: var(--red);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}

.press-footer p {
    margin: 0;
}

.press-footer a {
    border-bottom: 1px solid var(--black);
}

@media (max-width: 900px) {
    .press-header__inner {
        min-height: 68px;
    }

    .press-nav > a:not(.press-nav__download) {
        display: none;
    }

    .press-hero,
    .press-section,
    .press-section--black,
    .release-layout {
        grid-template-columns: 1fr;
    }

    .press-hero {
        padding-top: 34px;
    }

    .press-hero__copy {
        max-width: 720px;
    }

    .press-section__index p {
        position: static;
    }

    .release-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .press-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .press-facts div {
        border-bottom: 1px solid var(--black);
    }

    .press-facts div:nth-child(odd) {
        border-left: 0;
    }

    .press-facts div:last-child {
        grid-column: 1 / -1;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .video-links a {
        border-left: 0;
        border-bottom: 1px solid var(--black);
    }

    .video-links a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100vw - 22px, 1180px);
    }

    .press-logo {
        width: 116px;
        height: 42px;
    }

    .press-nav .press-nav__download {
        margin-left: 0;
        padding: 10px 11px;
        font-size: 0.78rem;
    }

    .press-hero h1 {
        font-size: 4.3rem;
    }

    .press-hero__lead {
        font-size: 1.08rem;
    }

    .press-actions,
    .press-button {
        width: 100%;
    }

    .release-bar {
        padding-block: 16px;
    }

    .release-bar p {
        font-size: 1.18rem;
    }

    .press-facts div {
        min-height: 96px;
        padding: 14px 12px;
    }

    .press-section,
    .press-section--black {
        padding-block: 56px;
        gap: 20px;
    }

    .section-heading h2,
    .press-section--black h2,
    .contact-section h2 {
        font-size: 2.75rem;
    }

    .bio-entry__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .lineup-list,
    .press-photo-grid {
        grid-template-columns: 1fr;
    }

    .lineup-list li:nth-child(odd),
    .lineup-list li:nth-child(even) {
        padding-inline: 0;
        border-right: 0;
    }

    .press-photo-grid figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .download-list > a {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding-block: 58px;
    }

    .contact-section > div + div {
        padding: 34px 0 0;
        border-top: 1px solid var(--white);
        border-left: 0;
    }

    .press-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
