@font-face {
    font-family: "Bricolage Grotesque";
    src: url("../fonts/BricolageGrotesque.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    src: url("../fonts/InstrumentSans.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #f2f2ee;
    --color-surface: #e4e7e5;
    --color-surface-2: #d8dedf;
    --color-text: #171a1b;
    --color-text-muted: #667074;
    --color-primary: #181b1d;
    --color-accent: #6d7f87;
    --color-line: #c6cecf;
    --color-white: #f9faf7;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 80px;
    --space-8: 112px;
    --text-display: clamp(3rem, 8vw, 6.8rem);
    --text-h1: clamp(2.5rem, 5vw, 4.8rem);
    --text-h2: clamp(2rem, 4vw, 3.5rem);
    --text-h3: 1.4rem;
    --text-body: 1rem;
    --text-small: .84rem;
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 38px;
    --shadow: 0 28px 70px rgba(23, 26, 27, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Instrument Sans", sans-serif;
    font-size: var(--text-body);
    line-height: 1.65
}

body.menu-open {
    overflow: hidden
}

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

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

button {
    cursor: pointer
}

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

.shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(242, 242, 238, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(23, 26, 27, .08)
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    letter-spacing: -.03em
}

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

.site-nav {
    display: flex;
    gap: 24px;
    margin-left: auto
}

.site-nav a {
    font-size: .92rem;
    color: var(--color-text-muted);
    transition: .25s
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--color-text)
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: .9rem;
    font-weight: 600
}

.cart-count {
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: .75rem
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-line);
    background: transparent;
    border-radius: 50%;
    position: relative
}

.menu-toggle span {
    position: absolute;
    left: 13px;
    right: 13px;
    height: 1px;
    background: var(--color-text);
    transition: .25s
}

.menu-toggle span:first-child {
    top: 18px
}

.menu-toggle span:last-child {
    top: 26px
}

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

.eyebrow {
    margin: 0 0 18px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-accent)
}

h1,
h2,
h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1.03;
    letter-spacing: -.045em;
    margin: 0
}

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

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

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

em {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    color: var(--color-accent)
}

p {
    margin: 0 0 18px
}

.lead {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.45;
    color: var(--color-text)
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 21px;
    border: 1px solid transparent;
    font-weight: 650;
    transition: .25s
}

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

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

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

.btn-ghost {
    background: transparent;
    color: inherit;
    border-color: var(--color-line)
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 650;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px
}

.text-link.light {
    color: var(--color-white)
}

.hero {
    min-height: calc(100vh - 78px);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-primary);
    color: var(--color-white)
}

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

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(10, 13, 14, .78), rgba(10, 13, 14, .25) 55%, rgba(10, 13, 14, .12)), linear-gradient(0deg, rgba(10, 13, 14, .45), transparent 45%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0 130px;
    max-width: 940px
}

.hero h1 {
    font-size: var(--text-display);
    max-width: 900px
}

.hero-copy {
    max-width: 680px;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .78);
    margin-top: 30px
}

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

.hero-index {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    font-size: .7rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65)
}

.signal-frame {
    position: relative;
    overflow: hidden
}

.signal-frame:before,
.signal-frame:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(109, 127, 135, .35);
    border-radius: 999px;
    pointer-events: none
}

.signal-frame:before {
    width: 180px;
    height: 180px;
    right: -90px;
    top: -90px
}

.signal-frame:after {
    width: 280px;
    height: 280px;
    right: -140px;
    top: -140px
}

.hero-signal {
    position: absolute;
    z-index: 1;
    right: -120px;
    top: 5%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%
}

.hero-signal span {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    inset: 12%
}

.hero-signal span:nth-child(2) {
    inset: 25%
}

.hero-signal span:nth-child(3) {
    inset: 39%
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9vw;
    align-items: start
}

.grid-2 h2 {
    max-width: 560px
}

.grid-2>div:last-child {
    padding-top: 8px;
    color: var(--color-text-muted)
}

.split-visual {
    background: var(--color-surface)
}

.split-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.split-copy {
    padding: 70px
}

.split-copy>p:not(.eyebrow) {
    color: var(--color-text-muted);
    max-width: 650px
}

.feature-pairs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
    margin-top: 46px
}

.feature-pairs>div {
    border-top: 1px solid var(--color-line);
    padding-top: 18px
}

.feature-pairs span {
    display: block;
    font-size: .72rem;
    color: var(--color-accent);
    margin-bottom: 11px
}

.feature-pairs strong {
    display: block;
    font-family: "Bricolage Grotesque";
    font-size: 1.08rem
}

.feature-pairs p {
    color: var(--color-text-muted);
    font-size: .92rem;
    margin-top: 8px
}

.frame-image {
    margin: 0;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: var(--color-surface-2)
}

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

.frame-image figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    background: rgba(249, 250, 247, .92);
    padding: 12px 14px;
    border-radius: 999px;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.section-head {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 52px
}

.section-head>p {
    color: var(--color-text-muted);
    max-width: 520px;
    justify-self: end
}

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

.product-mini {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    transition: .28s
}

.product-mini:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(23, 26, 27, .1)
}

.product-mini.featured {
    transform: translateY(-18px);
    border-color: var(--color-accent)
}

.product-mini.featured:hover {
    transform: translateY(-24px)
}

.product-mini figure {
    margin: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-surface)
}

.product-mini figure img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-mini-body {
    padding: 26px
}

.product-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: .78rem;
    color: var(--color-text-muted);
    margin-bottom: 18px
}

.product-mini h3 {
    font-size: 1.65rem
}

.product-mini p {
    color: var(--color-text-muted);
    min-height: 52px
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px
}

.product-actions .btn {
    min-height: 42px;
    padding: 10px 15px;
    font-size: .82rem
}

.product-actions .text-link {
    font-size: .82rem
}

.signal-band {
    background: var(--color-primary);
    color: var(--color-white);
    overflow: hidden;
    padding: 17px 0
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite
}

.marquee div {
    white-space: nowrap;
    padding-right: 48px;
    font-size: .75rem;
    letter-spacing: .16em
}

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

.fact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center
}

.portrait-image {
    margin: 0;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface)
}

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

.fact-copy>p {
    color: var(--color-text-muted);
    max-width: 640px
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
    margin-top: 40px
}

.stat-grid>div {
    padding: 26px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.stat-value {
    font-family: "Bricolage Grotesque";
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -.05em
}

.stat-label {
    font-size: .82rem;
    color: var(--color-text-muted)
}

.story-section {
    background: var(--color-primary);
    color: var(--color-white)
}

.story-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 8vw
}

.big-index {
    display: block;
    font-family: "Bricolage Grotesque";
    font-size: clamp(5rem, 12vw, 10rem);
    line-height: .8;
    color: rgba(255, 255, 255, .08)
}

.story-kicker>p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .7);
    margin: 25px 0 60px
}

.story-beats article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.story-beats span {
    font-size: .72rem;
    color: #a9b9be
}

.story-beats strong {
    font-family: "Bricolage Grotesque"
}

.story-beats p {
    color: rgba(255, 255, 255, .58);
    font-size: .91rem;
    margin-top: 7px
}

.story-text {
    padding-top: 20px
}

.story-text h2 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    margin-bottom: 32px
}

.story-text>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .69)
}

.story-text .text-link {
    margin-top: 18px
}

.dual-panels {
    background: var(--color-surface)
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.info-panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 46px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative
}

.info-panel.graphite {
    background: var(--color-primary);
    color: var(--color-white)
}

.info-panel.graphite p:not(.eyebrow) {
    color: rgba(255, 255, 255, .68)
}

.panel-image {
    height: 260px;
    margin: -46px -46px 38px;
    overflow: hidden;
    background: var(--color-surface)
}

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

.info-panel h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem)
}

.info-panel p {
    color: var(--color-text-muted)
}

.info-panel .btn {
    align-self: flex-start;
    margin-top: 15px
}

.legal-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px
}

.legal-chips a {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: .78rem
}

.signal-rich {
    justify-content: flex-end
}

.panel-signal-art {
    position: absolute;
    right: -75px;
    top: -75px;
    width: 310px;
    height: 310px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    opacity: .75
}

.panel-signal-art span {
    position: absolute;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    inset: 16%
}

.panel-signal-art span:nth-child(2) {
    inset: 31%
}

.panel-signal-art span:nth-child(3) {
    inset: 46%
}

.panel-copy-spacious {
    position: relative;
    z-index: 2;
    max-width: 560px
}

.signal-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #9bb0b7;
    box-shadow: 0 0 0 9px rgba(155, 176, 183, .1), 0 0 0 18px rgba(155, 176, 183, .05);
    margin-bottom: auto
}

.contact-scene {
    background: var(--color-white)
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start
}

.contact-copy {
    position: sticky;
    top: 120px
}

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

.company-compact {
    display: grid;
    gap: 8px;
    margin-top: 35px;
    font-size: .9rem
}

.contact-form,
.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background: var(--color-surface);
    padding: 34px;
    border-radius: var(--radius-lg)
}

label {
    display: grid;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid transparent;
    background: var(--color-white);
    color: var(--color-text);
    padding: 14px 15px;
    border-radius: 12px;
    outline: none;
    transition: .2s
}

textarea {
    resize: vertical
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(109, 127, 135, .12)
}

.field-wide {
    grid-column: 1/-1
}

.check {
    display: flex;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    color: var(--color-text-muted)
}

.check input {
    width: 18px;
    height: 18px;
    margin-top: 3px
}

.check a {
    text-decoration: underline
}

.inner-hero {
    padding: 110px 0 90px;
    border-bottom: 1px solid var(--color-line)
}

.inner-hero .shell {
    max-width: 1050px
}

.inner-hero h1 {
    font-size: clamp(3.3rem, 7vw, 7rem);
    max-width: 980px
}

.inner-hero p:not(.eyebrow) {
    max-width: 700px;
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-top: 28px
}

.inner-hero.compact {
    padding-bottom: 70px
}

.graphite-hero {
    background: var(--color-primary);
    color: var(--color-white);
    border: 0
}

.graphite-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, .66)
}

.product-stack {
    display: grid;
    gap: 28px
}

.product-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 520px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white)
}

.product-card:nth-child(even) {
    grid-template-columns: 1.1fr .9fr
}

.product-card:nth-child(even) .product-visual {
    order: 2
}

.product-visual {
    min-height: 520px;
    background: var(--color-surface);
    position: relative
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background: rgba(249, 250, 247, .94);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em
}

.product-content {
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.product-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px
}

.price {
    font-family: "Bricolage Grotesque";
    font-size: 1.35rem;
    white-space: nowrap
}

.product-content>p {
    color: var(--color-text-muted)
}

.product-feature {
    padding: 18px 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    color: var(--color-text) !important
}

.spec-list {
    margin: 24px 0 30px
}

.spec-list div {
    display: grid;
    grid-template-columns: 38px 1fr;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-line)
}

.spec-list dt {
    font-size: .72rem;
    color: var(--color-accent)
}

.spec-list dd {
    margin: 0
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.product-contact {
    background: var(--color-surface)
}

.about-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px
}

.about-layout>div:last-child {
    color: var(--color-text-muted)
}

.values-grid {
    background: var(--color-surface)
}

.bento {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: auto auto;
    gap: 20px
}

.bento article {
    background: var(--color-white);
    padding: 36px;
    border-radius: var(--radius-md);
    min-height: 260px
}

.bento article>span {
    font-size: .72rem;
    color: var(--color-accent)
}

.bento h2,
.bento h3 {
    margin: 25px 0 18px
}

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

.bento-large {
    grid-row: span 2
}

.bento.graphite {}

.bento article.graphite {
    background: var(--color-primary);
    color: var(--color-white)
}

.bento article.graphite p {
    color: rgba(255, 255, 255, .64)
}

.bento-wide {
    grid-column: 2/4
}

.record-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px
}

.record-grid dl {
    margin: 0
}

.record-grid dl div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    padding: 17px 0;
    border-bottom: 1px solid var(--color-line)
}

.record-grid dt {
    color: var(--color-text-muted)
}

.record-grid dd {
    margin: 0;
    font-weight: 600
}

.faq-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px
}

.faq-layout aside {
    position: sticky;
    top: 120px;
    align-self: start
}

.faq-layout aside p:not(.eyebrow) {
    color: var(--color-text-muted)
}

.faq-item {
    border-top: 1px solid var(--color-line)
}

.faq-item:last-child {
    border-bottom: 1px solid var(--color-line)
}

.faq-item button {
    width: 100%;
    display: grid;
    grid-template-columns: 44px 1fr 30px;
    gap: 12px;
    align-items: center;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 25px 0;
    font-family: "Bricolage Grotesque";
    font-size: 1.18rem;
    color: var(--color-text)
}

.faq-item button span {
    font-family: "Instrument Sans";
    font-size: .72rem;
    color: var(--color-accent)
}

.faq-item button b {
    font-size: 1.4rem;
    font-weight: 400;
    transition: .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.open button b {
    transform: rotate(45deg)
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s
}

.faq-answer p {
    overflow: hidden;
    color: var(--color-text-muted);
    padding-left: 56px;
    margin: 0
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr
}

.faq-item.open .faq-answer p {
    padding-bottom: 28px
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 40px
}

.cart-items {
    display: grid;
    gap: 14px
}

.cart-row {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 18px;
    align-items: center;
    background: var(--color-white);
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--color-line)
}

.cart-row img {
    width: 92px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--color-surface)
}

.cart-row h3 {
    font-size: 1.2rem
}

.cart-row p {
    margin: 5px 0 0;
    color: var(--color-text-muted)
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 8px
}

.cart-controls button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-line);
    background: transparent
}

.remove-item {
    border: 0 !important;
    width: auto !important;
    border-radius: 0 !important;
    color: var(--color-text-muted);
    text-decoration: underline
}

.cart-empty {
    padding: 50px;
    border: 1px dashed var(--color-line);
    border-radius: var(--radius-lg);
    text-align: center
}

.cart-empty p {
    color: var(--color-text-muted)
}

.cart-summary {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    align-self: start;
    position: sticky;
    top: 110px
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.summary-row.total {
    font-size: 1.25rem
}

.summary-note {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem
}

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

.checkout-form {
    max-width: 940px;
    margin: 0 auto;
    background: #afb7b2
}

.thanks-hero {
    padding: 120px 0 100px;
    text-align: center;
    word-break: break-word;
}

.thanks-hero .shell {
    max-width: 900px
}

.thanks-mark {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 40px;
    border: 1px solid var(--color-line)
}

.thanks-mark span {
    font-size: 2.7rem
}

.thanks-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

.thanks-hero>div>p:not(.eyebrow) {
    max-width: 680px;
    margin: 24px auto;
    color: var(--color-text-muted);
    font-size: 1.1rem
}

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

.step-grid article {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line)
}

.step-grid span {
    font-size: .75rem;
    color: var(--color-accent)
}

.step-grid h3 {
    margin: 26px 0 14px
}

.step-grid p {
    color: var(--color-text-muted)
}

.useful-panel {
    background: var(--color-surface)
}

.legal-hero {
    padding: 100px 0 70px;
    border-bottom: 1px solid var(--color-line)
}

.legal-hero .shell {
    max-width: 980px
}

.legal-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem)
}

.legal-hero p {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: 24px
}

.legal-hero span {
    display: block;
    margin-top: 25px;
    font-size: .78rem;
    color: var(--color-text-muted)
}

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

.legal-copy h2 {
    font-size: 1.75rem;
    margin: 52px 0 18px
}

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

.legal-copy p {
    color: #485055;
    line-height: 1.8
}

.site-footer {
    background: #101314;
    color: var(--color-white);
    padding: 76px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .7fr .9fr 1.15fr;
    gap: 54px
}

.footer-brand p,
.site-footer div>p {
    color: rgba(255, 255, 255, .55);
    font-size: .86rem
}

.site-footer h3 {
    font-size: .95rem;
    margin-bottom: 20px
}

.site-footer>div>div:not(.footer-brand)>a {
    display: block;
    color: rgba(255, 255, 255, .66);
    font-size: .85rem;
    margin: 9px 0
}

.footer-update {
    margin-top: 20px !important
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 24px;
    margin-top: 50px
}

.footer-bottom p:first-child {
    max-width: 830px
}

.signal-signature {
    display: flex;
    gap: 7px;
    margin-top: 25px
}

.signal-signature span {
    display: block;
    width: 32px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .24)
}

.signal-signature span:nth-child(2) {
    width: 52px
}

.signal-signature span:nth-child(3) {
    width: 72px
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 20px 22px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: var(--shadow)
}

.cookie-banner.show {
    display: flex
}

.cookie-banner p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .64);
    font-size: .86rem
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.cookie-banner .btn-ghost {
    border-color: rgba(255, 255, 255, .25);
    color: var(--color-white)
}

.cookie-banner .btn-dark {
    background: var(--color-white);
    color: var(--color-text)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease
}

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

.delay-1 {
    transition-delay: .12s
}

.delay-2 {
    transition-delay: .22s
}

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

@media(max-width:1024px) {
    .site-nav {
        position: fixed;
        inset: 78px 0 auto 0;
        background: var(--color-bg);
        padding: 30px 20px;
        display: none;
        flex-direction: column;
        border-bottom: 1px solid var(--color-line)
    }

    .menu-open .site-nav {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .header-inner>.cart-link {
        margin-left: auto
    }

    .grid-2,
    .split-card,
    .fact-grid,
    .story-wrap,
    .contact-grid,
    .about-layout,
    .faq-layout,
    .record-grid {
        grid-template-columns: 1fr
    }

    .split-copy {
        padding: 46px
    }

    .frame-image {
        min-height: 520px
    }

    .contact-copy,
    .faq-layout aside {
        position: static
    }

    .product-card,
    .product-card:nth-child(even) {
        grid-template-columns: 1fr
    }

    .product-card:nth-child(even) .product-visual {
        order: 0
    }

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

    .bento-large {
        grid-row: auto
    }

    .bento-wide {
        grid-column: 1/3
    }

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

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

    .cart-summary {
        position: static
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .section-head>p {
        justify-self: start
    }

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

@media(max-width:768px) {
    :root {
        --space-8: 78px
    }

    .product-mini.featured,
    .product-mini.featured:hover {
        transform: none
    }

    .shell {
        width: min(100% - 28px, 1240px)
    }

    .header-inner {
        min-height: 70px
    }

    .site-nav {
        top: 70px
    }

    .brand span {
        display: none
    }

    .header-inner>.cart-link {
        font-size: 0;
        padding: 9px
    }

    .header-inner>.cart-link:before {
        content: "Cart";
        font-size: .82rem
    }

    .hero {
        min-height: 760px
    }

    .hero-content {
        padding: 80px 0 120px
    }

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

    .hero-copy {
        font-size: 1rem
    }

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

    .hero-signal {
        width: 340px;
        height: 340px
    }

    .grid-2,
    .feature-pairs,
    .product-tease-grid,
    .dual-grid,
    .step-grid {
        grid-template-columns: 1fr
    }

    .split-copy {
        padding: 34px
    }

    .frame-image {
        min-height: 430px
    }

    .section-head {
        margin-bottom: 34px
    }

    .story-wrap {
        gap: 55px
    }

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

    .bento-wide {
        grid-column: auto
    }

    .record-grid dl div {
        grid-template-columns: 1fr;
        gap: 5px
    }

    .contact-form,
    .checkout-form {
        grid-template-columns: 1fr;
        padding: 24px
    }

    .field-wide {
        grid-column: auto
    }

    .product-content {
        padding: 32px
    }

    .product-visual {
        min-height: 380px
    }

    .product-heading {
        flex-direction: column
    }

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

    .footer-bottom {
        flex-direction: column
    }

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

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .cart-row {
        grid-template-columns: 70px 1fr
    }

    .cart-row img {
        width: 70px;
        height: 60px
    }

    .cart-controls {
        grid-column: 2/3
    }

    .inner-hero {
        padding: 80px 0 65px
    }

    .faq-item button {
        grid-template-columns: 34px 1fr 24px
    }

    .faq-answer p {
        padding-left: 46px
    }
}

@media(max-width:375px) {
    .shell {
        width: calc(100% - 22px)
    }

    .hero-index {
        left: 12px;
        right: 12px
    }

    .cookie-actions {
        grid-template-columns: 1fr
    }

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

    .product-actions .btn,
    .card-actions .btn {
        width: 100%
    }
}

.payment-options {
    border: 0;
    margin: 8px 0 2px;
    padding: 0
}

.payment-options legend {
    font-family: "Bricolage Grotesque";
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 8px
}

.payment-intro {
    margin: 0 0 16px;
    color: var(--color-text-muted);
    font-size: .88rem
}

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

.payment-choice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    background: var(--color-surface);
    cursor: pointer;
    transition: .2s
}

.payment-choice:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px)
}

.payment-choice:has(input:checked) {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(23, 26, 27, .08)
}

.payment-choice input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0
}

.payment-choice span {
    display: grid;
    gap: 4px
}

.payment-choice strong {
    font-size: .94rem
}

.payment-choice small {
    color: var(--color-text-muted);
    font-size: .78rem;
    line-height: 1.45
}

.thanks-payment-note {
    max-width: 760px;
    margin: 28px auto 30px;
    padding: 24px 28px;
    text-align: left;
    background: var(--color-surface);
    border-radius: var(--radius-md)
}

.thanks-payment-note h2 {
    font-size: 1.55rem;
    margin-bottom: 8px
}

.thanks-payment-note p:last-child {
    margin-bottom: 0;
    color: var(--color-text-muted)
}

@media(max-width:768px) {
    .payment-grid {
        grid-template-columns: 1fr
    }

    .thanks-payment-note {
        padding: 22px
    }
}