:root {
    --ink: #0b0d0f;
    --ink-soft: #15191c;
    --paper: #f1efe8;
    --paper-deep: #e2dfd4;
    --white: #ffffff;
    --blue: #006ca8;
    --blue-bright: #18a0ee;
    --olive: #596047;
    --sand: #c8c4b5;
    --grey: #b9bdbe;
    --line-dark: rgba(11, 13, 15, 0.18);
    --line-light: rgba(255, 255, 255, 0.2);
    --content: 1440px;
    --header-height: 88px;
    --radius: 2px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
    overflow: hidden;
}

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

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

button {
    color: inherit;
}

a {
    color: inherit;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 0;
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(4rem, 7vw, 8rem);
}

h2 {
    font-size: clamp(3.25rem, 6vw, 7rem);
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--blue);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: var(--header-height);
    padding: 8px clamp(18px, 4vw, 64px);
    color: var(--white);
    border-bottom: 1px solid var(--line-light);
    background: rgba(11, 13, 15, 0.94);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.brand span {
    display: grid;
    line-height: 1;
}

.brand strong {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.brand small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
}

.site-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: var(--blue-bright);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cart-trigger {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
    padding: 10px 0 10px 14px;
    color: var(--white);
    border: 0;
    background: transparent;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-label-short {
    display: none;
}

.cart-count {
    display: grid;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    place-items: center;
    color: var(--ink);
    border-radius: 999px;
    background: var(--blue-bright);
    font-size: 0.78rem;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
    min-height: calc(100svh - var(--header-height));
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(52px, 6vw, 96px) clamp(28px, 5vw, 84px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow > span:first-child {
    display: inline-block;
    width: 34px;
    height: 2px;
    background: var(--blue);
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    position: relative;
    z-index: 1;
    width: min-content;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
}

.hero-intro {
    max-width: 470px;
    margin: 38px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.hero-price {
    font-size: 1.2rem;
    font-weight: 800;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button:disabled {
    opacity: 0.55;
    transform: none;
    cursor: not-allowed;
}

.button-primary {
    color: var(--white);
    background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #075b8a;
}

.button-secondary {
    color: var(--ink);
    border-color: var(--ink);
    background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--white);
    background: var(--ink);
}

.button-wide {
    width: 100%;
    justify-content: space-between;
}

.hero-media {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 13, 15, 0.72), transparent 27%), linear-gradient(0deg, rgba(11, 13, 15, 0.12), transparent 35%);
    content: "";
    pointer-events: none;
}

.hero-media picture,
.hero-media img {
    width: 100%;
    height: 100%;
}

.hero-media picture {
    position: absolute;
    inset: 0;
}

.hero-media img {
    object-fit: cover;
    object-position: 55% center;
}

.hero-stamp {
    position: absolute;
    z-index: 2;
    right: clamp(22px, 4vw, 64px);
    bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(4rem, 9vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 1;
}

.shop-section {
    padding: clamp(76px, 10vw, 160px) clamp(18px, 5vw, 80px);
}

.section-heading,
.product,
.next-drop,
.music-section,
.site-footer {
    width: min(100%, var(--content));
    margin-inline: auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(180px, 0.55fr) 1.45fr;
    align-items: end;
    margin-bottom: clamp(48px, 7vw, 96px);
}

.section-heading .eyebrow {
    align-self: start;
    margin-top: 4px;
}

.product {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: start;
    gap: clamp(36px, 7vw, 112px);
}

.product-gallery {
    min-width: 0;
}

.product-image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--paper-deep);
    overflow: hidden;
}

.product-image-frame picture,
.product-image-frame img {
    width: 100%;
    height: 100%;
}

.product-image-frame img {
    object-fit: cover;
    transition: opacity 180ms ease, transform 700ms var(--ease);
}

.product-image-frame.is-changing img {
    opacity: 0.35;
    transform: scale(1.01);
}

.image-counter {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 10px;
    color: var(--white);
    background: rgba(11, 13, 15, 0.82);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 0;
    background: var(--paper-deep);
    cursor: pointer;
    overflow: hidden;
}

.gallery-thumb::after {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    content: "";
    transition: border-color 180ms ease;
}

.gallery-thumb[aria-pressed="true"]::after,
.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
    border-color: var(--blue);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    padding-top: 6px;
}

.product-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-dark);
}

.product-kicker {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.product-heading-row h2 {
    font-size: clamp(2.5rem, 4.3vw, 5rem);
}

.product-price {
    flex: 0 0 auto;
    margin: 5px 0 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
}

.product-description {
    max-width: 560px;
    margin: 28px 0 36px;
    color: rgba(11, 13, 15, 0.67);
    font-size: 1.05rem;
}

.product-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.option-group + .option-group {
    margin-top: 34px;
}

.option-group legend {
    width: 100%;
    margin-bottom: 14px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.option-group legend strong {
    color: rgba(11, 13, 15, 0.6);
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-option {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 9px;
    border: 1px solid transparent;
    background: transparent;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
}

.color-option:hover,
.color-option:focus-visible,
.color-option[aria-pressed="true"] {
    border-color: var(--ink);
}

.color-swatch {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(11, 13, 15, 0.25);
    border-radius: 999px;
    background: var(--swatch);
}

.size-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.size-option {
    min-height: 50px;
    padding: 8px;
    border: 1px solid rgba(11, 13, 15, 0.25);
    background: transparent;
    font-size: 0.75rem;
    font-weight: 900;
    cursor: pointer;
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.size-option:hover,
.size-option:focus-visible,
.size-option[aria-pressed="true"] {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.option-group-sizes.has-error .size-options {
    outline: 2px solid #ad3128;
    outline-offset: 3px;
}

.form-error {
    min-height: 20px;
    margin: 8px 0 0;
    color: #8e221b;
    font-size: 0.78rem;
    font-weight: 700;
}

.product-form .button-wide {
    margin-top: 28px;
}

.product-availability {
    margin: 24px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(11, 13, 15, 0.25);
    color: rgba(11, 13, 15, 0.78);
    background: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.45;
}

.product-compliance-panel {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(11, 13, 15, 0.2);
    background: rgba(255, 255, 255, 0.38);
}

.product-compliance-panel h3 {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-compliance-panel dl {
    margin: 0;
}

.product-compliance-panel dl > div {
    display: grid;
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(11, 13, 15, 0.12);
    font-size: 0.7rem;
    line-height: 1.45;
}

.product-compliance-panel dt {
    color: rgba(11, 13, 15, 0.58);
    font-weight: 800;
}

.product-compliance-panel dd {
    margin: 0;
    overflow-wrap: anywhere;
    white-space: pre-line;
}

.product-compliance-panel > p:last-child {
    margin: 12px 0 0;
    font-size: 0.7rem;
}

.product-compliance-panel a {
    color: var(--blue);
    font-weight: 800;
    text-underline-offset: 3px;
}

.detail-strip {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    min-height: 670px;
    color: var(--white);
    background: var(--blue);
}

.detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 112px);
}

.detail-copy .eyebrow span {
    background: var(--white);
}

.detail-copy h2 {
    font-size: clamp(3rem, 4.3vw, 6.6rem);
}

.detail-copy > p:last-child {
    max-width: 400px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.detail-strip picture,
.detail-strip img {
    width: 100%;
    height: 100%;
}

.detail-strip img {
    object-fit: cover;
    object-position: 48% center;
}

.music-section {
    max-width: none;
    padding: clamp(76px, 10vw, 160px) clamp(18px, 5vw, 80px);
    color: var(--white);
    background: var(--ink);
}

.section-heading-music,
.music-grid {
    width: min(100%, var(--content));
    margin-inline: auto;
}

.music-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: 18px;
}

.embed-card {
    padding: 16px;
    border: 1px solid var(--line-light);
    background: var(--ink-soft);
}

.embed-label {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.embed-card iframe {
    display: block;
    width: 100%;
    border: 0;
}

.external-media {
    display: grid;
    min-height: 352px;
    place-items: center;
    padding: clamp(24px, 5vw, 54px);
    border: 1px dashed rgba(255, 255, 255, 0.28);
    background:
        radial-gradient(circle at top right, rgba(30, 99, 133, 0.3), transparent 48%),
        #11161a;
    text-align: center;
}

.embed-card-video .external-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

.external-media-copy {
    display: grid;
    max-width: 460px;
    justify-items: center;
    gap: 15px;
}

.external-media-copy strong {
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
    text-transform: uppercase;
}

.external-media-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    line-height: 1.65;
}

.external-media-copy .button {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
}

.external-media-copy a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.66rem;
    text-underline-offset: 4px;
}

.embed-card-video iframe {
    aspect-ratio: 16 / 9;
    height: auto;
}

.embed-card-spotify iframe {
    height: 100%;
    min-height: 352px;
}

.site-footer {
    display: grid;
    max-width: none;
    min-height: 230px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 40px clamp(18px, 5vw, 80px);
    border-top: 1px solid var(--line-light);
    color: var(--white);
    background: var(--ink);
}

.site-footer img {
    width: 76px;
    height: 76px;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer-copy {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
}

.site-footer-copy nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 16px;
}

.site-footer-copy nav a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
}

.site-footer a {
    justify-self: end;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

dialog {
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(4px);
}

.cart-dialog {
    inset: 0 0 0 auto;
    width: min(100%, 520px);
    height: 100%;
    color: var(--ink);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 360ms var(--ease), display 360ms allow-discrete, overlay 360ms allow-discrete;
}

.cart-dialog[open] {
    transform: translateX(0);
}

@starting-style {
    .cart-dialog[open] {
        transform: translateX(100%);
    }
}

.cart-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
    overflow: hidden;
}

.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
    padding: 28px clamp(20px, 5vw, 42px);
    border-bottom: 1px solid var(--line-dark);
}

.cart-header .eyebrow,
.checkout-panel .eyebrow {
    margin-bottom: 13px;
}

.cart-header h2 {
    font-size: clamp(2.6rem, 8vw, 3.6rem);
}

.cart-header > div {
    min-width: 0;
}

.icon-button {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: transparent;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
    color: var(--white);
    background: var(--ink);
}

.cart-lines {
    min-width: 0;
    padding: 0 clamp(20px, 5vw, 42px);
    overflow-y: auto;
}

.cart-line {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-dark);
}

.cart-line img {
    width: 88px;
    height: 110px;
    object-fit: cover;
}

.cart-line h3 {
    margin: 1px 0 7px;
    font-size: 0.95rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.cart-line-meta,
.cart-line-price {
    margin: 0;
    color: rgba(11, 13, 15, 0.62);
    font-size: 0.78rem;
}

.cart-line-price {
    margin-top: 8px;
    color: var(--ink);
    font-weight: 800;
}

.cart-line-controls {
    display: flex;
    grid-column: 2 / -1;
    align-items: center;
    justify-content: space-between;
    margin-top: -2px;
}

.quantity-control {
    display: inline-grid;
    grid-template-columns: 34px 34px 34px;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--line-dark);
}

.quantity-control button {
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
    color: var(--white);
    background: var(--ink);
}

.quantity-control button:disabled {
    color: rgba(11, 13, 15, 0.3);
    background: transparent;
    cursor: not-allowed;
}

.quantity-control span {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.remove-line {
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: rgba(11, 13, 15, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-empty {
    align-self: center;
    padding: 56px clamp(20px, 5vw, 42px);
    text-align: center;
}

.cart-empty p {
    margin-bottom: 24px;
    color: rgba(11, 13, 15, 0.65);
}

.cart-footer {
    min-width: 0;
    padding: 24px clamp(20px, 5vw, 42px) 30px;
    border-top: 1px solid var(--line-dark);
    background: var(--paper);
}

.cart-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-total strong {
    font-size: 1.35rem;
    letter-spacing: 0;
}

.cart-turnstile {
    margin: 0 0 18px;
}

.cart-turnstile > p {
    margin: 0 0 9px;
    color: rgba(11, 13, 15, 0.64);
    font-size: 0.68rem;
    line-height: 1.5;
    text-align: left;
}

.cart-turnstile a {
    color: inherit;
}

.cart-turnstile [data-checkout-turnstile-error] {
    color: #7f211a;
    font-weight: 750;
}

.cart-footer > p {
    margin: 12px 0 0;
    color: rgba(11, 13, 15, 0.64);
    font-size: 0.7rem;
    text-align: center;
}

.toast {
    position: fixed;
    z-index: 500;
    right: 20px;
    bottom: 20px;
    max-width: min(380px, calc(100% - 40px));
    padding: 14px 18px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 240ms var(--ease);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: minmax(320px, 0.82fr) 1.18fr;
    }

    .hero-copy {
        padding-inline: 34px;
    }

    .product {
        gap: 44px;
    }

    .size-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .detail-strip {
        grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
    }
}

@media (max-width: 899px) {
    :root {
        --header-height: 76px;
    }

    .site-header {
        grid-template-columns: auto 1fr auto;
        padding-block: 7px;
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .site-nav {
        display: flex;
        justify-self: center;
        gap: clamp(14px, 3vw, 24px);
    }

    .site-nav a {
        font-size: 0.66rem;
    }

    .hero {
        display: flex;
        min-height: auto;
        flex-direction: column-reverse;
    }

    .hero-copy {
        margin-top: -18vw;
        padding: 60px 24px 72px;
        background: linear-gradient(0deg, var(--ink) 82%, transparent);
    }

    .hero-media {
        min-height: 66svh;
    }

    .hero-media::after {
        background: linear-gradient(0deg, var(--ink) 0%, transparent 36%);
    }

    .hero-stamp {
        top: 18px;
        right: 22px;
        bottom: auto;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .product-info {
        position: static;
    }

    .detail-strip {
        display: flex;
        flex-direction: column-reverse;
    }

    .detail-strip picture {
        min-height: 52vw;
    }

    .detail-copy {
        padding: 64px 24px 72px;
    }

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

    .embed-card-spotify iframe {
        min-height: 440px;
    }

    .embed-card-spotify .external-media {
        min-height: 440px;
    }
}

@media (max-width: 699px) {
    .brand span,
    .cart-label-full {
        display: none;
    }

    .cart-label-short {
        display: inline;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .cart-trigger {
        padding-left: 8px;
    }

    .hero-media {
        min-height: 58svh;
    }

    .hero-media img {
        object-position: 52% center;
    }

    .hero-copy {
        margin-top: -24vw;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 18.75vw, 4rem);
    }

    .detail-copy h2 {
        font-size: clamp(2.5rem, 13vw, 3rem);
    }

    .hero-intro {
        margin-top: 28px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-price {
        text-align: center;
    }

    .shop-section {
        padding-inline: 14px;
    }

    .product-heading-row {
        align-items: flex-end;
    }

    .color-options {
        display: grid;
        grid-template-columns: 1fr;
    }

    .color-option {
        width: 100%;
    }

    .music-section {
        padding-inline: 14px;
    }

    .embed-card {
        padding: 10px;
    }

    .site-footer {
        min-height: 360px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
        text-align: center;
    }

    .site-footer a {
        justify-self: center;
    }

    .site-footer-copy nav {
        max-width: 430px;
    }

    .cart-line {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .cart-line img {
        width: 72px;
        height: 90px;
    }

    .cart-line > .icon-button {
        display: none;
    }

    .cart-line-controls {
        grid-column: 2;
    }
}

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

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