:root {
  --ink-950: #090907;
  --ink-900: #11100e;
  --ink-800: #1b1916;
  --cream-100: #f1ece4;
  --cream-200: #e3d9cc;
  --stone-400: #a79c8d;
  --bronze-500: #9a6a32;
  --bronze-600: #7e5125;
  --line-dark: rgba(241, 236, 228, 0.14);
  --line-light: rgba(17, 16, 14, 0.14);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Jost", Arial, sans-serif;
  --space-section: clamp(72px, 10vw, 176px);
  --space-page: clamp(20px, 5vw, 88px);
  --content-max: 1440px;
  --ease-editorial: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink-950); }
body { margin: 0; overflow-x: hidden; background: var(--ink-900); color: var(--cream-100); font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.65; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--bronze-500); color: var(--ink-950); }

.shell { width: min(var(--content-max), calc(100% - (var(--space-page) * 2))); margin-inline: auto; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.skip-link { position: fixed; left: 16px; top: -120px; z-index: 999; background: var(--cream-100); color: var(--ink-950); padding: 12px 16px; text-decoration: none; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--bronze-500); outline-offset: 4px; }

h1, h2, h3, blockquote { font-family: var(--font-display); font-weight: 500; margin: 0; }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); line-height: .94; letter-spacing: -.025em; }
h2 { font-size: clamp(2.6rem, 4.8vw, 4.8rem); line-height: .98; letter-spacing: -.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.1; }
p { margin: 0 0 1.25em; }
.large, .hero-lede { max-width: 38ch; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.58; }
.eyebrow, .ritual-descriptor, .product-kicker { margin: 0 0 24px; color: var(--bronze-500); font-family: var(--font-body); font-size: .72rem; font-weight: 500; letter-spacing: .2em; line-height: 1.4; text-transform: uppercase; }
.eyebrow.dark-ink { color: var(--bronze-600); }
.microline { margin-top: 18px; color: var(--stone-400); font-size: .76rem; letter-spacing: .04em; }

.site-header { position: sticky; inset: 0 0 auto; z-index: 80; height: 84px; border-bottom: 1px solid var(--line-dark); background: rgba(9, 9, 7, .94); backdrop-filter: blur(14px); transition: background 320ms var(--ease-editorial), border-color 320ms var(--ease-editorial); }
.site-header-overlay { position: fixed; background: transparent; border-color: transparent; }
.site-header-overlay.scrolled { background: rgba(9, 9, 7, .92); border-color: var(--line-dark); }
.nav-shell { width: min(var(--content-max), calc(100% - (var(--space-page) * 2))); height: 100%; margin-inline: auto; display: grid; grid-template-columns: minmax(150px, 1fr) 2fr; align-items: center; gap: 24px; }
.brand-lockup { position: relative; z-index: 82; display: inline-flex; align-items: center; width: max-content; text-decoration: none; }
.brand-lockup img { width: 156px; filter: brightness(0) invert(1); }
.brand-word { color: var(--cream-100); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: .28em; line-height: 1; }
.primary-nav { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; font-size: .73rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.nav-center, .nav-utility { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.nav-center { justify-self: center; }
.nav-utility { justify-self: end; color: var(--stone-400); }
.primary-nav a { position: relative; padding: 10px 0; text-decoration: none; }
.primary-nav a::after, .arrow-link::after, .site-footer a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: currentColor; transition: right 220ms var(--ease-editorial); }
.primary-nav a:hover::after, .primary-nav a.active::after, .primary-nav a:focus-visible::after, .arrow-link:hover::after, .site-footer a:hover::after { right: 0; }
.nav-utility [aria-disabled="true"] { cursor: default; }
.nav-toggle { position: relative; z-index: 83; display: none; justify-self: end; width: 48px; height: 48px; padding: 13px 8px; border: 0; background: transparent; color: var(--cream-100); }
.nav-toggle span { display: block; width: 28px; height: 1px; margin: 7px auto; background: currentColor; transition: transform 240ms var(--ease-editorial); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border: 1px solid var(--line-dark); border-radius: 1px; padding: 14px 24px; background: transparent; color: var(--cream-100); font-size: .72rem; font-weight: 600; letter-spacing: .14em; line-height: 1; text-decoration: none; text-transform: uppercase; transition: color 220ms var(--ease-editorial), background 220ms var(--ease-editorial), border-color 220ms var(--ease-editorial); }
.button:hover { border-color: var(--cream-100); background: var(--cream-100); color: var(--ink-950); }
.button-cream, .button-light { border-color: var(--cream-100); background: var(--cream-100); color: var(--ink-950); }
.button-cream:hover, .button-light:hover { border-color: var(--bronze-500); background: var(--bronze-500); color: var(--cream-100); }
.button-dark { border-color: var(--ink-950); background: var(--ink-950); color: var(--cream-100); }
.button-dark:hover { border-color: var(--bronze-600); background: var(--bronze-600); }
.arrow-link, .text-link { position: relative; display: inline-flex; align-items: center; gap: 12px; padding: 12px 0 8px; color: var(--cream-100); font-size: .72rem; font-weight: 500; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.arrow-link span { display: inline-block; transition: transform 220ms var(--ease-editorial); }
.arrow-link:hover span { transform: translateX(5px); }

.ritual-hero { position: relative; min-height: 94svh; overflow: hidden; background: var(--ink-950); }
.hero-photograph { position: absolute; inset: 0 0 0 36%; }
.hero-photograph img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; animation: hero-breathe 11s var(--ease-editorial) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-950) 0%, rgba(9,9,7,.98) 25%, rgba(9,9,7,.52) 58%, rgba(9,9,7,.04) 100%); }
.ritual-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 28%; background: linear-gradient(to top, var(--ink-950), transparent); pointer-events: none; }
.ritual-hero-grid { position: relative; z-index: 2; min-height: 94svh; display: grid; align-items: center; padding-top: 96px; padding-bottom: 72px; }
.ritual-hero-copy { width: min(760px, 58vw); }
.ritual-descriptor { margin-left: .1em; color: var(--stone-400); }
.hero-wordmark { font-size: clamp(5rem, 13vw, 11rem); letter-spacing: .12em; line-height: .78; text-indent: -.02em; }
.hero-support { max-width: 31ch; margin: 42px 0 0; color: var(--cream-200); font-family: var(--font-display); font-size: clamp(1.55rem, 2.3vw, 2.25rem); line-height: 1.28; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.scroll-cue { position: absolute; z-index: 3; left: var(--space-page); bottom: 24px; display: flex; align-items: center; gap: 12px; color: var(--stone-400); font-size: .65rem; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; }
.scroll-cue span { width: 34px; height: 1px; background: var(--bronze-500); }
@keyframes hero-breathe { from { transform: scale(1.025); } to { transform: scale(1); } }

.editorial-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--ink-900); }
.editorial-image-wrap { min-height: 660px; overflow: hidden; }
.editorial-image { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.06) brightness(.86); }
.editorial-copy-panel { display: grid; align-items: end; padding: var(--space-section) var(--space-page); background: var(--ink-800); }
.editorial-copy-panel > div { max-width: 610px; padding-bottom: 5%; }
.bronze-rule { display: block; width: 72px; height: 1px; margin: 38px 0; background: var(--bronze-500); }
.editorial-prose { max-width: 40ch; color: var(--cream-200); font-size: clamp(1rem, 1.35vw, 1.16rem); }

.benefit-section { padding: var(--space-section) 0; background: var(--ink-950); }
.benefit-pillars { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.benefit-pillars article { min-height: 330px; padding: 50px clamp(26px, 4vw, 62px) 46px 0; }
.benefit-pillars article + article { border-left: 1px solid var(--line-dark); padding-left: clamp(26px, 4vw, 62px); }
.benefit-pillars h3 { margin: 42px 0 18px; font-family: var(--font-body); font-size: .78rem; font-weight: 500; letter-spacing: .19em; text-transform: uppercase; }
.benefit-pillars p { max-width: 29ch; color: var(--stone-400); }
.line-icon { position: relative; display: block; width: 48px; height: 48px; color: var(--bronze-500); }
.line-icon::before, .line-icon::after { content: ""; position: absolute; border: 1px solid currentColor; }
.line-icon-focus::before { inset: 8px; border-radius: 50%; }
.line-icon-focus::after { inset: 0 23px; border-width: 0 1px; transform: rotate(45deg); }
.line-icon-origin::before { inset: 5px 14px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.line-icon-origin::after { width: 1px; height: 38px; left: 23px; top: 5px; border: 0; background: currentColor; transform: rotate(35deg); }
.line-icon-ritual::before { width: 34px; height: 25px; left: 2px; top: 17px; border-radius: 0 0 15px 15px; }
.line-icon-ritual::after { width: 13px; height: 14px; right: 0; top: 20px; border-left: 0; border-radius: 0 9px 9px 0; }

.editorial-triptych { display: grid; grid-template-columns: .92fr 1.08fr 1fr; min-height: 760px; }
.triptych-copy { display: flex; flex-direction: column; justify-content: center; padding: var(--space-section) var(--space-page); background: var(--cream-100); color: var(--ink-900); }
.triptych-copy h2 { max-width: 9ch; }
.triptych-lines { margin-top: 48px; color: #4f4a43; }
.triptych-lines p { margin-bottom: 8px; }
.triptych-image { min-width: 0; margin: 0; overflow: hidden; background: var(--ink-800); }
.triptych-portrait img { object-position: 52% center; }
.triptych-detail img { object-position: 69% center; }

.product-stage-section { padding: var(--space-section) 0; background: var(--ink-950); }
.product-stage { display: grid; grid-template-columns: 1.08fr .88fr .58fr; align-items: stretch; margin-top: 52px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.product-portrait { position: relative; min-height: 760px; margin: 0; overflow: hidden; border-right: 1px solid var(--line-dark); }
.product-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04) brightness(.88); }
.pouch-mark { position: absolute; inset: 39% auto auto 50%; display: grid; gap: 7px; width: 44%; color: var(--cream-100); text-align: center; transform: translateX(-50%); }
.pouch-mark strong { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 3.1rem); font-weight: 500; letter-spacing: .2em; text-indent: .2em; }
.pouch-mark span { color: var(--stone-400); font-size: .56rem; font-weight: 500; letter-spacing: .19em; text-transform: uppercase; }
.product-primary { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 88px); }
.product-primary .large { color: var(--cream-200); }
.product-facts { display: grid; gap: 0; margin: 34px 0 38px; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.product-facts li { padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: var(--stone-400); font-size: .77rem; letter-spacing: .1em; text-transform: uppercase; }
.product-primary .button { align-self: flex-start; }
.future-products { display: grid; grid-template-rows: 1fr 1fr; border-left: 1px solid var(--line-dark); }
.future-products article { display: flex; min-height: 260px; flex-direction: column; justify-content: flex-end; padding: 34px; color: #746d64; }
.future-products article + article { border-top: 1px solid var(--line-dark); }
.future-products span { margin-bottom: auto; font-size: .7rem; letter-spacing: .16em; }
.future-products p { margin: 0; font-family: var(--font-display); font-size: 1.9rem; }
.future-products b { color: var(--bronze-500); font-size: .62rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }

.founder-section { padding: var(--space-section) 0; background: var(--ink-800); }
.founder-grid { display: grid; grid-template-columns: 7fr 5fr; align-items: center; gap: clamp(60px, 9vw, 150px); }
.founder-copy blockquote { max-width: 19ch; color: var(--cream-100); font-size: clamp(2.45rem, 5vw, 5.5rem); line-height: .98; letter-spacing: -.02em; }
.founder-copy .arrow-link { margin-top: 44px; }
.founder-image { height: min(72vw, 760px); overflow: hidden; }
.founder-image img { object-position: 55% center; }

.newsletter-band { padding: clamp(80px, 9vw, 138px) 0; border-top: 1px solid var(--line-dark); background: var(--ink-950); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(52px, 8vw, 130px); }
.newsletter-grid > div > p:last-child { max-width: 42ch; margin-top: 24px; color: var(--stone-400); }
.signup-form, .application-form { display: grid; gap: 20px; }
.signup-form { grid-template-columns: 1fr 1.4fr; }
.signup-form .check, .signup-form button { grid-column: 1 / -1; }
.signup-form label > span, .application-form label:not(.check) { font-size: .67rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.signup-form input, .application-form input, .application-form textarea, .application-form select, .calc-form input { width: 100%; border: 0; border-bottom: 1px solid rgba(241,236,228,.35); border-radius: 0; padding: 13px 0; background: transparent; color: inherit; }
.signup-form input:focus, .application-form input:focus, .application-form textarea:focus, .application-form select:focus, .calc-form input:focus { border-color: var(--bronze-500); outline: 0; }
.check { display: flex; align-items: flex-start; gap: 10px; color: var(--stone-400); font-size: .75rem; line-height: 1.5; }
.check input { width: auto !important; margin-top: 4px; accent-color: var(--bronze-500); }
.honeypot { position: absolute !important; left: -9999px !important; }

.product-detail-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); min-height: calc(100svh - 84px); background: var(--ink-950); }
.product-detail-image { position: relative; min-height: 760px; overflow: hidden; }
.product-detail-image > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04) brightness(.88); }
.product-detail-image .pouch-mark { top: 40%; }
.product-detail-copy { display: grid; align-items: center; padding: clamp(110px, 11vw, 180px) var(--space-page) clamp(80px, 8vw, 130px); }
.product-detail-copy > div { width: min(100%, 580px); margin-inline: auto; }
.product-detail-copy h1 { max-width: 7ch; }
.product-subtitle { max-width: 34ch; margin: 28px 0 36px; color: var(--cream-200); font-size: 1.08rem; }
.product-price { display: flex; align-items: baseline; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-family: var(--font-display); font-size: 2.6rem; }
.product-price span { color: var(--stone-400); font-family: var(--font-body); font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.quantity-field { display: grid; grid-template-columns: 1fr 84px; align-items: center; margin: 24px 0; color: var(--stone-400); font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.quantity-field input { width: 84px; min-height: 48px; border: 1px solid var(--line-dark); background: var(--ink-800); color: var(--cream-100); text-align: center; }
.product-detail-copy .notice { margin: 14px 0 0; font-size: .78rem; }
.product-utility { margin: 34px 0 0; }
.product-utility div { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; padding: 13px 0; border-top: 1px solid var(--line-dark); font-size: .76rem; }
.product-utility dt { color: var(--stone-400); text-transform: uppercase; }
.product-utility dd { margin: 0; text-align: right; }
.product-origin { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--ink-800); }
.product-origin-image { min-height: 650px; overflow: hidden; }
.product-origin-copy { display: flex; flex-direction: column; justify-content: center; padding: var(--space-section) var(--space-page); }
.origin-list { margin-top: 34px; border-top: 1px solid var(--line-dark); }
.origin-list p { display: grid; grid-template-columns: 1fr 2fr; gap: 22px; margin: 0; padding: 15px 0; border-bottom: 1px solid var(--line-dark); color: var(--cream-200); }
.origin-list span { color: var(--stone-400); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }

.site-footer { padding: 84px 0 24px; border-top: 1px solid var(--line-dark); background: var(--ink-950); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(34px, 5vw, 80px); }
.footer-wordmark { font-family: var(--font-display); font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: .2em; text-decoration: none; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 30ch; margin-top: 18px; color: var(--stone-400); }
.site-footer h3 { margin: 0 0 20px; color: var(--stone-400); font-family: var(--font-body); font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.site-footer a { position: relative; display: block; width: max-content; max-width: 100%; margin: 10px 0; color: var(--cream-200); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; margin-top: 70px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #716a61; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom nav a { margin: 0; color: inherit; }

/* Existing interior page system */
.page-hero { padding: clamp(130px, 14vw, 210px) 0 clamp(80px, 9vw, 130px); border-bottom: 1px solid var(--line-dark); background: var(--ink-950); }
.page-hero h1 { max-width: 12ch; }
.page-hero .hero-lede { margin-top: 30px; color: var(--cream-200); }
.dark-hero, .plum-hero { background: var(--ink-950); color: var(--cream-100); }
.section { padding: var(--space-section) 0; background: var(--ink-900); }
.section:nth-of-type(even) { background: var(--ink-800); }
.soft-section { background: var(--cream-200) !important; color: var(--ink-900); }
.dark-section, .plum-section { background: var(--ink-950) !important; color: var(--cream-100); }
.light-text { color: var(--cream-200); }
.split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(48px, 8vw, 120px); }
.align-center { align-items: center; }
.prose { max-width: 640px; color: var(--stone-400); }
.prose p { margin-bottom: 22px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.feature-grid article { min-height: 300px; padding: 42px; }
.feature-grid article + article { border-left: 1px solid var(--line-dark); }
.feature-grid p { color: var(--stone-400); }
.feature-icon { display: block; margin-bottom: 34px; color: var(--bronze-500); font-size: .7rem; letter-spacing: .18em; }
.product-grid, .commerce-grid { display: grid; grid-template-columns: 6fr 6fr; align-items: center; gap: clamp(54px, 8vw, 120px); }
.product-art { position: relative; display: grid; min-height: 560px; place-items: center; overflow: hidden; background: var(--ink-950); }
.product-art > img { position: absolute; width: 80%; opacity: .08; filter: brightness(0) invert(1); }
.product-label { position: relative; display: flex; width: 52%; aspect-ratio: 3/5; flex-direction: column; align-items: center; justify-content: center; padding: 10%; border: 1px solid var(--line-dark); background: var(--ink-800); text-align: center; }
.product-label span { font-family: var(--font-display); font-size: 2rem; letter-spacing: .22em; text-indent: .22em; }
.product-label small { margin: 7px 0 48px; color: var(--bronze-500); letter-spacing: .25em; }
.product-label b { font-family: var(--font-display); font-size: 1.5rem; }
.spec-list { margin: 36px 0; }
.spec-list div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); }
.spec-list dt { color: var(--stone-400); }
.spec-list dd { margin: 0; }
.text-link { color: var(--bronze-500); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-heading > p { max-width: 430px; color: var(--stone-400); }
.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.channel-grid a { display: flex; min-height: 190px; flex-direction: column; padding: 32px; border-right: 1px solid var(--line-dark); text-decoration: none; transition: background 220ms var(--ease-editorial); }
.channel-grid a:last-child { border-right: 0; }
.channel-grid a:hover { background: var(--ink-800); }
.channel-grid b { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; }
.channel-grid span { margin-top: auto; color: var(--stone-400); }
.facts, .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.fact-strip { background: var(--ink-950); }
.facts div, .stat-grid div { padding: 28px; border-right: 1px solid var(--line-dark); }
.facts div:last-child, .stat-grid div:last-child { border-right: 0; }
.facts span, .stat-grid span { display: block; color: var(--stone-400); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.facts b, .stat-grid b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.commerce-art { position: relative; min-height: 650px; overflow: hidden; background: var(--ink-950); }
.commerce-art img { width: 100%; height: 100%; object-fit: cover; }
.status-pill { position: absolute; left: 24px; bottom: 24px; padding: 10px 14px; background: var(--cream-100); color: var(--ink-950); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.buy-card { padding: clamp(10px, 3vw, 50px); }
.price-choice { display: grid; grid-template-columns: 1fr 1fr; margin: 30px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.price-choice div { padding: 24px 24px 24px 0; }
.price-choice div + div { padding-left: 24px; border-left: 1px solid var(--line-dark); }
.price-choice span, .price-choice small { display: block; }
.price-choice span { color: var(--stone-400); font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; }
.price-choice b { display: block; margin: 5px 0; font-family: var(--font-display); font-size: 2.7rem; font-weight: 500; }
.price-choice small { color: var(--stone-400); }
.notice { padding: 18px 0; border-top: 1px solid var(--line-dark); color: var(--stone-400); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.steps-grid article { padding: 30px; }
.steps-grid article + article { border-left: 1px solid var(--line-light); }
.steps-grid article > b { color: var(--bronze-600); }
.calculator-layout, .form-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(54px, 8vw, 120px); }
.form-layout { grid-template-columns: 5fr 7fr; }
.calculator-layout > *, .form-layout > * { min-width: 0; }
.form-layout h2 { overflow-wrap: anywhere; }
.calc-form { display: grid; gap: 16px; margin-top: 30px; }
.calc-form label { font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }
.calc-card { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.calc-card div { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.calc-card div:last-child { border-bottom: 0; }
.calc-card span { color: var(--stone-400); }
.calc-card b { color: var(--bronze-500); font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.application-form { padding: clamp(26px, 4vw, 52px); border: 1px solid var(--line-dark); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.application-form label { display: grid; gap: 7px; }
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); }
.program-grid article { padding: 34px 34px 34px 0; border-bottom: 1px solid var(--line-dark); }
.program-grid article:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line-dark); }
.program-grid b { display: block; margin: 16px 0; color: var(--bronze-500); }
.story-shell { max-width: 780px; }
.story-shell > p { font-family: var(--font-display); font-size: 1.65rem; line-height: 1.5; }
.story-shell .story-lead { font-size: clamp(2.2rem, 4.2vw, 3.8rem); line-height: 1.1; }
.story-shell blockquote { margin: 70px 0; padding: 34px 0; border-top: 1px solid var(--bronze-500); border-bottom: 1px solid var(--bronze-500); font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.08; }
.signature { margin-top: 56px; }
.signature span { color: var(--stone-400); font-family: var(--font-body); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.logo-story { display: grid; grid-template-columns: 5fr 7fr; align-items: center; gap: clamp(52px, 8vw, 120px); }
.logo-story img { max-width: 300px; margin: auto; filter: brightness(0) invert(1); }
.faq-list { max-width: 900px; }
.faq-list details { padding: 24px 0; border-top: 1px solid var(--line-dark); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { font-family: var(--font-display); font-size: 1.8rem; cursor: pointer; }
.faq-list p { max-width: 700px; color: var(--stone-400); }
.legal-copy { max-width: 820px; }
.legal-copy h2 { margin-top: 52px; font-size: 2.1rem; }
.legal-copy p { color: var(--cream-200); font-size: 1.02rem; }
.thanks-mark, .error-page img { width: 130px; margin: 0 auto 30px; filter: brightness(0) invert(1); }
.error-page { min-height: 100vh; display: grid; place-content: center; padding: 30px; background: var(--ink-950); color: var(--cream-100); text-align: center; }
[data-maker][hidden] { display: none !important; }

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 680ms var(--ease-editorial), transform 680ms var(--ease-editorial); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .site-header { backdrop-filter: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; inset: 0; z-index: 81; display: none; width: 100vw; height: 100svh; grid-template-columns: 1fr; align-content: center; gap: 54px; padding: 110px var(--space-page) 60px; overflow-y: auto; background: rgba(9,9,7,.99); }
  .primary-nav.open { display: grid; }
  .nav-center { display: grid; justify-self: stretch; gap: 8px; }
  .nav-center a { font-family: var(--font-display); font-size: clamp(2.8rem, 10vw, 5.2rem); font-weight: 500; letter-spacing: -.01em; line-height: 1.05; text-transform: none; }
  .nav-utility { justify-self: stretch; padding-top: 24px; border-top: 1px solid var(--line-dark); }
  .editorial-split { min-height: 0; }
  .editorial-triptych { grid-template-columns: 1fr 1fr; }
  .triptych-copy { grid-column: 1 / -1; }
  .product-stage { grid-template-columns: 1.1fr .9fr; }
  .future-products { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; grid-template-rows: none; border-top: 1px solid var(--line-dark); border-left: 0; }
  .future-products article + article { border-top: 0; border-left: 1px solid var(--line-dark); }
  .future-products article { min-height: 220px; }
  .benefit-pillars article { padding-right: 28px; }
  .benefit-pillars article + article { padding-left: 28px; }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .channel-grid a:nth-child(2) { border-right: 0; }
  .channel-grid a:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .product-detail-hero { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .site-header { height: 72px; }
  .brand-word { font-size: 1.25rem; }
  .brand-lockup img { width: 132px; }
  .ritual-hero { min-height: 92svh; }
  .hero-photograph { inset: 0; }
  .hero-photograph img { object-position: 70% center; }
  .hero-shade { background: linear-gradient(to bottom, rgba(9,9,7,.18) 0%, rgba(9,9,7,.52) 42%, rgba(9,9,7,.98) 82%, var(--ink-950) 100%); }
  .ritual-hero-grid { min-height: 92svh; align-items: end; padding-top: 100px; padding-bottom: 92px; }
  .ritual-hero-copy { width: 100%; }
  .hero-wordmark { font-size: clamp(4rem, 20vw, 6.5rem); }
  .hero-support { margin-top: 28px; font-size: 1.45rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .arrow-link { align-self: flex-start; }
  .scroll-cue { left: var(--space-page); bottom: 18px; }
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-image-wrap { min-height: 64svh; }
  .editorial-copy-panel { min-height: 620px; padding: 84px var(--space-page); }
  .benefit-pillars { grid-template-columns: 1fr; }
  .benefit-pillars article { min-height: 0; padding: 38px 0 42px; }
  .benefit-pillars article + article { border-top: 1px solid var(--line-dark); border-left: 0; padding-left: 0; }
  .benefit-pillars h3 { margin-top: 28px; }
  .editorial-triptych { grid-template-columns: 1fr; }
  .triptych-copy { grid-column: auto; min-height: 620px; }
  .triptych-image { min-height: 74svh; }
  .triptych-detail { min-height: 58svh; }
  .product-stage { grid-template-columns: 1fr; }
  .product-portrait { min-height: 72svh; border-right: 0; }
  .product-primary { padding: 64px 0; }
  .future-products { grid-template-columns: 1fr; }
  .future-products article { min-height: 180px; padding-inline: 0; }
  .future-products article + article { border-left: 0; border-top: 1px solid var(--line-dark); }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-image { height: 82svh; }
  .newsletter-grid, .split, .product-grid, .commerce-grid, .calculator-layout, .form-layout, .logo-story { grid-template-columns: 1fr; }
  .newsletter-grid { gap: 54px; }
  .signup-form { grid-template-columns: 1fr; }
  .facts, .stat-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article + article { border-top: 1px solid var(--line-dark); border-left: 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid article:nth-child(3) { border-left: 0; }
  .steps-grid article:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .product-detail-hero, .product-origin { grid-template-columns: 1fr; }
  .product-detail-image { min-height: 78svh; }
  .product-detail-copy { padding-top: 72px; }
  .product-origin-image { min-height: 62svh; }
}

@media (max-width: 480px) {
  .hero-wordmark { letter-spacing: .075em; }
  .ritual-descriptor { margin-bottom: 18px; }
  .editorial-copy-panel, .triptych-copy { min-height: 560px; }
  .facts, .stat-grid, .channel-grid, .steps-grid, .program-grid, .field-grid, .price-choice, .footer-grid { grid-template-columns: 1fr; }
  .facts div, .stat-grid div, .channel-grid a { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .facts div:last-child, .stat-grid div:last-child, .channel-grid a:last-child { border-bottom: 0; }
  .channel-grid a:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .steps-grid article { border-left: 0 !important; border-top: 1px solid var(--line-light); }
  .steps-grid article:first-child { border-top: 0; }
  .program-grid article:nth-child(even) { padding-left: 0; border-left: 0; }
  .price-choice div + div { padding-left: 0; border-top: 1px solid var(--line-dark); border-left: 0; }
  .footer-brand { grid-column: auto; }
}

.qr-print-page { background: var(--cream-100); color: var(--ink-900); }
.print-toolbar { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 72px; padding: 12px var(--space-page); border-bottom: 1px solid var(--line-light); background: rgba(241,236,228,.94); backdrop-filter: blur(12px); }
.print-toolbar .brand-word { color: var(--ink-900); }
.print-toolbar p { margin: 0; color: #6b635a; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.print-toolbar .button { justify-self: end; min-height: 40px; }
.print-intro { width: min(1100px, calc(100% - (var(--space-page) * 2))); margin: 0 auto; padding: 100px 0 70px; }
.print-intro p:last-child { max-width: 54ch; margin-top: 25px; color: #5f584f; }
.qr-print-grid { width: min(1100px, calc(100% - (var(--space-page) * 2))); margin: 0 auto; padding-bottom: 100px; }
.qr-print-grid article { display: grid; grid-template-columns: 330px 1fr; gap: 50px; align-items: center; padding: 45px 0; border-top: 1px solid var(--line-light); break-inside: avoid; }
.qr-print-grid article:last-child { border-bottom: 1px solid var(--line-light); }
.qr-print-grid img { width: 330px; height: 330px; }
.qr-print-grid span { color: var(--bronze-600); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.qr-print-grid h2 { margin: 15px 0; }
.qr-print-grid code { display: block; color: #5f584f; }
.qr-print-grid a { display: inline-block; margin-top: 25px; color: var(--ink-900); font-size: .7rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }

@media (max-width: 768px) {
  .print-toolbar { grid-template-columns: 1fr auto; }
  .print-toolbar p { display: none; }
  .qr-print-grid article { grid-template-columns: 1fr; }
  .qr-print-grid img { width: min(100%, 390px); height: auto; }
}

@media print {
  .print-toolbar { display: none; }
  .print-intro { padding-top: 30px; }
  .qr-print-grid article { grid-template-columns: 2.2in 1fr; gap: .35in; padding: .3in 0; }
  .qr-print-grid img { width: 2.2in; height: 2.2in; }
  .qr-print-grid a { display: none; }
}

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

/* Sales, account, partner, presentation, and QR experience */
body.cart-open { overflow: hidden; }
.cart-trigger, .text-button { border: 0; padding: 0; background: transparent; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; }
.cart-trigger { position: relative; color: var(--stone-400); font-size: .73rem; font-weight: 500; letter-spacing: .15em; }
.cart-trigger::after { content: ""; position: absolute; right: 100%; bottom: -4px; left: 0; height: 1px; background: currentColor; transition: right 220ms var(--ease-editorial); }
.cart-trigger:hover::after { right: 0; }
.cart-backdrop { position: fixed; inset: 0; z-index: 89; visibility: hidden; background: rgba(9,9,7,.62); opacity: 0; transition: opacity 280ms var(--ease-editorial), visibility 280ms; }
.cart-backdrop.open { visibility: visible; opacity: 1; }
.cart-drawer { position: fixed; inset: 0 0 0 auto; z-index: 90; display: flex; width: min(470px, 100vw); flex-direction: column; padding: 34px; overflow-y: auto; border-left: 1px solid var(--line-dark); background: var(--ink-900); box-shadow: -20px 0 60px rgba(0,0,0,.22); transform: translateX(102%); transition: transform 420ms var(--ease-editorial); }
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: start; justify-content: space-between; gap: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line-dark); }
.cart-head h2 { font-size: 3rem; }
.cart-head .eyebrow { margin-bottom: 6px; }
.cart-close { width: 44px; height: 44px; border: 0; background: transparent; color: var(--cream-100); font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; line-height: 1; }
.shipping-progress { padding: 22px 0 26px; border-bottom: 1px solid var(--line-dark); color: var(--stone-400); font-size: .75rem; }
.shipping-progress i { display: block; height: 2px; margin-top: 12px; overflow: hidden; background: var(--ink-800); }
.shipping-progress b { display: block; width: 0; height: 100%; background: var(--bronze-500); transition: width 300ms var(--ease-editorial); }
.cart-empty { display: grid; flex: 1; align-content: center; justify-items: start; gap: 16px; min-height: 330px; }
.cart-empty[hidden], .cart-line[hidden], .cart-summary[hidden] { display: none; }
.cart-line { display: grid; grid-template-columns: 112px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line-dark); }
.cart-line img { width: 112px; height: 140px; object-fit: cover; }
.cart-line h3 { font-family: var(--font-body); font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.cart-line .product-kicker { margin-bottom: 8px; }
.cart-unit { color: var(--stone-400); }
.cart-quantity { display: grid; width: 118px; grid-template-columns: 38px 1fr 38px; align-items: center; margin-top: 18px; border: 1px solid var(--line-dark); text-align: center; }
.cart-quantity button { height: 38px; border: 0; background: transparent; color: var(--cream-100); }
.cart-summary { margin-top: auto; padding-top: 28px; }
.cart-summary > div { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 8px; font-family: var(--font-display); font-size: 1.5rem; }
.cart-summary p { color: var(--stone-400); font-size: .72rem; }
.cart-summary .button { width: 100%; margin-top: 16px; }
.cart-summary .text-button { display: block; margin: 18px auto 0; color: var(--stone-400); font-size: .68rem; letter-spacing: .14em; text-decoration: underline; text-transform: uppercase; }
.cart-summary [data-checkout-fallback="true"] { border-color: var(--bronze-500); background: transparent; color: var(--cream-100); }

.commerce-product { align-items: start; }
.product-gallery { position: sticky; top: 84px; min-width: 0; }
.product-thumb-row { display: flex; justify-content: center; gap: 7px; padding: 16px; background: var(--ink-950); }
.product-thumb-row span { width: 22px; height: 1px; background: var(--line-dark); }
.product-thumb-row .active { background: var(--cream-100); }
.product-buy-panel { padding-block: 20px; }
.rating-line { display: flex; align-items: center; gap: 12px; margin: 18px 0 0; color: var(--bronze-500); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.rating-line a { color: var(--stone-400); text-underline-offset: 3px; }
.purchase-plans { display: grid; gap: 10px; margin: 30px 0 20px; }
.purchase-plan { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 3px 20px; width: 100%; padding: 20px; border: 1px solid var(--line-dark); border-radius: 0; background: transparent; color: var(--cream-100); text-align: left; transition: border-color 200ms var(--ease-editorial), background 200ms var(--ease-editorial); }
.purchase-plan[aria-pressed="true"] { border-color: var(--bronze-500); background: var(--ink-800); }
.purchase-plan span { font-size: .77rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.purchase-plan strong { grid-row: 1 / 3; grid-column: 2; align-self: center; font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; }
.purchase-plan small { color: var(--stone-400); }
.product-actions { display: grid; grid-template-columns: 128px 1fr; gap: 10px; }
.product-actions .button { width: 100%; }
.quantity-stepper { display: grid; grid-template-columns: 40px 48px 40px; border: 1px solid var(--line-dark); }
.quantity-stepper button, .quantity-stepper input { width: 100%; min-width: 0; border: 0; background: transparent; color: var(--cream-100); text-align: center; }
.quantity-stepper input { appearance: textfield; }
.quantity-stepper input::-webkit-inner-spin-button { display: none; }
.buy-now { width: 100%; margin-top: 10px; border-color: var(--bronze-500); color: var(--cream-100); }
.checkout-note { margin-top: 14px; color: var(--stone-400); font-size: .7rem; text-align: center; }
.checkout-note span { color: var(--bronze-500); }
.product-accordions { margin-top: 34px; border-top: 1px solid var(--line-dark); }
.product-accordions details { border-bottom: 1px solid var(--line-dark); }
.product-accordions summary { padding: 17px 0; font-size: .74rem; font-weight: 500; letter-spacing: .12em; cursor: pointer; text-transform: uppercase; }
.product-accordions p { padding-bottom: 16px; color: var(--stone-400); }

.light-form { border-color: var(--line-light); color: var(--ink-900); }
.light-form input, .light-form textarea, .light-form select { border-bottom-color: rgba(17,16,14,.32); color: var(--ink-900); }
.light-form .check { color: #5f584f; }
.dark-prose { color: #5f584f; }

.network-hero { position: relative; min-height: 92svh; display: grid; align-items: end; overflow: hidden; background: var(--ink-950); }
.network-hero-image { position: absolute; inset: 0 0 0 44%; }
.network-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-950), rgba(9,9,7,.12)); }
.network-hero-copy { position: relative; z-index: 1; padding-top: 150px; padding-bottom: clamp(90px, 12vw, 170px); }
.network-hero-copy h1 { max-width: 8ch; }
.network-hero-copy .hero-lede { margin-top: 28px; }
.network-effect-section { overflow: hidden; }
.network-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 70px 0 0; padding: 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); list-style: none; }
.network-flow li { position: relative; min-height: 310px; padding: 38px 30px; }
.network-flow li + li { border-left: 1px solid var(--line-dark); }
.network-flow li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -15px; top: 46px; display: grid; width: 30px; height: 30px; place-items: center; background: var(--ink-900); color: var(--bronze-500); }
.network-flow span, .track-number, .partner-kit article > span { color: var(--bronze-500); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.network-flow strong { display: block; margin: 48px 0 16px; font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; line-height: 1.1; }
.network-flow p { color: var(--stone-400); }
.network-tracks article { min-height: 390px; }
.network-tracks small { display: block; margin-top: 28px; color: #6d655c; }
.partner-system { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(60px, 9vw, 140px); }
.partner-kit { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); }
.partner-kit article { min-height: 230px; padding: 30px; border-bottom: 1px solid var(--line-dark); }
.partner-kit article:nth-child(even) { border-left: 1px solid var(--line-dark); }
.partner-kit h3 { margin: 40px 0 12px; }
.partner-kit p { color: var(--stone-400); }

.cafe-hero { position: relative; min-height: 94svh; display: grid; align-items: end; overflow: hidden; background: var(--ink-950); }
.cafe-hero-photo, .cafe-hero-shade { position: absolute; inset: 0; }
.cafe-hero-photo img { object-position: center 57%; }
.cafe-hero-shade { background: linear-gradient(90deg, rgba(9,9,7,.98) 0%, rgba(9,9,7,.72) 38%, rgba(9,9,7,.08) 100%), linear-gradient(to top, var(--ink-950), transparent 55%); }
.cafe-hero-copy { position: relative; z-index: 1; padding-top: 150px; padding-bottom: clamp(90px, 12vw, 165px); }
.cafe-hero-copy h1 { max-width: 9ch; }
.cafe-hero-copy .hero-lede { margin-top: 28px; }
.cafe-qr-preview { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--ink-800); }
.cafe-qr-photo { min-height: 650px; overflow: hidden; }
.cafe-qr-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: var(--space-section) var(--space-page); }
.cafe-qr-copy h2 { max-width: 9ch; }
.cafe-qr-copy p.large { margin-top: 28px; color: var(--stone-400); }
.cafe-qr-copy .button { margin-top: 18px; }

.account-hero { padding: clamp(140px, 15vw, 220px) 0 90px; background: var(--ink-950); }
.account-hero h1 { max-width: 10ch; }
.account-hero .hero-lede { margin-top: 30px; }
.account-dashboard { padding: 80px 0 var(--space-section); background: var(--ink-900); }
.account-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(50px, 8vw, 120px); }
.account-sidebar { position: sticky; top: 125px; align-self: start; display: grid; border-top: 1px solid var(--line-dark); }
.account-sidebar a { padding: 15px 0; border-bottom: 1px solid var(--line-dark); color: var(--stone-400); font-size: .72rem; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.account-sidebar a:hover { color: var(--cream-100); }
.account-content { display: grid; gap: 80px; }
.account-panel { scroll-margin-top: 120px; padding-bottom: 80px; border-bottom: 1px solid var(--line-dark); }
.account-panel-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.account-panel-head h2 { font-size: clamp(2.5rem, 4vw, 4.2rem); }
.account-panel-head > p { max-width: 37ch; color: var(--stone-400); }
.account-empty { display: grid; grid-template-columns: 110px 1fr; gap: 30px; min-height: 250px; align-items: center; padding: 36px; border: 1px solid var(--line-dark); background: var(--ink-800); }
.account-empty > span { color: var(--bronze-500); font-family: var(--font-display); font-size: 5rem; }
.account-empty p { color: var(--stone-400); }
.account-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.account-cards article { min-height: 260px; padding: 34px; }
.account-cards article + article { border-left: 1px solid var(--line-dark); }
.account-cards article > span { color: var(--bronze-500); font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; }
.account-cards h3 { margin: 44px 0 16px; }
.account-cards p { color: var(--stone-400); }
.account-form { border-color: var(--line-dark); }
.resource-links { display: grid; gap: 7px; }
.resource-links a { color: var(--cream-200); }

.presentation-bar { position: fixed; inset: 0 0 auto; z-index: 70; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 68px; padding: 0 24px; border-bottom: 1px solid var(--line-dark); background: rgba(9,9,7,.92); backdrop-filter: blur(12px); }
.presentation-bar > span { color: var(--stone-400); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.presentation-bar .button { justify-self: end; min-height: 38px; padding: 10px 16px; }
.deck-slide { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 110px var(--space-page) 70px; overflow: hidden; background: var(--ink-950); }
.deck-opening { align-items: end; }
.deck-image, .deck-overlay { position: absolute; inset: 0; }
.deck-overlay { background: linear-gradient(90deg, rgba(9,9,7,.96), rgba(9,9,7,.25)), linear-gradient(to top, rgba(9,9,7,.9), transparent 62%); }
.deck-copy, .deck-copy-wide { position: relative; z-index: 1; width: min(100%, var(--content-max)); margin-inline: auto; }
.deck-copy { max-width: 1100px; }
.deck-copy h1, .deck-copy h2 { max-width: 9ch; }
.deck-copy .hero-lede { margin-top: 28px; }
.deck-next { position: absolute; z-index: 2; right: 30px; bottom: 26px; color: var(--stone-400); font-size: .67rem; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.deck-light { background: var(--cream-100); color: var(--ink-900); }
.deck-light h2 { max-width: 16ch; }
.deck-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.deck-stat-row div { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; }
.deck-stat-row div + div { border-left: 1px solid var(--line-light); }
.deck-stat-row span { color: #6c645b; font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; }
.deck-stat-row strong { font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.deck-split { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: clamp(50px, 10vw, 160px); }
.deck-list { margin: 35px 0 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.deck-list li { padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: var(--cream-200); }
.deck-image-split { grid-template-columns: 1fr 1fr; padding: 0; }
.deck-image-split > div:first-child { height: 100svh; overflow: hidden; }
.deck-economics { padding: 110px var(--space-page) 70px; }
.deck-economics h2 { max-width: 9ch; }
.deck-economics dl { margin: 50px 0 25px; border-top: 1px solid var(--line-dark); }
.deck-economics dl div { display: flex; justify-content: space-between; gap: 25px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.deck-economics dd { margin: 0; font-family: var(--font-display); font-size: 1.5rem; }
.deck-economics > p { color: var(--stone-400); font-size: .8rem; }
.deck-three { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.deck-three article { min-height: 270px; padding: 30px; }
.deck-three article + article { border-left: 1px solid var(--line-light); }
.deck-three b { color: var(--bronze-600); }
.deck-three h3 { margin: 70px 0 16px; }
.deck-close { background: var(--ink-800); }
.presentation-mode .presentation-bar { opacity: 0; pointer-events: none; }
.presentation-mode .deck-slide { padding-top: 70px; }

.qr-page { background: var(--ink-950); }
.qr-header { position: fixed; inset: 0 0 auto; z-index: 60; display: flex; height: 66px; align-items: center; justify-content: space-between; padding: 0 clamp(18px, 5vw, 40px); border-bottom: 1px solid var(--line-dark); background: rgba(9,9,7,.9); backdrop-filter: blur(12px); }
.qr-header > a:last-child, .qr-header .cart-trigger { color: var(--stone-400); font-size: .67rem; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.qr-hub { min-height: 100svh; padding: 150px var(--space-page) 90px; }
.qr-hub > p, .qr-hub > h1, .qr-hub > .hero-lede { width: min(100%, 900px); margin-inline: auto; }
.qr-hub .hero-lede { margin-top: 25px; }
.qr-hub-grid { display: grid; width: min(100%, 1100px); grid-template-columns: repeat(3, 1fr); margin: 70px auto 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.qr-hub-grid a { min-height: 300px; padding: 30px; text-decoration: none; }
.qr-hub-grid a + a { border-left: 1px solid var(--line-dark); }
.qr-hub-grid span { color: var(--bronze-500); font-size: .68rem; }
.qr-hub-grid h2 { margin: 70px 0 20px; font-size: 2.8rem; }
.qr-hub-grid p { color: var(--stone-400); }
.qr-cup-hero { position: relative; min-height: 100svh; display: grid; align-items: end; padding: 110px var(--space-page) 80px; overflow: hidden; }
.qr-hero-photo, .qr-hero-shade { position: absolute; inset: 0; }
.qr-hero-photo img { object-position: 68% center; }
.qr-hero-shade { background: linear-gradient(to top, var(--ink-950) 8%, rgba(9,9,7,.16) 72%), linear-gradient(90deg, rgba(9,9,7,.78), transparent); }
.qr-hero-copy { position: relative; z-index: 1; width: min(100%, 700px); }
.qr-hero-copy h1 { font-size: clamp(3.6rem, 10vw, 7rem); }
.qr-hero-copy > p:not(.eyebrow) { max-width: 34ch; margin-top: 25px; color: var(--cream-200); }
.qr-section { width: min(100%, 760px); margin-inline: auto; padding: 100px var(--space-page); border-bottom: 1px solid var(--line-dark); }
.qr-section h2 { font-size: clamp(2.8rem, 9vw, 5rem); }
.qr-make ol { margin: 55px 0 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.qr-make li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.qr-make li > span { color: var(--bronze-500); font-size: .68rem; }
.qr-make strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; }
.qr-make li p { margin: 5px 0 0; color: var(--stone-400); }
.qr-player-section { text-align: center; }
.sound-rings { position: relative; width: 220px; aspect-ratio: 1; margin: 0 auto 50px; }
.sound-rings i { position: absolute; inset: 0; border: 1px solid var(--bronze-500); border-radius: 50%; }
.sound-rings i:nth-child(2) { inset: 14%; opacity: .74; }
.sound-rings i:nth-child(3) { inset: 29%; opacity: .54; }
.sound-rings i:nth-child(4) { inset: 43%; background: var(--bronze-500); opacity: .9; }
.track-credit { margin: 18px auto 32px; color: var(--stone-400); }
.qr-player-section audio { width: 100%; height: 48px; color-scheme: dark; }
.track-meta { display: flex; justify-content: space-between; gap: 12px; margin: 18px 0; color: var(--stone-400); font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.qr-player-section .text-link { color: var(--bronze-500); }
.cue-lines { margin-top: 50px; border-top: 1px solid var(--line-dark); }
.cue-lines p { display: grid; grid-template-columns: 45px 1fr; gap: 15px; margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line-dark); color: var(--cream-200); }
.cue-lines span { color: var(--bronze-500); font-size: .68rem; }
.qr-reorder > p:not(.eyebrow) { margin-top: 24px; color: var(--stone-400); }
.qr-reorder > div { display: grid; gap: 10px; margin-top: 35px; }
.qr-reorder > .button { width: 100%; margin-top: 30px; }
.qr-reorder .text-link { margin-top: 18px; color: var(--bronze-500); }
.qr-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 50px var(--space-page); background: var(--ink-950); }
.qr-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.qr-footer nav a { color: var(--stone-400); font-size: .67rem; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.qr-cafe-hero, .qr-network-hero { width: min(100%, 760px); min-height: 82svh; display: flex; flex-direction: column; justify-content: center; margin-inline: auto; padding: 120px var(--space-page) 70px; }
.qr-cafe-hero h1, .qr-network-hero h1 { font-size: clamp(4rem, 12vw, 7rem); }
.qr-cafe-hero .hero-lede, .qr-network-hero .hero-lede { margin-top: 28px; }
.cafe-cup-orbit { position: relative; width: min(72vw, 330px); aspect-ratio: 1; margin: 60px auto 0; }
.cafe-cup-orbit span { position: absolute; inset: 31%; z-index: 2; border: 1px solid var(--line-dark); border-radius: 50%; background: var(--ink-800); }
.cafe-cup-orbit span::after { content: ""; position: absolute; width: 34%; height: 42%; right: -30%; top: 28%; border: 1px solid var(--line-dark); border-left: 0; border-radius: 0 50% 50% 0; }
.cafe-cup-orbit i { position: absolute; inset: 8%; border: 1px solid rgba(154,106,50,.5); border-radius: 50%; }
.cafe-cup-orbit i:nth-of-type(2) { inset: 18%; opacity: .6; }
.cafe-cup-orbit i:nth-of-type(3) { inset: 25%; opacity: .45; }
.qr-cafe-story dl { margin-top: 45px; border-top: 1px solid var(--line-dark); }
.qr-cafe-story dl div { display: grid; grid-template-columns: 1fr 1.4fr; gap: 22px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); }
.qr-cafe-story dt { color: var(--stone-400); font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }
.qr-cafe-story dd { margin: 0; text-align: right; }
.qr-network-hero .button { align-self: flex-start; margin-top: 32px; }
.qr-track-list { display: grid; margin-top: 42px; border-top: 1px solid var(--line-dark); }
.qr-track-list a { display: grid; grid-template-columns: 42px 1fr; gap: 5px 14px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; }
.qr-track-list span { grid-row: 1 / 3; color: var(--bronze-500); font-size: .68rem; }
.qr-track-list strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.qr-track-list small { color: var(--stone-400); }

@media (max-width: 1180px) {
  .nav-center, .nav-utility { gap: 18px; }
  .primary-nav { font-size: .66rem; }
}

@media (max-width: 1024px) {
  .nav-utility { display: flex; }
  .network-flow { grid-template-columns: 1fr 1fr; }
  .network-flow li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-dark); }
  .network-flow li:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .network-flow li:nth-child(2)::after { display: none; }
  .partner-system { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; grid-template-columns: repeat(4, 1fr); }
  .account-sidebar a { padding-inline: 12px; text-align: center; }
}

@media (max-width: 768px) {
  .product-gallery { position: static; }
  .commerce-product .product-detail-image { min-height: 70svh; }
  .product-actions { grid-template-columns: 112px 1fr; }
  .quantity-stepper { grid-template-columns: 35px 42px 35px; }
  .network-hero-image { inset: 0; opacity: .58; }
  .network-hero-image::after { background: linear-gradient(to top, var(--ink-950), rgba(9,9,7,.1)); }
  .network-hero-copy { align-self: end; }
  .network-flow { grid-template-columns: 1fr; }
  .network-flow li { min-height: 235px; padding-inline: 0; }
  .network-flow li + li { border-top: 1px solid var(--line-dark); border-left: 0; }
  .network-flow li::after { display: none !important; }
  .network-flow strong { margin-top: 30px; }
  .partner-kit { grid-template-columns: 1fr; }
  .partner-kit article:nth-child(even) { border-left: 0; }
  .cafe-hero-shade { background: linear-gradient(to top, var(--ink-950) 8%, rgba(9,9,7,.2) 74%); }
  .cafe-qr-preview { grid-template-columns: 1fr; }
  .cafe-qr-photo { min-height: 70svh; }
  .account-sidebar { grid-template-columns: 1fr 1fr; }
  .account-panel-head { align-items: start; flex-direction: column; }
  .account-empty { grid-template-columns: 1fr; }
  .account-cards { grid-template-columns: 1fr; }
  .account-cards article + article { border-top: 1px solid var(--line-dark); border-left: 0; }
  .presentation-bar { grid-template-columns: 1fr auto; }
  .presentation-bar > span { display: none; }
  .deck-slide { padding-inline: 22px; }
  .deck-stat-row, .deck-three { grid-template-columns: 1fr; }
  .deck-stat-row div, .deck-three article { min-height: 150px; }
  .deck-stat-row div + div, .deck-three article + article { border-top: 1px solid var(--line-light); border-left: 0; }
  .deck-three h3 { margin-top: 35px; }
  .deck-split, .deck-image-split { grid-template-columns: 1fr; }
  .deck-image-split > div:first-child { height: 58svh; }
  .deck-image-split { display: block; }
  .qr-hub-grid { grid-template-columns: 1fr; }
  .qr-hub-grid a { min-height: 220px; }
  .qr-hub-grid a + a { border-top: 1px solid var(--line-dark); border-left: 0; }
  .qr-hub-grid h2 { margin-top: 40px; }
}

@media (max-width: 480px) {
  .cart-drawer { padding: 24px 20px; }
  .product-actions { grid-template-columns: 1fr; }
  .quantity-stepper { grid-template-columns: 1fr 1fr 1fr; min-height: 48px; }
  .account-sidebar { overflow-x: auto; }
  .account-empty { padding: 25px; }
  .presentation-bar .button { font-size: .58rem; }
  .qr-header { height: 60px; }
  .qr-section { padding-block: 82px; }
  .qr-footer { align-items: flex-start; flex-direction: column; }
  .track-meta { flex-direction: column; }
}
