:root {
  --green: #17372b;
  --green-deep: #10271f;
  --cream: #f5f1e7;
  --paper: #fbf8f1;
  --gold: #d3a653;
  --gold-light: #e5c27b;
  --ink: #1d372c;
  --muted: #687166;
  --line: #d1d7ca;
  --clay: #9d5036;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--cream); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
body.locked { overflow: hidden; }
::selection { color: var(--green); background: var(--gold-light); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.04em; }
h1 em, h2 em { font-weight: 500; color: var(--gold); }
svg { fill: none; stroke: currentColor; stroke-width: 1.4; }
.skip-link { position: fixed; z-index: 100; top: -100px; left: 16px; padding: 12px 18px; color: white; background: var(--green); }
.skip-link:focus { top: 12px; }
.progress { position: fixed; z-index: 90; top: 0; left: 0; width: 100%; height: 3px; }
.progress span { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; height: 92px; padding: 0 5vw; color: white; border-bottom: 1px solid rgba(255,255,255,.25); transition: height .3s, background .3s, color .3s; }
.site-header.scrolled { height: 76px; color: var(--green); background: rgba(245,241,231,.94); border-color: var(--line); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; width: max-content; gap: 10px; }
.brand svg { width: 27px; height: 39px; }
.brand-word { font: 600 40px/.9 var(--serif); letter-spacing: -.05em; }
.brand-word span, .footer-brand span { color: var(--gold); }
.brand-copy { padding-left: 16px; margin-left: 4px; font-size: 10px; line-height: 1.45; letter-spacing: .04em; border-left: 1px solid currentColor; opacity: .8; }
nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
nav a { position: relative; }
nav a::after { position: absolute; content: ""; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s; }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.cart-button { justify-self: end; display: flex; align-items: center; gap: 9px; padding: 9px 0; color: inherit; background: none; border: 0; cursor: pointer; }
.cart-button svg { width: 20px; height: 20px; }
.cart-button span { font-size: 13px; font-weight: 600; }
.cart-button b { display: grid; place-items: center; min-width: 23px; height: 23px; padding: 0 5px; color: var(--green); background: var(--gold); border-radius: 50%; font-size: 11px; }

.hero { position: relative; min-height: max(760px, 100svh); overflow: hidden; color: white; background: var(--green-deep); }
.hero-media, .hero-media img, .hero-wash, .grain-noise { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { transform: translateY(var(--parallax, 0)); will-change: transform; }
.hero-media img { object-fit: cover; object-position: center 58%; transform: scale(1.12); filter: saturate(.88) contrast(1.04); }
.hero-wash { background: linear-gradient(90deg, rgba(9,31,23,.96) 0%, rgba(15,47,35,.8) 38%, rgba(24,48,34,.2) 72%, rgba(10,28,21,.48) 100%), linear-gradient(0deg, rgba(8,24,18,.75), transparent 47%); }
.grain-noise { opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }
.hero-content { position: absolute; z-index: 3; left: 5vw; top: 50%; width: min(720px, 58vw); transform: translateY(-45%); }
.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .17em; }
.kicker span { display: block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 { margin-bottom: 30px; font-size: clamp(78px, 8vw, 138px); line-height: .82; letter-spacing: -.055em; }
.hero-lead { width: min(520px, 100%); margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 14px 20px; gap: 32px; border: 1px solid transparent; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--green); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.button-link { display: inline-flex; align-items: center; gap: 13px; padding: 12px 0; font-size: 13px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.45); }
.hero-product { position: absolute; z-index: 4; right: 7vw; bottom: 4.5vw; width: clamp(255px, 26vw, 430px); aspect-ratio: 1; transform: translateY(var(--parallax, 0)); }
.hero-product img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; clip-path: circle(46%); filter: drop-shadow(0 30px 35px rgba(0,0,0,.35)); }
.hero-product-note { position: absolute; z-index: 3; right: 2%; bottom: 13%; padding: 8px 11px; color: var(--green); background: var(--cream); font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.hero-origin { position: absolute; z-index: 3; top: 132px; right: 5vw; display: flex; align-items: center; width: 224px; min-height: 82px; padding: 14px 16px; color: white; background: rgba(12,39,29,.42); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(10px); }
.hero-origin::before { position: absolute; content: ""; top: -1px; bottom: -1px; left: -1px; width: 3px; background: var(--gold); }
.hero-origin svg { flex: 0 0 auto; width: 27px; height: 35px; margin-right: 14px; color: var(--gold-light); }
.hero-origin span { display: flex; min-width: 0; flex-direction: column; }
.hero-origin small { margin-bottom: 1px; text-transform: uppercase; font: 700 8px/1.4 var(--sans); letter-spacing: .16em; opacity: .68; }
.hero-origin strong { font: 600 17px/1.05 var(--serif); letter-spacing: -.02em; }
.hero-origin em { margin-top: 4px; font: normal 8px/1.3 var(--sans); letter-spacing: .08em; opacity: .72; }
.hero-facts { position: absolute; z-index: 3; right: 5vw; bottom: 25px; left: 5vw; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.3); text-transform: uppercase; font-size: 9px; letter-spacing: .13em; }
.marquee { overflow: hidden; padding: 13px 0 16px; color: var(--green); background: var(--gold); }
.marquee div { display: flex; width: max-content; align-items: center; gap: 28px; animation: marquee 22s linear infinite; }
.marquee span { font: 500 29px/1 var(--serif); font-style: italic; }
.marquee i { font: normal 12px var(--sans); }

.section { padding: 120px 5vw; }
.section-label { display: flex; gap: 14px; margin-bottom: 64px; text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.section-label span { color: #97733d; }
.section-label p { margin: 0; }
.section-label.light { color: rgba(255,255,255,.8); }
.section-label.light span { color: var(--gold-light); }
.origin { background: var(--cream); }
.origin-title { margin-left: 28%; margin-bottom: 80px; }
.origin-title h2, .shop h2, .contact h2 { max-width: 890px; margin: 0; font-size: clamp(57px, 6.4vw, 102px); line-height: .93; }
.origin-title h2 em, .shop h2 em, .contact h2 em { color: #75816d; }
.origin-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 8vw; align-items: center; }
.origin-photo { display: grid; grid-template-columns: 1fr 150px; gap: 24px; align-items: end; }
.photo-frame { height: 560px; overflow: hidden; transform: translateY(var(--parallax, 0)); }
.photo-frame img { width: 100%; height: 115%; object-fit: cover; object-position: center; }
.origin-photo p { margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.origin-story { max-width: 500px; }
.year { display: block; margin-bottom: 35px; color: #85907c; font: 500 clamp(90px, 11vw, 170px)/.75 var(--serif); letter-spacing: -.06em; }
.origin-story p { margin-bottom: 22px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }

.process { color: white; background: var(--green); }
.process-heading { display: grid; grid-template-columns: 1fr 330px; gap: 8vw; align-items: end; margin-bottom: 90px; }
.process-heading h2 { margin: 0; font-size: clamp(62px, 7vw, 110px); line-height: .88; }
.process-heading p { margin: 0 0 8px; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.85; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.24); }
.process-list article { position: relative; min-height: 330px; padding: 27px 40px 35px 0; border-right: 1px solid rgba(255,255,255,.24); }
.process-list article:not(:first-child) { padding-left: 40px; }
.process-list article:last-child { border-right: 0; }
.process-list article > span { font-size: 10px; color: var(--gold-light); }
.process-list svg { display: block; width: 48px; height: 48px; margin: 45px 0 35px; color: var(--gold-light); }
.process-list h3 { margin-bottom: 12px; font-size: 30px; }
.process-list p { max-width: 260px; margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }

.shop { background: #eeeee4; }
.shop-head { display: grid; grid-template-columns: 1.5fr .5fr; gap: 7vw; align-items: end; margin-bottom: 70px; }
.shop-head > p { color: var(--muted); font-size: 15px; line-height: 1.85; }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { min-width: 0; }
.product-image { position: relative; aspect-ratio: 1/.98; overflow: hidden; background: #f6f1e8; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-badge { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 6px 9px; color: var(--green); background: rgba(245,241,231,.9); border: 1px solid #c4c9b8; font-size: 10px; font-weight: 700; }
.product-info { padding-top: 23px; }
.product-meta { margin-bottom: 7px; color: var(--muted); text-transform: uppercase; font-size: 9px; letter-spacing: .12em; }
.product-name { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.product-name h3 { margin-bottom: 12px; font-size: 30px; }
.product-name b { font-size: 16px; font-weight: 600; white-space: nowrap; }
.product-info > p { min-height: 50px; margin-bottom: 22px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.add-button { display: flex; width: 100%; min-height: 51px; align-items: center; justify-content: space-between; padding: 12px 15px; color: var(--green); background: transparent; border: 1px solid #a9b29f; font-size: 13px; font-weight: 700; cursor: pointer; transition: color .25s, background .25s; }
.add-button:hover { color: white; background: var(--green); }
.add-button span:last-child { font-size: 21px; font-weight: 400; }
.demo-note { margin: 40px 0 0; color: var(--muted); font-size: 11px; }

.trade { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 650px; color: white; background: var(--clay); }
.trade-copy { align-self: center; padding: 90px 5vw; }
.trade h2 { margin-bottom: 28px; font-size: clamp(58px, 6.3vw, 98px); line-height: .91; }
.trade h2 em { color: #f0cb8c; }
.trade-copy > p:not(.kicker) { max-width: 480px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.85; }
.button-outline { color: white; border-color: rgba(255,255,255,.5); }
.button-outline:hover { color: var(--clay); background: white; }
.trade-art { position: relative; display: grid; place-items: center; overflow: hidden; background: #8c432e; transform: translateY(var(--parallax, 0)); }
.trade-art::after { position: absolute; content: ""; inset: 8%; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.trade-art > span { position: absolute; color: rgba(255,255,255,.08); font: 600 19vw/.8 var(--serif); letter-spacing: -.08em; }
.trade-art svg { z-index: 2; width: 38%; color: #edc681; stroke-width: 1; }

.contact { display: grid; grid-template-columns: 1.2fr .65fr .6fr; gap: 6vw; align-items: end; background: var(--cream); }
.contact-title h2 { font-size: clamp(60px, 6.5vw, 104px); }
.contact-card { padding-left: 45px; border-left: 1px solid var(--line); }
.contact-card > svg { width: 27px; height: 27px; margin-bottom: 27px; color: #a77c3e; }
.contact-card h3 { margin-bottom: 17px; font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: 0; }
.contact-card address { margin-bottom: 22px; color: var(--muted); font-style: normal; font-size: 14px; line-height: 1.9; }
.contact-social { display: flex; align-items: center; justify-content: space-between; min-height: 160px; padding: 25px; color: white; background: var(--green); transition: background .25s; }
.contact-social:hover { background: #28523f; }
.contact-social span { font: 500 25px/1.1 var(--serif); }
.contact-social b { font-size: 25px; font-weight: 400; }
footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 35px; align-items: end; padding: 38px 5vw; color: rgba(255,255,255,.7); background: var(--green-deep); }
.footer-brand { color: white; font: 600 56px/.8 var(--serif); letter-spacing: -.06em; }
footer p { margin: 3px 0; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

.drawer-backdrop { position: fixed; z-index: 69; inset: 0; background: rgba(7,20,15,.48); backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s; }
.drawer-backdrop.visible { opacity: 1; }
.cart-drawer { position: fixed; z-index: 70; top: 0; right: 0; display: flex; flex-direction: column; width: min(480px, 100%); height: 100dvh; color: var(--green); background: var(--paper); transform: translateX(105%); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.cart-drawer.open { transform: translateX(0); }
.cart-top { display: flex; justify-content: space-between; align-items: flex-start; padding: 28px; border-bottom: 1px solid var(--line); }
.cart-top span, .checkout-intro > span, .success > span { display: block; margin-bottom: 5px; color: #98713a; text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.cart-top h2 { margin: 0; font-size: 38px; }
.icon-button { width: 40px; height: 40px; padding: 0; color: inherit; background: transparent; border: 1px solid var(--line); font-size: 25px; line-height: 1; cursor: pointer; }
.cart-steps { display: flex; justify-content: space-between; padding: 15px 28px; color: #889084; border-bottom: 1px solid var(--line); font-size: 10px; }
.cart-steps .active { color: var(--green); font-weight: 700; }
.cart-body { flex: 1; overflow: auto; padding: 0 28px; }
.empty-cart { display: grid; min-height: 430px; place-items: center; align-content: center; text-align: center; }
.empty-cart svg { width: 47px; height: 47px; margin-bottom: 22px; color: #7c897b; }
.empty-cart h3 { margin-bottom: 13px; font-size: 34px; line-height: 1.05; }
.empty-cart p { max-width: 270px; color: var(--muted); font-size: 13px; }
.cart-item { display: grid; grid-template-columns: 94px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 94px; height: 116px; object-fit: cover; }
.cart-item h3 { margin: 5px 0 6px; font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0; }
.cart-item p { margin-bottom: 12px; font-size: 13px; }
.cart-item small { color: var(--muted); font-size: 10px; }
.cart-actions { display: flex; align-items: center; justify-content: space-between; }
.quantity { display: flex; align-items: center; border: 1px solid var(--line); }
.quantity button { width: 31px; height: 30px; padding: 0; background: transparent; border: 0; cursor: pointer; }
.quantity span { min-width: 24px; text-align: center; font-size: 12px; }
.remove { padding: 6px; color: var(--muted); background: transparent; border: 0; font-size: 11px; text-decoration: underline; cursor: pointer; }
.cart-footer { padding: 25px 28px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 15px; font-size: 13px; }
.cart-total strong { font: 600 25px var(--serif); }
.cart-footer > p { margin-bottom: 18px; color: var(--muted); font-size: 10px; }
.button-dark { width: 100%; color: white; background: var(--green); }
.button-dark:hover { background: #28523f; }

dialog { color: var(--green); background: var(--paper); border: 0; box-shadow: 0 24px 80px rgba(0,0,0,.25); }
dialog::backdrop { background: rgba(7,20,15,.62); backdrop-filter: blur(4px); }
.checkout { width: min(720px, calc(100% - 32px)); padding: 42px; }
.dialog-close { position: absolute; top: 20px; right: 20px; }
.checkout-intro h2 { margin-bottom: 10px; font-size: 45px; }
.checkout-intro p { max-width: 470px; margin-bottom: 30px; color: var(--muted); font-size: 12px; }
.checkout form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-wide, fieldset.field-wide { grid-column: 1 / -1; }
.field label, fieldset legend { font-size: 11px; font-weight: 700; }
.field input { width: 100%; min-height: 47px; padding: 10px 12px; color: var(--green); background: transparent; border: 1px solid #bcc5b7; border-radius: 0; }
fieldset { padding: 0; border: 0; }
.radio { display: inline-flex; align-items: center; gap: 7px; margin: 10px 20px 0 0; font-size: 12px; }
.checkout-total { display: flex; justify-content: space-between; padding: 18px 0 3px; border-top: 1px solid var(--line); }
.checkout-total span { font-size: 13px; }
.checkout-total strong { font: 600 28px var(--serif); }
.success { width: min(500px, calc(100% - 32px)); padding: 52px; text-align: center; }
.success-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 25px; color: var(--green); background: var(--gold); border-radius: 50%; font-size: 25px; }
.success h2 { margin-bottom: 15px; font-size: 58px; }
.success p { margin-bottom: 28px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.toast { position: fixed; z-index: 100; right: 20px; bottom: 20px; padding: 13px 18px; color: white; background: var(--green); font-size: 12px; opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.visible { opacity: 1; transform: translateY(0); }

.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity .85s, transform .85s cubic-bezier(.2,.7,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  nav { gap: 20px; }
  .hero-content { width: 63vw; }
  .hero h1 { font-size: 10vw; }
  .hero-product { right: 4vw; width: 30vw; }
  .hero-origin { width: 205px; }
  .origin-title { margin-left: 18%; }
  .origin-grid { gap: 5vw; }
  .origin-photo { grid-template-columns: 1fr; }
  .origin-photo p { max-width: 350px; }
  .contact { grid-template-columns: 1fr 1fr; }
  .contact-title { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .site-header, .site-header.scrolled { grid-template-columns: 1fr auto; height: 74px; padding: 0 20px; }
  .brand-copy, nav, .cart-button > span { display: none; }
  .brand-word { font-size: 36px; }
  .hero { min-height: 780px; }
  .hero-media img { object-position: 58% center; transform: scale(1.14); }
  .hero-wash { background: linear-gradient(0deg, rgba(10,31,23,.98) 0%, rgba(10,31,23,.78) 51%, rgba(12,38,28,.24) 100%); }
  .hero-content { top: auto; right: 20px; bottom: 112px; left: 20px; width: auto; transform: none; }
  .hero h1 { font-size: clamp(64px, 15.5vw, 86px); line-height: .86; }
  .hero-lead { max-width: 460px; font-size: 15px; line-height: 1.7; }
  .hero-actions { gap: 20px; }
  .button { gap: 22px; }
  .hero-product { top: 88px; right: -14px; bottom: auto; width: 190px; opacity: .92; }
  .hero-product-note { display: none; }
  .hero-origin { top: 105px; left: 20px; right: auto; width: 180px; min-height: 70px; padding: 11px 13px; }
  .hero-origin svg { width: 23px; height: 31px; margin-right: 11px; }
  .hero-origin strong { font-size: 15px; }
  .hero-facts { right: 20px; bottom: 20px; left: 20px; }
  .hero-facts span:first-child, .hero-facts span:last-child { display: none; }
  .marquee div { gap: 20px; }
  .marquee span { font-size: 24px; }
  .section { padding: 80px 20px; }
  .section-label { margin-bottom: 45px; }
  .origin-title { margin: 0 0 55px; }
  .origin-title h2, .shop h2, .contact h2 { font-size: 58px; }
  .origin-grid, .process-heading, .shop-head, .trade, .contact { grid-template-columns: 1fr; }
  .photo-frame { height: 410px; }
  .year { margin-top: 30px; font-size: 125px; }
  .process-heading { margin-bottom: 60px; }
  .process-heading h2, .trade h2 { font-size: 65px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list article, .process-list article:not(:first-child) { display: grid; grid-template-columns: 35px 53px 1fr; min-height: 0; gap: 18px; align-items: start; padding: 27px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .process-list article:last-child { border-bottom: 0; }
  .process-list svg { margin: 0; }
  .process-list h3 { margin: 5px 0 6px; }
  .process-list p { grid-column: 3; }
  .shop-head { gap: 25px; margin-bottom: 45px; }
  .products { grid-template-columns: 1fr; gap: 48px; }
  .product-image { aspect-ratio: 1.08; }
  .product-info > p { min-height: 0; font-size: 14px; }
  .trade { min-height: 0; }
  .trade-copy { padding: 80px 20px; }
  .trade-art { min-height: 460px; }
  .trade-art > span { font-size: 45vw; }
  .contact { gap: 45px; }
  .contact-card { padding: 35px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  footer { grid-template-columns: 1fr; gap: 18px; padding: 34px 20px; }
  .footer-brand { margin-bottom: 15px; }
  .checkout { max-height: calc(100dvh - 28px); padding: 62px 22px 28px; overflow-y: auto; }
  .checkout form { grid-template-columns: 1fr; }
  .field-wide, fieldset.field-wide { grid-column: auto; }
  .radio { display: flex; }
  .success { padding: 45px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}
