:root{
  --lime:#A7D32E;          /* primary lime — slightly darker than pure lime */
  --lime-deep:#86B01A;     /* hover / accent */
  --lime-soft:#EEF7D5;     /* soft tint backgrounds */
  --ink:#1B2410;           /* near-black, warm green undertone */
  --ink-soft:#3F4A2E;
  --paper:#FFFFFF;
  --off:#FAFBF5;
  --line:#E6EAD9;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;width:100%;max-width:100%;overflow-x:clip;background:var(--paper);color:var(--ink);font-family:'Inter',system-ui,-apple-system,sans-serif;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
picture{display:contents}
a{color:inherit;text-decoration:none}
.container{max-width:1240px;margin:0 auto;padding:0 24px}
h1,h2,h3{font-family:'Fraunces',Georgia,serif;font-weight:600;letter-spacing:-0.01em;margin:0}
.eyebrow{font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);font-weight:600}

/* ===== Announcement bar (above nav) ===== */
.announce-bar{background:var(--lime);color:var(--ink);text-align:center;padding:9px 16px;font-family:'Inter',sans-serif;font-size:12px;font-weight:600;letter-spacing:.12em;line-height:1.3;text-transform:uppercase}
.announce-text{display:inline-block;transition:opacity .35s ease}
.announce-text.is-fading{opacity:0}
@media (max-width:430px){
  .announce-bar{padding:7px 14px;font-size:10.5px;letter-spacing:.08em}
}

/* ===== Header ===== */
header.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{position:relative;display:flex;align-items:center;justify-content:space-between;height:73px;max-width:none;padding:0 44px;gap:32px}
.nav-left,.nav-right{display:flex;align-items:center;gap:32px}
.nav-logo-center{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);pointer-events:auto;display:block}
.nav-logo-center img{height:87px;width:auto;display:block}
nav.links{display:flex;gap:30px;font-weight:500;font-size:13.5px;letter-spacing:.03em}
nav.links a{position:relative;color:var(--ink)}
nav.links a:hover{color:var(--lime-deep)}
/* Premium hover underline on top-level links only */
nav.links > a{padding:4px 0;transition:color .25s ease}
nav.links > a::after{content:'';position:absolute;left:0;right:0;bottom:-2px;height:1px;background:currentColor;transform:scaleX(0);transform-origin:right;transition:transform .4s cubic-bezier(.65,.05,.36,1)}
nav.links > a:hover{color:var(--ink)}
nav.links > a:hover::after{transform:scaleX(1);transform-origin:left}
.nav-cta{display:flex;gap:10px;align-items:center}
.nav-cart{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:8px;color:var(--ink);transition:color .25s ease, background .25s ease;transform:translateY(3px)}
.nav-cart svg{width:18px;height:18px;display:block;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.nav-cart:hover{color:var(--lime-deep);background:var(--lime-soft)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:6px;padding:12px 22px;font-weight:600;font-size:14px;border:1px solid transparent;cursor:pointer;transition:transform .15s ease, background .2s ease}
.btn-primary{background:var(--lime);color:var(--ink)}
.btn-primary:hover{background:var(--lime-deep);color:#fff}
.btn-ghost{background:transparent;border-color:var(--ink);color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:#fff}
.btn-light{background:#fff;color:var(--ink)}
.btn-light:hover{background:var(--lime);color:var(--ink)}

/* ===== Hero carousel ===== */
.hero{position:relative;overflow:hidden;background:#000;padding:0}
.slides{display:flex;width:400%;transition:transform .8s cubic-bezier(.65,.05,.36,1);height:calc(100vh - 73px);min-height:520px}
.slide{position:relative;width:25%;flex-shrink:0;background-size:cover;background-position:center}
.slide::after{content:"";position:absolute;inset:0;background:linear-gradient(110deg,rgba(8,15,4,.55) 0%,rgba(8,15,4,.25) 45%,rgba(8,15,4,.05) 100%)}
.slide-content{position:relative;z-index:2;height:100%;display:flex;align-items:center}
.slide-text{max-width:640px;color:#fff;padding:0 24px}
.slide-eyebrow{display:inline-flex;align-items:center;gap:14px;color:var(--lime);font-size:12px;font-weight:600;letter-spacing:.24em;text-transform:uppercase}
.slide-eyebrow::before{content:'';display:block;width:34px;height:1px;background:var(--lime)}
.slide h1{font-size:clamp(44px,6.4vw,82px);line-height:.98;margin:22px 0 22px;color:#fff;letter-spacing:-.015em}
.slide h1 em{font-style:italic;color:var(--lime);font-weight:500}
.slide p{font-size:clamp(16px,1.4vw,18px);line-height:1.6;max-width:480px;color:#E9EEDC;margin:0 0 28px}
.slide-stats{display:flex;gap:36px;margin:0 0 32px;padding:18px 0;border-top:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18);max-width:520px}
.slide-stats > span{display:inline-flex;align-items:baseline;gap:8px;color:#D5DCC0;font-size:11px;letter-spacing:.2em;text-transform:uppercase;font-weight:600}
.slide-stats strong{font-family:'Fraunces',serif;font-size:30px;font-weight:600;color:#fff;letter-spacing:-.02em}
.slide-cta{display:flex;gap:12px;flex-wrap:wrap}

/* dots + arrows */
.dots{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:5}
.dot{width:30px;height:4px;border-radius:2px;background:rgba(255,255,255,.35);border:none;cursor:pointer;transition:background .2s ease, width .3s ease}
.dot.active{background:var(--lime);width:48px}
.arrows{position:absolute;inset:0;display:flex;align-items:center;justify-content:space-between;pointer-events:none;padding:0 18px;z-index:4}
.arrows .arrow{pointer-events:auto;width:46px;height:46px;border-radius:50%;border:1px solid rgba(255,255,255,.4);background:rgba(0,0,0,.15);color:#fff;cursor:pointer;backdrop-filter:blur(6px);font-size:18px;transition:background .2s ease}
.arrows .arrow:hover{background:var(--lime);color:var(--ink);border-color:var(--lime)}

/* ===== Section base ===== */
section{padding:96px 0}
.section-head{text-align:center;max-width:680px;margin:0 auto 56px}
.section-head h2{font-size:clamp(32px,4vw,52px);line-height:1.05;margin:14px 0 14px}
.section-head h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.section-head p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0}

/* ===== Products (conversion-focused 3-card design) ===== */
.products{background:var(--off)}
.products .section-head{margin-bottom:28px}
.perks-bar{display:flex;justify-content:center;gap:36px;flex-wrap:wrap;padding:18px 24px;margin:0 auto 56px;border-top:1px solid var(--line);border-bottom:1px solid var(--line);max-width:1080px}
.perk{display:inline-flex;align-items:center;gap:10px;font-size:13px;font-weight:600;color:var(--ink-soft);letter-spacing:.02em}
.perk-check{color:var(--lime-deep);font-weight:800;display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;background:var(--lime-soft);font-size:10px;line-height:1;flex-shrink:0}

.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
.product{background:#fff;border-radius:18px;padding:0;border:1px solid var(--line);display:flex;flex-direction:column;transition:transform .25s ease, box-shadow .25s ease;position:relative;overflow:hidden}
.product:hover{transform:translateY(-3px);box-shadow:0 28px 56px -32px rgba(27,36,16,.22)}
.product--featured{transform:scale(1.03);border:2px solid var(--lime);box-shadow:0 28px 56px -24px rgba(167,211,46,.35);z-index:1}
.product--featured:hover{transform:scale(1.03) translateY(-3px);box-shadow:0 34px 70px -24px rgba(167,211,46,.45)}

.product-img-wrap{position:relative;background:#F4F1E6;aspect-ratio:1/1;overflow:hidden;display:flex;align-items:center;justify-content:center;padding:24px}
.product-img-wrap img{width:100%;height:100%;object-fit:contain;display:block;transform:scale(1.45);transform-origin:center}
.product-img-wrap img[src*="premium-card"],.product-img-wrap img[src*="ceremonial-card"]{transform:none}

.product-tag{position:absolute;top:14px;left:14px;display:inline-block;padding:6px 12px;border-radius:6px;background:rgba(255,255,255,.95);color:var(--ink);font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;z-index:3;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.product-tag--featured{background:var(--lime);color:var(--ink);box-shadow:0 4px 14px -4px rgba(167,211,46,.55)}

.product-body{padding:24px;display:flex;flex-direction:column;gap:10px;flex:1}
.product-body h3{font-family:'Fraunces',serif;font-size:28px;font-weight:600;margin:0;letter-spacing:-.01em;line-height:1}
.product-sub{font-family:'Fraunces',serif;font-style:italic;font-size:16px;font-weight:500;color:var(--lime-deep);margin:0;letter-spacing:-.01em}
.product-stars{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--ink-soft);font-weight:500}
.product-stars .stars{color:var(--lime-deep);letter-spacing:1px;font-size:13px}
.product-desc{margin:0;color:var(--ink-soft);font-size:13.5px;line-height:1.55;min-height:42px}

.product-toggle{display:grid;grid-template-columns:1fr 1fr;gap:0;background:var(--off);border:1px solid var(--line);border-radius:8px;padding:3px;margin-top:8px}
.toggle-pill{appearance:none;-webkit-appearance:none;background:transparent;border:none;cursor:pointer;padding:9px 8px;border-radius:6px;font-size:11.5px;font-weight:600;color:var(--ink-soft);transition:background .15s ease, color .15s ease;font-family:inherit;text-align:center;line-height:1.2;letter-spacing:.01em}
.toggle-pill.active{background:#fff;color:var(--ink);box-shadow:0 1px 3px rgba(27,36,16,.08)}

/* Subscriber perk chip + link (visible only when Subscribe toggle is active) */
.product-perk-chip{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:12px;background:var(--lime-soft);border:1px solid var(--lime);font-size:13px;font-weight:500;color:var(--ink);line-height:1.4;margin-top:10px;align-self:flex-start;max-width:100%;transition:opacity .25s ease, max-height .3s ease, margin-top .25s ease, padding .25s ease, border-color .25s ease, transform .25s ease;opacity:1;max-height:50px;overflow:hidden}
.product-perk-chip svg{width:15px;height:15px;color:var(--lime-deep);stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.product-perk-link{display:inline-block;align-self:flex-start;margin-top:6px;font-size:11px;color:var(--ink-soft);font-weight:500;text-decoration:underline;text-underline-offset:2px;letter-spacing:.02em;transition:color .2s ease, opacity .25s ease, max-height .3s ease, margin-top .25s ease;max-height:30px;overflow:hidden}
.product-perk-link:hover{color:var(--lime-deep)}
.product:has(.toggle-pill[data-mode="onetime"].active) .product-perk-chip,
.product:has(.toggle-pill[data-mode="onetime"].active) .product-perk-link{opacity:0;max-height:0;margin-top:0;padding-top:0;padding-bottom:0;border-width:0;pointer-events:none}

.product-price-wrap{margin-top:6px}
.product-price{display:block;font-family:'Fraunces',serif;font-size:30px;font-weight:600;color:var(--ink);letter-spacing:-.02em;line-height:1.1}
.product-save{display:block;margin-top:4px;font-size:12px;color:var(--ink-soft);font-style:italic;line-height:1.4}

.product-cta{margin-top:auto;width:100%;justify-content:center;padding:14px 22px;font-size:14.5px}
.product-details-link{display:inline-block;text-align:center;width:100%;margin-top:10px;font-size:12.5px;color:var(--ink-soft);font-weight:600;letter-spacing:.04em;text-decoration:underline;text-underline-offset:3px;text-decoration-color:rgba(63,74,46,.3);transition:color .2s ease}
.product-details-link:hover{color:var(--lime-deep);text-decoration-color:var(--lime-deep)}
.product-trust{margin:14px 0 0;text-align:center;font-size:11px;color:#8a937c;letter-spacing:.04em;font-weight:500}

/* Grade education expand-toggle on each product card */
.grade-edu{margin-top:2px}
.grade-edu-toggle{appearance:none;-webkit-appearance:none;background:transparent;border:none;cursor:pointer;font-family:inherit;font-size:12px;color:var(--ink-soft);font-weight:600;letter-spacing:.02em;padding:2px 0;text-decoration:underline;text-underline-offset:3px;text-decoration-color:rgba(63,74,46,.35);transition:color .2s ease, text-decoration-color .2s ease}
.grade-edu-toggle:hover{color:var(--ink);text-decoration-color:var(--ink)}
.grade-edu-toggle .arrow{display:inline-block;margin-left:4px;transition:transform .3s ease;font-style:normal}
.grade-edu[data-open="true"] .grade-edu-toggle .arrow{transform:rotate(180deg)}
.grade-edu-panel{max-height:0;overflow:hidden;transition:max-height .35s ease, margin-top .25s ease, padding .25s ease, border-color .25s ease;background:var(--off);border-radius:8px;border:1px solid transparent;padding:0 12px;margin-top:0}
.grade-edu[data-open="true"] .grade-edu-panel{max-height:240px;padding:12px;margin-top:8px;border-color:var(--line)}
.grade-edu-panel p{margin:0;font-size:12.5px;line-height:1.55;color:var(--ink-soft)}
.grade-edu-panel p + p{margin-top:8px}
.grade-edu-panel strong{color:var(--ink);font-weight:700}

/* Sticky quiz button */
.quiz-sticky{position:fixed;bottom:24px;right:24px;background:var(--lime);color:var(--ink);padding:12px 18px;border-radius:999px;font-size:13px;font-weight:700;letter-spacing:.01em;box-shadow:0 14px 38px -10px rgba(27,36,16,.32);transition:opacity .3s ease, transform .3s ease, background .2s ease, color .2s ease;opacity:0;pointer-events:none;transform:translateY(20px);z-index:80;display:inline-flex;align-items:center;gap:8px;border:1px solid var(--lime-deep)}
.quiz-sticky.is-visible{opacity:1;pointer-events:auto;transform:translateY(0)}
.quiz-sticky:hover{background:var(--lime-deep);color:#fff}
@media (max-width:520px){.quiz-sticky{bottom:16px;right:16px;left:16px;justify-content:center;font-size:12.5px;padding:11px 14px}}

.quiz-nudge{text-align:center;margin:64px 0 0;font-size:16px;color:var(--ink-soft);line-height:1.5}
.quiz-nudge em{font-style:italic}
.quiz-nudge a{color:var(--lime-deep);font-weight:700;transition:color .2s ease}
.quiz-nudge a:hover{color:var(--ink)}

.trust-strip{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:20px;font-size:12.5px;color:var(--ink-soft);font-weight:600;letter-spacing:.02em}
.trust-strip span{display:inline-flex;align-items:center;gap:6px}
.trust-strip .ts-check{color:var(--lime-deep);font-weight:800}
.trust-strip .ts-sep{opacity:.35}

/* ===== Shop page (dedicated /shop) ===== */
.shop-hero{background:var(--off);padding:60px 0 30px}
.shop-hero .container{text-align:center;max-width:820px}
.shop-hero h1{font-family:'Fraunces',serif;font-size:clamp(36px,4.6vw,52px);line-height:1.05;letter-spacing:-.02em;margin:14px 0 14px;font-weight:600}
.shop-hero h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.shop-hero p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0 auto;max-width:620px}

.shop-filterbar{position:sticky;top:73px;z-index:40;background:rgba(255,255,255,.94);backdrop-filter:saturate(140%) blur(10px);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:14px 0}
.shop-filterbar-inner{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}
.filter-pills{display:flex;gap:8px;flex-wrap:wrap}
.filter-pill{appearance:none;-webkit-appearance:none;background:#fff;border:1px solid var(--line);padding:9px 16px;border-radius:999px;font-size:12.5px;font-weight:600;color:var(--ink);cursor:pointer;font-family:inherit;letter-spacing:.02em;transition:border-color .2s ease, background .2s ease, color .2s ease}
.filter-pill:hover{border-color:var(--lime-deep);background:var(--lime-soft)}
.filter-pill.active{background:var(--lime);border-color:var(--lime);color:var(--ink)}
.sort-wrap{display:flex;align-items:center;gap:10px;font-size:12.5px;color:var(--ink-soft);font-weight:600;letter-spacing:.02em}
.sort-select{appearance:none;-webkit-appearance:none;background:#fff;border:1px solid var(--line);padding:9px 32px 9px 14px;border-radius:8px;font-size:13px;font-weight:600;color:var(--ink);font-family:inherit;cursor:pointer;background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%231B2410' stroke-width='1.5'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:10px 7px}

.shop-grid-section{background:var(--off);padding:56px 0 96px}

/* Find your grade callout */
.quiz-callout{background:var(--lime-soft)}
.quiz-callout-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:48px;align-items:center;max-width:1080px;margin:0 auto}
.quiz-callout-img{aspect-ratio:4/3;border-radius:18px;overflow:hidden;background:#F4F1E6}
.quiz-callout-img img{width:100%;height:100%;object-fit:cover;display:block}
.quiz-callout-text h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,40px);line-height:1.05;margin:14px 0 16px;letter-spacing:-.01em;font-weight:600}
.quiz-callout-text h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.quiz-callout-text p{color:var(--ink-soft);font-size:16px;line-height:1.65;margin:0 0 24px;max-width:480px}

/* Premium vs Ceremonial 2-product comparison */
.compare-grades{background:#fff}
.compare-grades-table{display:grid;grid-template-columns:1fr 1.3fr 1.3fr;max-width:980px;margin:0 auto;background:#fff;border-radius:16px;overflow:hidden;border:1px solid var(--line);box-shadow:0 28px 70px -40px rgba(27,36,16,.18)}
.cg-row{display:contents}
.cg-row > div{padding:18px 22px;display:flex;align-items:center;border-bottom:1px solid var(--line);font-size:14.5px;line-height:1.45}
.cg-row:last-child > div{border-bottom:none}
.cg-row > .cg-label{background:var(--off);font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700}
.cg-row > div:not(.cg-label){color:var(--ink);font-weight:600}
.cg-row.cg-head > div{padding:22px;font-family:'Fraunces',serif;font-size:22px;font-weight:600;letter-spacing:-.01em;border-bottom:2px solid var(--ink)}
.cg-row.cg-head .cg-label{background:#F4F1E6;font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700}
.compare-grades-caption{text-align:center;margin-top:22px;font-size:13px;color:var(--ink-soft);font-style:italic}
.compare-grades-cta{display:flex;gap:12px;justify-content:center;margin-top:32px;flex-wrap:wrap}

/* Reviews carousel */
.reviews-section{background:var(--off)}
.reviews-carousel-wrap{position:relative;margin-top:8px}
.reviews-carousel{display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;padding:8px 4px;scrollbar-width:none}
.reviews-carousel::-webkit-scrollbar{display:none}
.review-card{flex:0 0 calc(33.333% - 14px);scroll-snap-align:start;background:#fff;border:1px solid var(--line);border-radius:18px;padding:30px;display:flex;flex-direction:column;gap:14px;min-width:0}
.review-stars-row{color:var(--lime-deep);letter-spacing:3px;font-size:14px}
.review-headline{font-family:'Fraunces',serif;font-size:18px;font-weight:600;color:var(--ink);margin:0;letter-spacing:-.01em;line-height:1.25}
.review-body{margin:0;font-size:14px;line-height:1.6;color:var(--ink-soft)}
.review-meta{margin:auto 0 0;display:flex;align-items:center;gap:10px;font-size:12px;color:var(--ink-soft);font-weight:600;padding-top:6px}
.review-verified{display:inline-flex;align-items:center;gap:5px;padding:3px 8px;background:var(--lime-soft);color:var(--lime-deep);border-radius:4px;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.reviews-arrow{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;background:#fff;border:1px solid var(--line);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--ink);box-shadow:0 8px 24px -10px rgba(27,36,16,.22);transition:background .2s ease, color .2s ease;z-index:5}
.reviews-arrow:hover{background:var(--lime);color:var(--ink);border-color:var(--lime)}
.reviews-prev{left:-22px}
.reviews-next{right:-22px}
.reviews-cta-link{display:flex;justify-content:center;margin-top:32px}
.reviews-cta-link a{color:var(--lime-deep);font-weight:700;font-size:14px}
.reviews-cta-link a:hover{color:var(--ink)}

/* Accessories teaser */
.accessories-teaser{background:var(--off)}
.teaser-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:40px;display:grid;grid-template-columns:1.3fr 1fr;gap:40px;align-items:center;max-width:1080px;margin:0 auto}
.teaser-text h3{font-family:'Fraunces',serif;font-size:clamp(24px,2.8vw,32px);font-weight:600;margin:10px 0 12px;letter-spacing:-.01em;line-height:1.1}
.teaser-text h3 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.teaser-text p{color:var(--ink-soft);font-size:15px;line-height:1.6;margin:0;max-width:480px}
.teaser-form{display:flex;gap:10px;align-items:stretch}
.teaser-form input{flex:1;padding:13px 16px;border-radius:8px;border:1px solid var(--line);font-family:inherit;font-size:14px;background:#fff;color:var(--ink)}
.teaser-form input:focus{outline:2px solid var(--lime);border-color:var(--lime)}
.teaser-form button{white-space:nowrap}

/* Final CTA strip on shop */
.shop-final-cta{background:var(--ink);color:#fff;text-align:center}
.shop-final-cta h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,42px);line-height:1.05;margin:14px 0 14px;color:#fff;letter-spacing:-.015em;font-weight:600}
.shop-final-cta h2 em{font-style:italic;color:var(--lime);font-weight:500}
.shop-final-cta p{color:#D5DCC0;font-size:17px;line-height:1.6;margin:0 0 28px;max-width:560px;margin-left:auto;margin-right:auto}
.shop-final-cta .cta-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.shop-final-cta .btn-ghost{border-color:rgba(255,255,255,.4);color:#fff}
.shop-final-cta .btn-ghost:hover{background:#fff;color:var(--ink);border-color:#fff}

/* Breadcrumb on shop */
.shop-breadcrumb{background:var(--off);padding:90px 0 0}
.shop-breadcrumb .breadcrumb{justify-content:center}

/* ===== Comparison (good vs bad matcha) ===== */
.vs{background:#fff}
.vs-coffee{background:var(--off)}
.vs-cta{display:flex;justify-content:center;margin-top:36px}
.vs-head{text-align:center;max-width:720px;margin:0 auto 56px}
.vs-head h2{font-size:clamp(32px,4vw,52px);line-height:1.05;margin:14px 0 14px}
.vs-head h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.vs-head p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0}
.vs-images{display:grid;grid-template-columns:1fr 1fr;width:100%}
.vs-img{position:relative;margin:0;overflow:hidden;background:#F4F1E6;aspect-ratio:1/1}
.vs-img img{width:100%;height:100%;display:block;object-fit:cover;object-position:center 75%}
.vs-img figcaption{position:absolute;top:28px;left:32px}
.vs-tag{display:inline-block;padding:8px 16px;border-radius:6px;font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase}
.vs-tag-good{background:var(--lime);color:var(--ink)}
.vs-tag-bad{background:rgba(27,36,16,.85);color:#fff;backdrop-filter:blur(6px)}
.vs-body{padding-top:72px}
.vs-rows{display:grid;grid-template-columns:0.9fr 1.6fr 1.6fr;max-width:1080px;margin:0 auto;background:#fff;border-radius:16px;overflow:hidden;border:1px solid var(--line);box-shadow:0 28px 70px -40px rgba(27,36,16,.22)}
.vs-row{display:contents}
.vs-row > div{padding:20px 26px;display:flex;align-items:center;border-bottom:1px solid var(--line);font-size:15px;line-height:1.4}
.vs-row:last-child > div{border-bottom:none}
.vs-attr{background:#FAFBF5;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700}

/* MatchaFlow column — lime tint */
.vs-good-val{background:rgba(167,211,46,.10);color:var(--ink);font-weight:600}
.vs-good-val::before{content:'✓';display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;min-width:24px;border-radius:50%;background:var(--lime);color:var(--ink);margin-right:14px;font-size:13px;font-weight:800;line-height:1}

/* Other Matcha column — muted grey */
.vs-bad-val{background:#F4F4EF;color:#7E867C;font-style:italic}
.vs-bad-val::before{content:'✕';display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;min-width:24px;border-radius:50%;background:#DCDBD3;color:#7E867C;margin-right:14px;font-size:11px;font-weight:800;line-height:1}

/* Header row */
.vs-row.vs-row-head > div{padding:22px 26px;font-family:'Fraunces',serif;font-size:24px;font-weight:600;letter-spacing:-.01em;border-bottom:2px solid var(--ink)}
.vs-row.vs-row-head .vs-attr{background:#F4F1E6;font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700}
.vs-row.vs-row-head .vs-good-val{background:var(--lime);color:var(--ink);font-style:normal}
.vs-row.vs-row-head .vs-bad-val{background:#DCDBD3;color:#525851;font-style:normal}
.vs-row.vs-row-head .vs-good-val::before,
.vs-row.vs-row-head .vs-bad-val::before{display:none}

/* ===== Brand story / why ===== */
.why{background:#fff}
.why-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:64px;align-items:center}
.why-grid h2{font-size:clamp(32px,4vw,52px);line-height:1.05;margin:14px 0 18px}
.why-grid p{color:var(--ink-soft);font-size:16px;line-height:1.7;margin:0 0 14px}
.why-img{aspect-ratio:4/5;border-radius:24px;background-size:cover;background-position:center;background-image:url('https://images.unsplash.com/photo-1545048702-79362596cdc9?auto=format&fit=crop&w=1400&q=80')}

/* ===== Benefits ===== */
.benefits{background:var(--lime-soft)}
.bgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:32px}
.bcard{background:#fff;border-radius:20px;padding:30px;text-align:left;border:1px solid #E2EBC4}
.icon{width:46px;height:46px;border-radius:12px;background:var(--lime);display:flex;align-items:center;justify-content:center;margin-bottom:18px;color:var(--ink);font-weight:700;overflow:hidden}
.icon img{width:100%;height:100%;object-fit:cover;transform:scale(1.3);display:block}
.icon img[src*="chashaku"],
.icon img[src*="sieve"]{transform:scale(1.7)}
/* Four-reasons benefit icons: larger + centered */
.bcard .icon:has(img[src*="energise" i]),
.bcard .icon:has(img[src*="controlle" i]),
.bcard .icon:has(img[src*="daily-consistency" i]),
.bcard .icon:has(img[src*="cortisol" i]){width:100%;max-width:176px;aspect-ratio:1/1;height:auto;border-radius:28px;margin-left:auto;margin-right:auto}
.bcard h3{font-size:19px;margin-bottom:8px}
.bcard p{margin:0;font-size:14px;line-height:1.55;color:var(--ink-soft)}

/* ===== Compare strip ===== */
.compare{background:var(--ink);color:#fff}
.compare-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:36px;align-items:center}
.compare h2{font-size:clamp(28px,3.4vw,42px);color:#fff;line-height:1.05}
.compare .pill{display:inline-block;padding:10px 16px;border-radius:999px;border:1px solid rgba(255,255,255,.18);font-size:13px;margin:4px 6px 0 0;color:#E4ECCB}
.compare .pill.win{background:var(--lime);color:var(--ink);border-color:var(--lime);font-weight:600}

/* ===== How to ===== */
.howto{background:#fff}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.step{background:var(--off);border-radius:18px;padding:24px;border:1px solid var(--line)}
.stepnum{font-family:'Fraunces',serif;font-size:40px;color:var(--lime-deep);line-height:1;margin-bottom:14px}
.step h3{font-size:17px;margin-bottom:6px}
.step p{margin:0;color:var(--ink-soft);font-size:14px;line-height:1.55}
.ritual-perk-line{text-align:center;margin:36px auto 0;font-family:'Fraunces',serif;font-style:italic;font-size:16px;color:var(--ink);max-width:560px;line-height:1.5}
.ritual-perk-line a{color:var(--lime-deep);font-weight:700;text-decoration:underline;text-underline-offset:3px;transition:color .2s ease}
.ritual-perk-line a:hover{color:var(--ink)}

/* ===== Subscribe ===== */
.sub{background:var(--lime);color:var(--ink)}
.sub-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:48px;align-items:center}
.sub h2{font-size:clamp(30px,3.8vw,46px);line-height:1.05;margin:10px 0 14px}
.sub p{font-size:16px;line-height:1.6;color:var(--ink-soft);margin:0 0 22px;max-width:480px}
.sub-form{background:#fff;border-radius:20px;padding:26px;display:flex;flex-direction:column;gap:10px}
.sub-form label{font-size:13px;font-weight:600}
.sub-form input,.sub-form select{padding:14px 16px;border-radius:12px;border:1px solid var(--line);font-size:14px;font-family:inherit;background:#fff}
.sub-form input:focus,.sub-form select:focus{outline:2px solid var(--lime);border-color:var(--lime)}

/* ===== Founder strip ===== */
.founder{background:var(--off)}
.founder-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center}
.founder-text h2{font-size:clamp(28px,3.4vw,42px);line-height:1.1;margin:14px 0 22px;letter-spacing:-.01em}
.founder-text > p{color:var(--ink-soft);font-size:16px;line-height:1.7;margin:0 0 16px;max-width:540px}
.founder-sig{font-family:'Fraunces',serif;font-style:italic;font-size:18px;color:var(--ink);margin:18px 0 24px !important}
.founder-img{aspect-ratio:4/5;border-radius:18px;background:linear-gradient(160deg,#3F4A2E 0%,#1B2410 100%);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.45);font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.24em;text-transform:uppercase;font-weight:600}
.founder-img img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}

/* ===== About page ===== */
.about-hero{background:var(--off);padding:120px 0 96px}
.about-hero-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center}
.about-hero h1{font-family:'Fraunces',serif;font-size:clamp(40px,5.6vw,68px);line-height:1.02;letter-spacing:-.02em;margin:18px 0 18px;font-weight:600}
.about-hero p{color:var(--ink-soft);font-size:18px;line-height:1.6;margin:0;max-width:520px}
.about-hero .portrait{aspect-ratio:4/5;border-radius:18px;background:linear-gradient(160deg,#3F4A2E 0%,#1B2410 100%);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.45);font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.24em;text-transform:uppercase;font-weight:600;overflow:hidden}
.about-hero .portrait img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}

/* Story / mission long-form sections */
.story{background:#fff}
.story-inner{max-width:780px;margin:0 auto}
.story-inner h2{font-family:'Fraunces',serif;font-size:clamp(32px,4vw,48px);line-height:1.05;margin:14px 0 28px;letter-spacing:-.01em}
.story-inner h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.story-inner p{color:var(--ink-soft);font-size:17px;line-height:1.75;margin:0 0 20px}
.story-inner p:last-child{margin-bottom:0}
.mission{background:var(--off)}

/* Beliefs grid */
.beliefs{background:var(--lime-soft)}
.beliefs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:32px}
.belief{background:#fff;border-radius:16px;padding:28px;border:1px solid #E2EBC4}
.belief h3{font-family:'Fraunces',serif;font-size:20px;font-weight:600;line-height:1.2;margin:0 0 10px;letter-spacing:-.01em}
.belief p{margin:0;font-size:14px;line-height:1.6;color:var(--ink-soft)}
.belief-num{font-family:'Fraunces',serif;font-size:14px;font-style:italic;color:var(--lime-deep);font-weight:500;margin-bottom:12px;display:block}

/* Built in public section (about page) */
.public{background:#fff}
.public-inner{max-width:780px;margin:0 auto}

/* ===== Nav dropdown ===== */
.nav-dropdown{position:relative}
.nav-dropdown-toggle{cursor:pointer;display:inline-flex;align-items:center;gap:9px;color:var(--ink);transition:color .25s ease;transform:translateY(4px)}
.nav-dropdown-toggle::after{content:'';display:inline-block;width:8px;height:8px;border-right:1.8px solid currentColor;border-bottom:1.8px solid currentColor;border-radius:1px;transform:translateY(-2px) rotate(45deg);transition:transform .4s cubic-bezier(.65,.05,.36,1), border-color .25s ease;opacity:.75}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle{color:var(--lime-deep)}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after{transform:translateY(2px) rotate(225deg);opacity:1}
.nav-dropdown::before{content:'';position:absolute;top:100%;left:-16px;right:-16px;height:18px}
.nav-dropdown-menu{position:absolute;top:calc(100% + 14px);left:50%;background:#fff;border:1px solid var(--line);border-radius:12px;padding:10px;min-width:240px;box-shadow:0 20px 50px -20px rgba(27,36,16,.22);opacity:0;visibility:hidden;transform:translate(-50%,-6px);transition:opacity .22s ease, transform .22s ease, visibility .22s ease;z-index:60;display:flex;flex-direction:column;gap:2px}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{opacity:1;visibility:visible;transform:translate(-50%,0)}
.nav-dropdown-menu a{display:block;padding:11px 14px;border-radius:8px;color:var(--ink);font-weight:500;font-size:14px;transition:background .15s ease, color .15s ease;white-space:nowrap}
.nav-dropdown-menu a:hover{background:var(--lime-soft);color:var(--ink)}

/* ===== Contact page ===== */
.contact-hero{background:var(--off);padding:60px 0 56px}
.contact-hero .container{max-width:780px;text-align:center}
.contact-hero h1{font-family:'Fraunces',serif;font-size:clamp(36px,4.6vw,56px);line-height:1.05;letter-spacing:-.02em;margin:14px 0 18px;font-weight:600}
.contact-hero h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.contact-hero > .container > p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0 auto;max-width:560px}

.contact-section{background:#fff;padding:64px 0 96px}
.contact-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:40px;align-items:start;max-width:1040px;margin:0 auto}

.contact-info-card{background:var(--off);border:1px solid var(--line);border-radius:18px;padding:32px;display:flex;flex-direction:column;gap:8px}
.contact-info-card h3{font-family:'Fraunces',serif;font-size:20px;font-weight:600;margin:0 0 18px;letter-spacing:-.01em;color:var(--ink)}
.contact-info-item{display:flex;align-items:flex-start;gap:14px;padding:16px 0;border-top:1px solid var(--line)}
.contact-info-item:first-of-type{border-top:none;padding-top:6px}
.contact-info-icon{width:36px;height:36px;border-radius:10px;background:var(--lime-soft);color:var(--lime-deep);display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-icon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.contact-info-label{display:block;font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;margin-bottom:4px}
.contact-info-value{display:block;font-size:15px;color:var(--ink);font-weight:600;line-height:1.4}
.contact-info-value a{color:var(--ink);transition:color .2s ease}
.contact-info-value a:hover{color:var(--lime-deep)}

.contact-form{background:#fff;border:1px solid var(--line);border-radius:18px;padding:32px;display:flex;flex-direction:column;gap:8px;box-shadow:0 14px 38px -18px rgba(27,36,16,.12)}
.contact-form label{font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--ink-soft);margin-top:10px}
.contact-form label:first-of-type{margin-top:0}
.contact-form input,.contact-form select,.contact-form textarea{padding:14px 16px;border-radius:10px;border:1px solid var(--line);font-size:14px;font-family:inherit;background:#fff;color:var(--ink);width:100%}
.contact-form textarea{resize:vertical;min-height:120px;font-family:inherit;line-height:1.6}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:2px solid var(--lime);border-color:var(--lime)}
.contact-form button{margin-top:16px;width:100%;justify-content:center;padding:14px 22px;font-size:14.5px}
.contact-form-thanks{display:none;margin:10px 0 0;padding:14px 16px;background:var(--lime-soft);border:1px solid var(--lime);border-radius:10px;color:var(--ink);font-size:14px;font-weight:500;text-align:center}
.contact-form-thanks.show{display:block}

/* ===== Subscribe page ===== */
.subscribe-hero{background:var(--off);padding:60px 0 80px}
.subscribe-hero-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:56px;align-items:center;max-width:1080px;margin:0 auto}
.subscribe-hero-img{aspect-ratio:4/5;border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 24px 60px -28px rgba(27,36,16,.25);display:flex;align-items:center;justify-content:center;color:var(--ink-soft);font-size:11px;letter-spacing:.24em;text-transform:uppercase;font-weight:600;border:1px solid var(--line)}
.subscribe-hero-img img{width:100%;height:100%;object-fit:cover;display:block}
.subscribe-hero-text h1{font-family:'Fraunces',serif;font-size:clamp(36px,4.6vw,56px);line-height:1.05;letter-spacing:-.02em;margin:14px 0 18px;font-weight:600}
.subscribe-hero-text h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.subscribe-hero-text > p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0 0 28px;max-width:520px}
.subscribe-hero-cta{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.subscribe-hero-cta .scroll-link{font-size:13.5px;color:var(--ink-soft);font-weight:700;letter-spacing:.02em;text-decoration:underline;text-underline-offset:3px;transition:color .2s ease}
.subscribe-hero-cta .scroll-link:hover{color:var(--lime-deep)}

.subscribe-perks{background:#fff}
.perks-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;max-width:1100px;margin:8px auto 0}
.perk-card{background:var(--off);border:1px solid var(--line);border-radius:16px;padding:30px;position:relative;display:flex;flex-direction:column;gap:12px}
.perk-card.highlighted{border:2px solid var(--lime);background:#fff;box-shadow:0 28px 56px -28px rgba(167,211,46,.32)}
.perk-gift-chip{position:absolute;top:14px;right:14px;background:var(--lime);color:var(--ink);font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;padding:5px 10px;border-radius:4px}
.perk-card .icon{margin-bottom:4px}
.perk-card .icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.perk-card h3{font-family:'Fraunces',serif;font-size:20px;font-weight:600;line-height:1.2;letter-spacing:-.01em;margin:0;color:var(--ink)}
.perk-card p{margin:0;color:var(--ink-soft);font-size:14.5px;line-height:1.6}

/* Inline subscribe form section on the subscribe page */
.subscribe-form-section{background:var(--lime);padding:96px 0}
.subscribe-form-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:start;max-width:1000px;margin:0 auto}

/* 4-step subscription builder */
.sub-builder{background:#fff;border-radius:20px;padding:30px;border:1px solid #E2E6D6;box-shadow:0 14px 38px -18px rgba(27,36,16,.18);display:flex;flex-direction:column;gap:24px}
.sub-step-label{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;margin:0 0 10px;display:flex;align-items:center;gap:9px}
.sub-step-num{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--lime);color:var(--ink);font-family:'Fraunces',serif;font-weight:700;font-size:12px;line-height:1;letter-spacing:0}
.sub-step-title{font-family:'Fraunces',serif;font-size:18px;font-weight:600;letter-spacing:-.01em;margin:0 0 14px;color:var(--ink);line-height:1.2}

.sub-grade-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.sub-grade-card{background:#fff;border:1px solid var(--line);border-radius:10px;padding:14px 12px;cursor:pointer;transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;text-align:left;font-family:inherit;display:flex;flex-direction:column;gap:4px;line-height:1.3}
.sub-grade-card:hover{border-color:var(--lime-deep)}
.sub-grade-card.selected{border:2px solid var(--lime-deep);background:var(--lime-soft);padding:13px 11px}
.sub-grade-card-name{font-family:'Fraunces',serif;font-size:15px;font-weight:600;color:var(--ink);letter-spacing:-.01em}
.sub-grade-card-price{font-size:11.5px;color:var(--ink-soft);font-weight:500}

.sub-cadence-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.sub-cadence-pill{background:#fff;border:1px solid var(--line);border-radius:10px;padding:13px 14px;cursor:pointer;transition:border-color .2s ease, background .2s ease;font-family:inherit;font-size:14px;font-weight:600;color:var(--ink);display:inline-flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;text-align:center}
.sub-cadence-pill:hover{border-color:var(--lime-deep)}
.sub-cadence-pill.selected{border:2px solid var(--lime-deep);background:var(--lime-soft);padding:12px 13px}
.sub-cadence-popular-chip{background:var(--lime);color:var(--ink);font-size:9px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:3px 7px;border-radius:4px;line-height:1}

.sub-summary{background:var(--lime-soft);border:1px solid var(--lime);border-radius:12px;padding:18px 20px}
.sub-summary-head{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap;margin-bottom:6px}
.sub-summary-meta{font-size:11px;color:var(--ink-soft);font-weight:700;letter-spacing:.18em;text-transform:uppercase}
.sub-summary-price{font-family:'Fraunces',serif;font-size:26px;font-weight:600;color:var(--ink);letter-spacing:-.02em;line-height:1}
.sub-summary-details{margin:0;font-size:13px;color:var(--ink);font-style:italic;line-height:1.45}

.sub-email-row{display:flex;flex-direction:column;gap:10px;margin:0}
.sub-email-row input{padding:14px 16px;border-radius:8px;border:1px solid var(--line);font-size:14px;font-family:inherit;background:#fff;color:var(--ink)}
.sub-email-row input:focus{outline:2px solid var(--lime);border-color:var(--lime)}
.sub-builder .btn-primary{width:100%;justify-content:center;padding:16px 22px;font-size:14.5px}

.sub-trust-row{display:flex;justify-content:center;gap:18px;flex-wrap:wrap;margin-top:22px;font-size:12.5px;color:var(--ink);font-weight:600;letter-spacing:.02em}
.sub-trust-row span{display:inline-flex;align-items:center;gap:6px}
.sub-trust-row .ts-check{color:var(--lime-deep);font-weight:800}
.sub-trust-row .ts-sep{opacity:.35}
.subscribe-form-grid h2{font-family:'Fraunces',serif;font-size:clamp(30px,3.8vw,46px);line-height:1.05;margin:10px 0 12px;font-weight:600;letter-spacing:-.01em}
.subscribe-form-grid h2 em{font-style:italic;color:#0F1607;font-weight:500}
.subscribe-form-grid > div > p{color:var(--ink-soft);font-size:16px;line-height:1.6;margin:0 0 16px;max-width:440px}
.subscribe-form-grid .sub-price-anchor{margin-bottom:18px}

/* ===== Find Your Grade quiz ===== */
.quiz-section{background:var(--off);padding:80px 0 96px;min-height:60vh}
.quiz-step{display:none}
.quiz-step.active{display:block;animation:quizFadeIn .4s ease forwards}
@keyframes quizFadeIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}

.quiz-intro-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:64px;align-items:center;max-width:1000px;margin:0 auto}
.quiz-intro-img{aspect-ratio:4/5;border-radius:18px;overflow:hidden;background:#F4F1E6}
.quiz-intro-img img{width:100%;height:100%;object-fit:cover;display:block}
.quiz-intro-text h1{font-family:'Fraunces',serif;font-size:clamp(36px,4.6vw,56px);font-weight:600;line-height:1.05;letter-spacing:-.02em;margin:14px 0 18px}
.quiz-intro-text h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.quiz-intro-text > p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0 0 28px;max-width:480px}
.quiz-intro-text .btn{font-size:14.5px;padding:14px 24px}

.quiz-progress{display:flex;gap:10px;justify-content:center;margin-bottom:28px}
.quiz-progress-dot{width:8px;height:8px;border-radius:50%;background:var(--line);transition:background .25s ease, width .25s ease, border-radius .25s ease}
.quiz-progress-dot.active{background:var(--lime);width:24px;border-radius:4px}

.quiz-questionlabel{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;text-align:center;margin:0 0 12px}
.quiz-question h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,40px);font-weight:600;letter-spacing:-.01em;line-height:1.15;text-align:center;margin:0 auto 40px;max-width:680px}

.quiz-answers{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:680px;margin:0 auto}
.quiz-answer{background:#fff;border:1px solid var(--line);border-radius:12px;padding:22px;cursor:pointer;text-align:left;font-family:inherit;font-size:15px;color:var(--ink);font-weight:600;line-height:1.4;transition:transform .2s ease, border-color .2s ease, box-shadow .25s ease;display:flex;align-items:center;gap:14px;letter-spacing:-.005em}
.quiz-answer:hover{transform:translateY(-2px);border-color:var(--lime-deep);box-shadow:0 12px 28px -16px rgba(27,36,16,.18)}
.quiz-answer-letter{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:var(--lime-soft);color:var(--lime-deep);font-family:'Fraunces',serif;font-weight:700;font-size:14px;flex-shrink:0;transition:background .2s ease, color .2s ease}
.quiz-answer:hover .quiz-answer-letter{background:var(--lime);color:var(--ink)}

.quiz-back-wrap{text-align:center;margin-top:48px}
.quiz-back{background:none;border:none;cursor:pointer;font-family:inherit;font-size:13px;color:var(--ink-soft);font-weight:600;letter-spacing:.04em;padding:8px 16px;transition:color .2s ease}
.quiz-back:hover{color:var(--lime-deep)}

.quiz-email-step{text-align:center;max-width:540px;margin:0 auto}
.quiz-email-step .eyebrow{display:block;margin-bottom:14px}
.quiz-email-step h2{font-family:'Fraunces',serif;font-size:clamp(30px,3.6vw,42px);font-weight:600;letter-spacing:-.01em;line-height:1.1;margin:0 0 16px}
.quiz-email-step h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.quiz-email-step > p{color:var(--ink-soft);font-size:16px;line-height:1.6;margin:0 0 28px}
.quiz-email-form{display:flex;gap:10px;margin:0 auto;max-width:480px}
.quiz-email-form input{flex:1;padding:14px 16px;border-radius:8px;border:1px solid var(--line);font-family:inherit;font-size:14px;background:#fff;color:var(--ink)}
.quiz-email-form input:focus{outline:2px solid var(--lime);border-color:var(--lime)}
.quiz-skip-link{display:inline-block;margin-top:22px;font-size:13px;color:var(--ink-soft);text-decoration:underline;text-underline-offset:3px;cursor:pointer;background:none;border:none;font-family:inherit;font-weight:500;transition:color .2s ease}
.quiz-skip-link:hover{color:var(--lime-deep)}

.quiz-result{text-align:center;max-width:800px;margin:0 auto}
.quiz-result .eyebrow{display:block;margin-bottom:14px}
.quiz-result h2{font-family:'Fraunces',serif;font-size:clamp(32px,4vw,48px);font-weight:600;letter-spacing:-.01em;line-height:1.05;margin:0 0 20px}
.quiz-result h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.quiz-result > p{color:var(--ink-soft);font-size:16.5px;line-height:1.65;margin:0 auto 28px;max-width:620px}
.quiz-result-product{background:#fff;border:1px solid var(--line);border-radius:18px;padding:36px;margin:0;display:grid;grid-template-columns:1fr 1.3fr;gap:36px;align-items:center;box-shadow:0 32px 70px -36px rgba(27,36,16,.22);text-align:left}
.quiz-result-product-img{aspect-ratio:1/1;background:#F4F1E6;border-radius:14px;overflow:hidden;display:flex;align-items:center;justify-content:center;padding:18px}
.quiz-result-product-img img{width:100%;height:100%;object-fit:contain;display:block}
.quiz-result-product-name{font-family:'Fraunces',serif;font-size:30px;font-weight:600;margin:0 0 8px;letter-spacing:-.01em;line-height:1}
.quiz-result-product-price{margin:0 0 22px;font-family:'Fraunces',serif;font-size:22px;font-weight:600;color:var(--ink);letter-spacing:-.01em;line-height:1.2}
.quiz-result-product-price small{display:block;font-family:'Inter',sans-serif;font-size:12.5px;font-weight:500;color:var(--ink-soft);font-style:italic;margin-top:6px;letter-spacing:0}
.quiz-result-product-body .btn{display:inline-flex;width:100%;justify-content:center;padding:14px 22px;margin-bottom:10px}
.quiz-details-link{display:inline-block;width:100%;text-align:center;font-size:12.5px;color:var(--ink-soft);font-weight:600;letter-spacing:.04em;text-decoration:underline;text-underline-offset:3px;transition:color .2s ease}
.quiz-details-link:hover{color:var(--lime-deep)}
.quiz-result-extra{margin:28px 0 0;text-align:center;font-size:14px;color:var(--ink-soft);line-height:1.6}
.quiz-result-extra a{color:var(--lime-deep);font-weight:700;transition:color .2s ease}
.quiz-result-extra a:hover{color:var(--ink)}
.quiz-trust{margin-top:40px}
.quiz-retake{display:block;text-align:center;margin-top:32px;font-size:13px;color:var(--ink-soft);letter-spacing:.02em;font-weight:600;text-decoration:underline;text-underline-offset:3px;cursor:pointer;background:none;border:none;font-family:inherit;width:100%;transition:color .2s ease}
.quiz-retake:hover{color:var(--lime-deep)}

/* ===== Recipes page ===== */
.recipe-pillrow{position:sticky;top:73px;z-index:40;background:rgba(255,255,255,.94);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line);padding:18px 0}
.recipe-pillrow-inner{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.recipe-pill{display:inline-block;padding:9px 18px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:13px;font-weight:600;color:var(--ink);transition:border-color .2s ease, background .2s ease, color .2s ease;cursor:pointer}
.recipe-pill:hover{border-color:var(--lime-deep);background:var(--lime-soft);color:var(--ink)}
.recipe-pill.active{background:var(--lime);color:var(--ink);border-color:var(--lime)}

.recipes-grid-section{background:#fff;padding:72px 0}
.recipe-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.recipe-card{background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;transition:transform .25s ease, box-shadow .25s ease;color:inherit;text-decoration:none}
.recipe-card:hover{transform:translateY(-3px);box-shadow:0 28px 56px -32px rgba(27,36,16,.22)}
.recipe-card-img{aspect-ratio:4/5;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;color:rgba(27,36,16,.35);font-family:'Inter',sans-serif;font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:600;background:linear-gradient(160deg,#EEF7D5 0%,#A7D32E 100%)}
.recipe-card[data-cat="breakfast"] .recipe-card-img{background:linear-gradient(160deg,#F7F1E2 0%,#D8C99B 100%)}
.recipe-card[data-cat="snacks"] .recipe-card-img{background:linear-gradient(160deg,#EEF7D5 0%,#6E9C16 100%)}
.recipe-card[data-cat="baking"] .recipe-card-img{background:linear-gradient(160deg,#FAF0E1 0%,#D8B57A 100%)}
.recipe-card-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;z-index:1}
.recipe-tag{position:absolute;top:14px;left:14px;display:inline-block;padding:5px 11px;border-radius:6px;background:rgba(255,255,255,.95);color:var(--ink);font-size:10px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;z-index:2}
.recipe-body{padding:22px;display:flex;flex-direction:column;gap:10px;flex:1}
.recipe-title{font-family:'Fraunces',serif;font-size:22px;font-weight:600;letter-spacing:-.01em;line-height:1.15;margin:0;color:var(--ink)}
.recipe-desc{margin:0;color:var(--ink-soft);font-size:14px;line-height:1.55}
.recipe-meta{margin:auto 0 0;display:flex;flex-wrap:wrap;gap:6px 12px;font-size:11px;color:var(--ink-soft);letter-spacing:.06em;text-transform:uppercase;font-weight:600;border-top:1px solid var(--line);padding-top:14px}
.recipe-meta-sep{opacity:.4}
.recipe-meta strong{color:var(--lime-deep);font-weight:700}

/* Recipe detail sections */
.recipe-details{background:var(--off);padding:96px 0 32px}
.recipe-detail{max-width:880px;margin:0 auto 72px;padding-bottom:64px;border-bottom:1px solid var(--line);scroll-margin-top:170px}
.recipe-detail:last-child{margin-bottom:0;border-bottom:none;padding-bottom:0}
.recipe-detail-head{margin-bottom:18px}
.recipe-detail-tag{display:inline-block;padding:5px 12px;border-radius:6px;background:var(--lime);color:var(--ink);font-size:10px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;margin-bottom:14px}
.recipe-detail-head h3{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,40px);font-weight:600;letter-spacing:-.01em;line-height:1.05;margin:0 0 14px}
.recipe-detail-meta{display:flex;flex-wrap:wrap;gap:8px 16px;font-size:11px;color:var(--ink-soft);letter-spacing:.18em;text-transform:uppercase;font-weight:700}
.recipe-detail-meta strong{color:var(--lime-deep);font-weight:700}
.recipe-detail-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:48px;align-items:start;margin-top:28px}
.recipe-section-label{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;margin:0 0 14px;display:block}
.recipe-ingredients-list{margin:0;padding:0;list-style:none}
.recipe-ingredients-list li{padding:10px 0;border-bottom:1px solid var(--line);font-size:14.5px;color:var(--ink);line-height:1.55}
.recipe-ingredients-list li:last-child{border-bottom:none}
.recipe-method-list{margin:0;padding:0;list-style:none;counter-reset:step;display:flex;flex-direction:column;gap:14px}
.recipe-method-list li{counter-increment:step;font-size:15px;line-height:1.65;color:var(--ink);padding-left:40px;position:relative}
.recipe-method-list li::before{content:counter(step,decimal-leading-zero);position:absolute;left:0;top:0;font-family:'Fraunces',serif;font-size:15px;color:var(--lime-deep);font-weight:600;width:32px}
.recipe-note{margin-top:32px;padding:20px 22px;background:var(--lime-soft);border-left:3px solid var(--lime-deep);border-radius:8px;font-size:14.5px;line-height:1.65;color:var(--ink)}
.recipe-note strong{font-weight:700;color:var(--ink)}
.recipe-back{display:inline-block;margin-top:24px;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;transition:color .2s ease}
.recipe-back:hover{color:var(--lime-deep)}

/* Submit-a-recipe strip */
.submit-strip{background:var(--lime-soft);text-align:center}
.submit-strip h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,42px);line-height:1.05;margin:14px 0 14px;letter-spacing:-.01em;font-weight:600}
.submit-strip h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.submit-strip p{color:var(--ink-soft);font-size:16px;line-height:1.6;margin:0 auto 28px;max-width:560px}

/* ===== Breadcrumb ===== */
.breadcrumb{font-size:12px;color:var(--ink-soft);letter-spacing:.04em;display:flex;align-items:center;gap:8px;margin-bottom:14px}
.breadcrumb a{color:var(--ink-soft);transition:color .2s ease}
.breadcrumb a:hover{color:var(--lime-deep)}
.breadcrumb-sep{opacity:.5;font-weight:300}
.breadcrumb-current{color:var(--ink);font-weight:600}

/* ===== Farm hero (two-column with image) ===== */
.farm-hero{background:var(--off);padding:80px 0 96px}
.farm-hero-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center}
.farm-hero h1{font-family:'Fraunces',serif;font-size:clamp(40px,5.6vw,64px);line-height:1.02;letter-spacing:-.02em;margin:14px 0 18px;font-weight:600}
.farm-hero h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.farm-hero-text > p{color:var(--ink-soft);font-size:18px;line-height:1.6;margin:0;max-width:480px}
.farm-hero-img{aspect-ratio:4/5;border-radius:18px;overflow:hidden;background:#F4F1E6;box-shadow:0 30px 70px -40px rgba(27,36,16,.25)}
.farm-hero-img img{width:100%;height:100%;object-fit:cover;display:block;object-position:center}

/* Section with split header (heading left, intro right) */
.split-head{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:end;margin-bottom:56px}
.split-head .eyebrow{display:block;margin-bottom:10px}
.split-head h2{font-family:'Fraunces',serif;font-size:clamp(32px,4.2vw,52px);line-height:1.05;margin:0;letter-spacing:-.01em;font-weight:600}
.split-head h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.split-head .split-intro{color:var(--ink-soft);font-size:16px;line-height:1.65;margin:0;max-width:480px}

/* Purity section (one farm no compromises) */
.purity{background:var(--off)}
.purity-img{aspect-ratio:4/5;border-radius:18px;background:#F4F1E6;position:relative;overflow:hidden}
.purity-img img{width:100%;height:100%;object-fit:cover;display:block}
.purity-text h2{font-family:'Fraunces',serif;font-size:clamp(30px,3.8vw,46px);line-height:1.05;margin:14px 0 24px;letter-spacing:-.01em;font-weight:600}
.purity-text h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.purity-subs{display:flex;flex-direction:column;gap:28px;margin-top:8px}
.purity-sub-label{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--lime-deep);font-weight:700;display:block;margin-bottom:8px}
.purity-sub p{margin:0;color:var(--ink-soft);font-size:15px;line-height:1.7}

/* ===== Generic content page hero (farm / what-is-matcha / ritual) ===== */
.page-hero{background:var(--off);padding:120px 0 80px}
.page-hero .container{max-width:820px;text-align:center}
.page-hero h1{font-family:'Fraunces',serif;font-size:clamp(40px,5.6vw,68px);line-height:1.02;letter-spacing:-.02em;margin:18px 0 22px;font-weight:600}
.page-hero h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.page-hero p{color:var(--ink-soft);font-size:18px;line-height:1.6;margin:0 auto;max-width:580px}

/* Big number for benefit-style stat cards */
.bcard-num{font-family:'Fraunces',serif;font-size:52px;font-weight:600;color:var(--lime-deep);line-height:1;margin-bottom:14px;display:block;letter-spacing:-.02em}

/* Grades comparison table (what-is-matcha) */
.grades-table{display:grid;grid-template-columns:1.2fr 1.4fr 1.4fr;max-width:900px;margin:0 auto;background:#fff;border-radius:16px;overflow:hidden;border:1px solid var(--line);box-shadow:0 28px 70px -40px rgba(27,36,16,.22)}
.grades-row{display:contents}
.grades-row > div{padding:18px 22px;display:flex;align-items:center;border-bottom:1px solid var(--line);font-size:15px;line-height:1.4}
.grades-row:last-child > div{border-bottom:none}
.grades-label{background:var(--off);font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700}
.grades-row > div:not(.grades-label){color:var(--ink);font-weight:600}
.grades-row.grades-head > div{padding:22px;font-family:'Fraunces',serif;font-size:22px;font-weight:600;letter-spacing:-.01em;border-bottom:2px solid var(--ink)}
.grades-row.grades-head .grades-label{background:#F4F1E6;font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700}
.grades-caption{text-align:center;margin-top:22px;font-size:13px;color:var(--ink-soft);font-style:italic}

/* What we leave out — exclusions grid */
.leave-out-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;max-width:760px;margin:30px auto 0}
.leave-item{padding:15px 18px;background:#fff;border:1px solid var(--line);border-radius:10px;font-size:14.5px;font-weight:600;color:var(--ink);display:flex;align-items:center;gap:14px;letter-spacing:-.005em}
.leave-item::before{content:'✕';color:#B25A4F;font-weight:800;font-size:12px;display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background:#FAEBE8;flex-shrink:0;line-height:1}

/* Certification badges row (manufacturing) */
.cert-row{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:28px}
.cert-badge{display:inline-flex;align-items:center;gap:10px;padding:10px 18px;border:1px solid var(--line);border-radius:999px;background:#fff;font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-soft)}
.cert-badge::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--lime-deep)}

/* Video placeholder (ritual page) */
.video-ph{aspect-ratio:16/9;background:linear-gradient(160deg,#3F4A2E 0%,#1B2410 100%);border-radius:18px;display:flex;flex-direction:column;align-items:center;justify-content:center;color:rgba(255,255,255,.6);max-width:920px;margin:0 auto;gap:14px}
.video-ph .play-icon{width:72px;height:72px;border-radius:50%;background:rgba(255,255,255,.14);display:flex;align-items:center;justify-content:center;color:#fff;font-size:24px;padding-left:6px}
.video-ph .video-caption{font-family:'Inter',sans-serif;font-size:13px;letter-spacing:.2em;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,.65);font-style:normal}

/* ===== FAQ page ===== */
html{scroll-behavior:smooth}
.faq-hero{background:var(--off);padding:120px 0 72px}
.faq-hero .container{max-width:780px;text-align:center}
.faq-hero h1{font-family:'Fraunces',serif;font-size:clamp(40px,5.6vw,68px);line-height:1.02;letter-spacing:-.02em;margin:18px 0 22px;font-weight:600}
.faq-hero h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.faq-hero p{color:var(--ink-soft);font-size:18px;line-height:1.6;margin:0 auto;max-width:580px}
.faq-hero a{color:var(--lime-deep);font-weight:600;text-decoration:underline;text-underline-offset:3px}
.faq-hero a:hover{color:var(--ink)}

/* Sticky category pill nav */
.faq-catnav{position:sticky;top:73px;z-index:40;background:rgba(255,255,255,.94);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line);padding:18px 0}
.faq-catnav-inner{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.faq-pill{display:inline-block;padding:9px 18px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:13px;font-weight:600;color:var(--ink);transition:border-color .2s ease, background .2s ease, color .2s ease}
.faq-pill:hover{border-color:var(--lime-deep);background:var(--lime-soft);color:var(--ink)}

/* FAQ category sections */
.faq-cat{padding:80px 0;border-bottom:1px solid var(--line);scroll-margin-top:160px;background:#fff}
.faq-cat:nth-of-type(even){background:var(--off)}
.faq-cat:last-of-type{border-bottom:none}
.faq-cat-head{text-align:center;margin-bottom:36px}
.faq-cat-head h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,40px);line-height:1.05;margin:10px 0 0;letter-spacing:-.01em;font-weight:600}
.faq-cat-head h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}

/* FAQ "Still stuck" strip — reuses crosssell-style dark bg */
.faq-stuck{background:var(--ink);color:#fff;text-align:center}
.faq-stuck h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,42px);line-height:1.05;margin:14px 0 14px;color:#fff;letter-spacing:-.01em;font-weight:600}
.faq-stuck h2 em{font-style:italic;color:var(--lime);font-weight:500}
.faq-stuck p{color:#D5DCC0;font-size:16px;line-height:1.6;margin:0 auto 28px;max-width:520px}
.faq-stuck-cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.faq-stuck .btn-ghost{border-color:rgba(255,255,255,.4);color:#fff}
.faq-stuck .btn-ghost:hover{background:#fff;color:var(--ink);border-color:#fff}

/* ===== Product detail page ===== */
.pdp-hero{background:var(--off);padding:120px 0 96px}
.pdp-grid{display:grid;grid-template-columns:1fr 0.95fr;gap:64px;align-items:start}
.pdp-gallery{display:flex;flex-direction:column;gap:14px;position:sticky;top:90px}
.pdp-main-img{aspect-ratio:1/1;background:#fff;border-radius:18px;overflow:hidden;border:1px solid var(--line)}
.pdp-main-img img{width:100%;height:100%;object-fit:cover;display:block;transition:opacity .2s ease}
.pdp-main-img img.is-fading{opacity:0}
.pdp-main-img img[src*="ceremonial.png"]{transform:translateY(-55px) scale(1.30)}
.pdp-main-img img[src*="matcha-premium.png"]{transform:scale(1.15)}
.pdp-main-img img[src*="multiple-pouch-both.png"]{transform:scale(1.10)}
.pdp-thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.pdp-thumb{aspect-ratio:1/1;background:#fff;border-radius:12px;border:2px solid var(--line);overflow:hidden;padding:0;cursor:pointer;transition:transform .2s ease, border-color .2s ease;display:block}
.pdp-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.pdp-thumb:hover{transform:translateY(-2px);border-color:var(--lime-deep)}
.pdp-thumb.is-active{border-color:var(--lime-deep)}

/* Buy box */
.pdp-buybox{display:flex;flex-direction:column;gap:14px;padding-top:6px}
.pdp-buybox > .eyebrow{margin-bottom:0}
.pdp-buybox h1{font-family:'Fraunces',serif;font-size:clamp(40px,4.6vw,60px);font-weight:600;line-height:1;letter-spacing:-.015em;margin:6px 0 0}
.pdp-tagline{font-family:'Fraunces',serif;font-style:italic;font-size:20px;color:var(--lime-deep);margin:0;letter-spacing:-.01em;font-weight:500}
.pdp-stars{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--ink-soft)}
.pdp-stars .stars{color:var(--lime-deep);letter-spacing:2px}
.pdp-stars .score{color:var(--ink);font-weight:700}
.pdp-desc{color:var(--ink-soft);font-size:15.5px;line-height:1.65;margin:0}
.pdp-plans{display:flex;flex-direction:column;gap:10px;margin:6px 0 0}
.pdp-plan{display:block;border:1px solid var(--line);border-radius:10px;padding:18px 20px;cursor:pointer;transition:border-color .2s ease, background .2s ease;position:relative;background:#fff}
.pdp-plan input{position:absolute;opacity:0;pointer-events:none}
.pdp-plan-row{display:flex;justify-content:space-between;align-items:center;gap:14px}
.pdp-plan-label{display:flex;flex-direction:column;gap:4px}
.pdp-plan-title{font-weight:600;color:var(--ink);font-size:15px;display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap}
.pdp-plan-meta{color:var(--ink-soft);font-size:13px;font-style:italic}
.pdp-plan-price{font-family:'Fraunces',serif;font-size:22px;font-weight:600;color:var(--ink);white-space:nowrap}
.pdp-plan-price .per{font-family:'Inter',sans-serif;font-size:13px;font-weight:500;color:var(--ink-soft);margin-left:2px}
.pdp-plan:has(input:checked){border-color:var(--lime-deep);background:var(--lime-soft)}
.pdp-cadence{display:none;grid-template-columns:1fr 1fr;gap:8px}
.pdp-plans:has(.plan-subscribe input:checked) .pdp-cadence{display:grid}
.pdp-cadence-pill{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;text-align:center;background:#fff;border:1px solid var(--line);border-radius:10px;padding:11px 12px;cursor:pointer;font-size:13.5px;font-weight:600;color:var(--ink);transition:border-color .2s ease,background .2s ease}
.pdp-cadence-pill input{position:absolute;opacity:0;pointer-events:none}
.pdp-cadence-pill:hover{border-color:var(--lime-deep)}
.pdp-cadence-pill:has(input:checked){border:2px solid var(--lime-deep);background:var(--lime-soft);padding:10px 11px}
.pdp-cadence-chip{background:var(--lime);color:var(--ink);font-size:9px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:3px 7px;border-radius:4px;line-height:1}
.pdp-cadence-note{display:none;margin:8px 0 0;font-size:12.5px;color:var(--ink-soft);font-style:italic}
.pdp-plans:has(.plan-subscribe input:checked) .pdp-cadence-note{display:block}
.pdp-cadence-note .note-2,.pdp-cadence-note .note-4{display:none}
.pdp-plans:has(.pdp-cadence input[value="2"]:checked) .pdp-cadence-note .note-2{display:inline}
.pdp-plans:has(.pdp-cadence input[value="4"]:checked) .pdp-cadence-note .note-4{display:inline}
.pdp-perks-link{display:block;text-align:center;font-family:'Inter',sans-serif;font-size:13px;color:var(--ink-soft);text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px;margin:10px 0 14px;transition:color .2s ease, text-decoration-thickness .2s ease}
.pdp-perks-link:hover{color:var(--lime-deep);text-decoration-thickness:2px}
.pdp-cta{display:flex;flex-direction:column;gap:10px;margin-top:8px}
.pdp-cta .btn{width:100%;padding:16px 22px;font-size:15px;justify-content:center}
.pdp-shipping{font-size:12.5px;color:var(--ink-soft);text-align:center;font-style:italic;margin:0}

/* Quick info bar */
.infobar{background:#fff;padding:34px 0;border-bottom:1px solid var(--line)}
.infobar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;align-items:center}
.infobar-item{display:flex;align-items:center;gap:14px;font-size:13.5px;font-weight:600;color:var(--ink);letter-spacing:.02em}
.infobar-icon{width:36px;height:36px;border-radius:8px;background:var(--lime-soft);display:inline-flex;align-items:center;justify-content:center;color:var(--lime-deep);font-weight:700;flex-shrink:0;font-size:16px}

/* Story section */
.pdp-story{background:#fff}
.pdp-story-inner{max-width:780px;margin:0 auto}
.pdp-story-inner .eyebrow{display:block;text-align:center}
.pdp-story-inner h2{font-family:'Fraunces',serif;font-size:clamp(32px,4vw,48px);line-height:1.05;margin:14px 0 32px;letter-spacing:-.01em;text-align:center;font-weight:600}
.pdp-story-inner h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.pdp-story-inner p{color:var(--ink-soft);font-size:17px;line-height:1.75;margin:0 0 20px}
.pdp-story-inner p:last-child{margin-bottom:0}

/* Taste profile */
.taste{background:var(--off)}
.taste-card{max-width:780px;margin:0 auto;background:#fff;border-radius:18px;padding:14px 36px;border:1px solid var(--line);box-shadow:0 28px 70px -40px rgba(27,36,16,.18)}
.taste-compare{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:1080px;margin:0 auto}
.taste-card-compare{max-width:none;margin:0}
.taste-card-name{font-family:'Fraunces',serif;font-size:22px;font-weight:600;margin:0;padding:10px 0 14px;border-bottom:2px solid var(--ink);letter-spacing:-.01em;color:var(--ink);line-height:1}
.crosssell-cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:6px}
.taste-row{display:flex;justify-content:space-between;align-items:center;gap:24px;padding:20px 0;border-bottom:1px solid var(--line)}
.taste-row:last-child{border-bottom:none}
.taste-key{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;flex-shrink:0;min-width:160px}
.taste-val{color:var(--ink);font-weight:600;font-size:15px;flex:1;text-align:right}
.dots{display:inline-flex;gap:5px;justify-content:flex-end;align-items:center}
.dots span{width:11px;height:11px;border-radius:50%;background:var(--line);display:inline-block}
.dots span.on{background:var(--lime-deep)}
.dots .score{margin-left:10px;font-family:'Fraunces',serif;font-size:15px;color:var(--ink);font-weight:600}

/* Usage cards */
.usage{background:#fff}
.usage-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:8px}
.usage-card{background:var(--off);border-radius:18px;padding:30px;border:1px solid var(--line)}
.usage-card .icon{margin-bottom:18px;font-size:22px}
.usage-card-img{aspect-ratio:1/1;background:#F4F1E6;border-radius:14px;margin:0 auto 18px;overflow:hidden;max-height:280px;width:100%;max-width:280px}
.usage-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.usage-card h3{font-family:'Fraunces',serif;font-size:20px;font-weight:600;line-height:1.2;margin:0 0 10px;letter-spacing:-.01em}
.usage-card p{margin:0;font-size:14.5px;line-height:1.6;color:var(--ink-soft)}

/* Brew strip */
.brew-strip{background:var(--lime-soft)}
.brew-grid{display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;max-width:1080px;margin:0 auto}
.brew-grid h2{font-family:'Fraunces',serif;font-size:clamp(26px,3vw,38px);line-height:1.1;margin:10px 0 8px;letter-spacing:-.01em;font-weight:600}
.brew-grid h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.brew-grid p{color:var(--ink-soft);font-size:15.5px;line-height:1.6;margin:0;max-width:580px}

/* Reviews */
.reviews{background:var(--off)}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:8px}
.review{background:#fff;border-radius:18px;padding:32px;border:1px solid var(--line);display:flex;flex-direction:column;gap:18px}
.review-stars{color:var(--lime-deep);letter-spacing:3px;font-size:15px}
.review-text{font-family:'Fraunces',serif;font-size:17px;line-height:1.55;color:var(--ink);font-weight:500;margin:0;font-style:italic;letter-spacing:-.01em}
.review-name{font-size:13px;color:var(--ink-soft);font-weight:600;margin:0;letter-spacing:.02em}
.reviews-cta{display:flex;justify-content:center;margin-top:40px}

/* Trust bar (5 pillars) */
.trust-bar{background:var(--off);padding:64px 0}
.trust-card{background:#fff;border-radius:18px;padding:44px 36px;border:1px solid var(--line);box-shadow:0 28px 70px -40px rgba(27,36,16,.18);max-width:1180px;margin:0 auto}
.trust-card-head{text-align:center;margin-bottom:36px}
.trust-card-head h2{font-family:'Fraunces',serif;font-size:clamp(26px,3vw,34px);font-weight:600;letter-spacing:-.01em;line-height:1.1;margin:0}
.trust-card-head h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.trust-pillars{display:grid;grid-template-columns:repeat(5,1fr);gap:24px}
.trust-pillar{display:flex;flex-direction:column;gap:8px;align-items:flex-start}
.trust-pillar-icon{width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;color:var(--lime-deep);margin-bottom:6px}
.trust-pillar-icon svg{width:100%;height:100%;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.trust-pillar h3{font-family:'Fraunces',serif;font-size:17px;font-weight:600;margin:0;color:var(--ink);letter-spacing:-.01em;line-height:1.2}
.trust-pillar p{margin:0;font-size:13.5px;line-height:1.55;color:var(--ink-soft)}

/* Cross-sell strip */
.crosssell{background:var(--ink);color:#fff;text-align:center}
.crosssell h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.4vw,42px);line-height:1.05;margin:14px 0 14px;color:#fff;letter-spacing:-.01em;font-weight:600}
.crosssell h2 em{font-style:italic;color:var(--lime);font-weight:500}
.crosssell p{color:#D5DCC0;font-size:16px;line-height:1.6;margin:0 auto 28px;max-width:560px}

/* ===== Wholesale page ===== */
.wholesale-hero{background:var(--off);padding:120px 0 96px}
.wholesale-hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:64px;align-items:center}
.wholesale-hero h1{font-family:'Fraunces',serif;font-size:clamp(40px,5.4vw,64px);line-height:1.02;letter-spacing:-.02em;margin:18px 0 22px;font-weight:600}
.wholesale-hero h1 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.wholesale-hero-text > p{color:var(--ink-soft);font-size:18px;line-height:1.6;margin:0 0 32px;max-width:560px}
.wholesale-hero-img{aspect-ratio:5/4;border-radius:18px;overflow:hidden;background:#F4F1E6;box-shadow:0 30px 70px -40px rgba(27,36,16,.28)}
.wholesale-hero-img img{width:100%;height:100%;object-fit:cover;display:block;object-position:center}
.wholesale-cta{display:flex;gap:14px;flex-wrap:wrap}

/* Stats strip */
.stats-strip{background:var(--ink);color:#fff}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.stat{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);border-radius:16px;padding:40px 32px;text-align:left}
.stat-num{font-family:'Fraunces',serif;font-size:clamp(48px,5.5vw,72px);font-weight:600;line-height:1;letter-spacing:-.02em;color:var(--lime);margin-bottom:16px;display:block}
.stat p{margin:0;font-size:14px;line-height:1.6;color:#D5DCC0}

/* Reasons grid (Why cafes stock) */
.reasons{background:#fff}
.reasons-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.reasons-grid > .reason-card:last-child{grid-column:span 2;background:var(--ink);color:#fff;border-color:transparent}
.reasons-grid > .reason-card:last-child h3{color:#fff}
.reasons-grid > .reason-card:last-child p{color:#D5DCC0}
.reason-card{background:var(--off);border-radius:16px;padding:30px;border:1px solid var(--line)}
.reason-card h3{font-family:'Fraunces',serif;font-size:20px;font-weight:600;line-height:1.2;margin:0 0 12px;letter-spacing:-.01em}
.reason-card h3 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.reason-card p{margin:0;font-size:14.5px;line-height:1.65;color:var(--ink-soft)}

/* Margin table */
.margin-section{background:var(--off)}
.margin-table-wrap{max-width:780px;margin:0 auto}
.margin-table{width:100%;background:#fff;border-radius:16px;overflow:hidden;border:1px solid var(--line);box-shadow:0 28px 70px -40px rgba(27,36,16,.22);border-collapse:collapse}
.margin-table th,.margin-table td{padding:20px 26px;text-align:left}
.margin-table thead th{background:#F4F1E6;font-family:'Fraunces',serif;font-size:18px;font-weight:600;letter-spacing:-.01em;color:var(--ink);border-bottom:2px solid var(--ink)}
.margin-table thead th:first-child{background:#F4F1E6;font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--ink-soft);font-weight:700}
.margin-table tbody td{border-bottom:1px solid var(--line);font-size:15px;color:var(--ink-soft);font-weight:500}
.margin-table tbody td:last-child{font-family:'Fraunces',serif;font-size:18px;font-weight:600;color:var(--ink);text-align:right;white-space:nowrap}
.margin-table tbody tr:last-child{background:rgba(167,211,46,.10)}
.margin-table tbody tr:last-child td{border-bottom:none;font-weight:700;color:var(--ink)}
.margin-table tbody tr:last-child td:last-child{font-size:22px;color:var(--lime-deep)}
.margin-caption{text-align:center;margin-top:22px;font-size:13px;color:var(--ink-soft);font-style:italic}

/* FAQ */
.faq{background:#fff}
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--off);border:1px solid var(--line);border-radius:12px;overflow:hidden}
.faq-item summary{cursor:pointer;padding:22px 26px;font-family:'Fraunces',serif;font-size:18px;font-weight:600;letter-spacing:-.01em;color:var(--ink);list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-family:'Inter',sans-serif;font-size:26px;font-weight:300;color:var(--lime-deep);line-height:1;flex-shrink:0}
.faq-item[open] summary::after{content:'−'}
.faq-item p{margin:0;padding:0 26px 22px;color:var(--ink-soft);font-size:15px;line-height:1.7}

/* Sample request form */
.sample{background:var(--off)}
.sample-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;max-width:1100px;margin:0 auto}
.sample-text h2{font-family:'Fraunces',serif;font-size:clamp(32px,4vw,52px);line-height:1.05;margin:14px 0 18px;letter-spacing:-.01em;font-weight:600}
.sample-text h2 em{font-style:italic;color:var(--lime-deep);font-weight:500}
.sample-text > p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0}
.sample-form{background:#fff;border-radius:20px;padding:32px;display:flex;flex-direction:column;gap:8px;border:1px solid var(--line)}
.sample-form .row2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.sample-form .row2 > div{display:flex;flex-direction:column;gap:6px}
.sample-form label{font-size:12px;font-weight:600;letter-spacing:.04em;color:var(--ink-soft);margin-top:8px}
.sample-form .row2 label{margin-top:0}
.sample-form input,.sample-form select,.sample-form textarea{padding:13px 14px;border-radius:8px;border:1px solid var(--line);font-size:14px;font-family:inherit;background:#fff;color:var(--ink);width:100%}
.sample-form textarea{resize:vertical;min-height:96px}
.sample-form input:focus,.sample-form select:focus,.sample-form textarea:focus{outline:2px solid var(--lime);border-color:var(--lime)}
.sample-form button{margin-top:14px;align-self:flex-start}
.sample-note{margin:14px 0 0;font-size:13px;color:var(--ink-soft);font-style:italic;text-align:center}

/* CTA strip */
.cta-strip{background:var(--ink);color:#fff;text-align:center}
.cta-strip h2{font-family:'Fraunces',serif;font-size:clamp(32px,4vw,52px);line-height:1.05;margin:14px 0 14px;color:#fff;letter-spacing:-.015em}
.cta-strip h2 em{font-style:italic;color:var(--lime);font-weight:500}
.cta-strip p{color:#D5DCC0;font-size:17px;line-height:1.6;margin:0 0 32px;max-width:560px;margin-left:auto;margin-right:auto}
.cta-strip .cta-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.cta-strip .btn-ghost{border-color:rgba(255,255,255,.4);color:#fff}
.cta-strip .btn-ghost:hover{background:#fff;color:var(--ink);border-color:#fff}

/* ===== Footer ===== */
footer{background:var(--ink);color:#D5DBC4;padding:64px 0 28px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;margin-bottom:48px}
footer h4{font-family:'Inter',sans-serif;font-size:13px;letter-spacing:.16em;text-transform:uppercase;color:#fff;margin:0 0 16px}
footer ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px;font-size:14px}
footer ul a:hover{color:var(--lime)}
.foot-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:22px;display:flex;justify-content:space-between;font-size:12px;color:#8B9477;flex-wrap:wrap;gap:12px}
.brand-line{font-family:'Fraunces',serif;font-size:24px;color:#fff;margin-bottom:14px}

/* ============================================================
   MOBILE FOUNDATION — hamburger drawer, sticky CTA, table scroll
   ============================================================ */
.nav-burger{display:none;background:transparent;border:none;cursor:pointer;width:44px;height:44px;padding:11px 10px;flex-direction:column;justify-content:space-between;align-items:stretch;color:var(--ink)}
.nav-burger span{display:block;width:100%;height:2px;background:currentColor;border-radius:1px}

.mobile-drawer-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.5);opacity:0;visibility:hidden;transition:opacity .28s ease-out, visibility .28s ease-out;z-index:100}
.mobile-drawer-backdrop.is-open{opacity:1;visibility:visible}
.mobile-drawer{position:fixed;top:0;right:0;bottom:0;width:min(85vw,320px);background:var(--off);color:var(--ink);transform:translateX(100%);transition:transform .28s ease-out;z-index:110;display:flex;flex-direction:column;padding:20px 16px env(safe-area-inset-bottom);overflow-y:auto;-webkit-overflow-scrolling:touch}
.mobile-drawer.is-open{transform:translateX(0)}
.mobile-drawer-close{position:absolute;top:10px;right:10px;width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;background:transparent;border:none;color:var(--ink);cursor:pointer}
.mobile-drawer-close svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.mobile-drawer-nav{display:flex;flex-direction:column;margin-top:48px}
.mobile-drawer-section-head{font-family:inherit;font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;margin:14px 8px 6px}
.mobile-drawer-nav a{display:flex;align-items:center;min-height:56px;padding:14px 12px;font-family:inherit;font-size:18px;font-weight:600;color:var(--ink);text-decoration:none;letter-spacing:.01em;border-radius:8px;transition:background .15s ease}
.mobile-drawer-nav a:hover,.mobile-drawer-nav a:focus-visible{background:var(--lime-soft)}
.mobile-drawer-divider{display:block;height:1px;background:var(--line);margin:14px 8px}
body.drawer-open{overflow:hidden}

/* Sticky mobile add-to-cart bar (scaffold; populated in Prompt 3) */
.mobile-sticky-cta{position:fixed;left:0;right:0;bottom:0;display:none;align-items:center;gap:12px;background:var(--off);border-top:1px solid var(--line);padding:12px 16px;padding-bottom:max(12px, env(safe-area-inset-bottom));z-index:90;transform:translateY(100%);transition:transform .28s ease-out;visibility:hidden}
.mobile-sticky-cta.visible{transform:translateY(0);visibility:visible}
.mobile-sticky-cta .price-block{flex:0 0 44%;display:flex;flex-direction:column;gap:1px;color:var(--ink);line-height:1.15}
.mobile-sticky-cta .sticky-eyebrow{font-family:'Inter',sans-serif;font-size:10px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);line-height:1.2}
.mobile-sticky-cta .sticky-price{font-family:'Fraunces',serif;font-size:18px;font-weight:600;letter-spacing:-.01em;line-height:1.15;color:var(--ink)}
.mobile-sticky-cta .price-block small{font-family:'Inter',sans-serif;font-weight:500;font-size:11.5px;color:var(--ink-soft);letter-spacing:.02em;font-style:normal;margin-top:1px}
.mobile-sticky-cta .btn{flex:1;min-height:52px;width:auto;font-size:15px;padding:0 18px}

/* Horizontal-scroll wrapper for wide tables on mobile */
.table-scroll-hint{display:none;text-align:center;font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);font-weight:700;margin:0 0 10px}

/* ===== Reusable components (used by Prompt 2+) ===== */

/* .feature-row — compact trust/pillar row */
.feature-row{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;max-width:1080px;margin:0 auto}
.feature-row-item{display:flex;flex-direction:column;gap:6px;padding:16px 12px;align-items:flex-start}
.feature-row-item .feature-row-icon{width:32px;height:32px;color:var(--lime-deep);display:inline-flex;align-items:center;justify-content:center;margin-bottom:4px}
.feature-row-item .feature-row-icon svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.feature-row-item h3,.feature-row-item .feature-row-title{font-family:inherit;font-size:14px;font-weight:700;letter-spacing:.01em;color:var(--ink);line-height:1.25;margin:0}
.feature-row-item p,.feature-row-item .feature-row-body{font-size:13px;line-height:1.5;color:var(--ink-soft);margin:0}
@media (max-width:768px){
  .feature-row{grid-template-columns:repeat(2,1fr);gap:12px}
  .feature-row-item{padding:14px 10px}
  .feature-row-item .feature-row-icon{width:28px;height:28px}
}
@media (max-width:430px){
  .feature-row{gap:8px}
}

/* .product-card-compact — image + microbar + title + price + ATC */
.product-card-compact{background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;display:flex;flex-direction:column;padding:0}
.product-card-compact .product-card-img{aspect-ratio:1/1;background:#F4F1E6;overflow:hidden;max-height:280px}
.product-card-compact .product-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.product-card-compact .product-card-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1}
.product-card-compact .product-card-title{font-family:'Fraunces',serif;font-size:18px;font-weight:600;letter-spacing:-.01em;color:var(--ink);margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.product-card-compact .product-card-price{font-family:'Fraunces',serif;font-size:18px;font-weight:600;color:var(--ink);letter-spacing:-.01em;margin:0}
.product-card-compact .product-card-price small{display:block;font-family:'Inter',sans-serif;font-size:11px;color:var(--ink-soft);font-weight:500;margin-top:2px;letter-spacing:.02em}
.product-card-compact .btn{width:100%;height:48px;min-height:48px;justify-content:center;margin-top:auto}

/* .rating-microbar — stars + review count, inline */
.rating-microbar{display:inline-flex;align-items:center;gap:6px;font-family:'Inter',sans-serif;font-size:13px;color:var(--ink-soft);font-weight:500;line-height:1}
.rating-microbar .rating-stars{color:var(--lime-deep);letter-spacing:1px;font-size:12px;line-height:1}
.rating-microbar .rating-count{color:var(--ink-soft)}

/* .stat-pill — tight inline pill */
.stat-pill{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border-radius:999px;background:var(--lime-soft);color:var(--ink-soft);font-family:'Inter',sans-serif;font-size:13px;font-weight:600;letter-spacing:.01em;line-height:1.2}
.stat-pill svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

/* Image type defaults */
img.hero,img.product,img.lifestyle{object-fit:cover}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .product-grid{grid-template-columns:1fr;gap:20px}
  .product{grid-template-columns:1fr;gap:24px;padding:26px}
  .product .pouch{max-width:280px;margin:0 auto}
  .bgrid{grid-template-columns:repeat(2,1fr)}
  .beliefs-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .vs-rows{grid-template-columns:1fr 1.6fr 1.6fr;font-size:14px}
  .grades-table{grid-template-columns:1fr 1.4fr 1.4fr;font-size:14px}
  .compare-grades-table{grid-template-columns:1fr 1.4fr 1.4fr;font-size:13.5px}
  .subscribe-hero-grid,.subscribe-form-grid,.contact-grid{grid-template-columns:1fr;gap:32px}
  .sub-grade-grid{grid-template-columns:1fr}
  .taste-compare{grid-template-columns:1fr;gap:16px}
  .perks-grid{grid-template-columns:repeat(2,1fr)}
  .quiz-intro-grid{grid-template-columns:1fr;gap:32px}
  .quiz-answers{grid-template-columns:1fr}
  .quiz-result-product{grid-template-columns:1fr;text-align:center;gap:24px;padding:28px}
  .quiz-result-product-body{text-align:center}
  .quiz-email-form{flex-direction:column}
  .trust-card{padding:36px 32px}
  .trust-pillars{grid-template-columns:repeat(2,1fr);gap:28px}
  .product-grid{grid-template-columns:1fr;gap:24px}
  .product--featured{transform:none}
  .product--featured:hover{transform:translateY(-3px)}
  .perks-bar{gap:18px;padding:14px 16px;margin-bottom:40px}
  .quiz-callout-grid{grid-template-columns:1fr;gap:32px}
  .teaser-card{grid-template-columns:1fr;gap:24px;padding:32px}
  .review-card{flex:0 0 80%}
  .reviews-prev,.reviews-next{display:none}
  .shop-filterbar-inner{gap:14px}
  .pdp-grid{grid-template-columns:1fr;gap:32px}
  .pdp-gallery{position:static}
  .pdp-hero{padding:64px 0 56px}
  .infobar-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .usage-grid,.reviews-grid{grid-template-columns:1fr}
  .brew-grid{grid-template-columns:1fr;text-align:left;gap:20px}
  .taste-row{flex-direction:column;align-items:flex-start;gap:8px}
  .taste-val{text-align:left;width:100%}
  .dots{justify-content:flex-start}
  .stats-grid{grid-template-columns:1fr;gap:16px}
  .reasons-grid{grid-template-columns:1fr}
  .reasons-grid > .reason-card:last-child{grid-column:auto}
  .sample-grid{grid-template-columns:1fr;gap:32px}
  .sample-form .row2{grid-template-columns:1fr}
  .recipe-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .recipe-detail-grid{grid-template-columns:1fr;gap:32px}
  .farm-hero-grid,.split-head,.wholesale-hero-grid{grid-template-columns:1fr;gap:32px}
  .farm-hero{padding:64px 0 56px}
  .why-grid,.compare-grid,.sub-grid,.foot-grid,.founder-grid,.about-hero-grid{grid-template-columns:1fr;gap:40px}
  .foot-grid{gap:28px}
  nav.links{display:none}
  section{padding:64px 0}
  .about-hero{padding:64px 0 48px}
  .slides{height:calc(100vh - 60px);min-height:520px}
  .nav-burger{display:flex}
}

/* ============== 768px (large phones / small tablets) ============== */
@media (max-width: 768px){
  /* Slimmer nav */
  .nav-inner{height:60px;padding:0 18px;gap:14px}
  .nav-logo-center img{height:64px}
  .nav-cart{width:40px;height:40px}

  /* Buttons: 48px touch target on mobile */
  .btn{min-height:48px;padding:14px 24px;font-size:14.5px}
  .btn-lg{padding:16px 28px}

  /* Inputs: prevent iOS zoom; 48px tap area */
  input,select,textarea{font-size:16px}
  input[type="text"],input[type="email"],input[type="tel"],input[type="search"],input[type="number"],input[type="url"],select,textarea{min-height:48px;padding:14px 16px}

  /* Tappable pill controls */
  .toggle-pill,.recipe-pill,.sub-cadence-pill,.pdp-cadence-pill,.sub-grade-card,.filter-pill{min-height:44px}
  .shop-filterbar{padding:10px 0;top:60px}
  .shop-filterbar-inner{gap:12px}
  .filter-pill{padding:8px 14px;font-size:12px}

  /* Hide hero carousel arrows on tablet and below — swipe replaces */
  .arrows,.arrows .arrow{display:none}

  /* Sticky add-to-cart bar visible here */
  .mobile-sticky-cta{display:flex}

  /* ============== PDP mobile rebuild (Prompt 3) ============== */
  .pdp-hero{padding:32px 0 24px}
  .pdp-grid{grid-template-columns:1fr;gap:20px}
  .pdp-gallery{position:static;gap:10px}
  .pdp-main-img{aspect-ratio:1/1;max-height:380px;border-radius:14px}
  .pdp-main-img img{object-fit:cover}
  .pdp-thumbs{grid-template-columns:repeat(4,64px);gap:10px;overflow-x:auto;-webkit-overflow-scrolling:touch}
  .pdp-thumb{width:64px;height:64px;border-radius:8px;overflow:hidden}

  .pdp-buybox{gap:12px;padding-top:0}
  .pdp-buybox h1{font-size:clamp(28px,7vw,32px);margin:4px 0 0}
  .pdp-tagline{font-size:15px}
  .pdp-stars{font-size:13px;gap:8px}
  .pdp-stars .stars{letter-spacing:1px;font-size:14px}
  .pdp-desc{font-size:15px;line-height:1.55}
  .pdp-plans{gap:8px}
  .pdp-plan{padding:14px 16px;border-radius:10px;min-height:44px}
  .pdp-plan-title{font-size:14.5px;gap:8px}
  .pdp-plan-meta{font-size:12.5px}
  .pdp-plan-price{font-size:20px}
  .pdp-cta .btn{width:100%;min-height:52px}
  .pdp-shipping{font-size:12px}

  /* Infobar — feature-row style on mobile */
  .infobar{padding:18px 0}
  .infobar-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .infobar-item{gap:10px;font-size:13px;align-items:flex-start}
  .infobar-icon{width:28px;height:28px;font-size:13px;border-radius:6px}

  /* Story section */
  .pdp-story{padding:32px 0}
  .pdp-story-inner h2{margin-bottom:14px}
  .pdp-story p{font-size:15.5px;line-height:1.6}

  /* Taste profile */
  .taste{padding:32px 0}
  .taste-card{padding:8px 18px;border-radius:14px}
  .taste-card-name{font-size:18px;padding:8px 0 10px}
  .taste-row{padding:14px 0}
  .taste-key{font-size:11.5px}
  .taste-val{font-size:14px}

  /* Usage cards — feature-row style, 2-col */
  .usage{padding:32px 0}
  .usage-grid{grid-template-columns:repeat(2,1fr);gap:10px;margin-top:0}
  .usage-grid > .usage-card:last-child:nth-child(odd){grid-column:1 / -1}
  .usage-card{padding:16px 14px;border-radius:12px}
  .usage-card .icon{font-size:18px;margin-bottom:8px;width:32px;height:32px}
  .usage-card-img{max-height:180px;margin-bottom:10px;border-radius:10px}
  .usage-card h3{font-size:15px;margin:0 0 4px}
  .usage-card p{font-size:13px;line-height:1.45}

  /* Brew strip */
  .brew-strip{padding:32px 0}

  /* What's in the bowl (benefits) */
  .benefits{padding:32px 0}
  .benefits .section-head{margin-bottom:16px}

  /* Reviews — stack, tight cards */
  .reviews{padding:32px 0}
  .reviews-grid{grid-template-columns:1fr;gap:12px;margin-top:0}
  .review-card{padding:16px;gap:8px;border-radius:12px}
  .review-stars-row{font-size:13px;letter-spacing:2px}
  .review-headline{font-size:15px}
  .review-body{font-size:14px;line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
  .review-meta{font-size:11.5px}

  /* FAQ */
  .faq{padding:32px 0}

  /* Trust pillars near bottom: 2-col, last spans both, tight */
  .trust-bar{padding:32px 0}
  .trust-card{padding:24px 18px;border-radius:14px}
  .trust-card-head{margin-bottom:20px}
  .trust-pillars{grid-template-columns:repeat(2,1fr);gap:18px 14px}
  .trust-pillars > .trust-pillar:last-child:nth-child(odd){grid-column:1 / -1;align-items:center;text-align:center}
  .trust-pillar-icon{width:28px;height:28px;margin-bottom:2px}
  .trust-pillar h3{font-size:14px;font-weight:700}
  .trust-pillar p{font-size:13px;line-height:1.4}

  /* Cross-sell */
  .crosssell{padding:32px 0}
  .crosssell h2{font-size:clamp(24px,6vw,30px);margin:8px 0 10px}
  .crosssell p{font-size:15px;margin-bottom:18px}
  .crosssell-cta{flex-direction:column;align-items:stretch;gap:10px}
  .crosssell-cta .btn{width:100%;min-height:48px}

  /* Decorative arrows / hints hidden */
  .scroll-hint{display:none}

  /* ============== Prompt 4 — shop.html ============== */
  .shop-hero{padding:32px 0 20px}
  .shop-hero h1{font-size:clamp(26px,6.4vw,32px);margin:8px 0 10px}
  .shop-hero p{font-size:15px;line-height:1.55}
  .shop-filterbar{padding:8px 0}
  .filter-pill{min-height:36px;padding:8px 14px;font-size:12.5px}
  .sort-wrap{font-size:12px}
  .sort-select{padding:8px 28px 8px 12px;font-size:12.5px;min-height:36px}

  .shop-grid-section{padding:24px 0 48px}
  /* Product cards already styled in Prompt 2 mobile rebuild — apply same pattern here */
  .shop-grid-section .product-img-wrap{aspect-ratio:auto;width:100%;height:240px;max-height:240px;padding:14px;display:flex;align-items:center;justify-content:center}
  .shop-grid-section .product-img-wrap img{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain}
  .shop-grid-section .product:nth-child(1) .product-img-wrap,
  .shop-grid-section .product:nth-child(3) .product-img-wrap{aspect-ratio:1/1;height:auto;max-height:none}
  .shop-grid-section .product-body{padding:16px;gap:8px}
  .shop-grid-section .product-body h3{font-size:20px}
  .shop-grid-section .product-sub{font-size:14px}
  .shop-grid-section .product-desc{font-size:13px;min-height:0;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
  .shop-grid-section .toggle-pill{padding:8px 6px;font-size:11.5px;min-height:36px}
  .shop-grid-section .product-perk-chip{font-size:11.5px;padding:5px 10px;border-radius:8px}
  .shop-grid-section .product-price{font-size:24px}
  .shop-grid-section .product-save{font-size:11.5px}
  .shop-grid-section .product-cta{width:100%;min-height:48px;font-size:14.5px;margin-top:auto}
  .shop-grid-section .product-details-link{font-size:11.5px;margin-top:6px}
  .shop-grid-section .product-trust{font-size:10.5px;margin-top:8px}

  /* Quiz callout */
  .quiz-callout{padding:32px 0}
  .quiz-callout-grid{grid-template-columns:1fr;gap:20px}
  .quiz-callout-img{aspect-ratio:16/9;max-height:200px}
  .quiz-callout-text h2{font-size:clamp(22px,5.4vw,28px);margin:6px 0 12px}
  .quiz-callout-text p{font-size:15px;line-height:1.55;margin-bottom:18px}
  .quiz-callout-text .btn{width:100%;min-height:48px}

  /* Reviews carousel — 1-card snap with dots */
  .reviews-section{padding:32px 0}
  .reviews-carousel{gap:16px;padding:8px 0}
  .reviews-carousel .review-card{flex:0 0 calc(100% - 4px);padding:18px;border-radius:12px;scroll-snap-align:center}
  .reviews-arrow{display:none}
  .reviews-dots{display:flex;justify-content:center;gap:8px;margin-top:14px}
  .reviews-dot{width:8px;height:8px;border-radius:50%;background:var(--line);border:none;padding:0;cursor:pointer;transition:background .2s ease, width .25s ease}
  .reviews-dot.is-active{background:var(--lime-deep);width:22px;border-radius:4px}

  /* Accessories teaser tighten */
  .accessories-teaser{padding:32px 0}
  .teaser-card{padding:24px;border-radius:14px;gap:16px}
  .teaser-form{flex-direction:column}
  .teaser-form .btn{width:100%;min-height:48px}

  /* Shop final CTA */
  .shop-final-cta{padding:40px 0}
  .shop-final-cta h2{font-size:clamp(24px,5.8vw,30px)}
  .shop-final-cta .cta-row{flex-direction:column;align-items:stretch}
  .shop-final-cta .cta-row .btn{width:100%;min-height:48px}

  /* ============== Prompt 4 — subscribe.html ============== */
  .subscribe-hero{padding:32px 0 40px}
  .subscribe-hero-grid{gap:20px}
  .subscribe-hero-img{aspect-ratio:16/9;max-height:280px;width:100%;border-radius:14px}
  .subscribe-hero-text h1{font-size:clamp(28px,6.8vw,36px);margin:8px 0 12px}
  .subscribe-hero-text > p{font-size:15px;line-height:1.55;margin-bottom:20px}
  .subscribe-hero-cta{flex-direction:column;align-items:stretch;gap:12px}
  .subscribe-hero-cta .btn{width:100%;min-height:52px}
  .subscribe-hero-cta .scroll-link{text-align:center}

  /* Perks grid — 2-col on mobile */
  .subscribe-perks{padding:32px 0}
  .perks-grid{grid-template-columns:repeat(2,1fr);gap:10px;margin-top:0}
  .perk-card{padding:18px 14px;border-radius:12px;gap:8px}
  .perk-card.highlighted{padding:18px 14px}
  .perk-gift-chip{top:8px;right:8px;font-size:9px;padding:4px 8px}
  .perk-card .icon{width:32px;height:32px;margin-bottom:0}
  .perk-card h3{font-size:14.5px}
  .perk-card p{font-size:13px;line-height:1.45}

  /* Subscribe form section */
  .subscribe-form-section{padding:40px 0}
  .subscribe-form-grid{grid-template-columns:1fr;gap:20px}
  .subscribe-form-grid h2{font-size:clamp(24px,5.8vw,30px);margin-bottom:8px}
  .subscribe-form-grid > div > p{font-size:15px;line-height:1.55;margin-bottom:14px}
  .sub-builder{padding:22px;border-radius:14px;gap:18px}
  .sub-builder .btn-primary{min-height:52px;width:100%}
  .sub-trust-row{font-size:12px}

  /* ============== Prompt 4 — contact.html ============== */
  .contact-hero{padding:32px 0 24px}
  .contact-hero h1{font-size:clamp(26px,6.4vw,32px);margin:8px 0 12px}
  .contact-hero > .container > p{font-size:15px;line-height:1.55}
  .contact-section{padding:24px 0 48px}
  .contact-grid{grid-template-columns:1fr;gap:20px}
  .contact-info-card{padding:20px;border-radius:14px}
  .contact-info-card h3{font-size:18px;margin-bottom:12px}
  .contact-info-item{padding:12px 0;gap:12px;min-height:48px;align-items:center}
  .contact-info-icon{width:32px;height:32px;border-radius:8px}
  .contact-info-icon svg{width:16px;height:16px}
  .contact-info-label{font-size:10.5px;margin-bottom:2px}
  .contact-info-value{font-size:14.5px}
  .contact-form{padding:20px;border-radius:14px;gap:10px}
  .contact-form label{font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-top:8px}
  .contact-form input,.contact-form select,.contact-form textarea{min-height:48px;padding:14px 16px;font-size:16px;border-radius:10px}
  .contact-form textarea{min-height:120px}
  .contact-form button{width:100%;min-height:52px;margin-top:18px}

  /* ============== Prompt 4 — wholesale.html ============== */
  .wholesale-hero{padding:32px 0 24px}
  .wholesale-hero-grid{grid-template-columns:1fr;gap:20px}
  .wholesale-hero-text h1{font-size:clamp(28px,6.8vw,34px);margin:6px 0 12px}
  .wholesale-hero-text > p{font-size:15px;line-height:1.55;margin-bottom:18px}
  .wholesale-hero-img{aspect-ratio:16/9;max-height:240px;border-radius:14px}
  .wholesale-hero-img img{width:100%;height:100%;object-fit:cover}
  .wholesale-cta{flex-direction:column;align-items:stretch;gap:10px}
  .wholesale-cta .btn{width:100%;min-height:48px}

  /* Stats grid — 2-col */
  .stats-strip{padding:32px 0}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .stats-grid > .stat-card:last-child:nth-child(odd){grid-column:1 / -1}
  .stat-card{padding:16px 12px;border-radius:12px;text-align:left;display:flex;flex-direction:column;gap:6px}
  .stat-num{font-size:28px;font-weight:600;line-height:1}
  .stat-label{font-size:12.5px;line-height:1.4}

  /* Reasons grid — 2-col */
  .reasons-section{padding:32px 0}
  .reasons-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .reason-card{padding:16px 14px;border-radius:12px}
  .reason-card h3{font-size:15px}
  .reason-card p{font-size:13px;line-height:1.45}

  /* Margin section + table */
  .margin-section{padding:32px 0}
  .margin-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 -24px;padding:0 24px 6px}
  .margin-table{min-width:540px;font-size:13px}
  .margin-table th,.margin-table td{padding:10px 12px}
  .margin-caption{font-size:12px;line-height:1.5;margin-top:10px}

  /* How it works */
  .how-section{padding:32px 0}

  /* Wholesale FAQ */
  .wholesale-faq{padding:32px 0}

  /* Sample request form */
  .sample-section{padding:32px 0}
  .sample-grid{grid-template-columns:1fr;gap:20px}
  .sample-form{padding:20px;border-radius:14px;gap:10px}
  .sample-form label{font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-top:8px}
  .sample-form input,.sample-form select,.sample-form textarea{min-height:48px;padding:14px 16px;font-size:16px;border-radius:10px}
  .sample-form textarea{min-height:120px}
  .sample-form .row2{grid-template-columns:1fr;gap:10px}
  .sample-form button{width:100%;min-height:52px;margin-top:18px}

  /* Founder note (shared on contact + wholesale) */
  .founder-note{padding:32px 0}

  /* ============== Prompt 5 — content pages ============== */

  /* Shared page hero (ritual, recipes, what-is-matcha, faq) */
  .page-hero{padding:32px 0 24px}
  .page-hero h1{font-size:clamp(26px,6.4vw,32px);margin:6px 0 12px}
  .page-hero p{font-size:15px;line-height:1.55}

  /* --- about.html --- */
  .about-hero{padding:32px 0 28px}
  .about-hero-grid{grid-template-columns:1fr;gap:20px}
  .about-hero h1{font-size:clamp(28px,7vw,32px);margin:8px 0 12px}
  .about-hero p{font-size:16px;line-height:1.55;max-width:100%}
  .about-hero .portrait{aspect-ratio:16/10;max-height:320px;border-radius:14px}
  .story,.mission,.public{padding:32px 0}
  .story-inner h2{font-size:clamp(24px,5.8vw,30px);margin:6px 0 18px}
  .story-inner p{font-size:16px;line-height:1.6;margin-bottom:16px}
  .beliefs{padding:32px 0}
  .beliefs-grid{grid-template-columns:repeat(2,1fr);gap:10px;margin-top:18px}
  .beliefs-grid > .belief:last-child:nth-child(odd){grid-column:1 / -1}
  .belief{padding:16px 14px;border-radius:12px;gap:6px}
  .belief h3{font-size:14.5px}
  .belief p{font-size:13px;line-height:1.45}
  .belief-num{font-size:12px;margin-bottom:6px}

  /* --- farm.html --- */
  .farm-hero{padding:32px 0 24px}
  .farm-hero-grid{grid-template-columns:1fr;gap:20px}
  .farm-hero h1{font-size:clamp(28px,7vw,34px);margin:6px 0 14px}
  .farm-hero p{font-size:16px;line-height:1.55}
  .farm-hero-img{aspect-ratio:16/10;max-height:320px;border-radius:14px}
  .split-section,.process-section,.standards-section,.where-section{padding:32px 0}
  .split-head{grid-template-columns:1fr;gap:20px}
  .split-head h2{font-size:clamp(24px,5.8vw,30px)}
  .split-intro{font-size:15px;line-height:1.55}
  .why-grid{grid-template-columns:1fr;gap:18px}

  /* --- ritual.html --- */
  .video-ph{aspect-ratio:16/9;max-width:100%;max-height:240px;border-radius:14px}
  .video-ph .play-icon{width:48px;height:48px;font-size:18px}
  .video-ph .video-caption{font-size:11px;letter-spacing:.16em}
  /* Steps as tight horizontal cards: number on left, text on right */
  .howto .steps{grid-template-columns:1fr;gap:10px}
  .howto .step{display:grid;grid-template-columns:48px 1fr;gap:14px;align-items:start;padding:14px 16px;border-radius:12px}
  .howto .step .stepnum{font-size:14px;width:32px;height:32px;border-radius:50%;background:var(--lime);color:var(--ink);display:inline-flex;align-items:center;justify-content:center;margin:0;line-height:1;font-weight:700;font-family:'Inter',sans-serif;letter-spacing:.04em}
  .howto .step h3{grid-column:2;font-size:15px;margin:2px 0 4px}
  .howto .step p{grid-column:2;font-size:14px;line-height:1.5;color:var(--ink-soft)}
  /* Equipment grid (Tools section in ritual.html uses .bgrid with icon images) */
  .bgrid{grid-template-columns:repeat(2,1fr);gap:10px}
  .bgrid .bcard{padding:14px 12px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:6px}
  .bgrid .bcard .icon{width:80px;height:80px;max-height:140px;margin-bottom:4px;border-radius:10px;overflow:hidden}
  .bgrid .bcard h3{font-size:14px;margin:0}
  .bgrid .bcard p{font-size:12.5px;line-height:1.4}
  .more-btn .btn{width:100%;min-height:48px}

  /* --- what-is-matcha.html --- */
  .leave-out-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  /* Grades table swipe wrapper already handled by .table-scroll at <=520 */

  /* --- find-your-grade.html --- */
  .quiz-section{padding:32px 0}
  .quiz-intro-grid{grid-template-columns:1fr;gap:20px}
  .quiz-intro-img{aspect-ratio:16/9;max-height:240px;border-radius:14px}
  .quiz-intro-text h1{font-size:clamp(28px,7vw,34px);margin:6px 0 14px}
  .quiz-intro-text > p{font-size:15px;line-height:1.55;margin-bottom:18px}
  .quiz-intro-text .btn{width:100%;min-height:48px}
  .quiz-questionlabel{font-size:10.5px}
  .quiz-question h2{font-size:clamp(22px,6vw,28px);margin-bottom:22px}
  .quiz-answers{grid-template-columns:1fr;gap:10px;max-width:none;padding:0 8px}
  .quiz-answer{padding:14px 16px;min-height:56px;font-size:14.5px}
  .quiz-answer:focus-visible,.quiz-answer.is-selected{background:var(--lime-soft);border-color:var(--lime-deep)}
  .quiz-back-wrap{margin-top:28px}
  .quiz-email-step h2{font-size:clamp(24px,6vw,28px);margin-bottom:12px}
  .quiz-result h2{font-size:clamp(24px,6vw,32px)}
  .quiz-result-product{grid-template-columns:1fr;gap:18px;padding:20px;border-radius:14px}
  .quiz-result-product-img{aspect-ratio:1/1;max-height:240px;padding:12px}
  .quiz-result-product-body .btn{min-height:48px}

  /* --- recipes.html --- */
  .recipe-pillrow{padding:10px 0;top:60px}
  .recipe-pillrow-inner{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;justify-content:flex-start;padding:0 24px;gap:8px;margin:0 -24px}
  .recipe-pillrow-inner::-webkit-scrollbar{display:none}
  .recipe-pill{min-height:36px;padding:8px 14px;font-size:12.5px;white-space:nowrap;scroll-snap-align:start;flex-shrink:0}
  .recipes-grid-section{padding:24px 0 32px}
  .recipe-grid{grid-template-columns:1fr;gap:14px}
  .recipe-card-img{aspect-ratio:1/1;max-height:240px}
  .recipe-body{padding:14px 16px;gap:6px}
  .recipe-meta{font-size:11px;gap:6px}
  .recipe-title{font-size:18px;line-height:1.2}
  .recipe-desc{font-size:13.5px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .recipe-card .btn-ghost,.recipe-card .recipe-card-cta{align-self:flex-start;background:transparent;border:none;padding:0;color:var(--lime-deep);font-weight:700;font-size:13.5px;text-decoration:underline;text-underline-offset:3px}
  .recipe-details{padding:32px 0 24px}
  .recipe-detail{margin-bottom:32px;padding-bottom:24px}
  .recipe-detail-head h3{font-size:clamp(22px,5.8vw,28px);margin-bottom:10px}
  .recipe-detail-tag{font-size:10px;padding:4px 10px;margin-bottom:10px}
  .recipe-detail-meta{font-size:10.5px;gap:6px 12px}
  .recipe-detail-grid{grid-template-columns:1fr;gap:18px;margin-top:18px}
  .recipe-section-label{font-size:11px;margin-bottom:8px}
  .recipe-ingredients-list,.recipe-method-list{font-size:15px;line-height:1.6}
  .recipe-ingredients-list li,.recipe-method-list li{padding:6px 0}
  .recipe-note{font-size:14px;line-height:1.55;padding:14px 16px;border-radius:10px;margin-top:18px}
  .recipe-back{margin-top:14px}

  /* --- faq.html --- */
  .faq-hero{padding:32px 0 18px}
  .faq-hero h1{font-size:clamp(26px,6.4vw,32px);margin:6px 0 12px}
  .faq-hero p{font-size:15px;line-height:1.55}
  .faq-catnav{padding:8px 0;top:60px}
  .faq-catnav-inner{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;justify-content:flex-start;padding:0 24px;gap:8px;margin:0 -24px}
  .faq-catnav-inner::-webkit-scrollbar{display:none}
  .faq-pill{min-height:36px;padding:8px 14px;font-size:12.5px;white-space:nowrap;scroll-snap-align:start;flex-shrink:0;display:inline-flex;align-items:center}
  .faq-cat{padding:28px 0;scroll-margin-top:120px}
  .faq-cat-head{margin-bottom:18px}
  .faq-cat-head h2{font-size:clamp(22px,5.6vw,28px)}
  .faq-list{gap:8px;padding:0 4px}
  .faq-item{border-radius:10px}
  .faq-item summary{padding:16px 18px;font-size:16px;min-height:56px;line-height:1.3}
  .faq-item summary::after{font-size:24px}
  .faq-item p{padding:0 18px 18px;font-size:15px;line-height:1.6}
  .faq-stuck{padding:32px 0}
  .faq-stuck h2{font-size:clamp(24px,5.8vw,30px)}
  .faq-stuck p{font-size:15px;margin-bottom:20px}
  .faq-stuck-cta{flex-direction:column;align-items:stretch;gap:10px}
  .faq-stuck-cta .btn{width:100%;min-height:52px}
}

@media (max-width: 520px){
  .bgrid{grid-template-columns:1fr}
  .beliefs-grid{grid-template-columns:1fr}
  .leave-out-grid{grid-template-columns:1fr}
  .recipe-grid{grid-template-columns:1fr}
  .trust-pillars{grid-template-columns:1fr;gap:24px}
  .trust-pillars > .trust-pillar{align-items:center;text-align:center}
  .perks-grid{grid-template-columns:1fr}
  .compare-grades-table{grid-template-columns:1fr;font-size:13px}
  .review-card{flex:0 0 88%;padding:24px}
  .steps{grid-template-columns:1fr}
  .slide h1{font-size:42px}
  section{padding:48px 0}
  h1{font-size:clamp(30px,7vw,44px)}
  h2{font-size:clamp(28px,6vw,40px)}

  /* Horizontal-scroll wide tables on phone */
  .table-scroll{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 -24px;padding:0 24px 6px}
  .table-scroll .compare-grades-table,.table-scroll .grades-table{min-width:540px;grid-template-columns:1fr 1.4fr 1.4fr;font-size:13.5px}
  .table-scroll-hint{display:block}
}

/* ============== 430px (iPhone 14 Pro Max and similar) ============== */
@media (max-width: 430px){
  section{padding:36px 0}
  .container{padding:0 20px}
  .hero-text h1,h1{font-size:clamp(32px,8vw,44px)}
  h2{font-size:clamp(26px,6vw,36px)}
  .nav-logo-center img{height:56px}
  .mobile-drawer{width:85vw;max-width:320px}
}

/* small flourish */
.scroll-hint{position:absolute;bottom:80px;right:24px;color:#fff;font-size:11px;letter-spacing:.2em;text-transform:uppercase;opacity:.75;z-index:5;writing-mode:vertical-rl}

/* ============== Grade Switcher (PDP top) ============== */
.grade-switch{display:inline-flex;background:var(--paper, #FFFFFF);border:1px solid var(--line);border-radius:999px;padding:4px;gap:2px;margin:0 0 18px}
.grade-switch-pill{padding:8px 16px;border-radius:999px;font-size:13px;font-weight:600;color:var(--ink-soft);text-decoration:none;line-height:1;display:inline-flex;align-items:center;justify-content:center;transition:background .18s ease, color .18s ease;white-space:nowrap}
.grade-switch-pill:hover{color:var(--ink)}
.grade-switch-pill.is-active{background:var(--ink);color:var(--off, #FAFBF5);cursor:default}
.grade-switch-pill.is-active:hover{color:var(--off, #FAFBF5)}
@media (max-width: 768px){
  .grade-switch{display:flex;width:100%;justify-content:space-between;margin-bottom:14px}
  .grade-switch-pill{flex:1;padding:9px 6px;font-size:12.5px}
}

/* Wholesale "sample to supply" steps: 3-up on desktop, swipeable on mobile */
.steps.steps-wholesale{grid-template-columns:repeat(3,1fr)}
@media (max-width:768px){
  .steps.steps-wholesale{display:flex;grid-template-columns:none;overflow-x:auto;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;gap:14px;padding-bottom:10px;scroll-padding-left:20px}
  .steps.steps-wholesale .step{flex:0 0 80%;scroll-snap-align:start}
}

/* PDP quantity stepper */
.pdp-qty{display:inline-flex;align-items:stretch;border:1px solid var(--ink);border-radius:8px;overflow:hidden;background:#fff;margin:0 0 14px;width:max-content}
.pdp-qty-btn{appearance:none;-webkit-appearance:none;border:0;background:#fff;color:var(--ink);font-size:16px;line-height:1;width:36px;height:36px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-weight:600;transition:background .15s;-webkit-tap-highlight-color:transparent}
.pdp-qty-btn:hover{background:var(--off)}
.pdp-qty-btn:active{background:var(--line)}
.pdp-qty-input{width:42px;height:36px;border:0;border-left:1px solid var(--line);border-right:1px solid var(--line);text-align:center;font-size:15px;font-weight:600;color:var(--ink);background:#fff;-moz-appearance:textfield}
.pdp-qty-input::-webkit-outer-spin-button,.pdp-qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.pdp-qty-input:focus{outline:none;background:var(--off)}
