:root {
  --brown-deep: #5f4036;
  --cream: #e8dccf;
  --tan: #c8a592;
  --blush: #f6ede7;
  --gold: #bea176;
  --sage: #b1ae8b;
  --ink: #3a2a22;
  --font-display: "Lora", serif;
  --font-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; color: var(--ink); background: var(--blush); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; cursor: pointer; background: none; }
::selection { color: #fff; background: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; color: var(--cream); background: var(--brown-deep); transform: translateY(-150%); }.skip-link:focus { transform: none; }
#story,#how,#collection,#faq { scroll-margin-top: 88px; }

h1, h2, h3, h4 { color: var(--brown-deep); font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.12; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--gold); font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1.5px; background: var(--gold); }
.section-title { margin-bottom: 20px; font-size: clamp(32px, 4.2vw, 52px); }
.section-lead { max-width: 560px; color: #6b564c; font-size: 17px; line-height: 1.7; }
.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-head.center .section-lead { margin-right: auto; margin-left: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 17px 34px; border-radius: 100px; font-size: 14.5px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background .4s var(--ease); }
.btn-primary { color: var(--cream); background: var(--brown-deep); box-shadow: 0 8px 24px -8px rgba(95,64,54,.55); }
.btn-primary:hover { background: #4c332b; box-shadow: 0 16px 32px -10px rgba(95,64,54,.6); transform: translateY(-3px); }
.btn-light { color: var(--brown-deep); background: var(--cream); }
.btn-light:hover { box-shadow: 0 16px 32px -10px rgba(0,0,0,.25); transform: translateY(-3px); }
.link-quiet { display: inline-flex; align-items: center; gap: 6px; padding: 4px 0; border-bottom: 1px solid rgba(107,86,76,.28); color: #6b564c; font-size: 14.5px; font-weight: 600; transition: color .35s var(--ease), border-color .35s var(--ease), gap .35s var(--ease-soft); }
.link-quiet:hover { gap: 10px; border-color: var(--brown-deep); color: var(--brown-deep); }

.nav { position: fixed; z-index: 500; top: 0; right: 0; left: 0; padding: 26px 0; transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease); }
.nav.is-scrolled, body:not(.store-home) .nav { padding: 14px 0; background: rgba(246,237,231,.9); box-shadow: 0 8px 30px -12px rgba(95,64,54,.18); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-mark { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: auto; height: 26px; flex-shrink: 0; }
.logo-word { width: auto; height: 15px; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { position: relative; padding: 4px 0; color: var(--brown-deep); font-size: 14px; font-weight: 600; }
.nav-links a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .4s var(--ease-soft); }
.nav-links a:hover::after { width: 100%; }
.nav-cta-group { display: flex; align-items: center; gap: 20px; }
.nav-cta-group .btn { padding: 13px 26px; font-size: 13px; }
.cart-nav { display: flex; align-items: center; gap: 7px; color: var(--brown-deep); font-size: 13px; font-weight: 700; }
.cart-nav svg { width: 19px; height: 19px; }
.hamburger { display: none; position: relative; z-index: 610; width: 26px; height: 18px; cursor: pointer; }
.hamburger span { position: absolute; right: 0; left: 0; height: 2px; background: var(--brown-deep); transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease); }
.hamburger span:nth-child(1) { top: 0; }.hamburger span:nth-child(2) { top: 8px; }.hamburger span:nth-child(3) { top: 16px; }
.mobile-menu { position: fixed; z-index: 600; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; padding: calc(env(safe-area-inset-top,0px) + 40px) 40px calc(env(safe-area-inset-bottom,0px) + 40px); overflow-y: auto; background: var(--cream); }
.mobile-menu[hidden] { display: none; }
.mobile-menu > a { color: var(--brown-deep); font-family: var(--font-display); font-size: 34px; font-weight: 600; }
.mobile-menu .btn { margin-top: 14px; font-family: var(--font-body); font-size: 14.5px; }
.mobile-menu-close { position: absolute; top: 26px; right: 26px; display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; color: var(--brown-deep); background: rgba(95,64,54,.08); font-size: 30px; cursor: pointer; }
.hamburger.is-active span:nth-child(1) { top: 8px; transform: rotate(45deg); }.hamburger.is-active span:nth-child(2) { opacity: 0; }.hamburger.is-active span:nth-child(3) { top: 8px; transform: rotate(-45deg); }
body.menu-open { overflow: hidden; }

.store-messages { position: fixed; z-index: 700; top: 92px; right: 24px; width: min(360px, calc(100% - 48px)); }
.store-message { margin-bottom: 8px; padding: 14px 18px; border: 1px solid rgba(190,161,118,.35); border-radius: 12px; color: var(--brown-deep); background: rgba(246,237,231,.96); box-shadow: 0 12px 30px -16px rgba(95,64,54,.4); font-size: 13px; }

.hero { position: relative; display: flex; min-height: 100vh; align-items: center; padding: 150px 0 90px; overflow: hidden; background: radial-gradient(1200px 600px at 82% 10%, rgba(190,161,118,.2), transparent 60%), linear-gradient(180deg, var(--cream), var(--blush)); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.hero-copy { text-align: left; }
.hero-title { overflow: hidden; font-size: clamp(40px,5.6vw,74px); }
.hero-title__line { display: block; overflow: hidden; padding-bottom: 4px; }.hero-title__line > span { display: inline-block; }
.hero-sub { max-width: 480px; margin-top: 26px; color: #6b564c; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 40px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; }
.trust-row li { display: flex; align-items: center; gap: 7px; color: #8a7466; font-size: 13px; font-weight: 500; }
.tick-sm { display: flex; width: 15px; height: 15px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 50%; color: var(--gold); background: rgba(190,161,118,.22); font-size: 9px; }
.hero-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 28px; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(95,64,54,.55)); }
.hero-badge { position: absolute; z-index: 2; right: 26px; bottom: 26px; left: 26px; display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 16px; background: rgba(246,237,231,.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.hero-badge__dot { display: flex; width: 38px; height: 38px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 50%; color: var(--cream); background: var(--brown-deep); }
.hero-badge p { color: var(--brown-deep); font-size: 13px; font-weight: 600; line-height: 1.4; }
.hero-badge span { color: #8a7466; font-size: 11.5px; }

.store-strip { padding: 18px 0; overflow: hidden; background: var(--brown-deep); }
.store-strip__track { display: flex; width: max-content; gap: 60px; white-space: nowrap; animation: marquee 26s linear infinite; }
.store-strip__track span { display: flex; align-items: center; gap: 60px; color: var(--cream); font-family: var(--font-display); font-size: 17px; font-style: italic; opacity: .85; }
.store-strip__track span::after { content: "✦"; margin-left: 60px; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.story { padding: 140px 0; background: var(--blush); }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.story-visual { position: relative; }
.story-img-main { aspect-ratio: 3/4; overflow: hidden; border-radius: 24px; }
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-float { position: absolute; right: -8%; bottom: -10%; width: 46%; aspect-ratio: 1; overflow: hidden; border: 6px solid var(--blush); border-radius: 18px; box-shadow: 0 24px 60px -20px rgba(95,64,54,.4); }
.story-img-float img { width: 100%; height: 100%; object-fit: cover; object-position: center 100%; }
.story-copy > p:not(.eyebrow) { max-width: 560px; margin-bottom: 20px; color: #5c4a40; font-size: 17px; line-height: 1.85; }
.story-copy > p:nth-of-type(2) { color: var(--brown-deep); font-family: var(--font-display); font-size: 24px; font-style: italic; line-height: 1.55; }
.story-signature { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.story-signature__name { color: var(--gold); font-family: var(--font-display); font-size: 30px; font-style: italic; }
.story-signature span:last-child { color: #8a7466; font-size: 13px; }

.how { padding: 140px 0; background: linear-gradient(180deg, var(--cream), var(--blush)); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.how-step { padding: 44px 32px 36px; border: 1px solid rgba(95,64,54,.1); border-radius: 20px; background: rgba(246,237,231,.6); text-align: center; transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background .5s var(--ease); }
.how-step:hover { background: var(--blush); box-shadow: 0 24px 50px -20px rgba(95,64,54,.25); transform: translateY(-8px); }
.how-step__number { margin-bottom: 18px; color: var(--gold); font-family: var(--font-display); font-size: 46px; font-style: italic; opacity: .9; }
.how-step h3 { margin-bottom: 12px; font-size: 21px; }
.how-step p { color: #6b564c; font-size: 15px; line-height: 1.7; }
.how-showcase { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 64px; }
.how-showcase img { width: 100%; max-width: 320px; border-radius: 22px; box-shadow: 0 30px 60px -24px rgba(95,64,54,.35); }
.how-showcase p { max-width: 440px; color: #8a7466; font-family: var(--font-display); font-size: 15.5px; font-style: italic; text-align: center; }

.scan-demo { position: relative; padding: 150px 0; overflow: hidden; color: var(--cream); background: var(--brown-deep); }
.scan-demo::before { content: ""; position: absolute; top: -20%; left: -10%; width: 60%; height: 140%; background: radial-gradient(circle,rgba(190,161,118,.16),transparent 65%); }
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.scan-demo .section-title { color: var(--cream); }
.scan-demo .section-lead { color: rgba(232,220,207,.75); }
.scan-demo-list { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.scan-demo-list li { display: flex; align-items: flex-start; gap: 14px; color: rgba(232,220,207,.85); font-size: 15px; line-height: 1.6; }
.scan-demo-list li b { color: var(--cream); }
.scan-demo-list .tick { display: flex; width: 20px; height: 20px; flex-shrink: 0; align-items: center; justify-content: center; margin-top: 2px; border-radius: 50%; color: var(--brown-deep); background: var(--gold); font-size: 11px; }
.phone-mock { position: relative; width: 280px; aspect-ratio: 9/18.5; margin: 0 auto; padding: 10px; border-radius: 46px; background: linear-gradient(155deg,#2e2019,#1a1108 60%); box-shadow: 0 50px 100px -30px rgba(0,0,0,.7),inset 0 0 0 1.5px rgba(255,255,255,.06); }
.phone-btn { position: absolute; border-radius: 3px; background: #120b06; }
.phone-btn--power { top: 118px; right: -3px; width: 3px; height: 64px; }.phone-btn--volume-one { top: 96px; left: -3px; width: 3px; height: 34px; }.phone-btn--volume-two { top: 138px; left: -3px; width: 3px; height: 34px; }
.phone-screen { position: relative; display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; overflow: hidden; border-radius: 38px; color: var(--ink); background: var(--cream); box-shadow: inset 0 0 0 2px rgba(0,0,0,.25); }
.phone-notch { position: absolute; z-index: 5; top: 16px; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: #1a1108; box-shadow: 0 0 0 3px rgba(0,0,0,.05); transform: translateX(-50%); }
.phone-home-indicator { position: absolute; z-index: 5; bottom: 12px; left: 50%; width: 100px; height: 4px; border-radius: 3px; background: rgba(95,64,54,.25); transform: translateX(-50%); }
.phone-state { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.phone-state b { color: #8a7466; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }.phone-state small { margin-top: 8px; color: var(--gold); font-size: 11px; font-weight: 700; }
.tap-object { position: relative; width: 88px; height: 88px; margin-bottom: 22px; }.tap-object img { position: relative; z-index: 2; width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: 50%; object-fit: cover; box-shadow: 0 10px 24px -10px rgba(95,64,54,.4); }.pulse-ring { position: absolute; inset: 0; border: 1.5px solid var(--gold); border-radius: 50%; animation: pulse-ring 2.2s ease-out infinite; }.pulse-ring--delayed { animation-delay: 1.1s; }@keyframes pulse-ring { from { opacity: .8; transform: scale(1); } to { opacity: 0; transform: scale(1.7); } }
.phone-state--scanning,.phone-state--verse { opacity: 0; pointer-events: none; transform: scale(.95); }
.scan-spinner { width: 46px; height: 46px; margin-bottom: 18px; border: 2.5px solid rgba(95,64,54,.15); border-top-color: var(--brown-deep); border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.phone-screen.is-scanning .phone-state--idle,.phone-screen.is-revealed .phone-state--scanning { opacity: 0; pointer-events: none; }
.phone-screen.is-scanning .phone-state--scanning,.phone-screen.is-revealed .phone-state--verse { opacity: 1; pointer-events: auto; transform: scale(1); }
.phone-verse-mark { margin-bottom: 10px; color: var(--gold); font-family: var(--font-display); font-size: 28px; }
.phone-state--verse q { margin-bottom: 12px; color: var(--brown-deep); font-family: var(--font-display); font-size: 14.5px; font-style: italic; line-height: 1.48; }
.phone-state--verse b { color: var(--gold); font-size: 10px; }

.collection { padding: 140px 0; background: var(--blush); }
.collection-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.product-card { overflow: hidden; border-radius: 22px; background: var(--cream); transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft); }
.product-card:hover { box-shadow: 0 30px 60px -24px rgba(95,64,54,.3); transform: translateY(-10px); }
.product-img { position: relative; display: block; aspect-ratio: 1; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag { position: absolute; top: 16px; left: 16px; padding: 6px 14px; border-radius: 100px; color: var(--brown-deep); background: rgba(246,237,231,.92); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.product-body { padding: 26px 26px 30px; }
.product-body h3 { margin-bottom: 8px; font-size: 20px; }
.product-body p { margin-bottom: 18px; color: #6b564c; font-size: 14px; line-height: 1.6; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-price { color: var(--brown-deep); font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.product-link { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13px; font-weight: 700; white-space: nowrap; }
.product-link svg { width: 14px; height: 14px; transition: transform .4s var(--ease-soft); }.product-card:hover .product-link svg { transform: translateX(4px); }
.collection-empty { padding: 48px; border: 1px solid rgba(95,64,54,.1); border-radius: 22px; background: var(--cream); text-align: center; }.collection-empty h3 { margin-bottom: 10px; }.collection-empty p { color: #6b564c; }

.store-facts { position: relative; padding: 92px 0; overflow: hidden; background: var(--cream); }
.store-facts::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0,rgba(190,161,118,.18),transparent 62%); }
.store-facts__grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.store-facts__grid b { display: block; margin-bottom: 7px; color: var(--brown-deep); font-family: var(--font-display); font-size: clamp(25px,3vw,38px); font-weight: 600; }
.store-facts__grid span { color: #8a7466; font-size: 13px; }

.value { padding: 140px 0; background: linear-gradient(180deg,var(--cream),var(--blush)); }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.value-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 20px; color: #5c4a40; font-size: 16.5px; line-height: 1.85; }
.value-reassure { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(95,64,54,.14); }
.value-reassure__icon { display: flex; width: 38px; height: 38px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 10px; color: var(--cream); background: var(--brown-deep); font-size: 15px; }
.value-reassure b { display: block; margin-bottom: 3px; color: var(--brown-deep); font-size: 14.5px; }.value-reassure p { color: #8a7466; font-size: 13.5px; }
.value-card { position: relative; padding: 52px 44px; overflow: hidden; border-radius: 28px; color: var(--cream); background: var(--brown-deep); }
.value-card::after { content: ""; position: absolute; top: -30%; right: -20%; width: 60%; height: 60%; background: radial-gradient(circle,rgba(190,161,118,.25),transparent 70%); }
.value-card .eyebrow { position: relative; z-index: 1; }.value-card h3 { position: relative; z-index: 1; color: var(--cream); font-size: 30px; }
.value-price { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 10px; margin: 18px 0 26px; }.value-price b { font-family: var(--font-display); font-size: 52px; }
.value-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; margin: 0 0 32px; }.value-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(232,220,207,.9); font-size: 14.5px; }.value-list li span { display: flex; width: 18px; height: 18px; flex-shrink: 0; align-items: center; justify-content: center; margin-top: 2px; border-radius: 50%; color: var(--brown-deep); background: var(--gold); font-size: 10px; }
.value-card .btn { position: relative; z-index: 1; width: 100%; }

.faq { padding: 140px 0; background: var(--blush); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(95,64,54,.15); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; color: var(--brown-deep); font-family: var(--font-display); font-size: 19px; text-align: left; cursor: pointer; list-style: none; }.faq-question::-webkit-details-marker { display: none; }
.faq-plus { position: relative; display: flex; width: 26px; height: 26px; flex-shrink: 0; align-items: center; justify-content: center; border: 1.5px solid var(--gold); border-radius: 50%; }
.faq-plus::before,.faq-plus::after { content: ""; position: absolute; background: var(--gold); transition: transform .4s var(--ease), opacity .4s var(--ease); }.faq-plus::before { width: 10px; height: 1.5px; }.faq-plus::after { width: 1.5px; height: 10px; }
.faq-answer p { max-width: 640px; padding: 0 4px 28px; color: #6b564c; font-size: 15px; line-height: 1.75; }
.faq-item[open] .faq-plus::after { opacity: 0; transform: rotate(90deg); }

.final-cta { position: relative; padding: 150px 0; overflow: hidden; background: var(--brown-deep); text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 50% 0%,rgba(190,161,118,.25),transparent 70%); }
.final-cta h2 { position: relative; max-width: 780px; margin: 0 auto 26px; color: var(--cream); font-size: clamp(34px,5vw,58px); }
.final-cta p { position: relative; max-width: 480px; margin: 0 auto 40px; color: rgba(232,220,207,.75); font-size: 17px; }.final-cta .btn { position: relative; }

.site-footer { padding: 90px 0 0; color: var(--cream); background: #241811; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 70px; border-bottom: 1px solid rgba(232,220,207,.12); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }.footer-logo img:first-child { width: auto; height: 26px; }.footer-logo .footer-wordmark { width: auto; height: 15px; }
.footer-intro p { max-width: 430px; color: rgba(232,220,207,.65); font-size: 15px; line-height: 1.8; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }.footer-links > div { display: flex; flex-direction: column; gap: 12px; }.footer-links h2 { margin-bottom: 8px; color: var(--cream); font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }.footer-links a { color: rgba(232,220,207,.7); font-size: 14px; }.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 28px 32px 34px; }.footer-bottom span { color: rgba(232,220,207,.45); font-size: 12.5px; }

/* Commerce inner pages */
.store-content { min-height: 70vh; padding: 150px 0 110px; background: linear-gradient(180deg,var(--cream),var(--blush) 260px); }
.product-detail { display: grid; max-width: 1180px; grid-template-columns: 1fr 1fr; align-items: start; gap: 70px; margin: 0 auto; padding: 150px 32px 110px; }
.product-detail__media { position: sticky; top: 110px; aspect-ratio: 1; overflow: hidden; border-radius: 26px; background: var(--cream); }.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__body { padding-top: 24px; }.product-detail__body h1 { margin-bottom: 22px; font-size: clamp(38px,5vw,58px); }.product-detail__description { margin-bottom: 34px; color: #5c4a40; font-size: 16px; line-height: 1.8; }.product-detail__description p { margin-bottom: 14px; }
.variant-list { display: grid; gap: 12px; margin: 0 0 28px; border: 0; }.variant-list legend { margin-bottom: 14px; color: var(--brown-deep); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.variant-option { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 17px 18px; border: 1px solid rgba(95,64,54,.14); border-radius: 14px; cursor: pointer; background: rgba(255,255,255,.34); }.variant-option:has(input:checked) { border-color: var(--gold); background: rgba(232,220,207,.55); }.variant-option input { accent-color: var(--brown-deep); }.variant-option span { font-size: 14px; }.variant-option strong { font-family: var(--font-display); font-size: 16px; }
.primary-button { display: inline-flex; align-items: center; justify-content: center; padding: 17px 34px; border: 0; border-radius: 100px; color: var(--cream); background: var(--brown-deep); box-shadow: 0 8px 24px -8px rgba(95,64,54,.55); font-size: 14.5px; font-weight: 700; cursor: pointer; }
.primary-button { transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background .4s var(--ease); }.primary-button:hover { background: #4c332b; box-shadow: 0 16px 32px -10px rgba(95,64,54,.6); transform: translateY(-3px); }.product-detail form > .primary-button { width: 100%; }
.product-detail__notice { margin: 16px 0; color: #8a7466; font-size: 13px; line-height: 1.6; }

.cart,.checkout,.empty-state { max-width: 1120px; min-height: 70vh; margin: 0 auto; padding: 150px 32px 110px; }.cart > h1,.checkout h1,.empty-state h1 { margin-bottom: 36px; font-size: clamp(38px,5vw,58px); }
.cart-lines { display: grid; gap: 16px; }.cart-line { display: grid; grid-template-columns: 110px 1fr auto auto; align-items: center; gap: 24px; padding: 20px; border-radius: 18px; background: var(--cream); }.cart-line img,.cart-line__placeholder { width: 110px; aspect-ratio: 1; border-radius: 13px; object-fit: cover; background: var(--tan); }.cart-line h2 { margin-bottom: 6px; font-size: 20px; }.cart-line p { color: #6b564c; font-size: 14px; }.cart-line__actions { display: flex; align-items: center; gap: 12px; }.cart-line__actions form { display: flex; align-items: center; gap: 8px; }.cart-line__actions input { width: 66px; padding: 9px; border: 1px solid rgba(95,64,54,.2); border-radius: 9px; background: var(--blush); }.cart-line__actions button { color: var(--brown-deep); font-size: 12px; font-weight: 700; }.cart-line__subtotal { font-family: var(--font-display); font-size: 18px; }.cart-total { display: flex; justify-content: space-between; margin: 28px 0 12px; padding-top: 24px; border-top: 1px solid rgba(95,64,54,.15); font-size: 20px; }.cart-total strong { font-family: var(--font-display); }
.checkout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; }.checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }.checkout-form > * { grid-column: 1/-1; }.form-field { display: grid; gap: 7px; }.form-field label { color: var(--brown-deep); font-size: 12px; font-weight: 700; letter-spacing: .04em; }.form-field input:not([type="checkbox"]):not([type="radio"]),.form-field textarea,.form-field select { width: 100%; padding: 14px 15px; border: 1px solid rgba(95,64,54,.17); border-radius: 11px; color: var(--ink); background: rgba(255,255,255,.5); }.form-field:has(input[type="checkbox"]) { grid-template-columns: auto 1fr; align-items: start; }.form-field input[type="checkbox"] { margin-top: 3px; accent-color: var(--brown-deep); }.form-field:has(input[type="checkbox"]) label { grid-column: 2; grid-row: 1; }.field-error,.form-errors { color: #9d493d; font-size: 12px; }.checkout-summary { align-self: start; padding: 30px; border-radius: 20px; background: var(--cream); }.checkout-summary h2 { margin-bottom: 24px; }.checkout-summary__line { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(95,64,54,.1); font-size: 14px; }.checkout-summary__shipping { padding-top: 14px; color: #6b564c; font-size: 13px; }.empty-state { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }.empty-state p { margin-bottom: 18px; color: #6b564c; font-size: 17px; line-height: 1.7; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1024px) {
  .nav-links,.nav-cta-group { display: none; }.hamburger { display: block; }
  .hero-grid,.story-grid,.scan-grid,.value-grid,.footer-grid,.product-detail,.checkout { grid-template-columns: 1fr; gap: 50px; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; }.hero-copy { display: contents; }.hero-copy .eyebrow { order: 1; }.hero-title { order: 2; }.hero-sub { order: 3; }.hero-visual { order: 4; width: min(680px,100%); margin: 34px auto 0; }.hero-actions { order: 5; }.trust-row { order: 6; }
  .story-grid { display: flex; flex-direction: column-reverse; }.story-visual { width: min(620px,90%); margin: 40px auto; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }.collection-grid { grid-template-columns: repeat(2,1fr); }
  .product-detail__media { position: static; width: min(680px,100%); margin: 0 auto; }
}

@media (max-width: 700px) {
  .container { padding: 0 22px; }
  .hero,.story,.how,.scan-demo,.collection,.store-facts,.value,.faq,.final-cta { padding-top: 90px; padding-bottom: 90px; }.hero { padding-top: 130px; }
  .hero-title { font-size: clamp(38px,12vw,58px); }.hero-sub { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; }
  .story-img-float { display: none; }.story-visual { width: 100%; }.section-head { margin-bottom: 44px; }
  .collection-grid { grid-template-columns: 1fr; }.product-foot { align-items: flex-end; }
  .store-facts__grid { grid-template-columns: 1fr 1fr; gap: 36px 18px; }.value-card { padding: 38px 28px; }
  .footer-grid { gap: 45px; padding-bottom: 50px; }.footer-links { gap: 24px; }.footer-bottom { align-items: flex-start; flex-direction: column; padding-right: 22px; padding-left: 22px; }
  .product-detail,.cart,.checkout,.empty-state { padding: 120px 22px 80px; }.product-detail { gap: 28px; }.product-detail__body { padding-top: 0; }
  .cart-line { grid-template-columns: 80px 1fr; align-items: start; }.cart-line img,.cart-line__placeholder { width: 80px; }.cart-line__actions,.cart-line__subtotal { grid-column: 2; }.cart-line__actions { align-items: flex-start; flex-direction: column; }
  .checkout-form { grid-template-columns: 1fr; }.phone-mock { width: 260px; }
}

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