/* =========================================================
   WOLFBOND
   Clean Main Stylesheet
   ========================================================= */

/* =========================================================
   Reset
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height, 88px);
    background: #000;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

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

body {
    min-width: 320px;
    overflow-x: hidden;
    background: #000;
    color: var(--color-white-soft, #f1f1f1);
    font-family: var(--font-body, "Montserrat", sans-serif);
    font-size: var(--font-size-base, 16px);
    font-weight: var(--font-weight-regular, 400);
    line-height: var(--line-height-normal, 1.6);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.navigation-open {
    overflow: hidden;
}

::selection {
    background: var(--color-red, #a70d13);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--color-red-light, #cf2028);
    outline-offset: 4px;
}

/* =========================================================
   Accessibility
   ========================================================= */

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    padding: 0.8rem 1rem;
    background: #fff;
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(-200%);
    transition: transform 180ms ease;
}

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

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* =========================================================
   Global layout
   ========================================================= */

main,
section,
.page-atmosphere,
.release-section,
.video-section,
.wolf-forest-section,
.about-section,
.contact-section,
.site-footer {
    background: #000;
}

.container {
    width: min(
        calc(100% - (var(--page-padding, 1.5rem) * 2)),
        var(--container-width, 1200px)
    );
    margin-inline: auto;
}

.container--narrow {
    max-width: var(--container-narrow, 820px);
}

.section {
    position: relative;
    padding-block: clamp(3rem, 6vw, 5.5rem);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(3rem, 1fr) auto minmax(3rem, 1fr);
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    width: min(100%, 920px);
    margin-inline: auto;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section-heading h2 {
    color: var(--color-white-soft, #f1f1f1);
    font-family: var(--font-body, "Montserrat", sans-serif);
    font-size: clamp(0.78rem, 1.2vw, 1rem);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-wide, 0.22em);
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.section-heading__line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.38)
    );
}

.section-heading__line:last-child {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.38),
        transparent
    );
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: var(--z-header, 100);
    width: 100%;
    color: var(--color-white-soft, #f1f1f1);
    transition:
        background 250ms ease,
        border-color 250ms ease,
        backdrop-filter 250ms ease;
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: min(
        calc(100% - (var(--page-padding, 1.5rem) * 2)),
        var(--container-wide, 1440px)
    );
    min-height: var(--header-height, 88px);
    margin-inline: auto;
}

.main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-navigation__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.4rem, 2.4vw, 2.8rem);
}

.main-navigation a {
    position: relative;
    display: inline-flex;
    padding-block: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.62rem, 0.75vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 250ms ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.35rem;
    left: 0;
    height: 1px;
    background: var(--color-red-light, #cf2028);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 250ms ease;
}

.main-navigation a:hover {
    color: #fff;
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}

.header-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.35rem;
}

.header-socials a {
    display: grid;
    place-items: center;
    width: 1.3rem;
    height: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    transition:
        color 250ms ease,
        transform 250ms ease;
}

.header-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.header-socials svg {
    width: 100%;
    height: 100%;
}

.navigation-toggle {
    display: none;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.navigation-toggle svg {
    width: 1.7rem;
    height: 1.7rem;
}

.navigation-toggle__close {
    display: none;
}

.site-header--scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    position: relative;
    display: grid;
    height: clamp(720px, 56.25vw, 1080px);
    max-height: 100svh;
    min-height: 680px;
    isolation: isolate;
    overflow: hidden;
    background: #000;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../assets/images/hero.png");
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-color: #000;
}

.hero__overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: min(100%, calc(100vh * 16 / 9));
    max-width: 1920px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0) 28%,
            rgba(0, 0, 0, 0) 68%,
            rgba(0, 0, 0, 0.55) 88%,
            #000 100%
        ),
        linear-gradient(
            to right,
            #000 0%,
            rgba(0, 0, 0, 0.92) 4%,
            rgba(0, 0, 0, 0.6) 10%,
            rgba(0, 0, 0, 0.18) 17%,
            rgba(0, 0, 0, 0) 24%,
            rgba(0, 0, 0, 0) 76%,
            rgba(0, 0, 0, 0.18) 83%,
            rgba(0, 0, 0, 0.6) 90%,
            rgba(0, 0, 0, 0.92) 96%,
            #000 100%
        );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    align-self: end;
    width: min(
        calc(100% - (var(--page-padding, 1.5rem) * 2)),
        980px
    );
    margin-inline: auto;
    padding-bottom: clamp(3.75rem, 6vh, 5rem);
    text-align: center;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-width: 17rem;
    min-height: 3.8rem;
    padding: 0.9rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(5, 5, 5, 0.62);
    color: var(--color-white-soft, #f1f1f1);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: var(--letter-spacing-normal, 0.12em);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition:
        background 250ms ease,
        border-color 250ms ease,
        color 250ms ease,
        transform 250ms ease,
        box-shadow 250ms ease;
}

.button svg {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
}

.button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.button--primary {
    border-color: var(--color-red, #a70d13);
    color: var(--color-red-light, #cf2028);
}

.button--primary:hover {
    border-color: var(--color-red-light, #cf2028);
    background: rgba(167, 13, 19, 0.22);
    color: #fff;
    box-shadow: 0 0 28px rgba(167, 13, 19, 0.22);
}

.hero__scroll {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-white-soft, #f1f1f1);
    transform: translateX(-50%);
    animation: scrollHint 2s ease-in-out infinite;
}

.hero__scroll svg {
    width: 1.3rem;
    height: 1.3rem;
}

@keyframes scrollHint {
    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0.55;
    }

    50% {
        transform: translate(-50%, 0.45rem);
        opacity: 1;
    }
}

/* =========================================================
   Main page background
   ========================================================= */

.page-atmosphere {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #000;
}

.page-atmosphere__background {
    display: none;
}

/* =========================================================
   Latest release
   ========================================================= */

.release-section {
    position: relative;
    z-index: 1;
    padding-top: clamp(3.5rem, 7vw, 6rem);
    padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.release-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: stretch;
    width: min(100%, 980px);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        ),
        rgba(5, 6, 7, 0.92);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.62),
        0 0 45px rgba(167, 13, 19, 0.06);
}

.release-card__cover {
    position: relative;
    display: block;
    min-height: 352px;
    overflow: hidden;
    background: #000;
}

.release-card__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(0, 0, 0, 0.36) 100%
    );
    pointer-events: none;
}

.release-card__cover img {
    width: 100%;
    height: 100%;
    min-height: 352px;
    object-fit: cover;
    transition:
        transform 500ms ease,
        filter 500ms ease;
}

.release-card__cover:hover img {
    transform: scale(1.035);
    filter: brightness(1.06);
}

.release-card__spotify {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: clamp(1rem, 2vw, 1.4rem);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(167, 13, 19, 0.07),
            transparent 22rem
        ),
        rgba(6, 7, 8, 0.92);
}

.release-card__spotify iframe {
    display: block;
    width: 100%;
    height: 352px;
    border: 0;
    border-radius: var(--radius-md, 10px);
    background: transparent;
}

/* =========================================================
   Video
   ========================================================= */

.video-section {
    position: relative;
    z-index: 1;
    padding-top: clamp(2.5rem, 5vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.video-embed {
    position: relative;
    width: min(100%, 980px);
    aspect-ratio: 16 / 9;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #000;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.68),
        0 0 50px rgba(167, 13, 19, 0.06);
    transition:
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.video-embed:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.78),
        0 0 55px rgba(167, 13, 19, 0.12);
    transform: translateY(-2px);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-section__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.25rem, 2.5vw, 1.8rem);
}

.video-section__action .button {
    min-width: 15.5rem;
    min-height: 3.35rem;
}

/* =========================================================
   Wolf forest + Listen On
   ========================================================= */

.wolf-forest-section {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
    background: #000;
}

.wolf-forest-section__inner {
    position: relative;
    width: min(100%, calc(100vh * 16 / 9));
    max-width: 1920px;
    min-height: clamp(700px, 62vw, 960px);
    margin-inline: auto;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}

.wolf-forest-section__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../assets/images/wolf-forest.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wolf-forest-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to bottom,
            #000 0%,
            rgba(0, 0, 0, 0.96) 5%,
            rgba(0, 0, 0, 0.72) 12%,
            rgba(0, 0, 0, 0.38) 20%,
            rgba(0, 0, 0, 0.1) 30%,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 0.18) 80%,
            rgba(0, 0, 0, 0.55) 90%,
            #000 100%
        ),
        linear-gradient(
            to right,
            #000 0%,
            rgba(0, 0, 0, 0.92) 4%,
            rgba(0, 0, 0, 0.6) 10%,
            rgba(0, 0, 0, 0.18) 17%,
            rgba(0, 0, 0, 0) 24%,
            rgba(0, 0, 0, 0) 76%,
            rgba(0, 0, 0, 0.18) 83%,
            rgba(0, 0, 0, 0.6) 90%,
            rgba(0, 0, 0, 0.92) 96%,
            #000 100%
        );
    pointer-events: none;
}

.wolf-forest-section__content {
    position: relative;
    z-index: 2;
    padding-top: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: clamp(22rem, 40vw, 35rem);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    width: min(100%, 980px);
    margin-inline: auto;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 170px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        ),
        rgba(0, 0, 0, 0.7);
    color: var(--color-white-soft, #f1f1f1);
    backdrop-filter: blur(5px);
    transition:
        transform 250ms ease,
        border-color 250ms ease,
        background 250ms ease,
        box-shadow 250ms ease;
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-red, #a70d13);
    background:
        linear-gradient(
            145deg,
            rgba(167, 13, 19, 0.1),
            rgba(255, 255, 255, 0.015)
        ),
        rgba(0, 0, 0, 0.8);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(167, 13, 19, 0.14);
}

.platform-card svg,
.platform-card .platform-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    transition:
        transform 250ms ease,
        filter 250ms ease;
}

.platform-card svg {
    fill: currentColor;
}

.platform-card .platform-icon {
    object-fit: contain;
}

.platform-card:hover svg,
.platform-card:hover .platform-icon {
    transform: scale(1.08);
}

.platform-card span {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================================================
   About
   ========================================================= */

.about-section {
    position: relative;
    z-index: 1;
    padding-block: clamp(4rem, 8vw, 7rem);
    background: #000;
    text-align: center;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(70%, 760px);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: translateX(-50%);
}

.about-section__eyebrow {
    margin-bottom: 1rem;
    color: var(--color-red-light, #cf2028);
    font-size: 0.72rem;
    letter-spacing: var(--letter-spacing-extra-wide, 0.28em);
    text-transform: uppercase;
}

.about-section h3 {
    margin-bottom: 1.5rem;
    color: var(--color-white-soft, #f1f1f1);
    font-family: var(--font-display, "Cinzel", serif);
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.15;
}

.about-section p:not(.about-section__eyebrow) {
    max-width: 760px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body, "Montserrat", sans-serif);
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    font-weight: 300;
    line-height: var(--line-height-relaxed, 1.85);
}

.about-section p + p {
    margin-top: 1.2rem;
}

.about-section__intro {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: var(--font-display, "Cinzel", serif) !important;
    font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
    letter-spacing: 0.04em;
}

.about-section__closing {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.76) !important;
    font-family: var(--font-body, "Montserrat", sans-serif) !important;
    font-size: 1.08rem !important;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

/* =========================================================
   Contact
   ========================================================= */

.contact-section {
    position: relative;
    z-index: 1;
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
    background: #000;
}

.contact-box {
    width: min(100%, 760px);
    margin-inline: auto;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.008)
        ),
        rgba(5, 6, 7, 0.78);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(167, 13, 19, 0.06);
}

.contact-box__intro {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: var(--line-height-relaxed, 1.85);
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1.4rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.contact-form label {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.025);
    color: var(--color-white-soft, #f1f1f1);
    font: inherit;
    line-height: 1.5;
    outline: none;
    transition:
        border-color 250ms ease,
        background 250ms ease,
        box-shadow 250ms ease;
}

.contact-form input {
    min-height: 3.25rem;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-red-light, #cf2028);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 0 22px rgba(167, 13, 19, 0.14);
}

.contact-form__submit {
    width: min(100%, 17rem);
    min-width: 0;
    min-height: 3.4rem;
    margin: 0.4rem auto 0;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    position: relative;
    padding: 0 0 clamp(2rem, 4vw, 3.5rem);
    background: #000;
}

.site-footer__divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.site-footer__divider > span {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25)
    );
}

.site-footer__divider > span:last-child {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.25),
        transparent
    );
}

.site-footer__mark {
    display: grid;
    place-items: center;
    width: 2.6rem;
    aspect-ratio: 1;
    color: var(--color-red-light, #cf2028);
    font-family: var(--font-display, "Cinzel", serif);
    font-size: 1.3rem;
    border: 1px solid var(--color-red, #a70d13);
    clip-path: polygon(
        50% 0%,
        90% 25%,
        82% 74%,
        50% 100%,
        18% 74%,
        10% 25%
    );
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    width: min(100%, 980px);
    margin-inline: auto;
    text-align: center;
}

.site-footer__column {
    min-width: 0;
}

.site-footer__column h2 {
    margin-bottom: 0.45rem;
    color: var(--color-white-soft, #f1f1f1);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__column a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    overflow-wrap: anywhere;
    transition: color 250ms ease;
}

.site-footer__column a:hover {
    color: #fff;
}

.site-footer__copyright {
    margin-top: clamp(2rem, 4vw, 3rem);
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
}

/* =========================================================
   Legal pages
   ========================================================= */

.legal-body {
    background: #000;
    color: var(--color-white-soft, #f1f1f1);
}

.legal-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.legal-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(92%, 1180px);
    min-height: 88px;
    margin-inline: auto;
}

.legal-header__brand {
    color: #fff;
    font-family: var(--font-display, "Cinzel", serif);
    font-size: 1.35rem;
    letter-spacing: 0.25em;
}

.legal-header__back {
    color: var(--color-white-60, rgba(255, 255, 255, 0.6));
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 250ms ease;
}

.legal-header__back:hover {
    color: #fff;
}

.legal-page {
    padding-top: clamp(5rem, 10vw, 7.5rem);
    padding-bottom: clamp(5rem, 10vw, 7.5rem);
}

.legal-page__heading {
    margin-bottom: clamp(3.5rem, 7vw, 5rem);
    text-align: center;
}

.legal-page__eyebrow {
    margin-bottom: 1.1rem;
    color: var(--color-red-light, #cf2028);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.legal-page__heading h1 {
    margin-bottom: 1.5rem;
    font-family: var(--font-display, "Cinzel", serif);
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.1;
}

.legal-page__intro {
    max-width: 700px;
    margin-inline: auto;
    color: var(--color-white-60, rgba(255, 255, 255, 0.6));
    line-height: 1.8;
}

.legal-content {
    max-width: 850px;
    margin-inline: auto;
}

.legal-content__section {
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content__section:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content__section h2 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: var(--font-display, "Cinzel", serif);
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}

.legal-content__section p {
    margin-bottom: 1.1rem;
    color: var(--color-white-60, rgba(255, 255, 255, 0.6));
    line-height: 1.9;
}

.legal-content__section p:last-child {
    margin-bottom: 0;
}

.legal-content__section strong {
    color: #fff;
}

.legal-content a {
    color: var(--color-red-light, #cf2028);
    transition: color 250ms ease;
}

.legal-content a:hover {
    color: #fff;
}

.legal-footer {
    padding: clamp(3.5rem, 7vw, 4.5rem) 0;
    text-align: center;
}

.legal-footer__divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.8rem;
}

.legal-footer__divider span {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.legal-footer__mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-red, #a70d13);
    color: var(--color-red-light, #cf2028);
    font-family: var(--font-display, "Cinzel", serif);
}

.legal-footer__navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2.2rem;
}

.legal-footer__navigation a {
    color: var(--color-white-60, rgba(255, 255, 255, 0.6));
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 250ms ease;
}

.legal-footer__navigation a:hover,
.legal-footer__navigation a[aria-current="page"] {
    color: #fff;
}

.legal-footer__copyright {
    color: var(--color-grey-dark, #4a4a4a);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
    .site-header {
        position: absolute;
    }

    .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .header-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .navigation-toggle {
        position: relative;
        z-index: 1002;
        display: grid;
    }

    .main-navigation {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: grid;
        place-items: center;
        padding: 7rem 2rem 3rem;
        background:
            radial-gradient(
                circle at 50% 25%,
                rgba(167, 13, 19, 0.13),
                transparent 20rem
            ),
            rgba(0, 0, 0, 0.985);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-1rem);
        transition:
            opacity 400ms ease,
            visibility 400ms ease,
            transform 400ms ease;
    }

    .main-navigation__list {
        flex-direction: column;
        gap: 1.2rem;
    }

    .main-navigation a {
        font-family: var(--font-display, "Cinzel", serif);
        font-size: clamp(1.4rem, 6vw, 2.3rem);
        letter-spacing: 0.12em;
    }

    body.navigation-open .main-navigation {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    body.navigation-open .navigation-toggle__open {
        display: none;
    }

    body.navigation-open .navigation-toggle__close {
        display: block;
    }

    .hero {
        height: 900px;
        max-height: none;
        min-height: 900px;
    }

    .hero__background {
        background-position: 50% center;
        background-size: auto 100%;
    }

    .hero__content {
        padding-bottom: 5rem;
    }

    .release-card {
        grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    }

    .wolf-forest-section__inner {
        min-height: 760px;
    }

    .wolf-forest-section__content {
        padding-bottom: 27rem;
    }
}

@media (max-width: 720px) {
    .release-card {
        grid-template-columns: 1fr;
        width: min(100%, 520px);
    }

    .release-card__cover {
        min-height: 0;
        aspect-ratio: 1;
    }

    .release-card__cover img {
        min-height: 0;
        aspect-ratio: 1;
    }

    .release-card__spotify {
        padding: 0.85rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        width: min(100%, 520px);
        gap: 1rem;
    }

    .platform-card {
        min-height: 130px;
        padding: 2rem;
    }

    .wolf-forest-section__inner {
        min-height: 900px;
    }

    .wolf-forest-section__content {
        padding-bottom: 29rem;
    }

    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    :root {
        --page-padding: 1rem;
        --header-height: 76px;
    }

    .hero {
        height: 820px;
        min-height: 820px;
    }

    .hero__content {
        width: calc(100% - 2rem);
        padding-bottom: 4.5rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .button {
        width: min(100%, 22rem);
        min-width: 0;
        min-height: 3.5rem;
    }

    .section-heading {
        grid-template-columns: 1fr auto 1fr;
        gap: 0.8rem;
    }

    .section-heading h2 {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .video-section__action .button {
        width: min(100%, 22rem);
        min-width: 0;
    }

    .wolf-forest-section__inner {
        width: calc(100% - 2rem);
        min-height: 830px;
    }

    .wolf-forest-section__background {
        background-position: center center;
    }

    .wolf-forest-section__content {
        padding-top: 2.5rem;
        padding-bottom: 28rem;
    }

    .about-section h3 {
        font-size: clamp(1.85rem, 10vw, 2.75rem);
    }

    .about-section__intro {
        font-size: 1.05rem !important;
    }

    .about-section__closing {
        font-size: 1rem !important;
    }

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

    .contact-box {
        padding: 1.4rem;
    }

    .contact-form__submit {
        width: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .legal-header__inner {
        min-height: 76px;
    }

    .legal-header__brand {
        font-size: 1rem;
    }

    .legal-header__back {
        font-size: 0.68rem;
    }

    .legal-footer__navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 420px) {
    .hero {
        height: 760px;
        min-height: 760px;
    }

    .hero__content {
        padding-bottom: 4rem;
    }

    .section-heading h2 {
        white-space: normal;
        line-height: 1.35;
    }

    .wolf-forest-section__inner {
        min-height: 780px;
    }

    .wolf-forest-section__content {
        padding-bottom: 26rem;
    }

    .site-footer__divider {
        gap: 0.8rem;
    }

    .site-footer__mark {
        width: 2.35rem;
    }
}

/* =========================================================
   Reduced motion
   ========================================================= */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
