@font-face {
    font-family: Arc;
    src: url('../fonts/brand.otf') format('opentype');
    font-display: swap
}

@font-face {
    font-family: Nimbus;
    src: url('../fonts/body.otf') format('opentype');
    font-display: swap
}

@font-face {
    font-family: Nimbus;
    src: url('../fonts/body-bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap
}

:root {
    --color-bg: #f5f6f7;
    --color-surface: #fff;
    --color-text: #14213a;
    --color-text-muted: #526078;
    --color-primary: #234ff2;
    --color-accent: #a9f1db;
    --color-dark: #101d33;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 96px;
    --text-display: clamp(3rem, 6.6vw, 6.8rem);
    --text-h1: clamp(2.8rem, 5vw, 5.4rem);
    --text-h2: clamp(2.25rem, 4vw, 4rem);
    --text-h3: 1.5rem;
    --text-body: 1.05rem;
    --text-small: .875rem;
    --radius: 10px;
    --shadow: 0 18px 60px #14213a12
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: Nimbus, Arial, sans-serif;
    font-size: var(--text-body);
    line-height: 1.55
}

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

button,
input,
select {
    font: inherit
}

button {
    cursor: pointer
}

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

.wrap {
    width: min(1440px, calc(100% - 80px));
    margin: auto
}

.skip {
    position: absolute;
    left: -999px;
    top: 10px;
    background: white;
    z-index: 100;
    padding: 10px
}

.skip:focus {
    left: 10px
}

.topline {
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: var(--color-dark);
    color: #dae4ff;
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.topline span {
    color: var(--color-accent)
}

.header {
    height: 86px;
    background: var(--color-surface);
    border-bottom: 1px solid #e6e9ed;
    position: relative;
    z-index: 20
}

.navwrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Arc, Nimbus, sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: -.075em;
    white-space: nowrap
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px
}

.brand-dot {
    color: var(--color-primary)
}

nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    font-size: .95rem;
    font-weight: 700
}

nav a,
.textlink,
.footer a {
    transition: color .25s
}

nav a:hover,
.textlink:hover {
    color: var(--color-primary)
}

.navcta {
    background: var(--color-accent);
    padding: 13px 18px;
    border-radius: 5px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .25s, background .25s
}

.navcta:hover {
    transform: translateY(-3px);
    background: #8cddc3
}

.navcta span {
    margin-left: 20px
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 1.7rem;
    color: var(--color-text)
}

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

h1,
h2,
h3 {
    font-family: Arc, Nimbus, sans-serif;
    line-height: 1.08;
    letter-spacing: -.055em
}

h1 {
    font-size: var(--text-h1)
}

h2 {
    font-size: var(--text-h2)
}

h3 {
    font-size: var(--text-h3)
}

p {
    color: var(--color-text-muted)
}

.eyebrow,
.number {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--color-primary)
}

.section {
    padding-block: var(--space-8)
}

.compact {
    padding-top: 0
}

.light-section {
    background: var(--color-surface)
}

.hero {
    background: var(--color-dark);
    color: #fff;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 47% 53%;
    min-height: 650px;
    align-items: stretch
}

.hero-copy {
    padding: 90px 35px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero .eyebrow {
    color: var(--color-accent)
}

.hero h1 {
    font-size: var(--text-display);
    margin: 30px 0 25px
}

.hero h1 em {
    font-style: normal;
    color: var(--color-accent)
}

.hero-copy>p {
    max-width: 590px;
    color: #c1cee0;
    font-size: 1.18rem
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 25px 0 55px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 52px;
    background: var(--color-primary);
    color: white;
    padding: 14px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-weight: 700;
    transition: background .25s, transform .25s, box-shadow .25s
}

.button:hover {
    background: #143acf;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px #234ff233
}

.hero .button {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark)
}

.hero .button:hover {
    background: #8bdfc5
}

.textlink {
    font-weight: 700;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px
}

.hero .textlink {
    color: white
}

.hero-metrics {
    display: flex;
    gap: 38px;
    border-top: 1px solid #4c5771;
    padding-top: 26px
}

.hero-metrics div {
    max-width: 150px
}

.hero-metrics strong {
    display: block;
    font-family: Arc;
    font-size: 2rem;
    line-height: 1;
    color: white
}

.hero-metrics span {
    font-size: .79rem;
    color: #a8b6d0;
    line-height: 1.3;
    display: block;
    margin-top: 8px
}

.hero-art {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #0d1627
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.corner {
    position: absolute;
    width: 65px;
    height: 65px;
    border-color: var(--color-accent);
    border-style: solid
}

.corner-a {
    top: 28px;
    left: 28px;
    border-width: 2px 0 0 2px
}

.corner-b {
    bottom: 28px;
    right: 28px;
    border-width: 0 2px 2px 0
}

.hero-caption {
    position: absolute;
    bottom: 28px;
    left: 28px;
    color: white;
    font-size: .7rem;
    letter-spacing: .18em;
    line-height: 1.8
}

.feature-grid,
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12%
}

.feature-grid h2 {
    max-width: 700px
}

.feature-grid p {
    font-size: 1.12rem
}

.feature-grid .textlink {
    display: inline-block;
    margin-top: 15px
}

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

.section-heading h2 {
    margin-bottom: 0
}

.section-heading p {
    max-width: 360px;
    margin: 0
}

.catalog-preview {
    background: #e9edf3
}

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

.product-card {
    background: var(--color-surface);
    min-width: 0;
    box-shadow: 0 1px 0 #d3dae5;
    transition: transform .25s, box-shadow .25s
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.product-image {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #cdd6e3
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s
}

.product-card:hover .product-image img {
    transform: scale(1.05)
}

.card-info {
    padding: 28px
}

.card-info h3 {
    font-size: 1.85rem;
    margin: 15px 0
}

.card-info p {
    min-height: 80px
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dce1e8;
    padding-top: 19px;
    margin-top: 25px
}

.card-bottom strong {
    font-size: 1.35rem
}

.roundlink {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--color-dark);
    color: white;
    border-radius: 50%;
    transition: background .25s
}

.roundlink:hover {
    background: var(--color-primary)
}

.outline-button {
    display: inline-flex;
    margin-top: 36px;
    border: 1px solid var(--color-text);
    padding: 15px 20px;
    font-weight: 700;
    transition: background .25s, color .25s
}

.outline-button:hover {
    background: var(--color-text);
    color: #fff
}

.dark-band {
    background: var(--color-primary);
    color: white
}

.band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 10%;
    align-items: end
}

.dark-band .eyebrow {
    grid-column: 1/-1;
    color: var(--color-accent)
}

.dark-band h2 {
    margin: 0
}

.dark-band p {
    color: #dce4ff;
    margin: 0
}

.button-light {
    background: white;
    color: var(--color-primary);
    border-color: white;
    justify-self: start
}

.button-light:hover {
    background: var(--color-accent);
    color: var(--color-text)
}

.page-intro {
    padding-top: 90px;
    padding-bottom: 75px
}

.page-intro h1 {
    max-width: 950px;
    margin: 20px 0;
    word-break: break-word;
}

.page-intro p {
    max-width: 710px;
    font-size: 1.22rem
}

.table-scroll {
    overflow: auto;
    margin-top: 35px
}

table {
    border-collapse: collapse;
    min-width: 700px;
    width: 100%;
    text-align: left
}

th,
td {
    padding: 20px;
    border-bottom: 1px solid #d9dfe7
}

thead {
    background: var(--color-dark);
    color: white
}

tbody tr:nth-child(odd) {
    background: #f2f5f8
}

.product-detail {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    padding-top: 70px;
    padding-bottom: 85px
}

.detail-image {
    min-height: 550px;
    overflow: hidden;
    background: #d5dce6
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.detail-copy {
    padding: 35px 6% 30px 12%;
    align-self: center
}

.detail-copy h1 {
    margin: 18px 0 0
}

.detail-copy h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin: 5px 0 25px
}

.detail-copy p {
    font-size: 1.12rem
}

.detail-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 30px 0
}

.detail-price small {
    display: block;
    font-size: .85rem;
    color: var(--color-text-muted);
    font-weight: 400
}

.detail-spec {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0
}

.detail-spec span {
    background: #e4e9f2;
    padding: 9px 12px;
    font-size: .85rem
}

.fine {
    font-size: .87rem !important;
    margin-top: 15px
}

.related {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px
}

.editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.editorial article {
    border-top: 2px solid var(--color-primary);
    padding-top: 24px
}

.editorial h2 {
    font-size: 2rem;
    margin: 26px 0
}

.editorial p {
    font-size: 1.04rem
}

.faq-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq {
    max-width: 900px;
    margin-bottom: 40px
}

.faq details {
    border-bottom: 1px solid #cfd7e1;
    padding: 20px 0
}

.faq summary {
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between
}

.faq summary:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary)
}

.faq details[open] summary:after {
    content: '−'
}

.faq details p {
    max-width: 720px;
    padding-top: 12px
}

.form-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px
}

.form-layout>div {
    padding-right: 50px
}

.form {
    background: #f4f6fa;
    padding: 36px;
    display: grid;
    gap: 20px;
    box-shadow: var(--shadow)
}

.form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
    font-size: .9rem
}

.form input:not([type=checkbox]),
.form select {
    border: 1px solid #b8c3d2;
    background: white;
    width: 100%;
    height: 51px;
    padding: 11px 13px;
    color: var(--color-text);
    border-radius: 4px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form .check {
    display: flex;
    align-items: start;
    gap: 12px;
    font-weight: 400
}

.check input {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    flex: none
}

.check a {
    color: var(--color-primary);
    text-decoration: underline
}

.form .button {
    justify-self: start
}

.legal-intro {
    padding-bottom: 50px
}

.legal-copy {
    max-width: 900px
}

.legal-copy h2 {
    font-size: 2rem;
    margin: 55px 0 18px;
    word-break: break-word;
}

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

.legal-copy p {
    font-size: 1.08rem;
    line-height: 1.8
}

.footer {
    background: var(--color-dark);
    color: white;
    padding: 75px 0 25px
}

.footgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px
}

.footer .brand {
    color: white;
    margin-bottom: 20px
}

.footer .brand-dot {
    color: var(--color-accent)
}

.footer p {
    color: #acbad0;
    max-width: 400px
}

.footer h3 {
    font-family: Nimbus;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 10px 0 25px
}

.footer a:not(.brand) {
    display: block;
    color: #acbad0;
    margin: 11px 0
}

.footer a:hover {
    color: var(--color-accent)
}

.foot-bottom {
    border-top: 1px solid #46536a;
    margin-top: 65px;
    padding-top: 23px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    color: #9baac2;
    font-size: .8rem
}

.foot-bottom span:last-child {
    max-width: 730px
}

.cookie-banner {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, calc(100% - 32px));
    background: var(--color-surface);
    z-index: 40;
    box-shadow: 0 14px 60px #0004;
    border: 1px solid #d5deea;
    border-radius: 8px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 24px
}

.cookie-banner[hidden] {
    display: none
}

.cookie-banner p {
    margin: 0;
    font-size: .9rem;
    flex: 1
}

.cookie-banner a {
    text-decoration: underline
}

.cookie-banner>div {
    display: flex;
    gap: 8px
}

.cookie-banner button {
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    white-space: nowrap
}

.cookie-banner button:last-child {
    background: var(--color-primary);
    color: white
}

.cookie-banner button:hover {
    filter: brightness(.88)
}

:focus-visible {
    outline: 3px solid #ffb33b;
    outline-offset: 3px
}

@media(max-width:1050px) {
    .wrap {
        width: min(100% - 48px, 1440px)
    }

    nav {
        gap: 15px
    }

    .navwrap {
        gap: 20px
    }

    .hero-grid {
        grid-template-columns: 50% 50%
    }

    .hero h1 {
        font-size: clamp(3.3rem, 6vw, 5rem)
    }

    .hero-actions {
        flex-wrap: wrap
    }

    .footgrid {
        gap: 25px
    }

    .card-info {
        padding: 20px
    }
}

@media(max-width:760px) {
    .wrap {
        width: calc(100% - 36px)
    }

    .topline {
        font-size: .62rem;
        text-align: center
    }

    .header {
        height: 70px
    }

    .brand {
        font-size: 1.48rem
    }

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

    .menu {
        display: block;
        margin-left: auto
    }

    .navcta {
        display: none
    }

    nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 70px;
        background: white;
        margin: 0;
        padding: 18px;
        box-shadow: 0 20px 30px #0002;
        flex-direction: column;
        gap: 0
    }

    nav.open {
        display: flex
    }

    nav a {
        padding: 14px;
        border-bottom: 1px solid #e8ecf0;
        min-height: 44px
    }

    .section {
        padding-block: 64px
    }

    .hero-grid,
    .feature-grid,
    .two-col,
    .band-grid,
    .product-detail,
    .form-layout {
        grid-template-columns: 1fr
    }

    .hero-copy {
        padding: 70px 0 36px
    }

    .hero h1 {
        font-size: clamp(3.1rem, 12vw, 5rem)
    }

    .hero-art {
        min-height: 300px;
        aspect-ratio: 4/3
    }

    .hero-metrics {
        gap: 15px
    }

    .hero-metrics strong {
        font-size: 1.5rem
    }

    .hero-actions {
        margin-bottom: 35px
    }

    .section-heading {
        display: block
    }

    .section-heading p {
        margin-top: 20px
    }

    .product-grid,
    .editorial {
        grid-template-columns: 1fr
    }

    .product-card .card-info p {
        min-height: 0
    }

    .band-grid {
        gap: 20px
    }

    .dark-band .eyebrow {
        grid-column: auto
    }

    .page-intro {
        padding: 65px 0 45px
    }

    .product-detail {
        padding-top: 20px
    }

    .detail-image {
        min-height: 0;
        aspect-ratio: 4/3
    }

    .detail-copy {
        padding: 30px 0
    }

    .related {
        grid-template-columns: 1fr
    }

    .editorial {
        gap: 45px
    }

    .form-layout>div {
        padding-right: 0
    }

    .form {
        padding: 22px
    }

    .footgrid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .footgrid>div:first-child {
        grid-column: 1/-1
    }

    .foot-bottom {
        display: block
    }

    .foot-bottom span {
        display: block;
        margin-bottom: 12px
    }

    .cookie-banner {
        display: block
    }

    .cookie-banner>div {
        margin-top: 14px;
        flex-wrap: wrap
    }
}

@media(max-width:420px) {
    .hero-metrics {
        display: none
    }

    .hero-copy {
        padding-top: 50px
    }

    .hero-actions {
        gap: 22px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footgrid {
        grid-template-columns: 1fr
    }

    .footgrid>div:first-child {
        grid-column: auto
    }
}

:root {
    --color-bg: #ecefea;
    --color-surface: #fff;
    --color-text: #17231f;
    --color-text-muted: #53625b;
    --color-primary: #ae3922;
    --color-accent: #d5efce;
    --color-dark: #182923;
    --shadow: 0 20px 48px #1d382118
}

body {
    background: var(--color-bg)
}

.brand-dot {
    color: var(--color-primary)
}

.topline {
    background: var(--color-primary);
    color: #fff
}

.topline span {
    color: #ffdfb8
}

.header {
    background: #f9faf7
}

.navcta {
    background: var(--color-dark);
    color: #fff
}

.navcta:hover {
    background: var(--color-primary)
}

nav span[data-cart-count] {
    font-size: .8rem;
    background: var(--color-accent);
    padding: 2px 6px;
    border-radius: 30px
}

.new-hero {
    background: #d9e0d7;
    color: var(--color-text)
}

.new-hero .hero-grid {
    grid-template-columns: 53% 47%;
    min-height: 670px
}

.new-hero .hero-copy {
    padding-right: 65px
}

.new-hero .eyebrow {
    color: var(--color-primary)
}

.new-hero h1 {
    font-size: clamp(3.0rem, 6.8vw, 7rem)
}

.new-hero h1 em {
    color: var(--color-primary)
}

.new-hero .hero-copy>p {
    color: var(--color-text-muted)
}

.new-hero .textlink {
    color: var(--color-text)
}

.new-hero .hero-metrics {
    border-top-color: #a6b6a7
}

.new-hero .hero-metrics strong {
    color: var(--color-text)
}

.new-hero .hero-metrics span {
    color: var(--color-text-muted)
}

.new-hero .button {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.new-hero .button:hover {
    background: #87301e
}

.new-hero .hero-art {
    min-height: 650px
}

.new-hero .corner {
    border-color: var(--color-accent)
}

.new-hero .hero-caption {
    background: var(--color-primary);
    padding: 8px 13px;
    left: 0;
    bottom: 0
}

.showroom {
    background: #f0f3ee
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.series-card {
    background: white;
    min-width: 0;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s
}

.series-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.series-image {
    display: block;
    aspect-ratio: 1.35;
    overflow: hidden;
    background: #d7ddda
}

.series-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.series-card:hover img {
    transform: scale(1.04)
}

.series-card>div {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.series-card h3 {
    font-size: 1.95rem;
    margin: 15px 0
}

.series-card p {
    flex: 1
}

.series-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d6dfd6;
    padding-top: 20px;
    margin-top: 15px
}

.series-end strong {
    font-size: 1.25rem
}

.series-end .textlink {
    font-size: .9rem
}

.signal-ribbon {
    background: var(--color-primary);
    color: #fff;
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
    font-size: .8rem;
    letter-spacing: .22em;
    font-weight: 700
}

.signal-ribbon>div {
    display: flex;
    width: max-content;
    animation: ribbon 22s linear infinite
}

.signal-ribbon span {
    display: block;
    flex: none;
    padding-right: 0
}

@keyframes ribbon {
    to {
        transform: translateX(-50%)
    }
}

.story-layout {
    display: grid;
    grid-template-columns: 43% 1fr;
    gap: 9%;
    align-items: center
}

.story-photo {
    aspect-ratio: 4/5;
    background: #c6d5c8;
    position: relative;
    overflow: hidden
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.story-photo span {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-accent);
    padding: 10px 15px;
    font-size: .72rem;
    letter-spacing: .1em;
    font-weight: 700
}

.story-layout h2 {
    max-width: 700px
}

.story-layout>div>p {
    font-size: 1.13rem
}

.steps {
    margin-top: 40px
}

.steps>div {
    display: flex;
    gap: 25px;
    border-top: 1px solid #bdc9bf;
    padding: 19px 0
}

.steps b {
    color: var(--color-primary)
}

.steps p {
    margin: 0
}

.steps strong {
    color: var(--color-text)
}

.about-band {
    background: var(--color-dark);
    color: #fff
}

.about-band .eyebrow {
    color: var(--color-accent)
}

.about-band p {
    color: #bacfc2;
    font-size: 1.13rem
}

.about-band .textlink {
    color: #fff
}

.final-cta {
    background: var(--color-accent);
    padding: 55px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 70px
}

.final-cta h2 {
    max-width: 820px
}

.final-cta p {
    max-width: 650px;
    margin-bottom: 0
}

.final-cta>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    flex: none
}

.page-intro {
    border-bottom: 1px solid #b9c8bc
}

.catalog-list {
    padding-top: 55px
}

.catalog-row {
    display: grid;
    grid-template-columns: 45% 55%;
    background: white;
    margin-bottom: 26px;
    min-height: 485px;
    scroll-margin-top: 40px
}

.catalog-row:nth-child(even) {
    grid-template-columns: 55% 45%
}

.catalog-row:nth-child(even) .catalog-image {
    order: 2
}

.catalog-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background: #d7dfd8
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.catalog-image span {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-dark);
    color: #fff;
    padding: 8px 12px;
    font-size: .75rem;
    letter-spacing: .15em
}

.catalog-detail {
    padding: 36px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.catalog-detail h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    margin: 16px 0
}

.catalog-detail>p {
    max-width: 640px
}

.catalog-detail dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    margin: 18px 0
}

.catalog-detail dl div {
    border-top: 1px solid #dce4dc;
    padding-top: 9px
}

.catalog-detail dt {
    font-size: .78rem;
    color: var(--color-text-muted)
}

.catalog-detail dd {
    margin: 0;
    font-weight: 700
}

.catalog-buy {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px
}

.catalog-buy strong {
    display: block;
    font-size: 1.8rem
}

.catalog-buy small {
    display: block;
    color: var(--color-text-muted);
    font-size: .76rem
}

.catalog-buy .button {
    white-space: nowrap
}

.faq-page {
    max-width: 1100px
}

.faq-group {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 30px;
    border-top: 2px solid var(--color-dark);
    padding: 35px 0
}

.faq-group .faq {
    margin: 0;
    max-width: none
}

.faq-group details:first-child {
    padding-top: 0
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    align-items: start
}

.cart-items {
    min-height: 320px
}

.cart-line {
    display: grid;
    grid-template-columns: 155px 1fr auto;
    gap: 25px;
    align-items: center;
    background: #fff;
    margin-bottom: 13px;
    padding: 16px
}

.cart-line img {
    width: 155px;
    aspect-ratio: 4/3;
    object-fit: cover
}

.cart-line h2 {
    font-size: 1.5rem;
    margin: 7px 0
}

.cart-line p {
    margin: 0
}

.cart-line>div:last-child {
    text-align: right
}

.cart-line strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 15px
}

.qty {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px
}

.qty button {
    border: 1px solid #acb9ae;
    background: #fff;
    width: 44px;
    height: 44px
}

.qty input {
    width: 54px;
    height: 44px;
    text-align: center;
    border: 1px solid #acb9ae
}

.remove {
    border: 0;
    background: none;
    color: var(--color-primary);
    padding: 10px;
    text-decoration: underline
}

.cart-empty {
    background: #fff;
    padding: 55px
}

.cart-empty h2 {
    margin: 10px 0
}

.summary {
    position: sticky;
    top: 20px;
    background: #e2eae1;
    padding: 30px
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #bdcbbd
}

.summary-line:first-of-type {
    margin-top: 20px
}

.summary-total {
    border-top: 2px solid var(--color-dark);
    border-bottom: 0;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 8px
}

.summary p {
    font-size: .91rem
}

.summary .button {
    width: 100%;
    margin: 10px 0 20px
}

.summary .textlink {
    display: inline-block
}

.summary a[aria-disabled=true] {
    opacity: .45;
    pointer-events: none
}

.checkout-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
    gap: 16px
}

.checkout-step {
    background: #fff;
    padding: 32px
}

.checkout-step h2 {
    font-size: 2.1rem;
    margin: 10px 0 25px
}

.checkout-step p {
    margin: 15px 0 0
}

.checkout-step .check {
    margin: 30px 0 22px
}

.checkout-form .button {
    margin-top: 0
}

.checkout-mini {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #bdcbbd
}

.checkout-mini span {
    display: block;
    color: var(--color-text-muted);
    font-size: .88rem
}

.checkout-mini strong {
    white-space: nowrap
}

.checkout-summary .summary-line:first-of-type {
    margin-top: 20px
}

.footer {
    background: var(--color-dark)
}

.footer .brand-dot {
    color: var(--color-accent)
}

.cookie-banner button {
    border-color: var(--color-primary)
}

.cookie-banner button:last-child {
    background: var(--color-primary)
}

@media(max-width:1100px) {
    .new-hero .hero-grid {
        grid-template-columns: 50% 50%
    }

    .new-hero .hero-copy {
        padding-right: 25px
    }

    .catalog-detail {
        padding: 30px
    }

    .catalog-buy {
        align-items: start;
        flex-direction: column
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) 310px
    }
}

@media(max-width:760px) {

    .new-hero .hero-grid,
    .story-layout,
    .catalog-row,
    .catalog-row:nth-child(even),
    .faq-group,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr
    }

    .new-hero .hero-art {
        min-height: auto
    }

    .new-hero .hero-copy {
        padding-right: 0
    }

    .series-grid {
        grid-template-columns: 1fr
    }

    .story-photo {
        aspect-ratio: 4/3
    }

    .final-cta {
        padding: 30px;
        display: block
    }

    .final-cta>div:last-child {
        margin-top: 25px
    }

    .catalog-row:nth-child(even) .catalog-image {
        order: 0
    }

    .catalog-image {
        min-height: 0;
        aspect-ratio: 4/3
    }

    .catalog-detail {
        padding: 25px
    }

    .catalog-buy {
        align-items: start
    }

    .faq-group {
        gap: 15px
    }

    .summary {
        position: static
    }

    .cart-line {
        grid-template-columns: 110px 1fr;
        gap: 12px
    }

    .cart-line img {
        width: 110px
    }

    .cart-line>div:last-child {
        grid-column: 2;
        text-align: left
    }

    .qty {
        justify-content: flex-start
    }

    .checkout-step {
        padding: 23px
    }
}

@media(max-width:420px) {
    .catalog-detail dl {
        grid-template-columns: 1fr 1fr
    }

    .catalog-buy .button {
        white-space: normal
    }

    .cart-line {
        grid-template-columns: 1fr
    }

    .cart-line img {
        width: 100%;
        aspect-ratio: 16/9
    }

    .cart-line>div:last-child {
        grid-column: 1
    }
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px
}

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

.navwrap {
    gap: 30px
}

.payment-choice {
    border: 0;
    border-top: 1px solid #bdcbbd;
    margin: 22px 0 15px;
    padding: 22px 0 0;
    min-width: 0
}

.payment-choice legend {
    font-family: Arc, Nimbus, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -.035em;
    padding: 0 10px 0 0
}

.payment-choice label {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-surface);
    padding: 14px;
    border: 1px solid #b7c5b8;
    margin: 9px 0;
    cursor: pointer;
    min-height: 64px;
    transition: border-color .25s, background .25s, transform .25s
}

.payment-choice label:hover {
    border-color: var(--color-primary);
    transform: translateX(3px)
}

.payment-choice label:has(input:checked) {
    border: 2px solid var(--color-primary);
    background: #faf4ed;
    padding: 13px
}

.payment-choice input {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    flex: none
}

.payment-choice strong,
.payment-choice small {
    display: block
}

.payment-choice small {
    color: var(--color-text-muted);
    font-size: .8rem
}

.payment-choice p {
    font-size: .85rem;
    margin: 15px 0 0
}

.checkout-step .payment-choice {
    margin-top: 0
}

.checkout-step .payment-choice label {
    display: flex;
    gap: 12px;
    font-weight: 400
}

.checkout-step .payment-choice input {
    width: 20px;
    height: 20px;
    margin: 0
}

.checkout-summary .summary-line:last-of-type {
    margin-bottom: 25px
}

.about-intro h1 {
    max-width: 1080px
}

.about-lead {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 8%;
    align-items: center
}

.about-lead h2 {
    margin-top: 18px
}

.about-lead p,
.about-range p,
.about-company p,
.about-outro p {
    font-size: 1.12rem;
    line-height: 1.7
}

.about-photo {
    margin: 0;
    aspect-ratio: 1.28;
    position: relative;
    overflow: hidden;
    background: #d9dbd3
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-photo figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #182923;
    color: #fff;
    max-width: 420px;
    padding: 12px 18px;
    font-size: .83rem
}

.about-range {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 10%;
    align-items: center
}

.about-range .button {
    margin-top: 18px
}

.about-spec-panel {
    background: var(--color-accent);
    padding: 35px;
    border-left: 8px solid var(--color-primary)
}

.about-spec-panel>span {
    font-size: .74rem;
    letter-spacing: .16em;
    font-weight: 700
}

.about-spec-panel strong {
    display: block;
    font-family: Arc;
    font-size: 2.8rem;
    letter-spacing: -.06em;
    line-height: 1.1;
    margin-top: 27px
}

.about-spec-panel p {
    margin: 5px 0 0;
    font-size: .9rem
}

.about-company {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 8%
}

.about-company h2 {
    margin-top: 18px
}

.about-process .editorial {
    margin-top: 45px
}

.about-outro .textlink {
    display: inline-block;
    margin: 18px 23px 0 0
}

.contact-layout {
    display: grid;
    grid-template-columns: 32% 1fr;
    gap: 12%;
    align-items: start
}

.contact-rail {
    position: sticky;
    top: 35px;
    padding: 28px;
    background: var(--color-accent)
}

.contact-rail h2 {
    font-size: 2rem;
    margin-top: 18px
}

.contact-copy h2:first-child {
    margin: 0 0 18px
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0
}

.legal-links a {
    border: 1px solid #acc3ae;
    padding: 10px 14px;
    transition: background .25s, color .25s
}

.legal-links a:hover {
    background: var(--color-primary);
    color: #fff
}

.thanks-intro {
    background: var(--color-bg)
}

.thanks-intro h1 {
    max-width: 1120px
}

.thanks-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 30px 0 12px
}

.thanks-intro .fine {
    max-width: none
}

.thanks-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 8%;
    align-items: start
}

.thanks-layout>div>p {
    font-size: 1.1rem;
    max-width: 630px
}

.thanks-summary {
    background: #e2eae1;
    padding: 28px
}

.thanks-summary .summary-line:first-of-type {
    margin-top: 22px
}

.thanks-summary .summary-line:last-child {
    margin-top: 8px
}

.button:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none
}

.signal-ribbon>div {
    will-change: transform
}

.signal-ribbon span {
    white-space: nowrap
}

@media(max-width:950px) {

    .about-lead,
    .about-range,
    .about-company,
    .contact-layout,
    .thanks-layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .contact-rail {
        position: static
    }

    .about-photo {
        aspect-ratio: 16/9
    }

    .about-spec-panel {
        max-width: 600px
    }

    .thanks-summary {
        max-width: 650px
    }
}

@media(max-width:760px) {
    .brand img {
        width: 42px;
        height: 42px
    }

    .footer .brand img {
        width: 48px;
        height: 48px
    }

    .about-photo {
        aspect-ratio: 4/3
    }

    .about-photo figcaption {
        max-width: 90%;
        font-size: .75rem
    }

    .about-spec-panel {
        padding: 25px
    }

    .about-process .editorial {
        margin-top: 20px
    }

    .thanks-actions {
        align-items: flex-start;
        flex-direction: column
    }
}