:root {
  --ink: #17382b;
  --ink-2: #24503f;
  --green: #176b43;
  --green-bright: #71ad3d;
  --green-pale: #e7efde;
  --cream: #f7f1e6;
  --ivory: #fcfaf5;
  --paper: #fffefa;
  --red: #b43138;
  --gold: #d6a34d;
  --muted: #67756e;
  --line: #d9dfd8;
  --shadow: 0 18px 60px rgba(23, 56, 43, .12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --radius: 1.5rem;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; line-height: 1.03; }
h1 em, h2 em { color: var(--green-bright); font-style: italic; font-weight: 600; }
h2 { margin-bottom: 1rem; font-size: clamp(2.4rem, 4.2vw, 4.35rem); }
h3 { line-height: 1.25; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 7.5rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: .7rem 1rem; background: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.announcement { background: var(--ink); color: white; font-size: .78rem; font-weight: 600; letter-spacing: .03em; }
.announcement__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.announcement a { color: #d9efc6; }

.site-header { position: sticky; z-index: 80; top: 0; background: rgba(252, 250, 245, .96); border-bottom: 1px solid rgba(23,56,43,.09); backdrop-filter: blur(14px); }
.header__inner { min-height: 88px; display: grid; grid-template-columns: 235px 1fr auto; align-items: center; gap: 2rem; }
.brand img { width: 220px; }
.primary-nav { justify-self: center; display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); font-size: .92rem; font-weight: 600; }
.primary-nav a { position: relative; padding: 1.9rem 0; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: 1.35rem; left: 0; height: 2px; background: var(--green-bright); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: .35rem; }
.icon-button, .menu-toggle, .drawer__close { border: 0; background: transparent; cursor: pointer; }
.icon-button { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; }
.icon-button:hover { background: var(--green-pale); }
.icon-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { position: absolute; top: 1px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 20px; background: var(--red); color: white; font-size: 10px; display: grid; place-items: center; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .2s; }

.eyebrow { margin-bottom: 1.25rem; display: flex; align-items: center; gap: .7rem; color: var(--green); font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.eyebrow--light { color: #d7efc0; }
.eyebrow-small { margin: 0 0 .35rem; color: var(--green); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.hero { position: relative; overflow: hidden; min-height: 755px; background: radial-gradient(circle at 15% 30%, #fff 0, transparent 40%), linear-gradient(115deg, #f8f3e9 0 60%, #e9efe2 60% 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: -330px; bottom: -300px; border: 110px solid rgba(113, 173, 61, .08); border-radius: 50%; }
.hero__grid { min-height: 755px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 5rem; }
.hero__copy { position: relative; z-index: 2; padding: 5.4rem 0; }
.hero h1 { margin: 0 0 1.6rem; max-width: 700px; font-size: clamp(4.1rem, 7vw, 7.2rem); }
.hero__lede { max-width: 620px; margin-bottom: 2.1rem; color: #53675d; font-size: 1.18rem; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; }
.button { min-height: 50px; padding: .8rem 1.3rem; border: 1px solid transparent; border-radius: 999px; display: inline-flex; justify-content: center; align-items: center; gap: .65rem; font-size: .88rem; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: white; box-shadow: 0 8px 25px rgba(23,107,67,.2); }
.button--primary:hover { background: #0e5935; }
.button--ghost { border-color: rgba(23,56,43,.24); background: transparent; }
.button--ghost:hover { border-color: var(--green); background: white; }
.button--dark { background: var(--ink); color: white; }
.button--cream { background: var(--cream); color: var(--ink); }
.button--light-outline { color: white; border-color: rgba(255,255,255,.4); }
.button--light-outline:hover { background: white; color: var(--ink); }
.button--full { width: 100%; }
.hero__proof { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(23,56,43,.13); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hero__proof strong { display: block; margin-bottom: .15rem; font-family: var(--serif); font-size: 1.08rem; }
.hero__proof span { color: var(--muted); font-size: .73rem; line-height: 1.35; display: block; }
.hero__visual { position: relative; z-index: 1; }
.hero__image-wrap { position: relative; width: min(100%, 530px); aspect-ratio: .85; margin-left: auto; border-radius: 46% 46% 10rem 10rem; overflow: hidden; box-shadow: var(--shadow); }
.hero__image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,41,30,.28), transparent 60%); }
.hero__image-wrap > img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero__seal { position: absolute; z-index: 2; top: 2rem; right: 1.6rem; width: 132px; height: 132px; padding: 1rem; background: rgba(247,241,230,.92); border-radius: 50%; display: grid; place-items: center; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.hero__seal svg { width: 34px; fill: none; stroke: var(--green); stroke-width: 2; }
.hero__seal span { font-size: .65rem; font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: .05em; }
.hero__note { position: absolute; z-index: 3; left: -45px; bottom: 35px; width: 250px; padding: 1rem 1.1rem; display: flex; gap: .8rem; align-items: center; border-radius: 1rem; background: white; box-shadow: var(--shadow); }
.hero__note-icon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; background: #f4e2df; color: var(--red); display: grid; place-items: center; }
.hero__note strong, .hero__note small { display: block; }
.hero__note small { color: var(--muted); font-size: .72rem; }

.trust-strip { background: white; border-block: 1px solid var(--line); }
.trust-strip__grid { min-height: 116px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; }
.trust-strip__grid > div { min-height: 60px; padding: 0 2rem; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 1rem; }
.trust-strip__grid > div:first-child { padding-left: 0; }
.trust-strip__grid > div:last-child { padding-right: 0; border: 0; }
.trust-strip svg { width: 34px; flex: 0 0 34px; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { color: var(--muted); font-size: .74rem; line-height: 1.4; }
.trust-strip strong { color: var(--ink); font-size: .88rem; }

.section-heading { margin-bottom: 3rem; }
.section-heading--split { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 4rem; }
.section-heading h2 { max-width: 750px; margin-bottom: 0; }
.section-heading--split > p { margin: 0 0 .5rem; color: var(--muted); }
.needs { background: var(--ivory); }
.needs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.need-card { min-height: 285px; padding: 2rem; border: 1px solid rgba(23,56,43,.07); border-radius: 1.2rem; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.need-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.need-card--sage { background: #e5edda; }
.need-card--peach { background: #f6e6d9; }
.need-card--lavender { background: #ebe5ef; }
.need-card--rose { background: #f5e1e1; }
.need-card--gold { background: #f5ebd5; }
.need-card--blue { background: #dfeaed; }
.need-card__icon { width: 52px; height: 52px; margin-bottom: 1.8rem; border-radius: 50%; background: rgba(255,255,255,.62); display: grid; place-items: center; }
.need-card__icon svg { width: 29px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.need-card h3 { margin: 0 0 .55rem; font-family: var(--serif); font-size: 1.5rem; }
.need-card p { margin-bottom: 1.4rem; color: #5e6b64; font-size: .9rem; }
.text-link { margin-top: auto; color: var(--green); font-size: .83rem; font-weight: 700; }
.text-link--large { display: inline-block; margin-top: 1.3rem; font-size: .95rem; }

.products-section { background: var(--ink); color: white; }
.products-section .section-heading--split { grid-template-columns: 1fr auto; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.product-card { overflow: hidden; border-radius: 1rem; background: var(--paper); color: var(--ink); transition: transform .25s; }
.product-card:hover { transform: translateY(-5px); }
.product-card__image { position: relative; height: 315px; padding: 1.6rem; background: #f3f3ee; display: flex; align-items: center; justify-content: center; }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.badge { position: absolute; z-index: 2; top: .85rem; left: .85rem; padding: .33rem .65rem; border-radius: 999px; background: var(--red); color: white; font-size: .63rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge--soft { background: #80669a; }
.product-card__body { padding: 1.2rem 1.25rem 1.35rem; }
.product-card__brand { margin-bottom: .35rem; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { min-height: 46px; margin: 0 0 .7rem; font-family: var(--serif); font-size: 1.1rem; }
.product-card__meta { min-height: 30px; display: flex; justify-content: space-between; align-items: center; gap: .4rem; font-size: .82rem; }
.product-card__meta del { color: #939d98; margin-right: .2rem; }
.rating { color: var(--gold); font-size: .65rem; letter-spacing: .05em; }
.button--card { width: 100%; min-height: 43px; margin-top: .9rem; border-color: var(--green); color: var(--green); background: transparent; }
.button--card:hover { background: var(--green); color: white; }

.story { background: var(--cream); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.story__visual { position: relative; padding-right: 2rem; }
.story__image { aspect-ratio: .88; overflow: hidden; border-radius: 14rem 14rem 1.5rem 1.5rem; }
.story__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story__quote { position: absolute; right: -1.5rem; bottom: 2.5rem; width: 280px; padding: 1.4rem 1.5rem 1.4rem 3.2rem; background: white; border-radius: 1rem; box-shadow: var(--shadow); }
.story__quote span { position: absolute; left: 1rem; top: .6rem; color: var(--green-bright); font-family: var(--serif); font-size: 3.5rem; }
.story__quote p { margin: 0; font-family: var(--serif); font-size: 1.02rem; line-height: 1.4; }
.story__copy > p:not(.eyebrow) { color: var(--muted); }
.large-copy { font-size: 1.12rem; }
.story__signature { margin-top: 1.6rem; padding-left: 1rem; border-left: 3px solid var(--green-bright); }
.story__signature strong, .story__signature span { display: block; }
.story__signature strong { font-family: var(--serif); }
.story__signature span { color: var(--muted); font-size: .75rem; }

.smoothie { background: var(--ivory); }
.smoothie__panel { min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 2rem; background: var(--green); color: white; }
.smoothie__image { min-height: 100%; }
.smoothie__image img { width: 100%; height: 100%; object-fit: cover; }
.smoothie__copy { padding: clamp(3rem, 6vw, 5.5rem); display: flex; flex-direction: column; justify-content: center; }
.smoothie__copy h2 { font-size: clamp(2.7rem,4.2vw,4.5rem); }
.smoothie__copy h2 em { color: #d9efc6; }
.smoothie__copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.smoothie__hours { margin: 1rem 0 1.8rem; padding: 1rem 0; border-block: 1px solid rgba(255,255,255,.18); display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; font-size: .82rem; }
.smoothie__hours strong { color: #d9efc6; }
.smoothie__copy .button { align-self: flex-start; }

.community { background: white; }
.community__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6rem; align-items: center; }
.community__copy > p:not(.eyebrow) { color: var(--muted); }
.event-card { margin: 2rem 0; padding: 1.2rem; border: 1px solid var(--line); border-radius: 1rem; display: grid; grid-template-columns: 72px 1fr; gap: 1.2rem; }
.event-card__date { height: 72px; border-radius: .8rem; background: var(--green-pale); display: grid; place-content: center; text-align: center; line-height: 1; }
.event-card__date strong { font-family: var(--serif); font-size: 1rem; }
.event-card__date span { margin-top: .25rem; color: var(--green); font-size: .7rem; text-transform: uppercase; }
.event-card h3 { margin: 0 0 .25rem; font-family: var(--serif); }
.event-card p:last-child { margin: 0; color: var(--muted); font-size: .8rem; }
.community__image { position: relative; aspect-ratio: 1.12; overflow: hidden; border-radius: 1.5rem; }
.community__image img { width: 100%; height: 100%; object-fit: cover; }
.community__image span { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; padding: 1rem; border-radius: .8rem; background: rgba(23,56,43,.9); color: white; font-size: .85rem; font-weight: 600; text-align: center; backdrop-filter: blur(7px); }

.newsletter { padding: 5rem 0; background: var(--green); color: white; }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 6rem; }
.newsletter h2 { margin-bottom: .6rem; font-size: clamp(2.3rem,3.6vw,3.8rem); }
.newsletter p:last-child { margin-bottom: 0; color: rgba(255,255,255,.75); }
.newsletter__form { display: grid; grid-template-columns: 1fr auto; gap: .6rem; }
.newsletter__form input { min-height: 55px; padding: 0 1.2rem; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.09); color: white; outline: none; }
.newsletter__form input::placeholder { color: rgba(255,255,255,.65); }
.newsletter__form input:focus { border-color: white; }
.newsletter__form small { grid-column: 1/-1; color: rgba(255,255,255,.56); font-size: .68rem; }

.visit { padding: 7rem 0; background: var(--cream); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.visit__map { min-height: 480px; position: relative; overflow: hidden; border-radius: 1.5rem; background-color: #dfe7d9; background-image: linear-gradient(28deg, transparent 46%, rgba(255,255,255,.7) 47% 52%, transparent 53%), linear-gradient(105deg, transparent 43%, rgba(255,255,255,.55) 44% 48%, transparent 49%), radial-gradient(circle at 20% 30%, #c1d4b8 0 9%, transparent 10%), radial-gradient(circle at 75% 70%, #c1d4b8 0 12%, transparent 13%); display: grid; place-items: center; }
.visit__map::before, .visit__map::after { content: ""; position: absolute; width: 140%; height: 10px; background: rgba(255,255,255,.85); transform: rotate(-25deg); }
.visit__map::after { transform: rotate(35deg); }
.map-pin { position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 50%; background: var(--green); display: grid; place-items: center; box-shadow: 0 10px 25px rgba(23,56,43,.25); }
.map-pin svg { width: 38px; fill: none; stroke: white; stroke-width: 1.8; }
.visit__map > span { position: absolute; z-index: 2; top: calc(50% + 48px); padding: .35rem .8rem; border-radius: 99px; background: white; font-size: .75rem; font-weight: 700; box-shadow: 0 5px 15px rgba(0,0,0,.08); }
.visit address { margin: 1.2rem 0 2rem; font-style: normal; font-size: 1.08rem; }
.visit__hours { margin-bottom: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.visit__hours strong, .visit__hours span { display: block; }
.visit__hours strong { margin-bottom: .6rem; font-family: var(--serif); }
.visit__hours span { color: var(--muted); font-size: .82rem; }
.visit__hours a { color: var(--green); font-weight: 700; }

.site-footer { padding: 5rem 0 2rem; background: #102c22; color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 4rem; }
.footer__brand img { width: 250px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: .94; }
.footer__brand p { max-width: 340px; }
.footer__grid h2 { margin-bottom: 1rem; color: white; font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__grid a, .footer__grid p { display: block; margin-bottom: .5rem; font-size: .78rem; }
.footer__grid a:hover { color: #d9efc6; }
.footer__bottom { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1.2rem; font-size: .68rem; }
.footer__bottom div { display: flex; gap: 1rem; }
.footer__disclaimer { margin-top: 1.5rem; color: rgba(255,255,255,.45); font-size: .62rem; line-height: 1.5; }

.overlay { position: fixed; z-index: 150; inset: 0; visibility: hidden; opacity: 0; background: rgba(7,24,17,.48); backdrop-filter: blur(4px); transition: .25s; }
.overlay.is-open { visibility: visible; opacity: 1; }
.cart-drawer { position: fixed; z-index: 160; top: 0; right: 0; width: min(460px, 100%); height: 100%; padding: 1.5rem; background: var(--paper); transform: translateX(105%); transition: transform .3s ease; display: flex; flex-direction: column; }
.cart-drawer.is-open { transform: none; }
.drawer__header { padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; }
.drawer__header h2 { margin: 0; font-size: 2rem; }
.drawer__close { width: 42px; height: 42px; display: grid; place-items: center; font-size: 2rem; line-height: 1; }
.cart-empty { margin: auto; max-width: 290px; text-align: center; }
.cart-empty > span { font-size: 3.2rem; }
.cart-empty h3 { margin: .7rem 0; font-family: var(--serif); font-size: 1.5rem; }
.cart-empty p { color: var(--muted); }
.cart-items { overflow: auto; }
.cart-line { padding: 1rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: .5rem; }
.cart-line strong, .cart-line span { display: block; }
.cart-line span { color: var(--muted); font-size: .76rem; }
.cart-line button { border: 0; background: transparent; color: var(--red); font-size: .72rem; cursor: pointer; }
.cart-summary { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 1.05rem; }
.cart-summary p { color: var(--muted); font-size: .72rem; }
.search-dialog { width: min(760px, calc(100% - 30px)); padding: clamp(2rem,5vw,4.5rem); border: 0; border-radius: 1.5rem; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.search-dialog::backdrop { background: rgba(7,24,17,.58); backdrop-filter: blur(5px); }
.search-dialog .drawer__close { position: absolute; top: 1rem; right: 1rem; }
.search-dialog h2 { font-size: clamp(2.4rem,5vw,4rem); }
.search-field { display: grid; grid-template-columns: 1fr 52px; border-bottom: 2px solid var(--ink); }
.search-field input { min-width: 0; padding: .9rem 0; border: 0; background: transparent; outline: 0; font-size: 1.1rem; }
.search-field button { border: 0; background: transparent; font-size: 1.5rem; cursor: pointer; }
.search-suggestions { margin-top: 1.2rem; color: var(--muted); font-size: .8rem; }
.search-suggestions a { margin-left: .5rem; color: var(--green); font-weight: 700; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 24px; padding: .75rem 1.2rem; border-radius: 999px; background: var(--ink); color: white; font-size: .8rem; box-shadow: var(--shadow); opacity: 0; transform: translate(-50%, 20px); transition: .25s; pointer-events: none; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

/* Shop */
.page-hero { padding: 5.5rem 0 4.5rem; background: var(--cream); }
.breadcrumbs { margin-bottom: 1.3rem; color: var(--muted); font-size: .72rem; }
.breadcrumbs a { color: var(--green); }
.page-hero__grid { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 5rem; }
.page-hero h1 { margin: 0; font-size: clamp(3.7rem,7vw,6.4rem); }
.page-hero p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.shop-toolbar { position: sticky; z-index: 20; top: 88px; padding: .8rem 0; background: rgba(252,250,245,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.shop-toolbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.shop-search { width: min(400px,100%); display: flex; align-items: center; gap: .6rem; }
.shop-search svg { width: 18px; fill: none; stroke: var(--ink); stroke-width: 1.8; }
.shop-search input { width: 100%; padding: .55rem 0; border: 0; background: transparent; outline: none; }
.shop-sort { display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .78rem; }
.shop-sort select { padding: .5rem 2rem .5rem .75rem; border: 1px solid var(--line); border-radius: 99px; background: white; color: var(--ink); }
.shop-layout { padding: 4rem 0 7rem; display: grid; grid-template-columns: 225px 1fr; gap: 3rem; }
.filters h2 { margin-bottom: 1.3rem; font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.filter-group { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.filter-group h3 { margin-bottom: .8rem; font-size: .8rem; }
.filter-group label { margin-bottom: .45rem; display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .75rem; cursor: pointer; }
.filter-group input { accent-color: var(--green); }
.filter-mobile { display: none; }
.shop-results__top { margin-bottom: 1.2rem; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: .76rem; }
.shop-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.shop-product-grid .product-card { border: 1px solid var(--line); }
.shop-product-grid .product-card__image { height: 300px; }
.prototype-note { margin-top: 3rem; padding: 1.2rem 1.4rem; border: 1px dashed #b8c5bc; border-radius: 1rem; background: #f3f6ef; color: var(--muted); font-size: .8rem; }
.prototype-note strong { color: var(--ink); }

/* Product detail */
.product-detail { padding: 4rem 0 7rem; }
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.product-gallery { position: sticky; top: 130px; }
.product-gallery__main { position: relative; aspect-ratio: 1; padding: 3rem; border-radius: 1.5rem; background: #f0f1ec; display: grid; place-items: center; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumbs { margin-top: .8rem; display: grid; grid-template-columns: repeat(3,80px); gap: .7rem; }
.product-gallery__thumbs button { aspect-ratio: 1; padding: .5rem; border: 1px solid var(--line); border-radius: .7rem; background: white; cursor: pointer; }
.product-gallery__thumbs button:first-child { border-color: var(--green); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-info .product-card__brand { font-size: .75rem; }
.product-info h1 { margin: .4rem 0 .8rem; font-size: clamp(3rem,5vw,5.2rem); }
.product-info__rating { display: flex; gap: .7rem; align-items: center; color: var(--muted); font-size: .75rem; }
.product-info__price { margin: 1.3rem 0; font-size: 1.4rem; }
.product-info__price del { margin-right: .5rem; color: #99a29d; }
.product-info__price strong { color: var(--red); }
.product-info__intro { color: var(--muted); }
.benefit-list { margin: 1.5rem 0; padding: 0; list-style: none; }
.benefit-list li { margin-bottom: .6rem; display: flex; gap: .7rem; }
.benefit-list li::before { content: "✓"; color: var(--green); font-weight: 700; }
.option-label { margin: 1.5rem 0 .6rem; display: block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.option-pills { display: flex; gap: .5rem; }
.option-pills button { padding: .6rem .9rem; border: 1px solid var(--line); border-radius: 99px; background: white; cursor: pointer; }
.option-pills button.is-active { border-color: var(--green); background: var(--green-pale); color: var(--green); }
.purchase-row { margin: 1.2rem 0; display: grid; grid-template-columns: 110px 1fr; gap: .7rem; }
.quantity { border: 1px solid var(--line); border-radius: 99px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; text-align: center; }
.quantity button { border: 0; background: transparent; cursor: pointer; }
.product-perks { margin: 1.5rem 0; padding-block: 1rem; border-block: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.product-perks div { text-align: center; font-size: .7rem; color: var(--muted); }
.product-perks strong { display: block; color: var(--ink); }
.product-accordion { border-bottom: 1px solid var(--line); }
.product-accordion button { width: 100%; padding: 1rem 0; border: 0; background: transparent; display: flex; justify-content: space-between; font-weight: 700; cursor: pointer; }
.product-accordion__panel { display: none; padding-bottom: 1rem; color: var(--muted); font-size: .82rem; }
.product-accordion.is-open .product-accordion__panel { display: block; }
.product-accordion.is-open button span { transform: rotate(45deg); }
.disclaimer-box { margin-top: 1.5rem; padding: 1rem; border-radius: .8rem; background: var(--cream); color: var(--muted); font-size: .68rem; }

.reveal { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .12s; }

@media (max-width: 1060px) {
  .header__inner { grid-template-columns: 210px 1fr auto; gap: 1rem; }
  .brand img { width: 195px; }
  .primary-nav { gap: 1.1rem; font-size: .82rem; }
  .hero__grid { gap: 2.5rem; }
  .hero__note { left: -15px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .story__grid, .community__grid, .visit__grid { gap: 3.5rem; }
  .shop-product-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 720px); }
  .section { padding: 5rem 0; }
  .announcement__desktop { display: none; }
  .header__inner { min-height: 76px; grid-template-columns: auto 1fr auto; }
  .brand img { width: 185px; }
  .menu-toggle { display: block; justify-self: end; }
  .primary-nav { position: fixed; top: 112px; right: 0; left: 0; max-height: calc(100vh - 112px); overflow: auto; padding: 1.5rem; background: var(--paper); border-top: 1px solid var(--line); display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .header-actions .icon-button:first-child { display: none; }
  .hero { min-height: 0; }
  .hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 0; padding-bottom: 4rem; }
  .hero__copy { padding: 4.5rem 0 3rem; }
  .hero__visual { width: min(88%, 560px); margin-inline: auto; }
  .hero__image-wrap { width: 100%; aspect-ratio: 1.1; border-radius: 14rem 14rem 2rem 2rem; }
  .hero__note { left: -6%; bottom: 20px; }
  .trust-strip__grid { grid-template-columns: 1fr; padding: 1rem 0; }
  .trust-strip__grid > div, .trust-strip__grid > div:first-child, .trust-strip__grid > div:last-child { min-height: 74px; padding: .7rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip__grid > div:last-child { border-bottom: 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
  .needs-grid { grid-template-columns: repeat(2,1fr); }
  .products-section .section-heading--split { grid-template-columns: 1fr; }
  .products-section .section-heading .button { justify-self: start; }
  .story__grid, .community__grid, .newsletter__inner, .visit__grid, .product-detail__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .story__visual { padding-right: 1.5rem; }
  .story__quote { right: 0; }
  .smoothie__panel { grid-template-columns: 1fr; }
  .smoothie__image { min-height: 380px; }
  .community__image { order: -1; }
  .newsletter__inner { gap: 2rem; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
  .footer__grid > div:last-child { grid-column: 1/-1; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .shop-toolbar { top: 76px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .filter-mobile { display: inline-flex; }
  .product-gallery { position: static; }
}

@media (max-width: 560px) {
  .announcement__inner { font-size: .67rem; }
  .announcement__inner > span:first-child { max-width: 150px; line-height: 1.2; }
  .header__inner { grid-template-columns: 1fr auto auto; }
  .brand img { width: 160px; }
  .hero h1 { font-size: 3.7rem; }
  .hero__lede { font-size: 1rem; }
  .hero__proof { grid-template-columns: 1fr; gap: .7rem; }
  .hero__proof div { display: grid; grid-template-columns: 105px 1fr; align-items: center; gap: .6rem; }
  .hero__proof strong { margin: 0; }
  .hero__image-wrap { aspect-ratio: .92; }
  .hero__seal { width: 102px; height: 102px; top: 1rem; right: 1rem; }
  .hero__seal svg { width: 25px; }
  .hero__seal span { font-size: .53rem; }
  .hero__note { width: 215px; }
  .needs-grid, .product-grid, .shop-product-grid { grid-template-columns: 1fr; }
  .need-card { min-height: 250px; }
  .product-card__image, .shop-product-grid .product-card__image { height: 340px; }
  .story__visual { padding: 0; }
  .story__image { aspect-ratio: .9; }
  .story__quote { position: relative; right: auto; bottom: auto; width: calc(100% - 24px); margin: -45px auto 0; }
  .smoothie__image { min-height: 300px; }
  .smoothie__copy { padding: 2.2rem 1.5rem 2.8rem; }
  .event-card { grid-template-columns: 1fr; }
  .event-card__date { width: 75px; }
  .newsletter__form { grid-template-columns: 1fr; }
  .newsletter__form small { grid-column: auto; }
  .visit__hours { grid-template-columns: 1fr; }
  .visit__map { min-height: 340px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__grid > div:last-child { grid-column: 1/-1; }
  .footer__bottom { flex-direction: column; }
  .shop-toolbar__inner { align-items: stretch; flex-direction: column; }
  .shop-sort { justify-content: space-between; }
  .shop-layout { padding-top: 2.5rem; }
  .product-detail { padding-top: 2rem; }
  .product-gallery__main { padding: 1.5rem; }
  .purchase-row { grid-template-columns: 95px 1fr; }
  .product-perks { grid-template-columns: 1fr; text-align: left; }
  .product-perks div { text-align: left; }
}

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