:root {
  --paper: #fcf9f5;
  --paper-deep: #f6f0e9;
  --blush: #f6e8e4;
  --peach: #f3cdb8;
  --ink: #392321;
  --muted: #786964;
  --green: #5f7d6d;
  --gold: #b78342;
  --brown: #321b19;
  --white: #fff;
  --radius: 14px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(252, 249, 245, .96); border-bottom: 1px solid rgba(57, 35, 33, .08); box-shadow: 0 10px 35px rgba(57,35,33,.04); backdrop-filter: blur(10px); }
.header-inner { max-width: 1440px; margin: 0 auto; min-height: 92px; padding: 15px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 188px; }
.brand-mark { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font: 600 25px/1 var(--serif); }
.brand-copy { display: grid; gap: 0; }
.brand-copy strong { font: 600 20px/1 var(--serif); letter-spacing: .12em; }
.brand-copy small { color: var(--green); font-size: 10px; letter-spacing: .2em; }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); text-transform: uppercase; font-size: 13px; letter-spacing: .12em; }
.primary-nav a { position: relative; padding: 8px 0; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; min-width: 188px; justify-content: flex-end; }
.icon-button, .bag-link { border: 0; background: transparent; color: var(--ink); font-size: 14px; }
.icon-button { display: grid; width: 28px; height: 32px; padding: 4px; place-items: center; border-radius: 50%; }
.header-icon { display: block; width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease, color .2s ease; }
.icon-button:hover .header-icon { color: var(--gold); transform: translateY(-1px); }
.bag-link { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.bag-link span { display: inline-grid; width: 18px; height: 18px; margin-left: 5px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: 9px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 5px; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--ink); }
.search-drawer { max-width: 1440px; max-height: 0; margin: 0 auto; padding: 0 48px; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.search-drawer.is-open { max-height: 110px; padding-top: 0; padding-bottom: 22px; }
.search-drawer label { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.search-row { display: flex; align-items: center; gap: 15px; margin-top: 8px; }
.search-row input { flex: 1; border: 0; border-bottom: 1px solid rgba(57,35,33,.35); padding: 8px 0; color: var(--ink); background: transparent; outline: 0; }
.search-row button { border: 0; background: transparent; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.cart-toast { position: fixed; z-index: 50; right: 24px; bottom: 24px; max-width: 310px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: var(--brown); color: var(--white); box-shadow: 0 16px 35px rgba(57,35,33,.2); font-size: 14px; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity .25s ease, transform .25s ease; }
.cart-toast.is-visible { opacity: 1; transform: none; }

.hero { max-width: none; margin: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; min-height: clamp(640px, 74vh, 850px); }
.hero-media { position: relative; min-height: clamp(640px, 74vh, 850px); overflow: hidden; isolation: isolate; }
.hero-media::before { content: ""; position: absolute; z-index: 2; top: -65px; right: -65px; width: 190px; height: 190px; border: 1px solid rgba(57,35,33,.24); border-radius: 50%; box-shadow: inset 0 0 0 14px rgba(255,255,255,.1); pointer-events: none; }
.hero-media-right::before { top: auto; right: auto; bottom: -72px; left: -72px; width: 210px; height: 210px; border-color: rgba(255,255,255,.55); }
.hero-media::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(57,35,33,.03), transparent 48%, rgba(57,35,33,.16)); pointer-events: none; }
.hero-media img { position: relative; z-index: 0; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hero-media:hover img { transform: scale(1.035); }
.hero-media-left img { object-position: center; }
.hero-media-right img { object-position: center; }
.hero-panel-label, .hero-panel-note { position: absolute; z-index: 3; left: 24px; color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hero-panel-label { top: 24px; padding: 9px 12px; border: 1px solid rgba(57,35,33,.15); border-radius: 999px; background: rgba(252,249,245,.82); backdrop-filter: blur(8px); }
.hero-panel-note { bottom: 24px; color: rgba(57,35,33,.78); }
.hero-media-right .hero-panel-label, .hero-media-right .hero-panel-note { right: 24px; left: auto; text-align: right; }
.hero-copy { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; overflow: hidden; padding: 52px clamp(28px, 4vw, 70px); text-align: center; background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.24), transparent 32%), linear-gradient(145deg, #f4cfbd 0%, #edbca9 100%); }
.hero-copy::before { content: ""; position: absolute; z-index: 0; top: -24%; right: -24%; width: 78%; aspect-ratio: 1; border: 1px solid rgba(57,35,33,.18); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255,255,255,.08), 0 0 0 45px rgba(255,255,255,.06); }
.hero-copy::after { content: ""; position: absolute; z-index: 0; bottom: -95px; left: -85px; width: 230px; height: 230px; border-radius: 50%; background: rgba(255,255,255,.13); animation: hero-orb 8s ease-in-out infinite; }
.hero-copy > * { position: relative; z-index: 1; }
.hero-copy-meta { align-self: stretch; display: flex; justify-content: space-between; margin-bottom: 48px; color: rgba(57,35,33,.68); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-green { color: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: .94; }
h1 { max-width: 610px; margin-bottom: 28px; font-size: clamp(56px, 4.3vw, 88px); letter-spacing: -.045em; }
h1 span { display: block; }
h1 em { color: #5d2826; font-style: italic; }
h2 { margin-bottom: 0; font-size: clamp(39px, 4vw, 60px); }
.hero-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 28px; color: #5b4945; font-size: 18px; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-note { color: rgba(57,35,33,.72); font-size: 13px; letter-spacing: .05em; }
.hero-note b { margin: 0 4px; color: var(--gold); }
.hero-proof { display: flex; gap: 18px; color: rgba(57,35,33,.68); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.hero-proof span { padding-top: 10px; border-top: 1px solid rgba(57,35,33,.25); }
.hero-scroll-cue { position: absolute; right: 20px; bottom: 23px; display: flex; align-items: center; gap: 9px; color: rgba(57,35,33,.55); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.hero-scroll-cue i { display: block; width: 30px; height: 1px; background: rgba(57,35,33,.4); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 32px; border: 1px solid transparent; border-radius: 999px; text-transform: capitalize; font-size: 15px; font-weight: 700; letter-spacing: .03em; box-shadow: 0 9px 18px rgba(50,27,25,.12); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { box-shadow: 0 13px 24px rgba(50,27,25,.2); transform: translateY(-3px); }
.button .arrow-icon { width: 16px; height: 16px; }
.button-dark { background: var(--brown); color: var(--white); }

.section { max-width: 1440px; margin: 0 auto; padding: 96px 48px; }
.section-heading { position: relative; margin-bottom: 42px; text-align: center; }
.section-heading::after { content: ""; display: block; width: 52px; height: 2px; margin: 22px auto 0; background: var(--gold); box-shadow: 14px 0 0 rgba(183,131,66,.22), -14px 0 0 rgba(183,131,66,.22); }
.section-heading h2 { font-size: clamp(42px, 4vw, 62px); }
.section-heading-compact { margin-bottom: 25px; }
.section-heading-compact h2 { font-size: 34px; }
.rituals { position: relative; isolation: isolate; }
.rituals::before { content: ""; position: absolute; z-index: -2; top: 0; bottom: 0; left: 50%; width: 100vw; background: radial-gradient(circle at 12% 22%, rgba(183,131,66,.11) 0 2px, transparent 3px), radial-gradient(circle at 86% 74%, rgba(95,125,109,.1) 0 2px, transparent 3px), linear-gradient(135deg, #fcf9f5 0%, #f7f0e9 52%, #fcf9f5 100%); background-size: 32px 32px, 38px 38px, auto; transform: translateX(-50%); }
.rituals::after { content: ""; position: absolute; z-index: -1; top: 46px; right: -100px; width: 310px; height: 310px; border: 1px solid rgba(183,131,66,.17); border-radius: 50%; box-shadow: 0 0 0 18px rgba(183,131,66,.05), 0 0 0 38px rgba(183,131,66,.035); pointer-events: none; }
.rituals .section-heading { margin-bottom: 52px; }
.section-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker span:first-child { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(95,125,109,.4); border-radius: 50%; color: var(--gold); font-size: 10px; }
.section-kicker i { display: block; width: 42px; height: 1px; background: rgba(95,125,109,.45); }
.section-lede { max-width: 480px; margin: 18px auto 0; color: var(--muted); font-size: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.product-card { position: relative; overflow: hidden; border: 1px solid rgba(57,35,33,.05); border-radius: 16px; background: var(--white); box-shadow: 0 8px 24px rgba(74, 48, 40, .06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.product-card:hover { border-color: rgba(183,131,66,.3); box-shadow: 0 18px 36px rgba(74,48,40,.14); transform: translateY(-8px); }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.cart-float { position: absolute; z-index: 4; top: 18px; right: 18px; display: grid; width: 45px; height: 45px; padding: 0; place-items: center; border: 1px solid rgba(57,35,33,.12); border-radius: 50%; background: rgba(255,255,255,.92); color: var(--brown); box-shadow: 0 10px 22px rgba(57,35,33,.14); opacity: 0; transform: translateY(-8px) scale(.88); transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease; backdrop-filter: blur(8px); }
.cart-float:hover, .cart-float:focus-visible { background: var(--brown); color: var(--white); transform: translateY(0) scale(1.05); }
.product-card:hover .cart-float, .cart-float:focus-visible { opacity: 1; transform: none; }
.cart-float.is-added { background: var(--green); color: var(--white); }
.cart-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.category-grid .product-card::before { content: "01"; position: absolute; z-index: 3; top: 16px; left: 16px; display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(57,35,33,.18); border-radius: 50%; background: rgba(252,249,245,.78); color: var(--brown); font-size: 11px; font-weight: 700; letter-spacing: .08em; backdrop-filter: blur(8px); }
.category-grid .product-card:nth-child(2)::before { content: "02"; }
.category-grid .product-card:nth-child(3)::before { content: "03"; }
.category-grid .product-card:nth-child(4)::before { content: "04"; }
.category-grid .product-card:nth-child(even) { transform: none; }
.category-grid .product-card:nth-child(even):hover { transform: translateY(-8px); }
.category-grid .product-card:nth-child(odd):hover { transform: translateY(-8px); }
.product-card > img { aspect-ratio: 1.16; object-fit: cover; background: #f0e8df; transition: transform .55s ease; }
.product-card:hover > img { transform: scale(1.045); }
.product-card-body { padding: 20px 20px 23px; }
.product-type { margin-bottom: 7px; color: var(--green); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin: 0 0 14px; font: 600 27px/1.08 var(--serif); }
.category-grid .product-card-body { min-height: 174px; display: flex; flex-direction: column; align-items: flex-start; padding: 22px 22px 24px; background: linear-gradient(180deg, #fff 0%, #fffdfa 100%); }
.category-grid .product-card-body > a { margin-top: auto; }
.category-grid .product-card-body .stars { margin-bottom: 11px; }
.product-card-body > a { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px; background: var(--brown); color: var(--white); text-transform: capitalize; font-size: 15px; font-weight: 700; letter-spacing: .03em; transition: background .2s ease, padding .2s ease; }
.rating-grid .product-card-body { min-height: 188px; display: flex; flex-direction: column; align-items: flex-start; }
.rating-grid .product-card-body > a { margin-top: auto; }
.arrow-icon { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.product-card-body > a:hover { padding-right: 19px; background: #5a2925; }
.product-card-body > a:hover .arrow-icon { transform: translate(2px, -2px); }
.feature-intro { display: grid; grid-template-columns: 1.25fr 1fr auto; gap: 34px; align-items: end; margin-top: 75px; margin-bottom: 24px; padding-top: 24px; border-top: 1px solid rgba(57,35,33,.14); }
.feature-intro .eyebrow { margin-bottom: 10px; }
.feature-intro h3 { max-width: 480px; margin: 0; font: 500 clamp(28px, 3vw, 45px)/1.02 var(--serif); letter-spacing: -.025em; }
.feature-intro > p { max-width: 360px; margin: 0 0 4px; color: var(--muted); font-size: 16px; }
.feature-intro > span { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 5px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.feature-intro > span i { display: block; width: 34px; height: 1px; background: rgba(95,125,109,.5); }
.feature-image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 0; }
.feature-image { position: relative; overflow: hidden; border: 1px solid rgba(57,35,33,.08); border-radius: 22px; box-shadow: 0 12px 28px rgba(74,48,40,.08); }
.feature-image::before { content: "Botanical edit"; position: absolute; z-index: 2; bottom: 18px; left: 18px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(57,35,33,.56); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); transition: background .25s ease, transform .25s ease; }
.feature-image::after { content: attr(data-index); position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(57,35,33,.18); border-radius: 50%; background: rgba(252,249,245,.8); color: var(--brown); font-size: 11px; font-weight: 700; letter-spacing: .08em; backdrop-filter: blur(8px); transition: transform .25s ease, background .25s ease; }
.feature-image:nth-child(2)::before { content: "Warming ritual"; }
.feature-image:nth-child(3)::before { content: "Skin comfort"; }
.feature-image:nth-child(4)::before { content: "Fresh finish"; }
.feature-image img { aspect-ratio: 1.85; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.feature-image:hover img { filter: saturate(1.08); transform: scale(1.06); }
.feature-image:hover::before { background: var(--brown); transform: translateY(-3px); }
.feature-image:hover::after { background: var(--peach); transform: rotate(8deg); }

.ratings { max-width: none; padding-top: 70px; padding-bottom: 86px; background: radial-gradient(circle at 50% -10%, #fffdfb 0, transparent 42%), var(--paper-deep); }
.ratings > .section-heading, .ratings > .product-grid { width: min(100%, 1344px); margin-right: auto; margin-left: auto; }
.ratings .section-heading { margin-bottom: 32px; }
.product-card-rating > img { aspect-ratio: 1.18; }
.product-card-rating .product-card-body { padding-top: 12px; }
.product-card-rating h3 { margin-bottom: 4px; }
.product-card-rating p { margin-bottom: 14px; color: var(--muted); font: 400 17px/1.1 var(--serif); }
.stars { display: inline-block; margin-bottom: 8px; color: var(--gold); font-size: 15px; letter-spacing: .12em; }
.collection-slider { position: relative; overflow: hidden; background: var(--white); }
.collection-slider::before { content: ""; position: absolute; top: 0; right: -160px; bottom: 0; width: 430px; background: radial-gradient(circle at 50% 50%, rgba(183,131,66,.12), transparent 64%); pointer-events: none; }
.collection-slider-inner { max-width: 1440px; margin: 0 auto; padding: 92px 48px 42px; }
.collection-slider-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.collection-slider-head .eyebrow { margin-bottom: 12px; }
.collection-slider-head h2 { max-width: 620px; margin: 0; font-size: clamp(38px, 4.2vw, 62px); }
.slider-controls { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.slider-progress { display: inline-flex; align-items: center; gap: 9px; margin-right: 8px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.slider-progress i { display: block; width: 38px; height: 1px; background: rgba(95,125,109,.5); }
.slider-progress span { color: rgba(57,35,33,.4); }
.slider-button { display: grid; width: 54px; height: 54px; padding: 0; place-items: center; border: 1px solid rgba(57,35,33,.18); border-radius: 50%; background: transparent; color: var(--brown); transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease; }
.slider-button:hover:not(:disabled), .slider-button:focus-visible { border-color: var(--brown); background: var(--brown); color: var(--white); transform: translateY(-2px); }
.slider-button:disabled { cursor: not-allowed; opacity: .35; }
.slider-button svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.95; stroke-linecap: round; stroke-linejoin: round; }
.slider-viewport { overflow: hidden; }
.image-strip { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
.image-strip::-webkit-scrollbar { display: none; }
.collection-slide { position: relative; flex: 0 0 clamp(280px, 31.8%, 460px); min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(57,35,33,.08); border-radius: 22px; background: var(--paper-deep); box-shadow: 0 14px 30px rgba(74,48,40,.09); scroll-snap-align: start; }
.collection-slide::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(28,18,17,.68) 100%); pointer-events: none; }
.collection-slide img { aspect-ratio: 1.16; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.collection-slide figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; gap: 5px; padding: 58px 22px 21px; color: var(--white); }
.collection-slide figcaption span { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.collection-slide figcaption strong { font: 500 25px/1.08 var(--serif); }
.collection-slide:hover img { filter: saturate(1.08); transform: scale(1.06); }
.slider-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 17px; color: rgba(57,35,33,.53); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.mindful { position: relative; isolation: isolate; display: grid; grid-template-columns: 43% 57%; align-items: center; gap: clamp(36px, 5vw, 78px); padding-top: 112px; padding-bottom: 112px; background: linear-gradient(110deg, #fff 0%, #fbf4ef 100%); }
.mindful::before { content: ""; position: absolute; z-index: -2; top: 0; bottom: 0; left: 50%; width: 100vw; background: linear-gradient(110deg, #fff 0%, #fbf4ef 100%); transform: translateX(-50%); }
.mindful::after { content: ""; position: absolute; z-index: -1; top: 50%; right: -140px; width: 350px; height: 350px; border: 1px solid rgba(95,125,109,.16); border-radius: 50%; box-shadow: 0 0 0 24px rgba(95,125,109,.05), 0 0 0 54px rgba(95,125,109,.035); transform: translateY(-50%); pointer-events: none; }
.mindful-visual { position: relative; min-width: 0; padding: 16px 42px 32px 0; }
.mindful-visual::before { content: ""; position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; left: 22px; border: 1px solid rgba(183,131,66,.22); border-radius: 30px 30px 130px 30px; transform: rotate(-3deg); }
.mindful-image { position: relative; z-index: 1; overflow: hidden; border-radius: 30px 30px 130px 30px; box-shadow: 0 22px 44px rgba(57,35,33,.14); }
.mindful-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(57,35,33,.02), transparent 55%, rgba(57,35,33,.18)); pointer-events: none; }
.mindful-image img { aspect-ratio: .84; height: 100%; min-height: 440px; object-fit: cover; transition: transform .65s ease; }
.mindful-visual:hover .mindful-image img { transform: scale(1.045); }
.mindful-visual-label { position: absolute; z-index: 3; top: 35px; left: -14px; padding: 10px 14px; border: 1px solid rgba(57,35,33,.15); border-radius: 999px; background: rgba(252,249,245,.84); color: var(--brown); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(8px); }
.mindful-image-note { position: absolute; z-index: 3; right: 63px; bottom: 53px; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.mindful-stamp { position: absolute; z-index: 3; right: 0; bottom: 0; display: grid; width: 104px; height: 104px; place-content: center; gap: 2px; border: 1px solid rgba(95,125,109,.42); border-radius: 50%; background: var(--white); color: var(--green); text-align: center; box-shadow: 0 12px 25px rgba(57,35,33,.12); }
.mindful-stamp strong { font: 600 24px/1 var(--serif); }
.mindful-stamp span { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mindful-copy { min-width: 0; padding-right: 48px; }
.mindful-copy-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mindful-copy-top > span { color: rgba(57,35,33,.45); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.mindful-copy h2 { margin-bottom: 19px; font-size: clamp(44px, 5vw, 72px); }
.mindful-copy h2 em { font-style: italic; }
.mindful-copy > p:not(.eyebrow) { max-width: 590px; margin-bottom: 26px; color: var(--muted); font-size: 17px; }
.mindful-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 590px; margin: 0 0 30px; }
.mindful-points span { display: grid; gap: 7px; padding-top: 11px; border-top: 1px solid rgba(57,35,33,.18); }
.mindful-points b { color: var(--gold); font-size: 11px; letter-spacing: .08em; }
.mindful-points small { color: var(--ink); font-size: 13px; line-height: 1.35; }
.featured-product { position: relative; display: flex; align-items: center; gap: 18px; max-width: 590px; padding: 19px 22px; border: 1px solid rgba(57,35,33,.1); border-radius: 20px; background: rgba(246,232,228,.86); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.featured-product:hover { border-color: rgba(183,131,66,.4); box-shadow: 0 15px 30px rgba(74,48,40,.12); transform: translateY(-4px); }
.product-swatch { display: grid; width: 72px; height: 72px; place-items: center; flex: 0 0 72px; background: #eed8d2; }
.product-swatch span { position: relative; display: block; width: 10px; height: 47px; border-radius: 3px; background: linear-gradient(90deg, #151414 0 25%, #383232 25% 72%, #0b0b0b 72%); box-shadow: 3px 4px 0 rgba(86, 53, 48, .16); }
.product-swatch span::after { content: ""; position: absolute; right: -2px; bottom: -6px; left: -2px; height: 8px; border-radius: 0 0 3px 3px; background: #1b1717; }
.featured-product h3 { margin: 0 0 3px; font: 600 27px/1 var(--serif); }
.featured-product strong { font-size: 14px; }
.featured-product-badge { margin-left: auto; align-self: flex-start; padding: 7px 9px; border-radius: 999px; background: var(--brown); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }

.testimonials { position: relative; overflow: hidden; background: linear-gradient(118deg, #f4e2dd 0%, #f8ece8 55%, #eed8d2 100%); }
.testimonials::before { content: ""; position: absolute; top: -170px; left: -120px; width: 430px; height: 430px; border: 1px solid rgba(183,131,66,.16); border-radius: 50%; box-shadow: 0 0 0 22px rgba(183,131,66,.05), 0 0 0 48px rgba(183,131,66,.03); pointer-events: none; }
.testimonials-inner { display: flex; flex-direction: column; align-items: stretch; gap: 36px; padding-top: 86px; padding-bottom: 92px; }
.testimonial-intro { position: relative; width: min(100%, 940px); margin: 0 auto; text-align: center; }
.testimonial-kicker { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 20px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.testimonial-kicker span:first-child { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(95,125,109,.42); border-radius: 50%; color: var(--gold); font-size: 10px; }
.testimonial-intro .eyebrow { margin-bottom: 11px; }
.testimonial-intro h2 { max-width: 860px; margin: 0 auto 16px; font-size: clamp(50px, 6vw, 84px); letter-spacing: -.05em; }
.testimonial-intro h2 em { color: #6d3934; font-style: italic; }
.testimonial-lede { max-width: 440px; margin: 0 auto 25px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.testimonial-score { display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 12px 9px 16px; border: 1px solid rgba(57,35,33,.11); border-radius: 999px; background: rgba(255,255,255,.58); box-shadow: 0 10px 24px rgba(74,48,40,.07); }
.testimonial-score > strong { font: 500 46px/.9 var(--serif); }
.testimonial-score > div { display: grid; gap: 1px; text-align: left; }
.testimonial-score .stars { margin: 0; font-size: 14px; }
.testimonial-score small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.testimonial-score-badge { display: grid; gap: 0; margin-left: 3px; padding-left: 14px; border-left: 1px solid rgba(57,35,33,.15); color: var(--green); font-size: 15px; font-weight: 700; line-height: 1; text-align: left; }
.testimonial-score-badge small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.testimonial-stage { position: relative; width: min(100%, 1160px); min-width: 0; margin: 0 auto; padding: 28px 44px 0 0; }
.testimonial-stage::before { content: ""; position: absolute; z-index: 0; inset: 9px 0 58px 22px; border: 1px solid rgba(183,131,66,.2); border-radius: 34px; pointer-events: none; }
.testimonial-orbit { position: absolute; z-index: 0; top: -20px; right: -27px; width: 270px; height: 270px; border: 1px solid rgba(95,125,109,.25); border-radius: 50%; box-shadow: 0 0 0 18px rgba(95,125,109,.05); pointer-events: none; }
.testimonial-slides { position: relative; z-index: 1; }
.testimonial-slide { position: relative; min-height: 330px; margin: 0; padding: 60px 88px 48px 72px; border: 1px solid rgba(57,35,33,.1); border-radius: 34px 34px 34px 108px; background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,251,249,.86) 100%); box-shadow: 0 24px 48px rgba(74,48,40,.12); }
.testimonial-slide::before { content: ""; position: absolute; top: 20px; bottom: 20px; left: 0; width: 5px; border-radius: 0 4px 4px 0; background: linear-gradient(180deg, var(--gold), var(--green)); opacity: .72; }
.testimonial-slide[hidden] { display: none; }
.quote-mark { position: absolute; top: 21px; left: 37px; color: var(--gold); font: 500 72px/.7 var(--serif); }
.slide-index { position: absolute; top: 31px; right: 34px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.testimonial-slide-label { position: absolute; top: 26px; right: 106px; padding: 6px 10px; border: 1px solid rgba(95,125,109,.24); border-radius: 999px; color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.testimonial-slide blockquote { max-width: 820px; margin: 36px 0 42px; font: 500 clamp(28px, 3.2vw, 46px)/1.12 var(--serif); letter-spacing: -.025em; }
.testimonial-slide footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--brown); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.testimonial-slide footer > span:last-child { display: grid; gap: 2px; }
.testimonial-slide footer strong { font-size: 14px; }
.testimonial-slide footer small { color: var(--muted); font-size: 11px; }
.testimonial-controls { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; padding: 0 12px 0 16px; }
.testimonial-dots { display: flex; align-items: center; gap: 17px; }
.testimonial-dots button { display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; background: transparent; color: rgba(57,35,33,.43); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.testimonial-dots button i { display: block; width: 25px; height: 1px; background: rgba(57,35,33,.25); transition: width .22s ease, background .22s ease; }
.testimonial-dots button.is-active { color: var(--brown); }
.testimonial-dots button.is-active i { width: 43px; background: var(--gold); }
.testimonial-next { width: 62px; height: 62px; background: var(--brown); color: var(--white); }
.testimonial-next svg { width: 30px; height: 30px; stroke-width: 2.25; }

.journal { padding-top: 82px; padding-bottom: 93px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.journal-card { overflow: hidden; border: 1px solid rgba(57,35,33,.05); border-radius: 14px; background: var(--white); box-shadow: 0 7px 22px rgba(74,48,40,.05); transition: transform .3s ease, box-shadow .3s ease; }
.journal-card:hover { box-shadow: 0 16px 34px rgba(74,48,40,.12); transform: translateY(-7px); }
.journal-card img { aspect-ratio: 1.48; object-fit: cover; }
.journal-card > div { padding: 15px 16px 19px; }
.journal-card h3 { margin-bottom: 10px; font: 600 26px/1.08 var(--serif); }
.journal-card p { margin-bottom: 15px; color: var(--muted); font-size: 16px; }
.journal-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--brown); text-transform: uppercase; font-size: 15px; font-weight: 700; letter-spacing: .06em; }
.text-arrow { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.journal-card a:hover .text-arrow { transform: translateX(3px); }

.instagram { padding-top: 66px; background: var(--paper-deep); }
.section-heading-compact .eyebrow { color: var(--muted); font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: .05em; text-transform: none; }
.instagram-heading { max-width: 1440px; margin-right: auto; margin-bottom: 30px; margin-left: auto; padding: 0 48px; display: flex; align-items: end; justify-content: space-between; gap: 24px; text-align: left; }
.instagram-heading h2 { margin: 0; font-size: 40px; }
.instagram-controls { display: flex; align-items: center; gap: 10px; }
.instagram-viewport { max-width: 1440px; margin: 0 auto; padding: 0 48px; overflow: hidden; }
.instagram-grid { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
.instagram-grid::-webkit-scrollbar { display: none; }
.instagram-grid a { position: relative; flex: 0 0 clamp(210px, 18.9%, 270px); min-width: 0; overflow: hidden; border-radius: 18px; scroll-snap-align: start; }
.instagram-grid a::before, .instagram-grid a::after { content: ""; position: absolute; z-index: 1; opacity: 0; transition: opacity .3s ease, transform .3s ease; pointer-events: none; }
.instagram-grid a::after { right: 15px; bottom: 13px; width: 34px; height: 34px; border-radius: 50%; background: rgba(252,249,245,.9); transform: translateY(8px); }
.instagram-grid a::before { right: 28px; bottom: 26px; width: 8px; height: 8px; border-top: 1.7px solid var(--brown); border-right: 1.7px solid var(--brown); transform: translateY(8px) rotate(45deg); }
.instagram-grid img { aspect-ratio: 1; object-fit: cover; transition: transform .4s ease; }
.instagram-grid a:hover img { transform: scale(1.06); }
.instagram-grid a:hover::before, .instagram-grid a:hover::after { opacity: 1; transform: none; }
.brands { padding: 40px 48px; background: var(--white); border-top: 1px solid rgba(57,35,33,.06); }
.brand-list { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; gap: 20px; text-align: center; font: 600 20px/1.2 var(--serif); letter-spacing: .03em; }

.site-footer { color: #f9eee8; background: linear-gradient(135deg, #321b19 0%, #42211e 100%); }
.footer-inner { max-width: 1440px; margin: 0 auto; padding: 64px 48px 48px; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 45px; }
.brand-footer { margin-bottom: 22px; }
.brand-footer .brand-mark { border-color: #f9eee8; }
.footer-brand p { max-width: 340px; margin-bottom: 0; color: rgba(249,238,232,.7); font-size: 15px; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h3 { margin-bottom: 11px; color: #fff; font: 600 25px/1 var(--serif); }
.footer-column a, .footer-column span { color: rgba(249,238,232,.72); font-size: 15px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { max-width: 1440px; margin: 0 auto; padding: 17px 48px 24px; display: flex; justify-content: space-between; border-top: 1px solid rgba(249,238,232,.18); color: rgba(249,238,232,.56); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@keyframes hero-orb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -10px, 0) scale(1.04); }
}

/* Shared inner-page system */
.site-page { overflow: hidden; background: var(--paper); }
.page-hero { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(46px, 7vw, 110px); min-height: 610px; padding: 92px max(48px, calc((100vw - 1440px) / 2 + 48px)); isolation: isolate; background: linear-gradient(110deg, #fffaf6 0%, #f5e4dc 100%); }
.page-hero::before { content: ""; position: absolute; z-index: -1; top: -190px; left: -150px; width: 490px; height: 490px; border: 1px solid rgba(183,131,66,.14); border-radius: 50%; box-shadow: 0 0 0 24px rgba(183,131,66,.04), 0 0 0 54px rgba(183,131,66,.025); pointer-events: none; }
.page-hero::after { content: ""; position: absolute; z-index: -1; right: -120px; bottom: -200px; width: 420px; height: 420px; border: 1px solid rgba(95,125,109,.14); border-radius: 50%; box-shadow: 0 0 0 24px rgba(95,125,109,.035); pointer-events: none; }
.page-hero-copy { position: relative; z-index: 1; max-width: 680px; }
.page-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 29px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.page-kicker span:first-child { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(95,125,109,.42); border-radius: 50%; color: var(--gold); font-size: 10px; letter-spacing: .08em; }
.page-kicker i { display: block; width: 45px; height: 1px; background: rgba(95,125,109,.45); }
.page-hero-copy .eyebrow { margin-bottom: 15px; }
.page-hero-copy h1 { max-width: 650px; margin-bottom: 23px; font-size: clamp(54px, 6vw, 88px); }
.page-hero-copy h1 em, .page-hero h2 em, .catalog-top h2 em, .shop-bottom-note h2 em, .about-cta h2 em { color: #6d3934; font-style: italic; }
.page-hero-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 30px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.page-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.page-hero-actions .button { min-height: 52px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brown); font-size: 14px; font-weight: 700; letter-spacing: .04em; }
.text-link:hover { color: var(--gold); }
.text-link .text-arrow { transition: transform .2s ease; }
.text-link:hover .text-arrow { transform: translateX(3px); }
.button-outline { border-color: rgba(57,35,33,.24); background: transparent; color: var(--brown); box-shadow: none; }
.button-outline:hover { border-color: var(--brown); background: var(--brown); color: var(--white); }
.page-hero-proof { display: flex; flex-wrap: wrap; gap: 9px 24px; margin-top: 42px; color: rgba(57,35,33,.62); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.page-hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero-proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.page-hero-art { position: relative; min-height: 440px; padding: 0 35px 34px 0; }
.page-hero-art::before { content: ""; position: absolute; inset: 28px 0 0 28px; border: 1px solid rgba(183,131,66,.25); border-radius: 30px 30px 120px 30px; transform: rotate(3deg); }
.page-hero-art-main { position: relative; z-index: 1; height: 100%; min-height: 405px; overflow: hidden; border-radius: 30px 30px 120px 30px; background: #eee3d8; box-shadow: 0 28px 48px rgba(74,48,40,.15); }
.page-hero-art-main img { height: 100%; min-height: 405px; object-fit: cover; transition: transform .65s ease; }
.page-hero-art:hover .page-hero-art-main img { transform: scale(1.045); }
.page-hero-art-card { position: absolute; z-index: 3; right: -3px; bottom: 0; display: grid; gap: 3px; width: 230px; padding: 18px 20px; border: 1px solid rgba(57,35,33,.12); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 15px 30px rgba(57,35,33,.14); backdrop-filter: blur(10px); }
.page-hero-art-card span, .page-hero-art-card small { color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.page-hero-art-card strong { font: 500 23px/1.08 var(--serif); }
.page-hero-art-card small { color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: .02em; text-transform: none; }
.page-hero-art-note { position: absolute; z-index: 3; top: 24px; right: -5px; color: var(--brown); font-size: 11px; font-weight: 700; letter-spacing: .14em; writing-mode: vertical-rl; }
.shop-page-hero { background: linear-gradient(115deg, #fbf8f3 0%, #f7e7de 54%, #ecd6cc 100%); }
.shop-trust { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1440px; margin: 0 auto; padding: 28px 48px; border-bottom: 1px solid rgba(57,35,33,.08); background: var(--white); }
.shop-trust > div { display: grid; grid-template-columns: 31px 1fr; column-gap: 11px; align-items: center; padding: 4px 25px; border-right: 1px solid rgba(57,35,33,.11); }
.shop-trust > div:last-child { border-right: 0; }
.trust-icon { grid-row: span 2; display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(183,131,66,.45); border-radius: 50%; color: var(--gold); font-size: 16px; }
.shop-trust strong { font-size: 13px; }
.shop-trust small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.shop-catalog { max-width: 1440px; padding-top: 96px; padding-bottom: 106px; }
.catalog-top { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.catalog-top h2 { max-width: 560px; margin-bottom: 12px; font-size: clamp(40px, 4vw, 61px); }
.catalog-top .section-lede { margin: 0; font-size: 15px; }
.shop-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 540px; }
.shop-filter { padding: 10px 16px; border: 1px solid rgba(57,35,33,.16); border-radius: 999px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .04em; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.shop-filter:hover, .shop-filter.is-active { border-color: var(--brown); background: var(--brown); color: var(--white); }
.shop-card { display: flex; flex-direction: column; }
.shop-card.is-filtered { display: none; }
.product-card-media { position: relative; display: block; overflow: hidden; background: #efe6dc; }
.product-card-media img { aspect-ratio: 1.08; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.product-card-media:hover img { filter: saturate(1.07); transform: scale(1.045); }
.product-badge { position: absolute; z-index: 2; top: 15px; left: 15px; padding: 7px 10px; border: 1px solid rgba(57,35,33,.12); border-radius: 999px; background: rgba(252,249,245,.84); color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.shop-card .cart-float { top: 15px; right: 15px; }
.shop-card .product-card-body { display: flex; flex: 1; flex-direction: column; padding: 19px 20px 21px; }
.product-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.shop-card .product-type { margin: 0; font-size: 11px; letter-spacing: .12em; }
.shop-card .stars { margin: 0; font-size: 11px; letter-spacing: .08em; }
.shop-card h3 { margin-bottom: 7px; font-size: 27px; }
.shop-card h3 a:hover { color: var(--gold); }
.shop-card-description { min-height: 49px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.product-buy { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(57,35,33,.1); }
.product-buy > strong { font-size: 14px; }
.product-link { display: inline-flex; align-items: center; gap: 7px; color: var(--brown); font-size: 12px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.product-link:hover { color: var(--gold); }
.shop-bottom-note { display: grid; grid-template-columns: 1.1fr .9fr auto; align-items: center; gap: 35px; padding: 74px max(48px, calc((100vw - 1440px) / 2 + 48px)); background: var(--brown); color: var(--white); }
.shop-bottom-note .eyebrow { margin-bottom: 12px; }
.shop-bottom-note h2 { margin: 0; font-size: clamp(35px, 4vw, 58px); }
.shop-bottom-note h2 em { color: var(--peach); }
.shop-bottom-note > p { max-width: 390px; margin: 0; color: rgba(255,255,255,.7); font-size: 15px; }
.shop-bottom-note .button-outline { border-color: rgba(255,255,255,.45); color: var(--white); }
.shop-bottom-note .button-outline:hover { border-color: var(--white); background: var(--white); color: var(--brown); }

/* Product detail */
.breadcrumbs { display: flex; align-items: center; gap: 10px; max-width: 1440px; margin: 0 auto; padding: 28px 48px 0; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
.breadcrumbs a:hover { color: var(--gold); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: clamp(48px, 7vw, 110px); padding-top: 45px; padding-bottom: 100px; }
.product-gallery { min-width: 0; }
.product-gallery-main { position: relative; overflow: hidden; border-radius: 28px 28px 120px 28px; background: #eee6dc; box-shadow: 0 22px 44px rgba(74,48,40,.11); }
.product-gallery-main img { aspect-ratio: 1; object-fit: cover; transition: transform .6s ease; }
.product-gallery-main:hover img { transform: scale(1.04); }
.product-gallery-main .product-badge { top: 20px; left: 20px; }
.product-gallery-caption { display: flex; justify-content: space-between; padding: 14px 4px 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.product-detail-copy { min-width: 0; }
.product-detail-copy h1 { margin-bottom: 17px; font-size: clamp(48px, 5.4vw, 78px); }
.detail-rating { display: flex; align-items: center; gap: 13px; margin-bottom: 23px; color: var(--muted); font-size: 13px; }
.detail-rating .stars { margin: 0; font-size: 14px; }
.detail-description { max-width: 540px; margin-bottom: 27px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.detail-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 560px; margin-bottom: 30px; }
.detail-benefits span { display: grid; gap: 7px; padding-top: 11px; border-top: 1px solid rgba(57,35,33,.17); color: var(--muted); font-size: 11px; line-height: 1.35; }
.detail-benefits b { color: var(--gold); font-size: 10px; letter-spacing: .1em; }
.detail-purchase { max-width: 560px; padding: 21px 22px 22px; border: 1px solid rgba(57,35,33,.11); border-radius: 20px; background: #f8e9e4; }
.detail-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 17px; }
.detail-price-row strong { font: 600 25px/1 var(--serif); }
.detail-price-row span { color: var(--muted); font-size: 11px; }
.purchase-row { display: flex; gap: 10px; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid rgba(57,35,33,.18); border-radius: 999px; background: var(--white); }
.quantity-control button { width: 38px; height: 48px; padding: 0; border: 0; background: transparent; color: var(--brown); font-size: 22px; }
.quantity-control input { width: 30px; height: 48px; padding: 0; border: 0; background: transparent; color: var(--brown); font-size: 14px; text-align: center; outline: 0; }
.detail-add { flex: 1; min-height: 48px; }
.detail-notes { margin-top: 23px; border-top: 1px solid rgba(57,35,33,.13); }
.detail-notes details { border-bottom: 1px solid rgba(57,35,33,.13); }
.detail-notes summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; }
.detail-notes summary::-webkit-details-marker { display: none; }
.detail-notes summary::after { content: "+"; color: var(--gold); font-size: 19px; font-weight: 400; }
.detail-notes details[open] summary::after { content: "−"; }
.detail-notes p { max-width: 510px; margin: -2px 0 15px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.detail-notes a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.product-details-band { display: grid; grid-template-columns: 1.05fr .9fr auto; align-items: center; gap: 40px; padding: 67px max(48px, calc((100vw - 1440px) / 2 + 48px)); background: #f4e2dd; }
.product-details-band h2 { max-width: 500px; margin: 0; font-size: clamp(35px, 4vw, 57px); }
.product-details-band h2 em { color: #6d3934; font-style: italic; }
.product-details-band > p { max-width: 390px; margin: 0; color: var(--muted); font-size: 15px; }
.related-products { padding-top: 91px; padding-bottom: 102px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.related-card { position: relative; overflow: hidden; border-radius: 20px; background: var(--paper-deep); }
.related-card img { aspect-ratio: 1.15; object-fit: cover; transition: transform .5s ease; }
.related-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(28,18,17,.74)); pointer-events: none; }
.related-card:hover img { transform: scale(1.06); }
.related-card span, .related-card strong { position: absolute; z-index: 1; left: 22px; color: var(--white); }
.related-card span { bottom: 56px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.related-card strong { bottom: 24px; font: 500 25px/1 var(--serif); }

/* FAQ, about and contact */
.page-hero-simple { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); min-height: 530px; }
.page-hero-simple .page-hero-copy { max-width: 760px; }
.page-hero-card, .contact-hero-card { position: relative; max-width: 430px; justify-self: end; padding: 39px 42px 34px; border: 1px solid rgba(57,35,33,.1); border-radius: 28px 28px 28px 96px; background: rgba(255,255,255,.68); box-shadow: 0 21px 40px rgba(74,48,40,.1); }
.page-card-number { position: absolute; top: 23px; right: 27px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.page-hero-card .eyebrow, .contact-hero-card .eyebrow { margin-bottom: 14px; }
.page-hero-card h2, .contact-hero-card h2 { max-width: 310px; margin-bottom: 17px; font-size: clamp(34px, 4vw, 52px); }
.page-hero-card > p:not(.eyebrow), .contact-hero-card > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.page-card-line { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(57,35,33,.15); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.page-card-line strong { color: var(--brown); font: 500 25px/1 var(--serif); letter-spacing: 0; text-transform: none; }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 9vw, 150px); padding-top: 102px; padding-bottom: 104px; }
.faq-intro { align-self: start; position: sticky; top: 125px; }
.faq-intro h2 { max-width: 380px; margin-bottom: 18px; font-size: clamp(37px, 4vw, 57px); }
.faq-intro > p { max-width: 390px; margin-bottom: 26px; color: var(--muted); font-size: 15px; }
.faq-contact-note { display: grid; gap: 3px; margin-top: 34px; padding-top: 17px; border-top: 1px solid rgba(57,35,33,.13); color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.faq-contact-note strong { color: var(--brown); font-size: 12px; }
.faq-list { border-top: 1px solid rgba(57,35,33,.18); }
.faq-item { border-bottom: 1px solid rgba(57,35,33,.18); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; list-style: none; font: 500 24px/1.2 var(--serif); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border: 1px solid rgba(183,131,66,.4); border-radius: 50%; color: var(--gold); font: 400 20px/1 var(--sans); }
.faq-item[open] summary::after { content: "−"; background: var(--brown); color: var(--white); }
.faq-item p { max-width: 690px; margin: -2px 52px 24px 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-bottom { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 25px 48px; background: var(--paper-deep); color: var(--muted); font-size: 13px; }
.faq-bottom a { display: inline-flex; align-items: center; gap: 7px; color: var(--brown); font-weight: 700; }
.about-page-hero { background: linear-gradient(110deg, #fbfaf7 0%, #f4e5de 100%); }
.about-hero-art { position: relative; min-height: 440px; padding: 0 35px 34px 0; }
.about-hero-art::before { content: ""; position: absolute; inset: 27px 0 0 27px; border: 1px solid rgba(95,125,109,.28); border-radius: 30px 120px 30px 30px; transform: rotate(-3deg); }
.about-hero-art img { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 405px; object-fit: cover; border-radius: 30px 120px 30px 30px; box-shadow: 0 25px 48px rgba(74,48,40,.14); }
.about-hero-caption { position: absolute; z-index: 3; right: -2px; bottom: 0; max-width: 190px; padding: 16px 18px; border-radius: 15px; background: var(--brown); color: var(--white); font: 500 21px/1.08 var(--serif); }
.about-hero-stamp { position: absolute; z-index: 3; top: 20px; left: -16px; display: grid; width: 66px; height: 66px; place-items: center; border: 1px solid rgba(183,131,66,.6); border-radius: 50%; background: var(--paper); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.story-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 9vw, 155px); padding-top: 110px; padding-bottom: 115px; }
.story-statement h2 { max-width: 510px; margin: 0; font-size: clamp(43px, 5vw, 72px); }
.story-copy { padding-top: 18px; }
.story-copy p { max-width: 520px; margin-bottom: 20px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.story-copy .lead { color: var(--ink); font: 500 25px/1.35 var(--serif); }
.story-copy .text-link { margin-top: 10px; }
.values-section { background: #f4e2dd; }
.values-inner { padding-top: 91px; padding-bottom: 99px; }
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.value-card { min-height: 245px; padding: 25px 25px 28px; border: 1px solid rgba(57,35,33,.11); border-radius: 22px; background: rgba(255,255,255,.58); }
.value-card > span { display: grid; width: 33px; height: 33px; margin-bottom: 42px; place-items: center; border: 1px solid rgba(183,131,66,.45); border-radius: 50%; color: var(--gold); font-size: 10px; font-weight: 700; }
.value-card h3 { margin-bottom: 11px; font: 500 29px/1 var(--serif); }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.about-quote { display: grid; min-height: 390px; place-items: center; padding: 65px 48px; background: var(--brown); color: var(--white); text-align: center; }
.about-quote > div { position: relative; max-width: 750px; }
.about-quote .quote-mark { position: static; display: block; height: 43px; color: var(--gold); font-size: 74px; }
.about-quote p { margin-bottom: 17px; font: 500 clamp(35px, 4.5vw, 63px)/1.08 var(--serif); }
.about-quote > div > span:last-child { color: rgba(255,255,255,.62); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about-cta { display: grid; justify-items: center; padding-top: 97px; padding-bottom: 106px; text-align: center; }
.about-cta .eyebrow { margin-bottom: 13px; }
.about-cta h2 { max-width: 680px; margin-bottom: 27px; font-size: clamp(43px, 5vw, 72px); }
.contact-page-hero { background: linear-gradient(115deg, #fffaf6 0%, #f3e0db 100%); }
.contact-hero-details { display: flex; flex-wrap: wrap; gap: 9px 27px; color: var(--muted); font-size: 12px; }
.contact-hero-details a { color: var(--brown); font-weight: 700; }
.contact-hero-details a:hover { color: var(--gold); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(55px, 9vw, 150px); padding-top: 105px; padding-bottom: 113px; }
.contact-intro h2 { margin-bottom: 16px; font-size: clamp(43px, 5vw, 69px); }
.contact-intro > p { max-width: 400px; margin-bottom: 38px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-info-list { display: grid; gap: 21px; max-width: 350px; }
.contact-info-list > div { display: grid; gap: 3px; padding-top: 13px; border-top: 1px solid rgba(57,35,33,.14); }
.contact-info-list span { color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-info-list a, .contact-info-list strong { color: var(--brown); font-size: 14px; font-weight: 600; }
.contact-info-list a:hover { color: var(--gold); }
.contact-form { padding: 30px 32px 33px; border: 1px solid rgba(57,35,33,.1); border-radius: 24px 24px 24px 86px; background: var(--white); box-shadow: 0 18px 38px rgba(74,48,40,.08); }
.form-row { display: grid; gap: 7px; margin-bottom: 18px; }
.form-row label { color: var(--brown); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(57,35,33,.2); border-radius: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-submit-row { display: flex; align-items: center; gap: 17px; margin-top: 23px; }
.form-submit-row .button { min-height: 49px; }
.form-submit-row p { margin: 0; color: var(--green); font-size: 12px; line-height: 1.4; }
.contact-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 61px max(48px, calc((100vw - 1440px) / 2 + 48px)); background: #f4e2dd; }
.contact-bottom .eyebrow { margin-bottom: 9px; }
.contact-bottom h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); }

@media (max-width: 900px) {
  .header-inner { padding: 14px 24px; }
  .primary-nav { gap: 20px; font-size: 12px; }
  .header-actions { min-width: auto; }
  .section { padding-right: 24px; padding-left: 24px; }
  .mindful { gap: 32px; }
  .mindful-copy { padding-right: 0; }
  .footer-inner { padding-right: 24px; padding-left: 24px; gap: 25px; }
  .footer-bottom { padding-right: 24px; padding-left: 24px; }
  .page-hero { gap: 45px; padding-right: 24px; padding-left: 24px; }
  .shop-trust { padding-right: 24px; padding-left: 24px; }
  .catalog-top { align-items: flex-start; flex-direction: column; gap: 25px; }
  .shop-filters { justify-content: flex-start; max-width: none; }
  .shop-bottom-note, .product-details-band, .contact-bottom { padding-right: 24px; padding-left: 24px; }
  .product-detail { gap: 45px; }
  .faq-layout, .contact-layout { gap: 50px; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .site-header { position: relative; }
  .header-inner { min-height: 75px; padding: 12px 18px; }
  .brand { min-width: auto; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 8px; }
  .primary-nav { position: absolute; top: 75px; right: 0; left: 0; display: grid; gap: 0; padding: 8px 18px 15px; background: var(--paper); border-bottom: 1px solid rgba(57,35,33,.08); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a { padding: 12px 0; }
  .header-actions { gap: 8px; }
  .header-actions .icon-button:first-child, .header-actions .icon-button:nth-child(2) { display: none; }
  .menu-toggle { display: block; }
  .search-drawer { padding-right: 18px; padding-left: 18px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { min-height: 0; }
  .hero-media img { aspect-ratio: 1.16; max-height: 390px; }
  .hero-copy { min-height: 470px; padding: 42px 22px; }
  .hero-copy-meta { margin-bottom: 34px; }
  .hero-scroll-cue { display: none; }
  h1 { font-size: clamp(43px, 13vw, 66px); }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-proof { font-size: 11px; gap: 10px; }
  .section { padding-top: 65px; padding-bottom: 65px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2 { font-size: 43px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card h3 { font-size: 22px; }
  .product-card-body { padding: 14px 13px 17px; }
  .cart-float { top: 12px; right: 12px; opacity: 1; transform: none; }
  .collection-slider-inner { padding: 65px 18px 35px; }
  .collection-slider-head { align-items: flex-start; flex-direction: column; gap: 21px; margin-bottom: 24px; }
  .collection-slider-head h2 { font-size: 43px; }
  .slider-controls { width: 100%; }
  .slider-progress { margin-right: auto; }
  .collection-slide { flex-basis: 84%; }
  .collection-slide img { aspect-ratio: 1.05; }
  .slider-footer { display: grid; gap: 8px; margin-top: 13px; }
  .feature-intro { grid-template-columns: 1fr; gap: 12px; margin-top: 55px; margin-bottom: 20px; }
  .feature-intro > p { max-width: 390px; }
  .feature-intro > span { margin-top: 2px; }
  .feature-image-grid { gap: 9px; margin-top: 20px; }
  .feature-image img { aspect-ratio: 1.05; }
  .ratings { padding-top: 55px; }
  .image-strip { grid-template-columns: none; }
  .image-strip img { aspect-ratio: auto; }
  .mindful { grid-template-columns: 1fr; gap: 30px; padding-top: 75px; padding-bottom: 75px; }
  .mindful-visual { padding: 10px 20px 29px 0; }
  .mindful-visual::before { left: 12px; border-radius: 24px 24px 90px 24px; }
  .mindful-image { border-radius: 24px 24px 90px 24px; }
  .mindful-image img { min-height: 0; aspect-ratio: .9; }
  .mindful-image-note { right: 41px; bottom: 45px; font-size: 9px; }
  .mindful-stamp { width: 88px; height: 88px; }
  .mindful-stamp strong { font-size: 21px; }
  .mindful-stamp span { font-size: 9px; }
  .mindful-points { gap: 8px; margin-bottom: 25px; }
  .mindful-points small { font-size: 11px; }
  .featured-product { align-items: flex-start; gap: 12px; padding: 16px; }
  .featured-product > div:nth-child(2) { padding-right: 78px; }
  .featured-product-badge { position: absolute; top: 12px; right: 12px; font-size: 9px; }
  .mindful-copy h2 { font-size: 53px; }
  .testimonials-inner { gap: 30px; padding-top: 70px; padding-bottom: 75px; }
  .testimonial-intro h2 { max-width: none; font-size: 53px; }
  .testimonial-lede { max-width: 390px; }
  .testimonial-score { max-width: 100%; }
  .testimonial-score-badge { display: none; }
  .testimonial-stage { padding: 20px 0 0; }
  .testimonial-stage::before { inset: 8px 0 53px 10px; border-radius: 27px; }
  .testimonial-orbit { top: -10px; right: -28px; width: 185px; height: 185px; }
  .testimonial-slide { min-height: 300px; padding: 50px 28px 32px; border-radius: 23px 23px 23px 66px; }
  .testimonial-slide-label { display: none; }
  .quote-mark { top: 22px; left: 25px; font-size: 65px; }
  .slide-index { top: 28px; right: 25px; }
  .testimonial-slide blockquote { margin: 28px 0 31px; font-size: 30px; }
  .testimonial-controls { margin-top: 17px; }
  .testimonial-dots { gap: 11px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card h3 { font-size: 25px; }
  .instagram-heading { align-items: flex-start; flex-direction: column; gap: 20px; padding-right: 18px; padding-left: 18px; }
  .instagram-controls { width: 100%; }
  .instagram-controls .slider-progress { margin-right: auto; }
  .instagram-viewport { padding-right: 18px; padding-left: 18px; }
  .instagram-grid { grid-template-columns: none; }
  .instagram-grid a { flex-basis: 78%; }
  .brand-list { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  .brand-list span:last-child { grid-column: 1 / -1; }
  .brands { padding-right: 18px; padding-left: 18px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); padding: 48px 18px 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column h3 { font-size: 19px; }
  .footer-bottom { padding-right: 18px; padding-left: 18px; display: grid; gap: 6px; }
  .page-hero { grid-template-columns: 1fr; gap: 38px; min-height: 0; padding: 68px 18px 76px; }
  .page-hero-copy h1 { font-size: clamp(48px, 14vw, 68px); }
  .page-hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .page-kicker { margin-bottom: 23px; }
  .page-hero-proof { margin-top: 32px; font-size: 10px; }
  .page-hero-art, .about-hero-art { min-height: 330px; padding-right: 20px; padding-bottom: 25px; }
  .page-hero-art-main, .about-hero-art img { min-height: 305px; border-radius: 24px 24px 88px 24px; }
  .page-hero-art::before, .about-hero-art::before { inset: 20px 0 0 15px; border-radius: 24px 24px 88px 24px; }
  .page-hero-art-card { right: -1px; width: 188px; padding: 14px 15px; }
  .page-hero-art-card strong { font-size: 19px; }
  .page-hero-art-note { top: 15px; right: -1px; font-size: 9px; }
  .page-hero-simple { min-height: 0; }
  .page-hero-card, .contact-hero-card { max-width: none; justify-self: stretch; padding: 30px 27px 27px; border-radius: 23px 23px 23px 72px; }
  .page-hero-card h2, .contact-hero-card h2 { font-size: 39px; }
  .shop-trust { grid-template-columns: repeat(2, 1fr); padding: 18px; }
  .shop-trust > div { padding: 10px 13px; border-right: 0; }
  .shop-trust > div:nth-child(-n+2) { border-bottom: 1px solid rgba(57,35,33,.1); }
  .shop-trust > div:nth-child(odd) { border-right: 1px solid rgba(57,35,33,.1); }
  .shop-trust strong { font-size: 11px; }
  .shop-trust small { font-size: 10px; }
  .shop-catalog { padding-top: 65px; padding-bottom: 75px; }
  .catalog-top h2 { font-size: 43px; }
  .shop-filter { font-size: 11px; padding: 9px 12px; }
  .shop-card .product-card-body { padding: 15px 14px 17px; }
  .shop-card h3 { font-size: 22px; }
  .shop-card-description { min-height: 0; font-size: 12px; }
  .product-buy { align-items: flex-start; flex-direction: column; gap: 10px; }
  .product-link { font-size: 11px; }
  .shop-bottom-note, .product-details-band { grid-template-columns: 1fr; gap: 20px; padding: 57px 18px; }
  .shop-bottom-note h2, .product-details-band h2 { font-size: 43px; }
  .breadcrumbs { padding: 21px 18px 0; font-size: 11px; }
  .product-detail { grid-template-columns: 1fr; gap: 42px; padding-top: 35px; padding-bottom: 73px; }
  .product-gallery-main { border-radius: 24px 24px 90px 24px; }
  .product-gallery-caption { font-size: 9px; }
  .product-detail-copy h1 { font-size: 53px; }
  .detail-description { font-size: 15px; }
  .detail-benefits { gap: 8px; }
  .detail-benefits span { font-size: 10px; }
  .detail-purchase { padding: 17px 15px 18px; }
  .detail-price-row { align-items: flex-start; flex-direction: column; gap: 5px; }
  .purchase-row { align-items: stretch; flex-direction: column; }
  .quantity-control { justify-content: space-between; }
  .detail-add { width: 100%; }
  .related-products { padding-top: 65px; padding-bottom: 75px; }
  .related-grid { grid-template-columns: 1fr; }
  .faq-layout, .contact-layout, .story-section { grid-template-columns: 1fr; gap: 45px; padding-top: 70px; padding-bottom: 75px; }
  .faq-intro { position: static; }
  .faq-intro h2, .contact-intro h2 { font-size: 47px; }
  .faq-item summary { padding: 18px 0; font-size: 21px; }
  .faq-item p { margin-right: 35px; font-size: 14px; }
  .faq-bottom { align-items: flex-start; flex-direction: column; padding: 24px 18px; }
  .about-hero-art { min-height: 330px; }
  .about-hero-caption { right: -1px; font-size: 18px; }
  .about-hero-stamp { left: -8px; width: 57px; height: 57px; font-size: 9px; }
  .story-statement h2 { font-size: 49px; }
  .story-copy { padding-top: 0; }
  .values-inner { padding-top: 65px; padding-bottom: 73px; }
  .values-grid { grid-template-columns: 1fr; gap: 10px; }
  .value-card { min-height: 0; padding: 21px; }
  .value-card > span { margin-bottom: 27px; }
  .about-quote { min-height: 330px; padding: 55px 18px; }
  .about-cta { padding-top: 70px; padding-bottom: 75px; }
  .about-cta h2 { font-size: 49px; }
  .contact-layout { padding-top: 70px; }
  .contact-form { padding: 24px 19px 25px; border-radius: 22px 22px 22px 67px; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .contact-bottom { align-items: flex-start; flex-direction: column; padding: 50px 18px; }
  .contact-bottom h2 { font-size: 42px; }
}
