@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("../fonts/jost-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("../fonts/jost-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: "Poppins", Arial, sans-serif;
    --font-body: "Jost", Arial, sans-serif;
    --color-text: #111111;
    --color-muted: #666b70;
    --color-border: #dedede;
    --color-surface: #ffffff;
    --color-soft: #f4f5f5;
    --color-dark: #17191b;
    --color-blue: #0088cc;
    --color-blue-dark: #006a9d;
    --color-green: #6d8e60;
    --max-width: 1180px;
    --header-height: 74px;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-surface);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.14;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.25rem);
}

h3 {
    font-size: 1.35rem;
}

ul {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 2000;
    transform: translateY(-150%);
    padding: 0.75rem 1rem;
    background: var(--color-dark);
    color: #ffffff;
    border-radius: var(--radius);
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
    max-width: var(--max-width);
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1;
}

.brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    background: #ffffff;
}

.site-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    padding: 0;
    margin: 0;
}

.site-nav__link,
.submenu a {
    font-weight: 600;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #2b2f32;
}

.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__link.is-active,
.submenu a:hover,
.submenu a:focus {
    color: var(--color-blue);
}

.site-nav__item {
    position: relative;
}

.site-nav__row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.submenu-toggle {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.submenu-toggle::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 160ms ease;
}

.site-nav__item.is-open .submenu-toggle::after {
    transform: rotate(-135deg);
    top: 13px;
}

.submenu {
    list-style: none;
    padding: 0.8rem 0;
    margin: 0;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.submenu a {
    display: block;
    min-width: 230px;
    padding: 0.55rem 1rem;
    color: #2b2f32;
    text-transform: none;
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 0;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-text);
    transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.image-hero,
.image-band {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: var(--color-dark);
}

.image-hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: end;
}

.image-hero--page {
    min-height: 64vh;
}

.image-hero__image,
.image-band__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
    will-change: transform;
}

.image-hero__shade,
.image-band__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.72) 100%);
}

.image-hero__content {
    position: relative;
    z-index: 1;
    width: min(940px, calc(100% - 48px));
    margin: 0 auto;
    padding: 9rem 0 7rem;
    text-align: center;
}

.image-hero__content p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.home-hero {
    width: min(var(--max-width), calc(100% - 48px));
    min-height: calc(82vh - var(--header-height));
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(1.75rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
    gap: clamp(2.2rem, 6vw, 5rem);
    align-items: center;
}

.home-hero + .section {
    padding-top: 3.5rem;
}

.home-hero__content {
    max-width: 580px;
}

.home-hero__content p {
    max-width: 520px;
    color: var(--color-muted);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.home-hero__media {
    justify-self: end;
    width: min(620px, 100%);
}

.home-hero__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-band {
    min-height: 540px;
    display: grid;
    align-items: end;
}

.image-band__content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
    padding: 7rem 0 5.5rem;
    text-align: center;
}

.section {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 6.5rem 0;
}

.section--narrow {
    width: min(850px, calc(100% - 48px));
    text-align: center;
}

.section--muted {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
    padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
    background: var(--color-soft);
}

.section--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.section--reverse .split-media {
    order: 2;
}

.split-copy {
    max-width: 560px;
}

.split-copy p {
    font-size: 1.05rem;
}

.split-media {
    min-width: 0;
}

.rounded-media,
.manual-cover {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.rounded-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.manual-cover {
    width: min(170px, 100%);
    margin: 0 auto;
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--color-blue);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

.image-hero .eyebrow,
.image-band .eyebrow {
    color: #ffffff;
}

.large-copy {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.55;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.button-row--center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn--primary {
    color: #ffffff;
    background: var(--color-blue);
}

.btn--primary:hover,
.btn--primary:focus {
    background: var(--color-blue-dark);
}

.btn--secondary {
    color: var(--color-text);
    border-color: var(--color-border);
    background: #ffffff;
}

.btn--light {
    color: var(--color-text);
    background: #ffffff;
}

.btn--outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.text-link {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.statement-section {
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
    padding: 7rem 0;
    text-align: center;
}

.statement-section p {
    font-size: 1.25rem;
}

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

.cover-card,
.product-mini,
.spec-panel,
.gallery-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.cover-card {
    overflow: hidden;
}

.cover-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-soft);
}

.cover-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.cover-card:hover .cover-card__image {
    transform: scale(1.04);
}

.cover-card--static:hover .cover-card__image {
    transform: none;
}

.cover-card__body {
    padding: 1.4rem;
}

.cover-card__body h2 {
    font-size: 1.45rem;
}

.content-band {
    width: min(850px, 100%);
    margin: 0 auto;
    text-align: center;
}

.page-intro {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 6rem 0 3rem;
}

.page-intro__content {
    max-width: 760px;
}

.page-intro p {
    font-size: 1.2rem;
}

.fit-summary {
    padding-top: 2rem;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.legal-intro {
    padding-bottom: 1.5rem;
}

.legal-content {
    width: min(860px, calc(100% - 48px));
    padding-top: 2.5rem;
}

.legal-content h2 {
    margin-top: 2.4rem;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #30363a;
}

.legal-content a {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.product-hero {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 5.5rem 0 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.product-hero__media {
    background: var(--color-soft);
    border-radius: var(--radius);
    padding: clamp(1.2rem, 3vw, 2.4rem);
}

.product-hero__image {
    width: 100%;
    max-height: 610px;
    object-fit: contain;
}

.lead {
    font-size: 1.2rem;
    color: var(--color-muted);
}

.price {
    margin: 1.4rem 0 0;
    font-weight: 600;
    font-size: 1.15rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.7rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: var(--color-green);
}

.spec-grid {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.spec-panel {
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.spec-panel h2 {
    font-size: 1.7rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    padding: 1rem;
    background: var(--color-soft);
}

.gallery-item__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.section--callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3.5rem;
    margin-bottom: 5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.section--callout h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

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

.product-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    align-items: stretch;
}

.product-overview-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.product-overview-card__media {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--color-soft);
}

.product-overview-card__image {
    width: min(360px, 100%);
    max-height: 280px;
    object-fit: contain;
}

.product-overview-card__body {
    padding: clamp(1.5rem, 3vw, 2.2rem);
}

.product-overview-card__body h2 {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.product-mini {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.product-mini h2 {
    font-size: 1.45rem;
}

.product-mini__image {
    width: 160px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.form-layout {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.form-layout--single {
    display: block;
    width: min(760px, 100%);
}

.form-layout__copy {
    max-width: 480px;
}

.site-form {
    display: grid;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.site-form label {
    display: grid;
    gap: 0.35rem;
    color: #30363a;
    font-weight: 600;
}

.site-form input,
.site-form textarea,
.site-form select {
    width: 100%;
    min-height: 46px;
    padding: 0.72rem 0.85rem;
    border: 1px solid #cfd4d8;
    border-radius: 6px;
    color: var(--color-text);
    background: #ffffff;
    font: inherit;
}

.site-form textarea {
    resize: vertical;
}

.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
    outline: 2px solid rgba(0, 136, 204, 0.3);
    border-color: var(--color-blue);
}

.form-status {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
}

.form-status p,
.form-status ul {
    margin-bottom: 0;
}

.form-status--success {
    color: #17451e;
    background: #e5f4e3;
    border: 1px solid #b7d9b1;
}

.form-status--error {
    color: #6d211c;
    background: #f8e8e6;
    border: 1px solid #e6b9b4;
}

.hp-field {
    position: absolute;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-hero {
    padding-top: 6rem;
}

.contact-image {
    width: min(160px, 100%);
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.not-found {
    min-height: 52vh;
}

.site-footer {
    color: #ffffff;
    background: var(--color-dark);
}

.site-footer__inner {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 4.5rem 0;
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
    gap: 2rem;
}

.site-footer h2 {
    font-size: 1.2rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    display: inline-block;
    padding: 0.18rem 0;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer .text-link {
    color: #ffffff;
}

.site-footer__bottom {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 1.25rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cookie-link {
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    cursor: pointer;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus {
    color: #ffffff;
}

.cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 1500;
    width: min(760px, calc(100% - 36px));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice h2 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.cookie-notice p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.cookie-notice__actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.6rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (min-width: 900px) {
    .submenu {
        position: absolute;
        left: 0;
        top: calc(100% + 0.4rem);
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

    .site-nav__item:hover .submenu,
    .site-nav__item:focus-within .submenu,
    .site-nav__item.is-open .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .cover-grid,
    .product-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .site-header__inner {
        padding: 0 18px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #ffffff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow);
        transition: max-height 220ms ease;
    }

    .site-header.is-nav-open .site-nav {
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .site-nav__list {
        display: grid;
        gap: 0;
        padding: 0.8rem 18px 1.2rem;
    }

    .site-nav__row {
        justify-content: space-between;
    }

    .site-nav__link {
        min-height: 48px;
        font-size: 0.95rem;
    }

    .submenu {
        display: none;
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--color-blue);
        border-radius: 0;
        padding: 0.2rem 0 0.6rem;
        margin-left: 0.8rem;
    }

    .site-nav__item.is-open .submenu {
        display: block;
    }

    .image-hero {
        min-height: 76vh;
    }

    .image-hero--page {
        min-height: 62vh;
    }

    .image-hero__content {
        width: min(100% - 36px, 760px);
        padding: 6.5rem 0 4.5rem;
    }

    .home-hero {
        width: min(100% - 36px, var(--max-width));
        min-height: auto;
        padding: 4rem 0;
        grid-template-columns: 1fr;
    }

    .home-hero + .section {
        padding-top: 4.5rem;
    }

    .home-hero__media {
        justify-self: start;
        width: min(560px, 100%);
    }

    .image-band {
        min-height: 450px;
    }

    .section,
    .section--narrow,
    .statement-section,
    .page-intro,
    .product-hero {
        width: min(100% - 36px, var(--max-width));
    }

    .section {
        padding: 4.5rem 0;
    }

    .section--muted {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .section--split,
    .product-hero,
    .spec-grid,
    .form-layout,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .section--reverse .split-media {
        order: 0;
    }

    .product-hero {
        padding-top: 3.5rem;
    }

    .form-layout__copy {
        max-width: none;
    }

    .site-footer__inner {
        padding: 3.5rem 0;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .button-row,
    .section--callout {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

    .product-mini__image {
        width: min(220px, 100%);
        margin: 0 auto;
    }

    .section--callout {
        padding: 2rem;
    }

    .brand__name {
        font-size: 0.95rem;
    }

    .cookie-notice {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-notice__actions {
        flex-direction: column;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@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;
    }

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

    .image-hero__image,
    .image-band__image {
        transform: none;
    }
}
