:root {
  --forest: #173c24;
  --forest-2: #0d2a18;
  --forest-3: #245c37;
  --cream: #f4e8ce;
  --cream-2: #fff8e9;
  --paper: #efe0bf;
  --red: #a8322d;
  --gold: #c99d43;
  --ink: #192218;
  --muted: #687064;
  --white: #fffdf8;
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(16, 37, 22, .18);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script: 'Brush Script MT', 'Segoe Script', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream-2); }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream-2); overflow-x: hidden; }
body.menu-open, body.cart-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--red); color: white; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .045; z-index: 50; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }
.scroll-progress { position: fixed; left: 0; right: 0; top: 0; z-index: 200; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--gold)); box-shadow: 0 0 16px rgba(201,157,67,.65); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 18px clamp(20px, 4vw, 68px); transition: background .35s ease, padding .35s ease, box-shadow .35s ease, backdrop-filter .35s ease; }
.site-header.scrolled { padding-top: 11px; padding-bottom: 11px; background: rgba(255, 248, 233, .88); box-shadow: 0 8px 35px rgba(30,40,25,.08); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 11px; z-index: 2; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: var(--cream); box-shadow: inset 0 0 0 5px rgba(255,255,255,.1), 0 8px 20px rgba(168,50,45,.2); font-size: 16px; transform: rotate(-5deg); }
.brand strong { display: block; font-family: var(--serif); color: var(--forest); font-size: 20px; letter-spacing: -.5px; line-height: 1; }
.brand small { display: block; margin-top: 4px; color: var(--red); text-transform: uppercase; font-weight: 800; letter-spacing: 1.4px; font-size: 8px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); font-size: 13px; font-weight: 750; color: var(--forest); }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; bottom: 5px; height: 1px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-button { position: relative; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.icon-button { width: 45px; height: 45px; border-radius: 50%; background: rgba(23,60,36,.08); transition: transform .25s ease, background .25s ease; }
.icon-button:hover { transform: translateY(-2px); background: rgba(23,60,36,.14); }
.icon-button svg { width: 20px; fill: none; stroke: var(--forest); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { position: absolute; top: 2px; right: 1px; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--red); color: white; font-size: 9px; font-weight: 900; transform: scale(0); transition: transform .25s cubic-bezier(.2,.8,.2,1.3); }
.cart-count.has-items { transform: scale(1); }
.menu-button { display: none; width: 44px; height: 44px; }
.menu-button span { width: 22px; height: 2px; background: var(--forest); transition: transform .3s ease; }
.menu-button span + span { margin-top: 5px; }
.menu-button.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; background: var(--cream-2); transform: translateY(-110%); transition: transform .65s cubic-bezier(.77,0,.18,1); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(32px, 8vw, 54px); color: var(--forest); }

.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); align-items: center; gap: clamp(20px, 4vw, 72px); padding: 120px clamp(22px, 6vw, 92px) 70px; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 78% 40%, rgba(201,157,67,.2), transparent 25%), linear-gradient(135deg, #fff9ec 0%, #f3e4c7 55%, #e8d4ac 100%); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -3; opacity: .14; background-image: linear-gradient(rgba(23,60,36,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(23,60,36,.12) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-copy { position: relative; z-index: 3; max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--red); text-transform: uppercase; letter-spacing: 2.1px; font-size: 10px; font-weight: 900; }
.eyebrow > span { display: inline-block; width: 36px; height: 1px; background: currentColor; }
.eyebrow.centered { justify-content: center; }
.hero h1 { max-width: 760px; margin: 18px 0 22px; font-family: var(--serif); font-size: clamp(54px, 7.2vw, 112px); line-height: .88; letter-spacing: -5px; color: var(--forest); }
.hero h1 em { display: block; color: var(--red); font-family: var(--script); font-size: .74em; font-weight: 400; letter-spacing: -2px; line-height: 1.12; transform: rotate(-2deg); }
.hero-lede { max-width: 650px; margin: 0; font-family: var(--serif); font-size: clamp(18px, 2vw, 24px); line-height: 1.55; color: #485044; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 24px; border: 0; border-radius: 999px; font-weight: 900; letter-spacing: .2px; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.button-primary { background: var(--forest); color: var(--white); box-shadow: 0 14px 32px rgba(23,60,36,.24); }
.button-primary:hover { transform: translateY(-3px); background: var(--forest-3); box-shadow: 0 18px 40px rgba(23,60,36,.28); }
.text-link { font-size: 13px; font-weight: 900; color: var(--forest); }
.text-link span { display: inline-block; margin-left: 7px; color: var(--red); transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px, 4px); }
.hero-badges { display: flex; gap: clamp(18px, 3vw, 42px); margin-top: 46px; padding-top: 28px; border-top: 1px solid rgba(23,60,36,.2); }
.hero-badges div { display: grid; gap: 2px; }
.hero-badges strong { color: var(--forest); font-family: var(--serif); font-size: 24px; }
.hero-badges span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 1.1px; font-weight: 800; }
.hero-visual { position: relative; z-index: 1; min-height: 720px; display: grid; place-items: center; perspective: 1400px; }
.image-halo { position: absolute; width: min(46vw, 650px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,244,205,.85) 0%, rgba(201,157,67,.28) 42%, transparent 70%); filter: blur(3px); animation: haloPulse 6s ease-in-out infinite; }
.product-stage { position: relative; width: min(41vw, 570px); transform-style: preserve-3d; transition: transform .15s ease-out; animation: floatProduct 7s ease-in-out infinite; }
.product-stage img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 34px 34px rgba(53,39,20,.22)); border-radius: 20px; }
.product-shadow { position: absolute; z-index: 0; left: 12%; right: 12%; bottom: 3%; height: 7%; border-radius: 50%; background: rgba(29,33,20,.34); filter: blur(24px); transform: translateZ(-40px); }
.stage-gloss { position: absolute; inset: 7% 7% 4%; z-index: 3; pointer-events: none; border-radius: 36px; background: linear-gradient(112deg, transparent 24%, rgba(255,255,255,.18) 35%, transparent 47%); transform: translateZ(35px); opacity: .8; }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; background: rgba(255,249,236,.76); backdrop-filter: blur(12px); box-shadow: 0 15px 32px rgba(61,45,20,.12); font-family: var(--serif); color: var(--forest); font-size: 13px; animation: noteFloat 5s ease-in-out infinite; }
.floating-note span { color: var(--red); }
.note-one { top: 25%; left: 0; }
.note-two { right: -2%; bottom: 24%; animation-delay: -2.3s; }
.hero-orb { position: absolute; z-index: -2; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 240px; height: 240px; left: -90px; bottom: -80px; background: rgba(168,50,45,.08); }
.orb-two { width: 170px; height: 170px; top: 12%; right: -60px; border: 1px solid rgba(23,60,36,.12); }
.floating-herbs span { position: absolute; color: rgba(23,60,36,.17); animation: drift 10s ease-in-out infinite; }
.floating-herbs span:nth-child(1) { left: 4%; top: 21%; font-size: 24px; }
.floating-herbs span:nth-child(2) { left: 43%; top: 17%; font-size: 38px; animation-delay: -2s; }
.floating-herbs span:nth-child(3) { left: 47%; bottom: 13%; font-size: 18px; animation-delay: -4s; }
.floating-herbs span:nth-child(4) { right: 5%; top: 17%; font-size: 28px; animation-delay: -6s; }
.floating-herbs span:nth-child(5) { right: 40%; bottom: 7%; font-size: 26px; animation-delay: -8s; }
.hero-scroll { position: absolute; left: 50%; bottom: 24px; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(23,60,36,.55); font-size: 9px; text-transform: uppercase; letter-spacing: 1.7px; font-weight: 800; }
.hero-scroll span { position: relative; width: 1px; height: 32px; background: rgba(23,60,36,.25); overflow: hidden; }
.hero-scroll span::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--red); animation: scrollLine 2s ease-in-out infinite; }

.ticker { overflow: hidden; background: var(--forest); color: var(--cream); border-block: 1px solid rgba(255,255,255,.08); }
.ticker-track { display: flex; align-items: center; width: max-content; padding: 17px 0; animation: ticker 28s linear infinite; }
.ticker span { font-family: var(--serif); font-size: 15px; text-transform: uppercase; letter-spacing: 3px; white-space: nowrap; }
.ticker i { margin: 0 30px; color: #cf6157; font-style: normal; }

.section { padding: clamp(80px, 11vw, 160px) clamp(22px, 6vw, 92px); }
.story { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr); gap: clamp(55px, 10vw, 150px); align-items: center; background: var(--white); }
.story-image { position: relative; max-width: 560px; justify-self: center; }
.image-frame { position: relative; overflow: hidden; border-radius: 280px 280px 30px 30px; box-shadow: var(--shadow); background: var(--paper); }
.image-frame::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); border-radius: inherit; pointer-events: none; }
.image-frame img { width: 100%; height: min(76vh, 810px); object-fit: cover; object-position: 50% center; transform: scale(1.03); transition: transform 1s ease; }
.story-image:hover img { transform: scale(1.07); }
.story-seal { position: absolute; right: -46px; bottom: 9%; width: 142px; height: 142px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--red); color: var(--cream); border: 7px solid var(--white); box-shadow: 0 18px 40px rgba(168,50,45,.22); text-transform: uppercase; text-align: center; letter-spacing: 1px; font-size: 8px; animation: sealSpin 22s linear infinite; }
.story-seal strong { margin: 4px 0; font-family: var(--script); text-transform: none; letter-spacing: 0; font-size: 25px; }
.story-copy h2, .section-heading h2, .buy-panel h2, .faq-heading h2, .newsletter h2 { margin: 16px 0 28px; color: var(--forest); font-family: var(--serif); font-size: clamp(42px, 5.2vw, 76px); line-height: 1.01; letter-spacing: -2.5px; }
.story-lines { display: grid; gap: 18px; max-width: 650px; }
.story-lines p { margin: 0; color: #4f554c; font-family: var(--serif); font-size: clamp(17px, 1.65vw, 22px); line-height: 1.65; }
.story-lines p:first-child::first-letter { float: left; margin: 8px 8px 0 0; color: var(--red); font-family: var(--serif); font-size: 72px; line-height: .7; }
.signature { margin-top: 34px; color: var(--red); font-family: var(--script); font-size: 45px; transform: rotate(-2deg); }
.signature span { font-size: 20px; }

.why { background: var(--forest); color: var(--cream); }
.section-heading { max-width: 900px; margin: 0 auto 58px; text-align: center; }
.section-heading h2 { color: var(--cream-2); }
.section-heading > p:last-child { color: rgba(244,232,206,.68); font-family: var(--serif); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 360px; padding: 34px; overflow: hidden; border: 1px solid rgba(244,232,206,.16); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); transition: transform .35s ease, background .35s ease, border-color .35s ease; }
.feature-card:hover { transform: translateY(-8px); background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04)); border-color: rgba(244,232,206,.36); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(244,232,206,.28); color: var(--gold); font-family: var(--serif); }
.feature-card h3 { margin: 86px 0 16px; color: var(--cream-2); font-family: var(--serif); font-size: 28px; }
.feature-card p { max-width: 360px; margin: 0; color: rgba(244,232,206,.64); line-height: 1.75; font-size: 14px; }
.card-line { position: absolute; right: 32px; bottom: 32px; left: 32px; height: 1px; background: linear-gradient(90deg, var(--red), transparent); transform: scaleX(.2); transform-origin: left; transition: transform .45s ease; }
.feature-card:hover .card-line { transform: scaleX(1); }
.ingredient-band { margin-top: 28px; padding: 48px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; border-radius: var(--radius-lg); background: var(--cream); color: var(--forest); }
.ingredient-kicker { color: var(--red); text-transform: uppercase; font-size: 9px; font-weight: 900; letter-spacing: 1.7px; }
.ingredient-band h3 { margin: 11px 0 0; font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); line-height: 1; }
.ingredient-list { display: flex; flex-wrap: wrap; gap: 10px; }
.ingredient-list span { padding: 12px 15px; border: 1px solid rgba(23,60,36,.18); border-radius: 999px; font-family: var(--serif); font-size: 13px; background: rgba(255,255,255,.35); }

.recipes { background: #f5ead4; }
.section-heading.split { max-width: none; margin-bottom: 50px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 50px; text-align: left; }
.section-heading.split h2 { color: var(--forest); max-width: 870px; margin-bottom: 0; }
.section-heading.split > p { align-self: end; margin: 0 0 8px; color: #65695e; font-family: var(--serif); font-size: 17px; line-height: 1.6; }
.recipe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.recipe-card { position: relative; min-height: 560px; overflow: hidden; border-radius: 160px 160px 24px 24px; outline: none; cursor: pointer; box-shadow: 0 18px 45px rgba(50,38,18,.12); }
.recipe-art { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.85), transparent 34%), linear-gradient(160deg, #d4b16c, #784e24); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.recipe-art span { font-size: clamp(86px, 10vw, 150px); filter: drop-shadow(0 26px 20px rgba(50,25,0,.24)); transform: translateY(-15px) rotate(-7deg); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.recipe-art.chicken { background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.75), transparent 33%), linear-gradient(160deg, #cf8d5d, #642d1e); }
.recipe-art.veggies { background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.74), transparent 33%), linear-gradient(160deg, #9cbd70, #244b26); }
.recipe-art.salad { background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.75), transparent 33%), linear-gradient(160deg, #d8bd77, #6e7c32); }
.recipe-overlay { position: absolute; inset: auto 0 0; min-height: 40%; display: flex; flex-direction: column; justify-content: flex-end; padding: 100px 27px 28px; color: white; background: linear-gradient(to top, rgba(10,25,14,.95), rgba(10,25,14,.72) 55%, transparent); transform: translateY(34%); transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.recipe-overlay > span { color: #e7c56e; font-size: 10px; letter-spacing: 2px; font-weight: 900; }
.recipe-overlay h3 { margin: 8px 0 8px; font-family: var(--serif); font-size: 27px; }
.recipe-overlay p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; opacity: 0; transition: opacity .35s ease .08s; }
.recipe-card:hover .recipe-art, .recipe-card:focus .recipe-art { transform: scale(1.08); filter: saturate(1.08); }
.recipe-card:hover .recipe-art span, .recipe-card:focus .recipe-art span { transform: translateY(-25px) rotate(5deg) scale(1.08); }
.recipe-card:hover .recipe-overlay, .recipe-card:focus .recipe-overlay { transform: translateY(0); }
.recipe-card:hover .recipe-overlay p, .recipe-card:focus .recipe-overlay p { opacity: 1; }

.product-buy { display: grid; grid-template-columns: 1fr 1fr; min-height: 850px; padding: 0; background: var(--white); }
.buy-visual { position: relative; min-height: 850px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #d8c39c, #f1dfbd); }
.buy-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(23,60,36,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(23,60,36,.07) 1px, transparent 1px); background-size: 44px 44px; }
.buy-glow { position: absolute; width: 68%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,246,218,.8); filter: blur(20px); }
.buy-visual img { position: relative; width: min(70%, 590px); filter: drop-shadow(0 34px 40px rgba(48,34,12,.25)); animation: floatProduct 8s ease-in-out infinite; }
.buy-badge { position: absolute; right: 9%; top: 12%; display: grid; place-items: center; width: 145px; height: 145px; border-radius: 50%; background: var(--forest); border: 7px solid rgba(255,255,255,.45); color: var(--cream); text-align: center; text-transform: uppercase; letter-spacing: 1px; font-size: 9px; line-height: 1.6; transform: rotate(8deg); box-shadow: 0 20px 40px rgba(23,60,36,.22); }
.buy-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 8vw, 120px); }
.buy-panel h2 { margin-bottom: 10px; }
.rating { display: flex; align-items: center; gap: 12px; }
.rating span { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.rating small { color: var(--muted); }
.buy-description { margin: 28px 0; color: #585e55; font-family: var(--serif); font-size: 18px; line-height: 1.7; }
.attribute-row { display: flex; flex-wrap: wrap; gap: 9px; padding-bottom: 28px; border-bottom: 1px solid rgba(23,60,36,.12); }
.attribute-row span { padding: 9px 12px; border-radius: 999px; background: rgba(23,60,36,.07); color: var(--forest); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.purchase-controls { display: grid; grid-template-columns: 116px 1fr; gap: 12px; margin-top: 30px; }
.quantity { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; min-height: 64px; border: 1px solid rgba(23,60,36,.18); border-radius: 999px; }
.quantity button, .cart-qty button { border: 0; background: transparent; cursor: pointer; font-size: 20px; }
.quantity output, .cart-qty output { text-align: center; font-weight: 900; }
.add-to-cart { min-height: 64px; justify-content: space-between; }
.add-to-cart > span { color: rgba(255,255,255,.64); font-size: 10px; text-transform: uppercase; letter-spacing: .9px; }
.microcopy { display: grid; gap: 10px; margin-top: 25px; color: var(--muted); font-size: 12px; }
.microcopy b { display: inline-block; width: 22px; color: var(--red); }

.quote-section { position: relative; min-height: 680px; display: grid; place-items: center; overflow: hidden; background: var(--red); color: var(--cream); text-align: center; }
.quote-section::before, .quote-section::after { content: ''; position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.quote-section::before { left: -180px; top: -190px; }
.quote-section::after { right: -170px; bottom: -210px; }
.quote-mark { position: absolute; top: 30px; left: 50%; color: rgba(255,255,255,.07); font-family: var(--serif); font-size: 430px; line-height: 1; transform: translateX(-50%); }
.quote-slider { position: relative; width: min(900px, 90vw); z-index: 2; }
.quote { display: none; margin: 0; }
.quote.active { display: block; animation: quoteIn .6s ease both; }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(34px, 5vw, 66px); line-height: 1.15; letter-spacing: -1.7px; }
.quote figcaption { margin-top: 32px; color: rgba(244,232,206,.65); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; }
.quote figcaption span { color: var(--cream); font-weight: 900; }
.slider-controls { margin-top: 55px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.slider-controls button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: white; cursor: pointer; transition: background .25s ease, transform .25s ease; }
.slider-controls button:hover { background: rgba(255,255,255,.12); transform: scale(1.06); }
.slider-dots { display: flex; gap: 7px; }
.slider-dots button { width: 7px; height: 7px; padding: 0; border: 0; background: rgba(255,255,255,.32); }
.slider-dots button.active { background: var(--cream); transform: scale(1.25); }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 140px); background: var(--white); }
.faq-heading { position: sticky; top: 140px; align-self: start; }
.faq-heading p:last-child { max-width: 420px; color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.6; }
.accordion details { border-top: 1px solid rgba(23,60,36,.15); }
.accordion details:last-child { border-bottom: 1px solid rgba(23,60,36,.15); }
.accordion summary { position: relative; list-style: none; padding: 28px 52px 28px 0; color: var(--forest); font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px); cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ''; position: absolute; right: 8px; top: 50%; width: 18px; height: 1px; background: var(--red); transition: transform .3s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0deg); }
.accordion p { margin: -8px 70px 28px 0; color: var(--muted); line-height: 1.7; }

.newsletter { min-height: 560px; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.75), transparent 40%), #ead5a9; }
.newsletter > div { width: min(820px, 100%); }
.newsletter-heart { display: inline-grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: var(--red); color: var(--cream); box-shadow: 0 18px 36px rgba(168,50,45,.25); animation: heartBeat 2.8s ease-in-out infinite; }
.newsletter h2 { margin-inline: auto; max-width: 760px; }
.newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 10px; width: min(650px, 100%); margin: 30px auto 0; padding: 7px; border: 1px solid rgba(23,60,36,.12); border-radius: 999px; background: rgba(255,255,255,.58); backdrop-filter: blur(12px); }
.newsletter input { min-width: 0; border: 0; outline: 0; background: transparent; padding: 0 18px; color: var(--forest); }
.newsletter input::placeholder { color: #7e7d70; }
.form-message { min-height: 22px; margin: 14px 0 0; color: var(--forest); font-size: 13px; font-weight: 800; }

.site-footer { padding: 52px clamp(22px, 6vw, 92px) 26px; background: var(--forest-2); color: var(--cream); }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand strong { color: var(--cream); }
.footer-top > p { margin: 0; font-family: var(--script); color: #e9c774; font-size: 29px; text-align: center; }
.socials { justify-self: end; display: flex; gap: 8px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; text-transform: uppercase; font-size: 10px; font-weight: 900; transition: background .25s ease; }
.socials a:hover { background: rgba(255,255,255,.1); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(244,232,206,.5); font-size: 10px; text-transform: uppercase; letter-spacing: 1.1px; }
.footer-bottom a { color: var(--cream); }

.cart-drawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; pointer-events: none; }
.cart-drawer.open { visibility: visible; pointer-events: auto; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(8,20,12,.54); backdrop-filter: blur(5px); opacity: 0; transition: opacity .4s ease; }
.cart-drawer.open .cart-backdrop { opacity: 1; }
.cart-panel { position: absolute; top: 0; right: 0; width: min(500px, 100%); height: 100%; display: flex; flex-direction: column; padding: 30px; background: var(--cream-2); transform: translateX(105%); transition: transform .55s cubic-bezier(.77,0,.18,1); overflow-y: auto; }
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 25px; border-bottom: 1px solid rgba(23,60,36,.12); }
.cart-header h2 { margin: 8px 0 0; font-family: var(--serif); color: var(--forest); font-size: 34px; }
.close-button { width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(23,60,36,.08); font-size: 24px; cursor: pointer; }
.cart-empty { flex: 1; display: grid; place-content: center; text-align: center; }
.cart-empty > span { color: var(--red); font-size: 42px; }
.cart-empty h3 { margin: 12px 0 5px; color: var(--forest); font-family: var(--serif); font-size: 30px; }
.cart-empty p { color: var(--muted); }
.cart-item { position: relative; display: grid; grid-template-columns: 100px 1fr 30px; gap: 18px; margin-top: 28px; padding: 18px; border-radius: 22px; background: white; box-shadow: 0 15px 35px rgba(23,60,36,.08); }
.cart-item img { width: 100px; height: 145px; object-fit: cover; object-position: 48% center; border-radius: 14px; }
.cart-item h3 { margin: 12px 0 4px; color: var(--forest); font-family: var(--serif); font-size: 22px; }
.cart-item p { margin: 0; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .8px; }
.cart-qty { width: 105px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; margin-top: 20px; border: 1px solid rgba(23,60,36,.14); border-radius: 999px; }
.remove-item { align-self: start; border: 0; background: transparent; font-size: 21px; cursor: pointer; }
.cart-footer { margin-top: auto; padding-top: 28px; }
.cart-footer > div { display: flex; justify-content: space-between; margin-bottom: 20px; }
.cart-footer span { color: var(--muted); }
.cart-footer strong { color: var(--forest); }
.cart-footer .button { width: 100%; }
.cart-footer small { display: block; margin-top: 14px; color: var(--muted); line-height: 1.5; text-align: center; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 400; display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-radius: 999px; background: var(--forest); color: white; box-shadow: 0 16px 40px rgba(10,30,16,.3); transform: translate(-50%, 150%); opacity: 0; transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .45s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast span { color: #e9c774; }
.toast p { margin: 0; font-size: 12px; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes floatProduct { 0%,100% { transform: translateY(0) rotate(-.5deg); } 50% { transform: translateY(-16px) rotate(.5deg); } }
@keyframes haloPulse { 0%,100% { transform: scale(.95); opacity: .72; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes noteFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes drift { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(14px,-20px) rotate(18deg); } }
@keyframes scrollLine { 0% { top: -100%; } 70%,100% { top: 100%; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes sealSpin { to { transform: rotate(360deg); } }
@keyframes quoteIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heartBeat { 0%,100% { transform: scale(1); } 15% { transform: scale(1.08); } 30% { transform: scale(1); } }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .hero { grid-template-columns: 1fr 1fr; padding-inline: 34px; }
  .hero h1 { font-size: clamp(52px, 8vw, 86px); }
  .hero-visual { min-height: 600px; }
  .feature-card { min-height: 320px; padding: 26px; }
  .feature-card h3 { margin-top: 62px; }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .product-buy { min-height: 720px; }
  .buy-visual { min-height: 720px; }
  .buy-panel { padding: 60px 44px; }
}

@media (max-width: 820px) {
  .site-header { padding: 14px 18px; }
  .brand small { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 116px 22px 60px; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; font-size: clamp(50px, 15vw, 76px); letter-spacing: -3px; }
  .hero-lede { margin-inline: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-badges { justify-content: center; }
  .hero-visual { min-height: 580px; }
  .product-stage { width: min(82vw, 500px); }
  .image-halo { width: 90vw; }
  .note-one { left: 3%; }
  .note-two { right: 2%; }
  .hero-scroll { display: none; }
  .story { grid-template-columns: 1fr; }
  .story-image { max-width: 470px; }
  .story-copy { text-align: center; }
  .story-copy .eyebrow { justify-content: center; }
  .story-lines { margin-inline: auto; text-align: left; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; }
  .ingredient-band { grid-template-columns: 1fr; padding: 34px; text-align: center; }
  .ingredient-list { justify-content: center; }
  .section-heading.split { grid-template-columns: 1fr; text-align: center; }
  .section-heading.split .eyebrow { justify-content: center; }
  .section-heading.split > p { max-width: 560px; margin-inline: auto; }
  .product-buy { grid-template-columns: 1fr; }
  .buy-visual { min-height: 650px; }
  .faq { grid-template-columns: 1fr; }
  .faq-heading { position: static; text-align: center; }
  .faq-heading .eyebrow { justify-content: center; }
  .faq-heading p:last-child { margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .socials { justify-self: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 560px) {
  .brand strong { font-size: 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { padding-top: 98px; }
  .hero h1 { font-size: clamp(44px, 15vw, 64px); line-height: .93; }
  .hero-lede { font-size: 17px; }
  .hero-actions { gap: 18px; }
  .hero-badges { gap: 14px; }
  .hero-badges strong { font-size: 18px; }
  .hero-badges span { font-size: 8px; }
  .hero-visual { min-height: 460px; }
  .floating-note { font-size: 11px; padding: 9px 12px; }
  .note-one { top: 21%; }
  .note-two { bottom: 15%; }
  .section { padding: 80px 20px; }
  .story-seal { width: 105px; height: 105px; right: -8px; border-width: 5px; }
  .story-seal strong { font-size: 19px; }
  .image-frame img { height: 650px; }
  .story-copy h2, .section-heading h2, .buy-panel h2, .faq-heading h2, .newsletter h2 { font-size: 42px; letter-spacing: -1.8px; }
  .recipe-grid { grid-template-columns: 1fr; }
  .recipe-card { min-height: 500px; }
  .product-buy { display: block; }
  .buy-visual { min-height: 540px; }
  .buy-visual img { width: 82%; }
  .buy-badge { width: 110px; height: 110px; right: 5%; top: 7%; font-size: 7px; border-width: 5px; }
  .buy-panel { padding: 70px 20px; }
  .purchase-controls { grid-template-columns: 1fr; }
  .quantity { width: 130px; }
  .quote-section { min-height: 620px; }
  .newsletter form { grid-template-columns: 1fr; border-radius: 28px; padding: 10px; }
  .newsletter input { height: 50px; text-align: center; }
  .footer-top > p { font-size: 25px; }
  .cart-panel { padding: 22px 18px; }
}

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


/* Premium hero v2 */
.hero {
  --pointer-x: 72%;
  --pointer-y: 28%;
  min-height: 100svh;
  grid-template-columns: minmax(0, .92fr) minmax(440px, .78fr);
  align-items: start;
  gap: clamp(34px, 5vw, 92px);
  padding: clamp(112px, 13vh, 150px) clamp(24px, 6vw, 96px) 74px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.78), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(211,169,83,.25), transparent 30%),
    radial-gradient(circle at 9% 92%, rgba(168,50,45,.11), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, #f3e3c3 53%, #e4c99a 100%);
}
.hero::before {
  opacity: .2;
  background-size: 62px 62px;
  mask-image: linear-gradient(110deg, black 0%, rgba(0,0,0,.82) 44%, transparent 92%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 39%, rgba(255,255,255,.28) 47%, transparent 55%),
    radial-gradient(circle at 72% 38%, rgba(255,248,223,.4), transparent 36%);
  background-size: 210% 100%, 100% 100%;
  animation: heroLightSweep 11s ease-in-out infinite;
}
.hero-aurora {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(42px);
  opacity: .5;
  pointer-events: none;
  animation: auroraDrift 12s ease-in-out infinite alternate;
}
.aurora-one { width: 34vw; height: 34vw; right: 4%; top: -12%; background: rgba(208,169,84,.32); }
.aurora-two { width: 28vw; height: 28vw; left: 22%; bottom: -17%; background: rgba(168,50,45,.11); animation-delay: -5s; }
.hero-copy {
  align-self: start;
  max-width: 760px;
  padding-top: clamp(18px, 4.2vh, 52px);
}
.hero-copy > * { opacity: 0; animation: heroCopyIn .85s cubic-bezier(.2,.75,.25,1) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .08s; }
.hero-copy > *:nth-child(2) { animation-delay: .16s; }
.hero-copy > *:nth-child(3) { animation-delay: .24s; }
.hero-copy > *:nth-child(4) { animation-delay: .34s; }
.hero-copy > *:nth-child(5) { animation-delay: .44s; }
.hero-copy > *:nth-child(6) { animation-delay: .54s; }
.hero-premium-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(23,60,36,.13);
  border-radius: 999px;
  background: rgba(255,252,244,.6);
  box-shadow: 0 12px 32px rgba(79,55,20,.07);
  backdrop-filter: blur(14px);
  color: rgba(23,60,36,.72);
  text-transform: uppercase;
  letter-spacing: 1.35px;
  font-size: 8px;
  font-weight: 900;
}
.hero-premium-tag i { color: var(--red); font-style: normal; animation: heartBeat 2.5s ease-in-out infinite; }
.hero h1 {
  max-width: 780px;
  margin: 20px 0 24px;
  font-size: clamp(58px, 6.5vw, 102px);
  line-height: .9;
  letter-spacing: clamp(-5px, -.42vw, -2.5px);
  text-wrap: balance;
}
.hero h1 em {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  padding-right: .08em;
  font-size: .72em;
  line-height: 1.05;
  text-shadow: 0 8px 22px rgba(168,50,45,.12);
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 2%;
  right: -1%;
  bottom: -.08em;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(168,50,45,.32) 18%, rgba(168,50,45,.5) 50%, rgba(168,50,45,.25) 82%, transparent);
  filter: blur(1px);
  transform: rotate(-2deg) scaleX(0);
  transform-origin: left;
  animation: underlineDraw 1s ease 1.05s forwards;
}
.hero-lede { max-width: 635px; font-size: clamp(18px, 1.55vw, 23px); line-height: 1.58; }
.hero-actions { margin-top: 32px; }
.hero-badges { max-width: 625px; margin-top: 40px; padding-top: 23px; }
.hero-badges div { position: relative; padding-right: clamp(15px, 2vw, 32px); }
.hero-badges div:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(23,60,36,.14); }
.hero-badges strong { font-size: 26px; }

.hero-visual {
  align-self: start;
  min-height: 0;
  height: min(78vh, 790px);
  max-height: 790px;
  min-height: 620px;
  margin-top: clamp(-28px, -2vh, -12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  isolation: isolate;
  animation: heroVisualIn 1.15s cubic-bezier(.16,.84,.2,1) .12s both;
}
.image-halo {
  top: 2%;
  width: min(42vw, 660px);
  background: radial-gradient(circle, rgba(255,252,234,.96) 0%, rgba(208,165,74,.34) 38%, rgba(168,50,45,.08) 56%, transparent 72%);
  transform: translate3d(calc((var(--pointer-x) - 72%) * .08), calc((var(--pointer-y) - 28%) * .08), 0);
}
.product-stage {
  width: min(39vw, 535px);
  margin-top: 0;
  z-index: 4;
  transform-origin: 50% 35%;
  animation: premiumFloat 7.5s ease-in-out infinite;
}
.product-frame {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(232,210,166,.32));
  box-shadow:
    0 44px 90px rgba(48,35,13,.24),
    0 14px 34px rgba(48,35,13,.13),
    inset 0 0 0 1px rgba(23,60,36,.06);
  backdrop-filter: blur(18px);
}
.product-stage img {
  width: 100%;
  border-radius: 30px;
  filter: saturate(1.04) contrast(1.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.product-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  z-index: 3;
  pointer-events: none;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), inset 0 -90px 110px rgba(20,25,12,.04);
}
.product-frame::after {
  content: '';
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -45%;
  z-index: 5;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: rotate(16deg);
  animation: productShine 6.5s ease-in-out 1.5s infinite;
}
.product-shadow { left: 8%; right: 8%; bottom: -4%; height: 10%; filter: blur(34px); opacity: .52; }
.stage-gloss { inset: 4% 8% 3%; border-radius: 28px; opacity: .62; }
.frame-corner { position: absolute; z-index: 7; width: 48px; height: 48px; pointer-events: none; }
.frame-corner::before, .frame-corner::after { content: ''; position: absolute; background: rgba(231,199,117,.85); }
.frame-corner::before { width: 1px; height: 35px; }
.frame-corner::after { width: 35px; height: 1px; }
.corner-top { top: 22px; left: 22px; }
.corner-bottom { right: 22px; bottom: 22px; transform: rotate(180deg); }

.orbit {
  position: absolute;
  top: 7%;
  left: 50%;
  z-index: 1;
  border: 1px solid rgba(23,60,36,.13);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: orbitSpin 22s linear infinite;
}
.orbit::before, .orbit::after, .orbit span {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,157,67,.12), 0 0 22px rgba(201,157,67,.5);
}
.orbit::before { top: 8%; left: 19%; }
.orbit::after { right: 8%; bottom: 24%; background: var(--red); box-shadow: 0 0 0 6px rgba(168,50,45,.1), 0 0 22px rgba(168,50,45,.35); }
.orbit span { left: 8%; bottom: 30%; width: 6px; height: 6px; }
.orbit-one { width: min(48vw, 650px); aspect-ratio: 1; }
.orbit-two { top: 15%; width: min(39vw, 530px); aspect-ratio: 1; border-style: dashed; animation-direction: reverse; animation-duration: 30s; opacity: .62; }

.floating-note { z-index: 9; box-shadow: 0 16px 40px rgba(61,45,20,.16); }
.note-one { top: 13%; left: -8%; }
.note-two { right: -8%; bottom: 18%; }
.flavor-chip {
  position: absolute;
  z-index: 8;
  padding: 8px 12px;
  border: 1px solid rgba(23,60,36,.12);
  border-radius: 999px;
  background: rgba(255,251,240,.72);
  color: rgba(23,60,36,.74);
  box-shadow: 0 12px 30px rgba(53,39,20,.1);
  backdrop-filter: blur(12px);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 8px;
  font-weight: 900;
  animation: chipDrift 6s ease-in-out infinite;
}
.chip-one { left: -5%; bottom: 34%; animation-delay: -1s; }
.chip-two { right: -5%; top: 28%; animation-delay: -3.2s; }
.chip-three { right: 1%; bottom: 5%; animation-delay: -4.7s; }
.hero-quality-stamp {
  position: absolute;
  z-index: 10;
  left: -3%;
  bottom: 5%;
  width: 126px;
  height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 20px 44px rgba(23,60,36,.28), inset 0 0 0 7px rgba(255,255,255,.06);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 7px;
  line-height: 1.45;
  transform: rotate(-9deg);
  animation: stampBreathe 4.5s ease-in-out infinite;
}
.hero-quality-stamp strong { display: block; margin: 2px 0; color: #e7c56e; font-family: var(--serif); font-size: 18px; letter-spacing: -.3px; text-transform: none; }
.hero-sparkles i { position: absolute; z-index: 7; width: 6px; height: 6px; border-radius: 50%; background: #fff6d4; box-shadow: 0 0 16px rgba(255,242,189,.95); animation: sparkleBlink 2.8s ease-in-out infinite; }
.hero-sparkles i:nth-child(1) { left: 7%; top: 14%; }
.hero-sparkles i:nth-child(2) { right: 3%; top: 9%; animation-delay: -.8s; }
.hero-sparkles i:nth-child(3) { left: 1%; top: 52%; animation-delay: -1.4s; }
.hero-sparkles i:nth-child(4) { right: 1%; top: 57%; animation-delay: -2s; }
.hero-sparkles i:nth-child(5) { left: 17%; bottom: 5%; animation-delay: -.4s; }
.hero-sparkles i:nth-child(6) { right: 17%; bottom: 0; animation-delay: -2.4s; }
.hero-scroll { bottom: 18px; }

@keyframes heroCopyIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroVisualIn { from { opacity: 0; transform: translate3d(34px, 8px, 0) scale(.94); } to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }
@keyframes premiumFloat { 0%,100% { transform: translateY(0) rotate(-.35deg); } 50% { transform: translateY(-13px) rotate(.45deg); } }
@keyframes productShine { 0%, 55% { transform: translateX(0) rotate(16deg); opacity: 0; } 62% { opacity: 1; } 78%, 100% { transform: translateX(420%) rotate(16deg); opacity: 0; } }
@keyframes orbitSpin { to { transform: translateX(-50%) rotate(360deg); } }
@keyframes chipDrift { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes stampBreathe { 0%,100% { transform: rotate(-9deg) scale(1); } 50% { transform: rotate(-6deg) scale(1.045); } }
@keyframes sparkleBlink { 0%,100% { opacity: .12; transform: scale(.5); } 48% { opacity: 1; transform: scale(1.35); } }
@keyframes underlineDraw { to { transform: rotate(-2deg) scaleX(1); } }
@keyframes heroLightSweep { 0%,100% { background-position: 115% 0, 0 0; } 50% { background-position: -20% 0, 0 0; } }
@keyframes auroraDrift { from { transform: translate3d(-2%, -3%, 0) scale(.95); } to { transform: translate3d(5%, 7%, 0) scale(1.08); } }

@media (max-width: 1220px) {
  .hero { grid-template-columns: minmax(0, .96fr) minmax(400px, .74fr); gap: 34px; padding-inline: 34px; }
  .hero-visual { height: min(73vh, 700px); min-height: 590px; }
  .product-stage { width: min(41vw, 485px); }
  .hero h1 { font-size: clamp(56px, 7.2vw, 88px); }
  .note-one { left: -2%; }
  .note-two { right: -2%; }
  .hero-quality-stamp { left: 0; }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 108px 24px 66px;
    text-align: center;
  }
  .hero-copy { padding-top: 0; margin: 0 auto; }
  .hero-premium-tag { margin-inline: auto; }
  .hero h1 { max-width: 820px; margin-inline: auto; font-size: clamp(52px, 11vw, 82px); }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; margin-inline: auto; }
  .hero-visual { width: min(100%, 690px); height: auto; min-height: 690px; margin: -6px auto 0; }
  .product-stage { width: min(72vw, 500px); }
  .orbit-one { width: min(86vw, 620px); }
  .orbit-two { width: min(70vw, 500px); }
  .image-halo { width: min(90vw, 650px); }
  .note-one { left: 0; top: 14%; }
  .note-two { right: 0; }
  .chip-one { left: 2%; }
  .chip-two { right: 2%; }
  .hero-quality-stamp { left: 2%; bottom: 8%; }
}

@media (max-width: 620px) {
  .hero { padding: 96px 17px 54px; gap: 32px; }
  .hero-premium-tag { gap: 7px; padding: 7px 10px; font-size: 7px; }
  .hero h1 { font-size: clamp(45px, 14.7vw, 66px); line-height: .92; letter-spacing: -3px; }
  .hero-lede { font-size: 17px; }
  .hero-badges { gap: 14px; }
  .hero-badges div { padding-right: 12px; }
  .hero-badges strong { font-size: 19px; }
  .hero-visual { min-height: 550px; }
  .product-stage { width: min(88vw, 445px); }
  .product-frame { padding: 5px; border-radius: 28px; }
  .product-stage img, .product-frame::before { border-radius: 23px; }
  .orbit-one { width: 108vw; }
  .orbit-two { width: 88vw; }
  .floating-note { font-size: 10px; padding: 8px 11px; }
  .note-one { top: 11%; left: -2%; }
  .note-two { bottom: 17%; right: -2%; }
  .flavor-chip { display: none; }
  .hero-quality-stamp { width: 94px; height: 94px; left: -1%; bottom: 5%; font-size: 5.5px; }
  .hero-quality-stamp strong { font-size: 14px; }
  .hero-sparkles i:nth-child(1), .hero-sparkles i:nth-child(6) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-visual { opacity: 1; animation: none !important; transform: none !important; }
  .hero h1 em::after { transform: rotate(-2deg) scaleX(1); animation: none; }
}

/* Layout integrity fixes for decorative layers and responsive product media */
.floating-herbs { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-sparkles { position: absolute; inset: 0; z-index: 7; pointer-events: none; }
.product-stage picture { display: block; width: 100%; line-height: 0; }
.product-stage img { width: 100%; height: auto; aspect-ratio: 991 / 1490; object-fit: cover; }
