:root {
  --ink: #151515;
  --paper: #fffdf8;
  --bone: #f3f0e8;
  --cobalt: #1746d1;
  --cherry: #ee3a43;
  --lime: #d8ff48;
  --muted: #706d66;
  --line: rgba(21, 21, 21, .22);
  --max: 1440px;
  --gutter: clamp(18px, 4vw, 64px);
  --shadow: 0 18px 60px rgba(21, 21, 21, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.5; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-160%); background: var(--lime); padding: 12px 18px; font-weight: 800; }
.skip-link:focus-visible { transform: translateY(0); }
.muted { color: var(--muted); }
.noscript { position: fixed; z-index: 1000; inset: auto 0 0; margin: 0; padding: 16px; background: var(--cherry); color: white; text-align: center; }

.eyebrow { margin: 0 0 14px; font-size: .72rem; font-weight: 800; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--red { color: var(--cherry); }
.eyebrow--lime { color: var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: .94; }
h1, h2 { letter-spacing: -.055em; }
h1 { font-size: clamp(3.7rem, 9vw, 9rem); }
h2 { font-size: clamp(2.6rem, 6vw, 6rem); }
h3 { font-size: 1.25rem; }
h1 em, h2 em { font-family: Georgia, serif; font-weight: 400; }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; vertical-align: middle; }
.icon-button { display: inline-grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; background: transparent; }
.icon-button:hover { background: var(--bone); }

.demo-ribbon { display: grid; min-height: 34px; padding: 6px var(--gutter); grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; background: var(--ink); color: white; font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.demo-ribbon span { color: var(--lime); }
.demo-ribbon p { margin: 0; text-align: center; }
.demo-ribbon a { justify-self: end; }
.site-header { position: sticky; z-index: 50; top: 0; display: grid; min-height: 78px; padding: 0 var(--gutter); grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--ink); background: rgba(255, 253, 248, .96); transition: min-height .2s, box-shadow .2s; }
.site-header.is-scrolled { min-height: 64px; box-shadow: 0 10px 32px rgba(21, 21, 21, .08); }
.wordmark { display: inline-grid; width: max-content; grid-template-columns: auto auto; column-gap: .2em; align-items: baseline; font-size: 1.2rem; font-weight: 950; letter-spacing: -.08em; line-height: 1; text-decoration: none; }
.wordmark i { display: block; width: 42%; height: 4px; margin-top: 5px; grid-column: 2; justify-self: end; background: var(--cherry); }
.desktop-nav { display: flex; gap: clamp(20px, 3vw, 52px); align-items: center; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a { position: relative; padding: 28px 0; text-decoration: none; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--cherry); content: ""; transition: transform .2s; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-tools { display: flex; justify-self: end; align-items: center; gap: 2px; }
.menu-trigger { display: none; }
.bag-trigger { position: relative; }
.bag-trigger .count { position: absolute; right: 0; top: 2px; display: grid; min-width: 18px; height: 18px; padding: 0 4px; place-items: center; border-radius: 20px; background: var(--cherry); color: white; font-size: .64rem; font-weight: 800; }

.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.button { display: inline-flex; min-height: 48px; padding: 13px 20px; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 2px; font-size: .77rem; font-weight: 850; letter-spacing: .08em; line-height: 1; text-align: center; text-decoration: none; text-transform: uppercase; transition: transform .18s, background .18s, color .18s; }
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.button--ink { background: var(--ink); color: white; }
.button--paper { background: var(--paper); color: var(--ink); }
.button--cobalt { background: var(--cobalt); color: white; }
.button--cherry { background: var(--cherry); color: white; }
.button--outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--full { width: 100%; }
.arrow-link { display: inline-flex; align-items: center; gap: 12px; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.arrow-link:hover .icon { transform: translateX(5px); }
.arrow-link .icon { transition: transform .2s; }
.text-button { display: inline-flex; padding: 0; align-items: center; gap: 6px; border: 0; background: transparent; font-size: .74rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.home-hero { display: grid; min-height: calc(100vh - 112px); grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr); border-bottom: 1px solid var(--ink); }
.home-hero__copy { display: flex; padding: clamp(54px, 7vw, 116px) var(--gutter) 44px; flex-direction: column; justify-content: center; }
.home-hero h1 { max-width: 790px; margin: 0 0 34px; font-size: clamp(4.4rem, 8vw, 8.4rem); }
.home-hero h1 em { color: var(--cobalt); }
.hero-lede { max-width: 580px; margin-bottom: 30px; font-size: clamp(1rem, 1.4vw, 1.28rem); }
.hero-proof { display: grid; margin-top: auto; padding-top: 34px; grid-template-columns: repeat(3, 1fr); gap: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .73rem; }
.hero-proof strong { display: block; color: var(--ink); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.home-hero__media { position: relative; min-height: 720px; overflow: hidden; background: var(--bone); }
.home-hero__media::before { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(21,21,21,.07), transparent 25%); content: ""; pointer-events: none; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.demo-label { position: absolute; z-index: 2; left: 10px; bottom: 10px; display: inline-block; max-width: calc(100% - 20px); padding: 6px 9px; background: var(--lime); color: var(--ink); font-size: .61rem; font-weight: 850; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; }
.demo-label--large { left: 16px; bottom: 16px; padding: 8px 11px; }
.hero-instagram { position: absolute; z-index: 3; top: 20px; right: 20px; display: inline-flex; padding: 10px 12px; align-items: center; gap: 8px; background: var(--paper); font-size: .71rem; font-weight: 800; text-decoration: none; }
.energy-line { display: flex; min-height: 52px; padding: 12px var(--gutter); align-items: center; justify-content: space-between; gap: 22px; overflow: hidden; background: var(--cherry); color: white; font-size: .7rem; font-weight: 850; letter-spacing: .12em; white-space: nowrap; text-transform: uppercase; }
.energy-line i { width: 6px; height: 6px; flex: none; background: var(--lime); transform: rotate(45deg); }

.section { padding: clamp(76px, 10vw, 150px) var(--gutter); }
.section--paper { background: var(--paper); }
.section-head { display: grid; max-width: var(--max); margin: 0 auto clamp(46px, 6vw, 86px); grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr); align-items: end; gap: 40px; }
.section-head h2 { margin-bottom: 0; }
.section-head--compact { grid-template-columns: 1fr; }
.section-note { display: grid; padding-top: 16px; grid-template-columns: 44px 1fr; gap: 18px; border-top: 1px solid var(--ink); }
.section-note span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--cobalt); color: white; font-size: .7rem; font-weight: 800; }
.section-note p, .section-intro { margin: 0; color: var(--muted); }
.section-end { max-width: var(--max); margin: 46px auto 0; text-align: right; }

.product-grid { display: grid; max-width: var(--max); margin: 0 auto; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 30px); }
.product-card { min-width: 0; }
.product-card__media { position: relative; overflow: hidden; background: var(--bone); }
.product-card__media > a { display: block; aspect-ratio: 4 / 5; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s cubic-bezier(.2,.7,.2,1); }
.product-card:hover img { transform: scale(1.025); }
.wishlist-button { position: absolute; z-index: 3; top: 10px; right: 10px; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(21,21,21,.15); border-radius: 50%; background: rgba(255,253,248,.92); }
.wishlist-button.is-active { background: var(--cherry); color: white; }
.wishlist-button.is-active .icon { fill: currentColor; }
.product-card__meta { display: flex; margin-top: 14px; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { margin: 10px 0 12px; font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.02; }
.product-card h3 a { text-decoration: none; }
.product-card__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.product-card__bottom p { margin: 0; font-weight: 800; }
.product-card__bottom .text-button { max-width: 118px; justify-content: flex-end; text-align: right; }

.look-feature { display: grid; min-height: 760px; grid-template-columns: minmax(0, 1.6fr) minmax(360px, .7fr); background: var(--ink); color: white; }
.look-feature__media { position: relative; min-height: 720px; overflow: hidden; }
.look-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.look-feature__copy { display: flex; padding: clamp(48px, 5vw, 84px); flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.2); }
.look-feature__copy h2 { margin-bottom: 30px; }
.look-feature__copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.look-hotspot { position: absolute; z-index: 3; display: grid; width: 42px; height: 42px; place-items: center; border: 3px solid var(--paper); border-radius: 50%; background: var(--cherry); color: white; font-size: .7rem; font-weight: 900; box-shadow: 0 0 0 1px var(--ink); }
.look-hotspot--one { left: 22%; top: 38%; }
.look-hotspot--two { right: 10%; bottom: 20%; }
.look-pieces { margin: 26px 0 32px; padding: 0; list-style: none; }
.look-pieces li { display: grid; padding: 16px 0; grid-template-columns: 42px 1fr; gap: 10px; border-top: 1px solid rgba(255,255,255,.2); }
.look-pieces li:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.look-pieces li > span { font-size: .7rem; font-weight: 850; }
.look-pieces strong, .look-pieces small, .look-pieces a { display: block; }
.look-pieces small { margin-top: 3px; color: rgba(255,255,255,.6); }
.look-pieces a { margin-top: 8px; color: var(--lime); font-size: .75rem; font-weight: 700; }
.source-link { display: inline-block; margin-top: 20px; color: rgba(255,255,255,.65); font-size: .72rem; }

.fact-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--ink); background: var(--bone); }
.fact-strip article { position: relative; min-height: 250px; padding: 36px var(--gutter); border-right: 1px solid var(--ink); }
.fact-strip article:last-child { border-right: 0; }
.fact-strip article > span { position: absolute; top: 18px; right: 18px; color: var(--muted); font-size: .66rem; font-weight: 850; }
.fact-strip .icon { width: 34px; height: 34px; margin-bottom: 48px; color: var(--cobalt); }
.fact-strip h3 { margin-bottom: 10px; font-size: clamp(1.5rem, 2.5vw, 2.4rem); }
.fact-strip p { max-width: 320px; margin-bottom: 0; color: var(--muted); }

.category-section { background: var(--paper); }
.category-grid { display: grid; max-width: var(--max); margin: 0 auto; grid-template-columns: 1.1fr .9fr .9fr; gap: 2px; background: var(--ink); border: 1px solid var(--ink); }
.category-card { position: relative; display: flex; min-height: 330px; padding: 30px; flex-direction: column; color: white; text-decoration: none; }
.category-card > span { font-size: .68rem; font-weight: 800; }
.category-card h3 { margin: auto 0 12px; font-size: clamp(2.7rem, 4vw, 4.8rem); letter-spacing: -.06em; }
.category-card p { margin-bottom: 0; }
.category-card > .icon { position: absolute; top: 28px; right: 28px; width: 30px; height: 30px; transition: transform .2s; }
.category-card:hover > .icon { transform: translateX(6px); }
.category-card--red { background: var(--cherry); }
.category-card--blue { background: var(--cobalt); }
.category-card--ink { background: var(--ink); }

.founder-moment { display: grid; grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr); background: var(--bone); }
.founder-moment__image { position: relative; min-height: 760px; max-height: 820px; overflow: hidden; }
.founder-moment__image img { width: 100%; height: 100%; object-fit: cover; }
.founder-moment__copy { display: flex; padding: clamp(60px, 8vw, 138px); flex-direction: column; justify-content: center; }
.founder-moment blockquote { max-width: 850px; margin: 0 0 34px; font-family: Georgia, serif; font-size: clamp(2.4rem, 5.4vw, 6rem); font-style: italic; letter-spacing: -.045em; line-height: .98; }
.founder-moment__copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.founder-links { display: flex; margin-top: 40px; align-items: center; gap: 28px; }
.founder-links > a:last-child { color: var(--muted); font-size: .75rem; }

.boutique-preview { display: grid; min-height: 620px; grid-template-columns: 1fr 1fr; background: var(--ink); color: white; }
.boutique-preview__map, .boutique-hero__map { position: relative; min-height: 560px; overflow: hidden; background: var(--cobalt); }
.map-grid { position: absolute; inset: -20%; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 46px 46px; transform: rotate(-11deg) scale(1.25); }
.map-word { position: absolute; z-index: 2; color: white; font-size: clamp(4rem, 9vw, 9rem); font-weight: 950; letter-spacing: -.08em; line-height: .8; }
.map-word--one { left: 6%; top: 18%; }
.map-word--two { right: 4%; bottom: 12%; -webkit-text-stroke: 1px white; color: transparent; }
.map-pin { position: absolute; z-index: 3; left: 54%; top: 53%; width: 38px; height: 38px; border: 8px solid var(--lime); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 7px rgba(21,21,21,.18); }
.boutique-preview__copy { display: flex; padding: clamp(54px, 7vw, 116px); flex-direction: column; justify-content: center; }
.boutique-preview__copy h2 { margin-bottom: 30px; }
.boutique-preview__copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.7); }

.social-section { background: var(--paper); }
.social-links { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--ink); }
.social-links a { display: grid; padding: 28px 0; grid-template-columns: .65fr 1.2fr 1fr 36px; align-items: center; gap: 24px; border-bottom: 1px solid var(--ink); text-decoration: none; transition: padding .2s, background .2s; }
.social-links a:hover { padding-right: 14px; padding-left: 14px; background: var(--bone); }
.social-links span, .social-links em { color: var(--muted); font-size: .7rem; font-style: normal; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.social-links strong { font-size: clamp(1.3rem, 2.2vw, 2.1rem); letter-spacing: -.03em; }

.footer-cta { padding: clamp(66px, 9vw, 130px) var(--gutter); background: var(--cherry); color: white; }
.footer-cta h2 { margin: 0 0 38px; max-width: 1000px; }
.site-footer { display: grid; padding: 56px var(--gutter) 26px; grid-template-columns: 1.35fr .7fr .8fr 1.1fr; gap: 48px; background: var(--ink); color: white; }
.wordmark--footer { margin-bottom: 24px; font-size: 1.6rem; }
.footer-brand p, .footer-note p { color: rgba(255,255,255,.62); }
.footer-title { color: var(--lime) !important; font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.site-footer > div:not(.footer-disclaimer) > a { display: block; margin: 10px 0; color: rgba(255,255,255,.76); font-size: .85rem; text-decoration: none; }
.site-footer > div:not(.footer-disclaimer) > a:hover { color: white; text-decoration: underline; }
.footer-disclaimer { display: flex; padding-top: 26px; grid-column: 1 / -1; align-items: flex-end; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.48); font-size: .69rem; }
.footer-disclaimer p { max-width: 800px; margin-bottom: 0; }

.page-hero { min-height: 540px; padding: clamp(74px, 10vw, 148px) var(--gutter) 70px; border-bottom: 1px solid var(--ink); }
.page-hero h1 { max-width: 1300px; margin: 0 0 32px; font-size: clamp(4rem, 9vw, 9rem); }
.page-hero > p:last-child { max-width: 670px; margin-bottom: 0; font-size: clamp(1rem, 1.6vw, 1.25rem); }
.page-hero--shop { background: var(--bone); }
.page-hero--shop em { color: var(--cobalt); }
.page-hero--looks, .page-hero--contact { background: var(--ink); color: white; }
.page-hero--looks em, .page-hero--contact em { color: var(--cherry); }

.shop-shell { padding: 32px var(--gutter) clamp(80px, 10vw, 140px); }
.shop-toolbar { position: sticky; z-index: 10; top: 64px; display: grid; max-width: var(--max); min-height: 74px; margin: 0 auto 28px; grid-template-columns: 1.4fr .7fr .7fr auto; align-items: end; gap: 10px; background: var(--paper); border-bottom: 1px solid var(--ink); }
.shop-toolbar > label:not(.check-control) { display: grid; gap: 4px; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.shop-toolbar input[type="search"], .shop-toolbar select { width: 100%; min-height: 48px; padding: 10px 12px; border: 0; background: transparent; color: var(--ink); font-size: .86rem; font-weight: 700; }
.shop-search { position: relative; }
.shop-search .icon { position: absolute; left: 2px; bottom: 14px; }
.shop-search input[type="search"] { padding-left: 32px; }
.check-control { display: flex; min-height: 48px; padding: 10px 0 10px 10px; align-items: center; gap: 9px; font-size: .72rem; font-weight: 750; }
.check-control input { width: 18px; height: 18px; accent-color: var(--cobalt); }
.shop-status { display: flex; max-width: var(--max); margin: 0 auto 26px; justify-content: space-between; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.shop-status p { margin: 0; }
.product-grid--shop { row-gap: 56px; }
.empty-state--shop { max-width: 520px; margin: 70px auto; }
.truth-banner { display: grid; padding: clamp(60px, 8vw, 110px) var(--gutter); grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; background: var(--cobalt); color: white; }
.truth-banner h2 { max-width: 920px; margin: 0; }
.truth-banner > p { margin: 0; color: rgba(255,255,255,.72); }

.breadcrumbs { display: flex; max-width: var(--max); margin: 0 auto; padding: 20px var(--gutter); gap: 10px; color: var(--muted); font-size: .72rem; }
.product-detail { display: grid; max-width: var(--max); margin: 0 auto; padding: 20px var(--gutter) clamp(80px, 9vw, 130px); grid-template-columns: minmax(0, 1.05fr) minmax(380px, .75fr); gap: clamp(36px, 7vw, 110px); }
.product-detail__media { position: relative; align-self: start; overflow: hidden; background: var(--bone); }
.product-detail__media > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-detail__info { padding-top: 22px; align-self: start; }
.product-detail__info h1 { margin: 0 0 18px; font-size: clamp(3rem, 5.7vw, 6.8rem); }
.product-price { margin-bottom: 26px; font-size: 1.4rem; font-weight: 900; }
.source-badge { display: grid; margin: 24px 0; padding: 16px; grid-template-columns: 32px 1fr; gap: 12px; border: 1px solid var(--line); background: var(--bone); }
.source-badge > span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--lime); }
.source-badge strong, .source-badge a { display: block; }
.source-badge a { margin-top: 3px; color: var(--muted); font-size: .72rem; }
.product-description { color: var(--muted); }
.product-detail fieldset { margin: 26px 0; padding: 0; border: 0; }
.product-detail legend { margin-bottom: 10px; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-pill input { position: absolute; opacity: 0; pointer-events: none; }
.choice-pill span { display: grid; min-width: 48px; min-height: 44px; padding: 8px 13px; place-items: center; border: 1px solid var(--ink); font-size: .78rem; font-weight: 800; }
.choice-pill input:checked + span { background: var(--ink); color: white; }
.choice-pill input:focus-visible + span { outline: 3px solid var(--cobalt); outline-offset: 2px; }
.field-help { margin: 8px 0 0; color: var(--muted); font-size: .72rem; }
.quantity-select { display: grid; margin-bottom: 20px; gap: 6px; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.quantity-select select { min-height: 44px; padding: 8px 12px; border: 1px solid var(--ink); background: var(--paper); }
.product-detail form .button + .button { margin-top: 8px; }
.product-truth { margin-top: 30px; border-top: 1px solid var(--ink); }
.product-truth details { border-bottom: 1px solid var(--ink); }
.product-truth summary { padding: 16px 0; cursor: pointer; font-size: .78rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.product-truth p, .product-truth ul { color: var(--muted); font-size: .85rem; }
.product-truth ul { padding: 0; list-style: none; }
.product-truth li { display: flex; margin: 8px 0; align-items: center; gap: 8px; }
.product-truth li .icon { color: var(--cobalt); }
.availability-note { margin-top: 20px; padding-left: 14px; border-left: 4px solid var(--cherry); color: var(--muted); font-size: .83rem; }
.product-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--bone); }
.product-service-grid article { padding: 34px var(--gutter); border-right: 1px solid var(--ink); }
.product-service-grid article:last-child { border-right: 0; }
.product-service-grid span { font-size: .68rem; font-weight: 850; }
.product-service-grid h3 { margin: 38px 0 8px; }
.product-service-grid p { margin-bottom: 0; color: var(--muted); }
.related-section { background: var(--paper); }
.product-grid--related { grid-template-columns: repeat(3, 1fr); }

.look-story { display: grid; min-height: 760px; grid-template-columns: minmax(0, 1.55fr) minmax(360px, .65fr); background: var(--bone); }
.look-story__media { position: relative; min-height: 720px; overflow: hidden; }
.look-story__media img { width: 100%; height: 100%; object-fit: cover; }
.look-story__aside { padding: clamp(48px, 6vw, 92px); align-self: center; }
.look-story__aside h2 { font-size: clamp(3.3rem, 6vw, 6.5rem); }
.look-story__aside .look-pieces li { border-color: var(--line); }
.look-story__aside .look-pieces li:last-child { border-color: var(--line); }
.look-story__aside .look-pieces small { color: var(--muted); }
.look-story__aside .look-pieces a { color: var(--cobalt); }
.look-method { background: var(--paper); }
.method-grid { display: grid; max-width: var(--max); margin: 0 auto; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.method-grid article { min-height: 290px; padding: 28px; border-right: 1px solid var(--ink); }
.method-grid article:last-child { border-right: 0; }
.method-grid span { font-size: .67rem; font-weight: 850; }
.method-grid h3 { margin: 100px 0 12px; font-size: 2rem; }
.method-grid p { margin-bottom: 0; color: var(--muted); }
.mini-editorials { display: grid; grid-template-columns: 1fr 1fr; }
.mini-editorial { position: relative; display: grid; min-height: 720px; grid-template-columns: 1fr 1fr; background: var(--cherry); color: white; text-decoration: none; }
.mini-editorial--blue { background: var(--cobalt); }
.mini-editorial img { width: 100%; height: 100%; object-fit: cover; }
.mini-editorial > div { display: flex; padding: clamp(32px, 4vw, 62px); flex-direction: column; justify-content: flex-end; }
.mini-editorial > div p { font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.mini-editorial h2 { font-size: clamp(2.4rem, 4vw, 5rem); }
.mini-editorial em { color: rgba(255,255,255,.7); font-size: .78rem; font-style: normal; }

.boutique-hero { display: grid; min-height: calc(100vh - 112px); grid-template-columns: .95fr 1.05fr; background: var(--ink); color: white; }
.boutique-hero__copy { display: flex; padding: clamp(60px, 8vw, 130px) var(--gutter); flex-direction: column; justify-content: center; }
.boutique-hero__copy h1 { margin-bottom: 32px; }
.boutique-hero__copy > p:not(.eyebrow) { max-width: 630px; color: rgba(255,255,255,.7); }
.boutique-hero__map { min-height: 700px; }
.boutique-hero__map > a { position: absolute; z-index: 4; right: 20px; bottom: 20px; padding: 12px; background: var(--paper); color: var(--ink); font-size: .72rem; font-weight: 800; text-decoration: none; }
.location-truth { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--ink); }
.location-truth article { min-height: 250px; padding: 36px var(--gutter); border-right: 1px solid var(--ink); }
.location-truth article:last-child { border-right: 0; }
.location-truth h2 { margin: 70px 0 12px; font-size: clamp(2rem, 3vw, 3.6rem); }
.location-truth p:last-child { margin-bottom: 0; color: var(--muted); }
.store-history { background: var(--bone); }
.timeline { max-width: var(--max); margin: 0 auto; padding: 0; list-style: none; }
.timeline li { display: grid; padding: 30px 0; grid-template-columns: .35fr 1fr; gap: 40px; border-top: 1px solid var(--ink); }
.timeline li:last-child { border-bottom: 1px solid var(--ink); }
.timeline time { font-size: clamp(1.6rem, 3vw, 3.1rem); font-weight: 900; letter-spacing: -.05em; }
.timeline h3 { margin-bottom: 10px; font-size: clamp(1.6rem, 2.4vw, 2.5rem); }
.timeline p { max-width: 740px; color: var(--muted); }
.timeline a { font-size: .72rem; font-weight: 800; }
.faq-section { display: grid; padding: clamp(70px, 9vw, 130px) var(--gutter); grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 120px); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { padding: 22px 0; cursor: pointer; font-weight: 850; }
.faq-list p { max-width: 720px; color: var(--muted); }

.about-hero { display: grid; min-height: calc(100vh - 112px); grid-template-columns: 1.15fr .85fr; background: var(--bone); }
.about-hero__copy { display: flex; padding: clamp(60px, 8vw, 128px) var(--gutter); flex-direction: column; justify-content: center; }
.about-hero__copy h1 { margin-bottom: 36px; font-size: clamp(4rem, 8vw, 8rem); }
.about-hero__copy em { color: var(--cobalt); }
.about-hero__copy > p:last-child { max-width: 670px; color: var(--muted); font-size: 1.1rem; }
.about-hero__image { position: relative; min-height: 720px; }
.about-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.manifesto { padding: clamp(80px, 11vw, 170px) var(--gutter); background: var(--ink); color: white; }
.manifesto h2 { max-width: 1200px; margin: 0 0 60px; }
.manifesto h2 em { color: var(--cherry); }
.manifesto > div { display: grid; max-width: 1000px; margin-left: auto; grid-template-columns: 1fr 1fr; gap: 40px; color: rgba(255,255,255,.7); }
.voice-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--ink); }
.voice-grid article { min-height: 300px; padding: 28px; border-right: 1px solid var(--ink); }
.voice-grid article:last-child { border-right: 0; }
.voice-grid span { font-size: .67rem; font-weight: 850; }
.voice-grid h3 { margin: 100px 0 12px; font-size: 1.8rem; }
.voice-grid p { color: var(--muted); }
.first-shop-quote { padding: clamp(80px, 11vw, 170px) var(--gutter); background: var(--cobalt); color: white; text-align: center; }
.first-shop-quote blockquote { max-width: 1150px; margin: 0 auto 34px; font-family: Georgia, serif; font-size: clamp(2.7rem, 7vw, 7.7rem); font-style: italic; letter-spacing: -.05em; line-height: .96; }
.first-shop-quote > p:not(.eyebrow) { max-width: 720px; margin: 0 auto 32px; color: rgba(255,255,255,.72); }
.disclaimer-panel { display: grid; padding: clamp(70px, 9vw, 130px) var(--gutter); grid-template-columns: 1fr 1fr; gap: 70px; background: var(--bone); }
.disclaimer-panel h2 { margin-bottom: 0; }
.disclaimer-panel > div:last-child { padding-top: 36px; color: var(--muted); }
.disclaimer-panel a { color: var(--cobalt); font-weight: 800; }

.contact-layout { display: grid; padding: clamp(60px, 8vw, 120px) var(--gutter); grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 110px); background: var(--bone); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; align-content: start; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.contact-cards a { display: flex; min-height: 230px; padding: 24px; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; transition: background .2s, color .2s; }
.contact-cards a:hover { background: var(--cobalt); color: white; }
.contact-cards .icon { width: 28px; height: 28px; margin-bottom: auto; }
.contact-cards span { margin: 24px 0 6px; font-size: .67rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-cards strong { font-size: 1.2rem; }
.contact-cards em { margin-top: 5px; color: var(--muted); font-size: .71rem; font-style: normal; }
.contact-cards a:hover em { color: rgba(255,255,255,.7); }
.contact-form, .checkout-form { padding: clamp(30px, 5vw, 68px); background: var(--paper); box-shadow: var(--shadow); }
.contact-form h2, .checkout-form h1 { margin-bottom: 36px; font-size: clamp(3rem, 5vw, 6rem); }
.contact-form > label, .checkout-form > label, .checkout-form fieldset > label { display: grid; margin: 18px 0; gap: 7px; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .checkout-form input, .checkout-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; background: transparent; color: var(--ink); font-size: .95rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
textarea { resize: vertical; }
.micro-disclaimer { margin: 12px 0 0; color: var(--muted); font-size: .67rem; }
.contact-truth { display: grid; padding: 32px var(--gutter); grid-template-columns: repeat(3, 1fr); gap: 36px; background: var(--cherry); color: white; }
.contact-truth p { margin-bottom: 0; }

.checkout-notice { display: flex; padding: 15px var(--gutter); align-items: center; gap: 20px; background: var(--lime); }
.checkout-notice strong { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.checkout-notice p { margin: 0; font-size: .78rem; }
.checkout-layout { display: grid; max-width: 1280px; margin: 0 auto; padding: clamp(50px, 7vw, 100px) var(--gutter); grid-template-columns: 1.1fr .9fr; align-items: start; gap: clamp(30px, 5vw, 70px); }
.checkout-form { box-shadow: none; border: 1px solid var(--ink); }
.checkout-form fieldset { margin: 32px 0; padding: 0; border: 0; }
.checkout-form legend { margin-bottom: 12px; font-size: 1.35rem; font-weight: 900; }
.radio-stack { display: grid; gap: 8px; }
.radio-stack > label { display: flex; padding: 14px; align-items: flex-start; gap: 12px; border: 1px solid var(--line); cursor: pointer; }
.radio-stack input { width: 18px; height: 18px; flex: none; accent-color: var(--cobalt); }
.radio-stack strong, .radio-stack small { display: block; }
.radio-stack small { margin-top: 3px; color: var(--muted); }
.no-payment { display: grid; margin: 24px 0; padding: 16px; grid-template-columns: 28px 1fr; gap: 12px; background: var(--bone); }
.no-payment .icon { color: var(--cobalt); }
.no-payment p { margin: 0; color: var(--muted); font-size: .78rem; }
.checkout-summary { position: sticky; top: 90px; padding: 32px; background: var(--ink); color: white; }
.checkout-item { display: grid; padding: 16px 0; grid-template-columns: 72px 1fr auto; gap: 12px; border-top: 1px solid rgba(255,255,255,.2); }
.checkout-item img { width: 72px; height: 90px; object-fit: cover; }
.checkout-item strong, .checkout-item span, .checkout-item p { display: block; }
.checkout-item div > span, .checkout-item p { color: rgba(255,255,255,.58); font-size: .67rem; }
.checkout-item p { margin: 5px 0 0; }
.checkout-item > span { font-size: .72rem; }
.checkout-total { display: flex; padding: 22px 0; justify-content: space-between; border-top: 1px solid white; border-bottom: 1px solid rgba(255,255,255,.2); }
.checkout-summary > p:last-child { margin-top: 18px; color: rgba(255,255,255,.6); font-size: .72rem; }
.empty-checkout a { color: var(--lime); }

dialog { max-width: none; max-height: none; padding: 0; border: 0; color: var(--ink); }
dialog::backdrop { background: rgba(21,21,21,.62); backdrop-filter: blur(3px); }
.menu-dialog { width: min(520px, 100%); height: 100%; margin: 0 0 0 auto; background: var(--paper); }
.menu-dialog__head, .search-dialog__head, .cart-dialog__head { display: flex; min-height: 72px; padding: 14px 20px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.menu-dialog__head .eyebrow { margin: 0; }
.menu-dialog nav { display: grid; padding: 28px 20px; }
.menu-dialog nav a { padding: 16px 0; border-bottom: 1px solid var(--ink); font-size: clamp(1.8rem, 8vw, 3rem); font-weight: 900; letter-spacing: -.05em; text-decoration: none; }
.menu-contact { padding: 20px; }
.menu-contact p { margin-top: 22px; color: var(--muted); }
.search-dialog { top: 0; width: 100%; min-height: 420px; margin: 0; background: var(--paper); }
.search-dialog__head { padding-right: var(--gutter); padding-left: var(--gutter); }
.search-dialog__head label { font-size: clamp(1.6rem, 3vw, 3.2rem); font-weight: 900; letter-spacing: -.04em; }
.search-field { position: relative; max-width: 1100px; margin: 44px auto 20px; padding: 0 var(--gutter); }
.search-field .icon { position: absolute; left: calc(var(--gutter) + 4px); top: 17px; }
.search-field input { width: 100%; padding: 14px 14px 14px 42px; border: 0; border-bottom: 2px solid var(--ink); background: transparent; font-size: 1.1rem; }
.search-results { max-width: 1100px; margin: 0 auto 50px; padding: 0 var(--gutter); }
.search-result { display: grid; padding: 12px 0; grid-template-columns: 68px 1fr 30px; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); text-decoration: none; }
.search-result img { width: 68px; height: 84px; object-fit: cover; }
.search-result small, .search-result strong, .search-result em { display: block; }
.search-result small, .search-result em { color: var(--muted); font-size: .67rem; font-style: normal; }
.cart-dialog { width: min(540px, 100%); height: 100%; margin: 0 0 0 auto; background: var(--paper); }
.cart-dialog__head h2 { margin: 0; font-size: 2.2rem; }
.cart-dialog__head .eyebrow { margin-bottom: 5px; }
.cart-dialog__body { height: calc(100% - 300px); min-height: 240px; padding: 0 20px; overflow-y: auto; }
.cart-dialog__foot { position: absolute; right: 0; bottom: 0; left: 0; min-height: 220px; padding: 20px; border-top: 1px solid var(--ink); background: var(--paper); }
.cart-dialog__foot > p { margin: 8px 0 14px; color: var(--muted); font-size: .72rem; }
.cart-dialog__foot .text-button { display: flex; margin: 12px auto 0; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; }
.cart-item { display: grid; padding: 20px 0; grid-template-columns: 88px 1fr auto; gap: 14px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 88px; height: 110px; object-fit: cover; }
.cart-item .eyebrow { margin-bottom: 5px; color: var(--muted); font-size: .58rem; }
.cart-item h3 { margin-bottom: 5px; font-size: 1.05rem; }
.cart-item p:not(.eyebrow) { margin-bottom: 8px; color: var(--muted); font-size: .7rem; }
.remove-button { align-self: start; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: .65rem; text-decoration: underline; }
.quantity { display: inline-grid; grid-template-columns: 30px 32px 30px; align-items: center; border: 1px solid var(--line); }
.quantity button { display: grid; width: 30px; height: 30px; padding: 0; place-items: center; border: 0; background: transparent; }
.quantity button .icon { width: 14px; height: 14px; }
.quantity span { text-align: center; font-size: .72rem; }
.empty-state { display: flex; min-height: 340px; padding: 40px 20px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-state > .icon { width: 46px; height: 46px; margin-bottom: 20px; }
.empty-state h3 { font-size: 2rem; }
.empty-state p { max-width: 350px; color: var(--muted); }
.confirmation-dialog { width: min(560px, calc(100% - 30px)); padding: clamp(32px, 6vw, 64px); background: var(--ink); color: white; text-align: center; }
.confirmation-dialog h2 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.confirmation-dialog > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.confirmation-dialog .text-button { margin-top: 20px; color: white; }
.confirmation-close { position: absolute; top: 10px; right: 10px; color: white; }
.confirmation-close:hover { background: rgba(255,255,255,.1); }
.live-toast { position: fixed; z-index: 1000; right: 20px; bottom: 20px; max-width: 360px; padding: 13px 16px; transform: translateY(140%); background: var(--lime); color: var(--ink); font-size: .75rem; font-weight: 800; opacity: 0; transition: transform .25s, opacity .25s; }
.live-toast.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 1180px) {
  .home-hero { grid-template-columns: .95fr 1.05fr; }
  .home-hero__media { min-height: 620px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid--home .product-card:last-child { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr 1fr; }
  .mini-editorial { grid-template-columns: 1fr; }
  .mini-editorial img { max-height: 560px; }
  .site-footer { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-note { grid-column: 2 / -1; }
  .shop-toolbar { grid-template-columns: 1.1fr .65fr .65fr; }
  .check-control { grid-column: 1 / -1; padding-left: 0; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-trigger { display: inline-grid; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-tools { grid-column: 2; }
  .demo-ribbon { grid-template-columns: 1fr auto; }
  .demo-ribbon p { display: none; }
  .home-hero { min-height: 0; grid-template-columns: 1fr 1fr; }
  .home-hero__copy { padding-top: 72px; }
  .home-hero h1 { font-size: clamp(3.8rem, 10vw, 6rem); }
  .home-hero__media { min-height: 620px; }
  .hero-proof { grid-template-columns: 1fr; }
  .energy-line span:nth-of-type(3), .energy-line span:nth-of-type(4), .energy-line i:nth-of-type(n+3) { display: none; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-note { max-width: 600px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--home .product-card:last-child { display: block; }
  .look-feature, .look-story { grid-template-columns: 1fr; }
  .look-feature__media, .look-story__media { min-height: 520px; }
  .look-feature__copy { border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .fact-strip, .product-service-grid, .location-truth { grid-template-columns: 1fr; }
  .fact-strip article, .product-service-grid article, .location-truth article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .fact-strip article:last-child, .product-service-grid article:last-child, .location-truth article:last-child { border-bottom: 0; }
  .fact-strip .icon { margin-bottom: 32px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 250px; }
  .founder-moment { grid-template-columns: .8fr 1.2fr; }
  .founder-moment__copy { padding: 54px 38px; }
  .boutique-preview, .boutique-hero, .about-hero { grid-template-columns: 1fr; }
  .boutique-preview__map, .boutique-hero__map { min-height: 500px; }
  .boutique-preview__copy { grid-row: 1; }
  .social-links a { grid-template-columns: .8fr 1.2fr 30px; }
  .social-links em { display: none; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-note { grid-column: auto; }
  .page-hero { min-height: 460px; }
  .shop-toolbar { position: static; grid-template-columns: 1fr 1fr; }
  .shop-search { grid-column: 1 / -1; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__info { max-width: 760px; }
  .product-grid--related { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .method-grid article:last-child { border-bottom: 0; }
  .method-grid h3 { margin-top: 55px; }
  .mini-editorials { grid-template-columns: 1fr; }
  .mini-editorial { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .timeline li { grid-template-columns: .45fr 1fr; }
  .faq-section { grid-template-columns: 1fr; }
  .about-hero__image { min-height: 650px; }
  .manifesto > div { margin-left: 0; }
  .voice-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid article:nth-child(2) { border-right: 0; }
  .voice-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .disclaimer-panel, .contact-layout, .checkout-layout, .truth-banner { grid-template-columns: 1fr; }
  .contact-truth { grid-template-columns: 1fr; }
  .checkout-summary { position: static; grid-row: 1; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }
  body { font-size: 15px; }
  h1 { font-size: clamp(3.4rem, 16vw, 5.4rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .demo-ribbon { min-height: 30px; font-size: .58rem; }
  .site-header { min-height: 62px; }
  .site-header.is-scrolled { min-height: 58px; }
  .search-trigger { display: none; }
  .wordmark { font-size: 1.08rem; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 auto; }
  .home-hero { display: flex; flex-direction: column; }
  .home-hero__copy { min-height: 620px; padding: 56px var(--gutter) 28px; }
  .home-hero h1 { font-size: clamp(4.2rem, 19vw, 6.2rem); }
  .hero-proof { margin-top: 46px; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-proof span { font-size: .59rem; }
  .hero-proof strong { font-size: .58rem; }
  .home-hero__media { min-height: 580px; }
  .energy-line { justify-content: flex-start; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .section-head { margin-bottom: 38px; }
  .product-grid { gap: 28px 10px; }
  .product-card__meta { display: grid; gap: 3px; }
  .product-card__meta span:last-child { text-align: left; }
  .product-card h3 { font-size: 1rem; }
  .product-card__bottom { display: block; }
  .product-card__bottom .text-button { max-width: none; margin-top: 10px; text-align: left; }
  .product-card .demo-label { font-size: .5rem; }
  .wishlist-button { top: 6px; right: 6px; width: 38px; height: 38px; }
  .look-feature__media, .look-story__media { min-height: 420px; }
  .look-feature__copy, .look-story__aside { padding: 46px 22px; }
  .look-hotspot { width: 34px; height: 34px; }
  .category-card { min-height: 220px; }
  .founder-moment { grid-template-columns: 1fr; }
  .founder-moment__image { min-height: 620px; max-height: 620px; }
  .founder-moment__copy { padding: 54px var(--gutter); }
  .founder-links { align-items: flex-start; flex-direction: column; }
  .boutique-preview__map, .boutique-hero__map { min-height: 420px; }
  .social-links a { padding: 22px 0; grid-template-columns: 1fr 28px; gap: 8px; }
  .social-links span { grid-column: 1; }
  .social-links strong { grid-column: 1; }
  .social-links .icon { grid-column: 2; grid-row: 1 / 3; }
  .footer-cta .button-row { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand, .footer-note { grid-column: auto; }
  .footer-disclaimer { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 500px; padding-top: 72px; }
  .page-hero h1 { font-size: clamp(3.7rem, 16vw, 5.7rem); }
  .shop-toolbar { grid-template-columns: 1fr; }
  .shop-search, .check-control { grid-column: 1; }
  .shop-status { display: grid; gap: 4px; }
  .truth-banner { gap: 30px; }
  .product-detail { padding-right: var(--gutter); padding-left: var(--gutter); gap: 26px; }
  .product-detail__info h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .product-grid--related { grid-template-columns: 1fr 1fr; }
  .product-grid--related .product-card:last-child { display: none; }
  .mini-editorial { grid-template-columns: 1fr; min-height: 0; }
  .mini-editorial img { max-height: 560px; }
  .timeline li { grid-template-columns: 1fr; gap: 12px; }
  .location-truth h2 { margin-top: 40px; }
  .about-hero__copy { min-height: 620px; }
  .about-hero__image { min-height: 560px; }
  .manifesto > div, .disclaimer-panel { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .voice-grid article:last-child { border-bottom: 0; }
  .voice-grid h3 { margin-top: 60px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-cards a { min-height: 190px; }
  .contact-form, .checkout-form { padding: 28px 20px; }
  .checkout-notice { display: grid; gap: 3px; }
  .checkout-layout { padding-right: 14px; padding-left: 14px; }
  .checkout-summary { padding: 24px 18px; }
  .cart-dialog, .menu-dialog { width: 100%; }
  .cart-item { grid-template-columns: 76px 1fr; }
  .cart-item img { width: 76px; height: 96px; }
  .remove-button { grid-column: 2; justify-self: start; }
  .search-dialog__head label { font-size: 1.4rem; }
  .search-dialog { min-height: 100%; }
  .live-toast { right: 10px; bottom: 10px; left: 10px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
