:root {
    --bg: #f5fbff;
    --bg-soft: #e7f5fb;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --ink: #0d1b2a;
    --muted: #577185;
    --line: rgba(9, 76, 130, .14);
    --metal: #061827;
    --glass: rgba(198, 233, 244, .46);
    --blue: #075aa6;
    --blue-dark: #05315d;
    --cyan: #20c4ee;
    --sky: #8be5ff;
    --accent: #f0c86a;
    --bronze: var(--accent);
    --bronze-dark: var(--blue);
    --teal: #0877a8;
    --shadow: 0 18px 45px rgba(6, 49, 93, .12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 5vw;
    color: var(--surface);
    background: rgba(5, 22, 36, .58);
    border-bottom: 1px solid rgba(139, 229, 255, .16);
    backdrop-filter: blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    text-decoration: none;
    font-weight: 800;
}

.brand-logo,
.brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
}

.brand-logo {
    object-fit: cover;
    object-position: center;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(139, 229, 255, .28);
    padding: 0;
    transform: scale(1.14);
}

.brand-logo-default {
    object-fit: cover;
    transform: scale(1.12);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .95);
    color: var(--surface);
    color: var(--blue);
}

.brand-name {
    overflow-wrap: anywhere;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    padding: 9px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(245, 251, 255, .82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(32, 196, 238, .14);
    color: var(--surface);
    box-shadow: inset 0 0 0 1px rgba(139, 229, 255, .18);
    outline: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(139, 229, 255, .22);
    border-radius: 999px;
    background: rgba(32, 196, 238, .12);
    color: var(--surface);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-scroll-scene {
    height: var(--hero-scroll-length, 190svh);
    min-height: 1060px;
    position: relative;
    background: linear-gradient(135deg, #051523, #06315d 52%, #0a84bd);
}

.hero-scroll-scene-static {
    height: auto;
    min-height: 0;
}

.hero {
    --door-progress: 0;
    --hero-left-open: 32%;
    --hero-right-open: 32%;
    --hero-left-door-x-offset: 0px;
    --hero-right-door-x-offset: 0px;
    --hero-left-door-y-offset: 0px;
    --hero-right-door-y-offset: 0px;
    --hero-left-door-scale-x: 1;
    --hero-right-door-scale-x: 1;
    --hero-left-door-scale-y: 1;
    --hero-right-door-scale-y: 1;
    --hero-door-brightness: 80%;
    --hero-door-contrast: 110%;
    --hero-door-opacity: 100%;
    --hero-door-duplicate-opacity: 0%;
    --hero-door-mobile-open-scale: 1;
    --hero-zoom: 4%;
    --hero-zoom-factor: .04;
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
    color: var(--surface);
    background:
        radial-gradient(circle at 72% 20%, rgba(32, 196, 238, .22), transparent 36%),
        linear-gradient(135deg, #051523, #06315d 54%, #0b83bc);
    isolation: isolate;
}

.hero-scroll-scene-static .hero {
    position: relative;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(139, 229, 255, .22), transparent 35%),
        linear-gradient(135deg, #061827, #073761 58%, #0c8ec9);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    background:
        linear-gradient(90deg, rgba(2, 11, 19, .76) 0%, rgba(2, 20, 35, .42) 36%, rgba(2, 20, 35, .08) 72%),
        linear-gradient(0deg, rgba(2, 11, 19, .66) 0%, rgba(2, 20, 35, .06) 58%);
    pointer-events: none;
}

.hero-backdrop {
    position: absolute;
    inset: -34px;
    z-index: 0;
    width: calc(100% + 68px);
    height: calc(100% + 68px);
    object-fit: cover;
    object-position: center;
    filter: blur(28px) saturate(1.12) brightness(.86);
    opacity: .78;
    transform: scale(1.04);
}

.hero-stage {
    position: absolute;
    inset: clamp(74px, 9vh, 104px) 4vw clamp(24px, 4vh, 42px);
    z-index: 2;
    width: calc(100% - 8vw);
    height: calc(100% - clamp(98px, 13vh, 146px));
    overflow: hidden;
    transform: scale(calc(1 + (var(--door-progress) * var(--hero-zoom-factor))));
    transform-origin: center center;
    will-change: transform;
}

.hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, .08) 43%, rgba(139, 229, 255, .22) 49%, rgba(255, 255, 255, .08) 55%, transparent 66%);
    opacity: .1;
    transform: translateX(-18%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
}

.hero-layer-base {
    z-index: 1;
    filter: contrast(1.02) saturate(.98);
}

.hero-door {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    transform-origin: center center;
    will-change: transform;
}

.hero-door-left {
    z-index: 3;
    transform: translate3d(calc((var(--door-progress) * -1 * var(--hero-left-open) * var(--hero-door-mobile-open-scale)) + var(--hero-left-door-x-offset)), var(--hero-left-door-y-offset), 0);
}

.hero-door-right {
    z-index: 4;
    transform: translate3d(calc((var(--door-progress) * var(--hero-right-open) * var(--hero-door-mobile-open-scale)) + var(--hero-right-door-x-offset)), var(--hero-right-door-y-offset), 0);
}

.hero-door-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
    filter: brightness(var(--hero-door-brightness)) contrast(var(--hero-door-contrast)) saturate(1.03);
    transform-origin: center center;
}

.hero-door-left .hero-door-image {
    transform: scale(var(--hero-left-door-scale-x), var(--hero-left-door-scale-y));
}

.hero-door-right .hero-door-image {
    transform: scale(var(--hero-right-door-scale-x), var(--hero-right-door-scale-y));
}

.hero-door-image-original {
    opacity: var(--hero-door-opacity);
}

.hero-door-image-duplicate {
    opacity: var(--hero-door-duplicate-opacity);
}

.hero.has-layer-animation .hero-layer-base {
    filter: contrast(1.02) saturate(1.02);
}

.hero-stage-static::after {
    display: none;
}

.hero-static-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
    filter: contrast(1.02) saturate(1.02);
}

.hero-copy {
    position: absolute;
    left: 5vw;
    bottom: clamp(32px, 8vh, 86px);
    z-index: 12;
    width: min(680px, calc(100% - 10vw));
    padding: 0;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .58);
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.category-hero h1,
.product-info-panel h1 {
    margin: 0;
    color: var(--ink);
    font-size: 54px;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero h1 {
    color: var(--surface);
    text-wrap: balance;
}

.hero-subtitle,
.page-hero p,
.category-hero p,
.detail-summary {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.hero .section-kicker {
    color: var(--sky);
}

.hero-subtitle {
    color: rgba(255, 250, 242, .74);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button-primary {
    background: linear-gradient(135deg, var(--blue), #0b7fc1);
    color: var(--surface);
    box-shadow: 0 12px 28px rgba(7, 90, 166, .22);
}

.button-secondary {
    background: linear-gradient(135deg, var(--cyan), #65d9ff);
    color: #042033;
    box-shadow: 0 12px 28px rgba(32, 196, 238, .2);
}

.button-ghost {
    background: rgba(255, 250, 242, .72);
    border-color: var(--line);
    color: var(--ink);
}

.hero .button-primary {
    background: linear-gradient(135deg, var(--blue), #099fe0);
    color: #ffffff;
}

.hero .button-ghost {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(139, 229, 255, .25);
    color: var(--surface);
}

.button-small {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 13px;
}

.button-disabled {
    cursor: not-allowed;
    opacity: .55;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-badges span,
.detail-specs span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 242, .66);
    color: rgba(23, 21, 19, .72);
    font-size: 13px;
    font-weight: 700;
}

.hero-badges span {
    border-color: rgba(139, 229, 255, .22);
    background: rgba(5, 49, 93, .24);
    color: rgba(245, 251, 255, .82);
}

.section,
.page-hero,
.category-hero,
.product-detail {
    padding: 72px 5vw;
}

.page-hero,
.category-hero,
.product-detail {
    padding-top: 132px;
}

.section-soft {
    background: var(--bg-soft);
    border-block: 1px solid var(--line);
}

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

.section-heading h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: 0;
}

.product-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 330px);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 4px 5vw 18px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(39, 34, 27, .08);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-3px) scale(1.006);
    border-color: rgba(32, 196, 238, .38);
    box-shadow: 0 22px 48px rgba(7, 90, 166, .14), 0 0 0 1px rgba(139, 229, 255, .08);
}

.product-card-media,
.category-media,
.product-main-image,
.category-hero-media {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(198, 233, 244, .42)),
        var(--surface-strong);
}

.product-card-media {
    aspect-ratio: 4 / 3;
    padding: 18px;
    text-decoration: none;
    overflow: hidden;
}

.product-card-media img,
.category-media img,
.product-main-image img,
.category-hero-media img,
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-media img,
.category-media img {
    transition: transform .32s ease, filter .32s ease;
}

.product-card:hover .product-card-media img,
.product-card:focus-within .product-card-media img,
.category-card:hover .category-media img,
.category-card:focus-visible .category-media img {
    transform: scale(1.035);
    filter: saturate(1.03) contrast(1.02);
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.model-code {
    margin: 0;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.product-card p {
    margin: 0;
    color: var(--muted);
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

.text-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
    outline: none;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(39, 34, 27, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.category-card:hover,
.category-card:focus-visible {
    border-color: rgba(32, 196, 238, .46);
    transform: translateY(-3px) scale(1.006);
    box-shadow: 0 22px 46px rgba(7, 90, 166, .14), 0 0 0 1px rgba(139, 229, 255, .08);
    outline: none;
}

.category-media {
    aspect-ratio: 4 / 3;
    padding: 18px;
    overflow: hidden;
}

.category-content {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.category-content strong {
    font-size: 20px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.category-content span {
    color: var(--muted);
}

.image-placeholder {
    width: 100%;
    min-height: 150px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(23, 21, 19, .2);
    border-radius: 14px;
    color: rgba(23, 21, 19, .48);
    font-weight: 800;
    background: rgba(255, 255, 255, .42);
}

.empty-state,
.muted-note {
    margin: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, .72);
    color: var(--muted);
}

.page-hero {
    max-width: 980px;
}

.page-hero p {
    font-size: 17px;
}

.category-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid var(--line);
}

.category-hero-media {
    min-height: 320px;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
    gap: 44px;
    align-items: start;
}

.product-media-panel,
.product-info-panel {
    min-width: 0;
}

.product-main-image {
    min-height: 560px;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.gallery-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 92px;
    gap: 10px;
    overflow-x: auto;
    padding-top: 14px;
}

.gallery-thumb {
    height: 92px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    cursor: pointer;
}

.gallery-thumb.is-active {
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(32, 196, 238, .18);
}

.breadcrumb-link {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--teal);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.detail-model {
    margin: 16px 0 0;
    color: var(--muted);
}

.detail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.detail-cta {
    margin-top: 4px;
}

.detail-description {
    padding-top: 24px;
}

.rich-text {
    max-width: 860px;
    color: rgba(23, 21, 19, .78);
    font-size: 17px;
}

.rich-text p {
    margin: 0 0 14px;
}

.site-footer {
    padding: 64px 5vw 24px;
    background: linear-gradient(135deg, var(--metal), var(--blue-dark));
    color: var(--surface);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 34px;
}

.footer-contact h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.footer-text {
    max-width: 620px;
    color: rgba(255, 250, 242, .72);
    font-size: 17px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.contact-item {
    display: grid;
    gap: 6px;
    min-height: 80px;
    padding: 15px;
    border: 1px solid rgba(255, 250, 242, .14);
    border-radius: 16px;
    background: rgba(255, 250, 242, .06);
    color: rgba(255, 250, 242, .68);
    text-decoration: none;
}

.contact-item strong {
    color: var(--surface);
    overflow-wrap: anywhere;
}

.map-panel {
    min-height: 320px;
    border: 1px solid rgba(255, 250, 242, .14);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 250, 242, .08);
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 44px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 250, 242, .12);
    color: rgba(255, 250, 242, .62);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--surface);
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 1050px) {
    .category-hero,
    .product-detail,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 920px) {
    .site-header {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        padding: 14px 18px;
    }

    .brand {
        min-width: 0;
    }

    .brand-name {
        max-width: 54vw;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: auto;
        padding: 12px;
        border: 1px solid rgba(255, 250, 242, .14);
        border-radius: 18px;
        background: rgba(5, 22, 36, .92);
        box-shadow: 0 22px 54px rgba(0, 22, 46, .32);
        backdrop-filter: blur(20px);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
    }
}

@media (max-width: 720px) {
    .site-header {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        padding: 14px 18px;
    }

    .brand {
        min-width: 0;
    }

    .brand-name {
        max-width: 54vw;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: auto;
        padding: 12px;
        border: 1px solid rgba(255, 250, 242, .14);
        border-radius: 18px;
        background: rgba(5, 22, 36, .92);
        box-shadow: 0 22px 54px rgba(0, 22, 46, .32);
        backdrop-filter: blur(20px);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .section,
    .page-hero,
    .category-hero,
    .product-detail {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-scroll-scene {
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .hero-scroll-scene-static {
        height: auto;
        min-height: 0;
    }

    .hero {
        position: relative;
        top: auto;
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
        padding-top: 104px;
        padding-bottom: 32px;
        overflow: hidden;
        --door-progress: .42;
        --hero-door-mobile-open-scale: .72;
    }

    .hero-media {
        position: relative;
        order: 4;
        inset: auto;
        width: 100vw;
        height: clamp(300px, 86vw, 500px);
        min-height: 300px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
    }

    .hero-media::after {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .06) 64%),
            linear-gradient(90deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .02));
    }

    .hero-backdrop {
        inset: -18px;
        width: calc(100% + 36px);
        height: calc(100% + 36px);
        filter: blur(18px) saturate(1.08) brightness(.88);
    }

    .hero-stage {
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }

    .hero-copy {
        display: contents;
        position: static;
        width: auto;
        padding: 0;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
    }

    .hero .section-kicker {
        order: 1;
        margin: 0 18px 8px;
    }

    .hero h1 {
        order: 2;
        margin: 0 18px;
        max-width: 680px;
    }

    .hero-subtitle {
        order: 3;
        margin: 16px 18px 0;
        max-width: 680px;
    }

    .hero-actions {
        order: 5;
        justify-content: stretch;
        margin: 20px 18px 0;
    }

    .hero-badges {
        order: 6;
        margin: 18px 18px 0;
    }

    .hero h1,
    .page-hero h1,
    .category-hero h1,
    .product-info-panel h1 {
        font-size: 36px;
    }

    .section-heading {
        display: block;
    }

    .section-heading h2,
    .footer-contact h2 {
        font-size: 28px;
    }

    .page-hero,
    .category-hero,
    .product-detail {
        padding-top: 116px;
    }

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

    .product-main-image {
        min-height: 360px;
        padding: 18px;
    }

    .card-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    .text-link {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

    .hero-scroll-scene {
        height: auto;
        min-height: 0;
    }

    .hero {
        position: relative;
    }

    .hero-stage,
    .hero-door,
    .hero-door-image {
        transform: none !important;
    }

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