:root {
  --forest: #173c30;
  --forest-deep: #102d24;
  --sage: #9baa91;
  --sage-pale: #dfe3d7;
  --ivory: #f6f2e8;
  --cream: #eee7d7;
  --paper: #fbf9f3;
  --clay: #a75f45;
  --gold: #c3a464;
  --ink: #1d2a24;
  --muted: #667168;
  --line: rgba(29, 42, 36, .18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked, body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--ivory);
  color: var(--forest);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.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;
}
.page-shell { width: var(--shell); margin-inline: auto; }

.announcement {
  position: relative;
  z-index: 50;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 52px;
  color: var(--ivory);
  background: var(--forest-deep);
  letter-spacing: .13em;
  font-size: 12px;
  text-align: center;
}
.announcement p { margin: 0; }
.announcement p span { margin: 0 12px; color: var(--sage); }
.announcement__close { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); }

.site-header {
  position: absolute;
  z-index: 40;
  top: 34px;
  left: 0;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: transform .35s var(--ease), background .35s ease, color .35s ease;
}
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  color: var(--forest);
  background: rgba(248, 245, 237, .96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}
.site-header.is-hidden { transform: translateY(-110%); }
.header-shell {
  width: var(--shell);
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-logo {
  width: 190px;
  height: 68px;
  padding: 5px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(250, 248, 242, .94);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(20px, 2.5vw, 42px); }
.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; gap: 8px; justify-content: flex-end; }
.icon-button {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.cart-button { position: relative; }
.cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  color: var(--forest);
  background: var(--ivory);
  font-size: 11px;
  font-weight: 700;
}
.is-scrolled .cart-count { color: var(--ivory); background: var(--forest); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 830px;
  height: 100svh;
  max-height: 1040px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__image, .hero__veil { position: absolute; inset: 0; }
.hero__image {
  background: #1d3a31 url("../images/products/sun-shade.jpg") center center / cover no-repeat;
  transform: scale(1.015);
  animation: heroEnter 1.5s var(--ease) both;
}
.hero__veil {
  background:
    linear-gradient(90deg, rgba(11,29,23,.78) 0%, rgba(11,29,23,.48) 36%, rgba(11,29,23,.05) 73%),
    linear-gradient(0deg, rgba(8,24,19,.3), transparent 44%);
}
.hero__content { position: relative; z-index: 2; padding-top: 85px; }
.eyebrow {
  margin: 0 0 25px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}
.eyebrow--light { color: rgba(255,255,255,.82); }
h1, h2, h3, blockquote { margin-top: 0; }
.hero h1 {
  max-width: 700px;
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: clamp(66px, 7vw, 106px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
}
h1 em, h2 em, blockquote em { color: var(--sage); font-weight: 400; }
.hero h1 em { color: #d7ddca; }
.hero__lede { max-width: 560px; margin: 0 0 40px; color: rgba(255,255,255,.83); font-family: var(--serif); font-size: 19px; line-height: 1.55; }
.hero__actions { display: flex; align-items: center; gap: 34px; }
.button {
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--cream { color: var(--forest); background: var(--ivory); }
.button--cream:hover { background: #fff; }
.button--forest { color: var(--ivory); background: var(--forest); }
.button--forest:hover { background: var(--forest-deep); }
.button--outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.button--outline:hover { color: var(--ivory); background: var(--forest); }
.text-link {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.text-link span { margin-left: 10px; }
.text-link--light { color: rgba(255,255,255,.9); }
.hero__scroll {
  position: absolute;
  z-index: 3;
  right: clamp(32px, 4vw, 72px);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}
.hero__scroll i { display: block; width: 58px; height: 1px; background: rgba(255,255,255,.65); }
@keyframes heroEnter { from { opacity: 0; transform: scale(1.07); } to { opacity: 1; transform: scale(1.015); } }

.value-strip { color: var(--forest); background: var(--cream); border-bottom: 1px solid rgba(23,60,48,.12); }
.value-strip__inner {
  width: var(--shell);
  min-height: 112px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-strip__inner > div { display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid rgba(23,60,48,.12); }
.value-strip__inner > div:first-child { border-left: 1px solid rgba(23,60,48,.12); }
.value-icon { font-family: var(--serif); font-size: 27px; }
.value-strip p { margin: 0; }
.value-strip strong, .value-strip small { display: block; }
.value-strip strong { font-family: var(--serif); font-size: 15px; font-weight: 500; }
.value-strip small { margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.section { padding: 132px 0; }
.section-heading h2, .ritual-feature h2, .story blockquote, .newsletter h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 75px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 9vw; margin-bottom: 58px; }
.split-heading > p { max-width: 470px; margin: 0 0 8px; color: var(--muted); font-family: var(--serif); font-size: 17px; line-height: 1.7; }
.section--categories { background: var(--paper); }
.category-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; gap: 18px; }
.category-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform .8s var(--ease);
  background-position: center;
  background-size: cover;
}
.category-card:hover::before { transform: scale(1.045); }
.category-card--skin::before { background-image: url("../images/products/lavender-rose.jpg"); background-position: center 54%; }
.category-card--wellness::before { background-image: url("../images/products/gut-tincture.jpg"); background-position: center; }
.category-card--family::before { background-image: url("../images/products/baby-cheeks.jpg"); background-position: center 42%; }
.category-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,25,20,.72), transparent 66%); }
.category-card__copy { position: relative; z-index: 1; padding: 35px; width: 100%; }
.category-card__copy p { margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.category-card__copy h3 { margin: 0 0 22px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.category-card__copy span { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.section--products { background: #f1ede3; }
.centered-heading { text-align: center; margin-bottom: 58px; }
.centered-heading > p:last-child { margin: 18px auto 0; color: var(--muted); font-family: var(--serif); font-size: 17px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card__image {
  position: relative;
  aspect-ratio: .82;
  margin-bottom: 20px;
  background-color: #ddd7c9;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.product-card__image--one { background-image: url("../images/products/honey-vanilla.jpg"); background-position: center 33%; }
.product-card__image--two { background-image: url("../images/products/oil-cleanser.jpg"); }
.product-card__image--three { background-image: url("../images/products/sun-shade.jpg"); }
.product-card__image--four { background-image: url("../images/products/face-tallow.jpg"); background-position: center 58%; }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--ivory);
  background: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}
.product-badge--clay { background: var(--clay); }
.quick-add {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 47px;
  padding: 0 17px;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--forest);
  background: rgba(250,248,242,.94);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(70px);
  transition: transform .35s var(--ease), background .2s ease, color .2s ease;
}
.product-card:hover .quick-add, .quick-add:focus { transform: none; }
.quick-add.is-added { color: var(--ivory); background: var(--forest); }
.product-card__meta { display: flex; justify-content: space-between; gap: 12px; }
.product-card__meta p, .product-card__meta h3 { margin: 0; }
.product-type { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .13em; }
.product-card__meta h3 { margin-top: 6px; font-family: var(--serif); font-size: 21px; font-weight: 500; }
.price { flex: 0 0 auto; font-size: 14px; font-weight: 600; }
.product-benefit { min-height: 46px; margin: 9px 0 10px; color: var(--muted); font-family: var(--serif); font-size: 15px; line-height: 1.5; }
.rating { display: flex; align-items: center; gap: 7px; color: var(--gold); }
.rating span { font-size: 12px; letter-spacing: .06em; }
.rating small { color: var(--muted); font-size: 12px; }
.product-link {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.center-action { display: flex; justify-content: center; margin-top: 55px; }

.ritual-feature { min-height: 750px; display: grid; grid-template-columns: 1.08fr .92fr; color: var(--ivory); background: var(--forest); }
.ritual-feature__visual {
  min-height: 750px;
  background: #d9d2c4 url("../images/products/face-tallow.jpg") center 56% / cover no-repeat;
}
.ritual-feature__content { padding: clamp(70px, 8vw, 130px); align-self: center; }
.ritual-feature__content > p:not(.eyebrow) { max-width: 520px; margin: 30px 0 34px; color: rgba(255,255,255,.73); font-family: var(--serif); font-size: 17px; line-height: 1.7; }
.ritual-feature h2 em { color: #b8c3ad; }
.ritual-points { max-width: 550px; margin: 0 0 38px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.ritual-points li { min-height: 76px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); }
.ritual-points li > span { color: var(--sage); font-family: var(--serif); font-size: 13px; }
.ritual-points p { margin: 0; }
.ritual-points strong, .ritual-points small { display: block; }
.ritual-points strong { font-family: var(--serif); font-size: 15px; font-weight: 500; }
.ritual-points small { margin-top: 3px; color: rgba(255,255,255,.72); font-size: 13px; }

.ingredient-library { background: var(--ivory); }
.ingredient-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.ingredient-card {
  min-height: 340px;
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--forest);
  background: #e8dfc8;
  border-right: 1px solid rgba(23,60,48,.13);
}
.ingredient-card--sage { background: #d6dfd0; }
.ingredient-card--clay { background: #dfc3b2; }
.ingredient-card--gold { background: #dfd0aa; }
.ingredient-card__botanical { flex: 1; font-family: var(--serif); font-size: 74px; opacity: .62; transform: rotate(-8deg); }
.ingredient-card p { margin: 0 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.ingredient-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.ingredient-card small { max-width: 220px; color: rgba(23,60,48,.78); font-size: 14px; line-height: 1.55; }

.story { min-height: 790px; display: grid; grid-template-columns: 1.08fr .92fr; background: #e9e3d7; }
.story__image { min-height: 790px; background: #79846e url("../images/farm-story.webp") center / cover no-repeat; }
.story__content { padding: clamp(70px, 8vw, 125px); align-self: center; }
.story blockquote { font-size: clamp(42px, 4.2vw, 67px); }
.story__content > p:not(.eyebrow) { max-width: 530px; margin: 25px 0 0; color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 1.75; }
.story .button { margin-top: 36px; }
.story__signature { display: block; margin-top: 31px; color: var(--clay); font-family: var(--serif); font-size: 14px; font-style: italic; }

.reviews { color: var(--ivory); background: var(--forest-deep); }
.reviews__shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.reviews h2 em { color: var(--sage); }
.reviews__score { display: flex; align-items: center; gap: 17px; margin-top: 40px; }
.reviews__score > strong { font-family: var(--serif); font-size: 45px; font-weight: 400; line-height: 1; }
.reviews__score span, .reviews__score small { display: block; }
.reviews__score b { color: var(--gold); font-size: 11px; letter-spacing: .08em; }
.reviews__score small { margin-top: 4px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 400; }
.review-controls { display: flex; gap: 10px; margin-top: 43px; }
.round-button {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease;
}
.round-button:hover { color: var(--forest); background: var(--ivory); }
.review-stage { min-height: 400px; display: grid; place-items: center; padding: 70px; background: #f2ede1; color: var(--forest); }
.review-card { animation: reviewIn .45s var(--ease) both; }
.review-card blockquote { margin: 35px 0 45px; font-family: var(--serif); font-size: clamp(27px, 3vw, 41px); font-weight: 400; line-height: 1.32; letter-spacing: -.025em; }
.review-card p { margin: 0; }
.review-card p strong, .review-card p small { display: block; }
.review-card p strong { font-size: 12px; letter-spacing: .14em; }
.review-card p small { margin-top: 6px; color: var(--muted); font-size: 13px; }
@keyframes reviewIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.journal { background: var(--paper); }
.journal__heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.journal-card__visual {
  position: relative;
  aspect-ratio: 1.28;
  margin-bottom: 22px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.journal-card__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,45,36,.52), transparent 65%); }
.journal-card__visual span { position: absolute; z-index: 1; left: 18px; bottom: 16px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.journal-card__visual--one { background-image: url("../images/products/lavender-rose.jpg"); background-position: center 54%; }
.journal-card__visual--two { background-image: url("../images/farm-story.webp"); }
.journal-card__visual--three { background-image: url("../images/products/spruce-tallow.jpg"); background-position: center 58%; }
.journal-card > p { margin: 0 0 9px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.journal-card h3 { max-width: 360px; margin-bottom: 19px; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.25; }
.journal-card > a { padding-bottom: 4px; border-bottom: 1px solid var(--forest); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.newsletter {
  position: relative;
  min-height: 560px;
  padding: 110px 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: #5e7059;
  text-align: center;
}
.newsletter::before, .newsletter::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 49% 51% 45% 55%;
}
.newsletter::before { left: -170px; bottom: -160px; transform: rotate(28deg); }
.newsletter::after { right: -180px; top: -170px; transform: rotate(-32deg); }
.newsletter__botanical { position: absolute; top: 48px; left: 50%; font-family: var(--serif); font-size: 50px; opacity: .35; transform: translateX(-50%); }
.newsletter__content { position: relative; z-index: 1; width: min(760px, 100%); }
.newsletter h2 { font-size: clamp(42px, 4.5vw, 66px); }
.newsletter h2 em { color: #d9dfd2; }
.newsletter__content > p:not(.eyebrow):not(.form-message) { max-width: 580px; margin: 24px auto 32px; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 15px; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; max-width: 610px; margin-inline: auto; border-bottom: 1px solid rgba(255,255,255,.62); }
.newsletter-form input { min-width: 0; padding: 18px 4px; border: 0; outline: 0; color: #fff; background: transparent; font-family: var(--serif); font-size: 15px; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form button { border: 0; color: #fff; background: transparent; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.newsletter-form button span { margin-left: 14px; font-size: 14px; }
.form-message { min-height: 21px; margin: 12px 0 0; color: rgba(255,255,255,.84); font-size: 12px; }

.site-footer { padding: 85px 0 22px; color: rgba(255,255,255,.72); background: #102d24; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 7vw; padding-bottom: 65px; }
.brand-logo--footer { width: 230px; height: 110px; padding: 8px 13px; background: var(--ivory); }
.footer-brand > p { max-width: 320px; margin: 24px 0; font-family: var(--serif); font-size: 14px; line-height: 1.7; }
.social-links { display: flex; flex-wrap: wrap; gap: 16px 20px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h3 { margin: 0 0 12px; color: #fff; font-size: 12px; letter-spacing: .15em; }
.footer-links a { font-family: var(--serif); font-size: 15px; line-height: 1.4; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { min-height: 70px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; border-top: 1px solid rgba(255,255,255,.14); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { color: rgba(255,255,255,.4); }
.footer-bottom p span { margin: 0 8px; }
.footer-bottom a { justify-self: end; color: #fff; }

.overlay { position: fixed; z-index: 70; inset: 0; background: rgba(6,18,14,.57); backdrop-filter: blur(2px); }
.cart-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(101%);
  transition: transform .4s var(--ease);
}
.cart-drawer.is-open { transform: none; }
.drawer-header { min-height: 112px; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.drawer-header p { margin: 0 0 4px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.drawer-header h2 { margin: 0; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.drawer-header h2 span { color: var(--muted); font-size: 16px; }
.drawer-header .icon-button { font-size: 25px; }
.cart-items { flex: 1; overflow-y: auto; }
.empty-cart { min-height: 100%; padding: 40px; display: grid; place-items: center; align-content: center; text-align: center; }
.empty-cart > span { color: var(--sage); font-family: var(--serif); font-size: 58px; }
.empty-cart h3 { margin: 14px 0 4px; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.empty-cart p { margin: 0 0 25px; color: var(--muted); font-size: 14px; }
.cart-row { padding: 22px 28px; display: grid; grid-template-columns: 95px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.cart-row__swatch { min-height: 122px; display: grid; place-items: center; color: var(--forest); background: var(--cream); font-size: 30px; }
.cart-row__content > p { margin: 0 0 4px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.cart-row__content h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.cart-row__content strong { font-size: 13px; }
.quantity-control { width: 94px; height: 32px; margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.quantity-control button { border: 0; background: transparent; cursor: pointer; }
.quantity-control span { display: grid; place-items: center; font-size: 13px; }
.cart-footer { padding: 24px 28px 28px; border-top: 1px solid var(--line); }
.cart-footer > div { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 18px; }
.cart-footer > p { margin: 7px 0 18px; color: var(--muted); font-size: 12px; }
.cart-footer .button { width: 100%; }

.search-panel {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  min-height: 430px;
  padding: 70px 30px;
  color: var(--forest);
  background: var(--ivory);
  transform: translateY(-102%);
  transition: transform .45s var(--ease);
}
.search-panel.is-open { transform: none; }
.search-panel__inner { width: min(780px, 100%); margin-inline: auto; }
.search-panel__close { position: absolute; top: 25px; right: 30px; font-size: 25px; }
.search-panel h2 { font-family: var(--serif); font-size: 49px; font-weight: 400; letter-spacing: -.035em; }
.search-panel form { display: grid; grid-template-columns: 1fr 50px; border-bottom: 1px solid var(--forest); }
.search-panel input { min-width: 0; padding: 15px 0; border: 0; outline: 0; color: var(--forest); background: transparent; font-family: var(--serif); font-size: 22px; }
.search-panel button[type="submit"] { border: 0; background: transparent; font-size: 24px; cursor: pointer; }
.search-suggestions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; color: var(--muted); font-size: 13px; }
.search-suggestions a { color: var(--forest); border-bottom: 1px solid var(--line); }
.search-panel .form-message { color: var(--forest); }
.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 25px;
  max-width: calc(100vw - 30px);
  padding: 13px 20px;
  color: var(--ivory);
  background: var(--forest);
  font-size: 13px;
  letter-spacing: .04em;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1040px); }
  .header-shell { grid-template-columns: 190px 1fr auto; }
  .desktop-nav { gap: 18px; }
  .category-card { min-height: 450px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 20px; }
  .ritual-feature__content, .story__content { padding: 70px 55px; }
  .footer-main { gap: 4vw; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 36px); }
  .announcement { font-size: 11px; }
  .site-header { top: 34px; }
  .site-header.is-scrolled { top: 0; }
  .header-shell { min-height: 74px; grid-template-columns: 50px 1fr auto; gap: 6px; }
  .menu-toggle { display: grid; justify-content: start; }
  .menu-toggle span { width: 19px; height: 1px; display: block; background: currentColor; transition: transform .2s ease; }
  .menu-toggle span + span { margin-top: 6px; width: 13px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { width: 19px; transform: translateY(-4px) rotate(-45deg); }
  .desktop-nav { display: none; }
  .header-shell > .brand-logo { justify-self: center; }
  .brand-logo { width: 156px; height: 58px; }
  .account-button { display: none; }
  .header-actions { gap: 0; }
  .mobile-menu {
    position: fixed;
    top: 108px;
    inset-inline: 0;
    height: calc(100dvh - 108px);
    padding: 35px 25px;
    display: block;
    color: var(--forest);
    background: var(--ivory);
    overflow-y: auto;
  }
  .is-scrolled .mobile-menu { top: 74px; height: calc(100dvh - 74px); }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a { padding: 17px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 27px; }
  .mobile-menu p { margin-top: 32px; color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
  .hero { min-height: 740px; height: 92svh; }
  .hero__image { background-position: 60% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(8,25,19,.75), rgba(8,25,19,.1)), linear-gradient(0deg, rgba(8,25,19,.45), transparent); }
  .hero__content { padding-top: 70px; }
  .hero h1 { font-size: clamp(54px, 14vw, 80px); }
  .hero__lede { max-width: 480px; font-size: 17px; }
  .hero__scroll { display: none; }
  .value-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .value-strip__inner > div { min-height: 95px; padding: 15px; justify-content: flex-start; border-bottom: 1px solid rgba(23,60,48,.12); }
  .value-strip__inner > div:nth-child(odd) { border-left: 1px solid rgba(23,60,48,.12); }
  .section { padding: 90px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 42px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card { min-height: 430px; }
  .category-card:first-child { grid-column: span 2; }
  .ritual-feature, .story { grid-template-columns: 1fr; }
  .ritual-feature__visual, .story__image { min-height: 560px; }
  .ingredient-row { grid-template-columns: repeat(2, 1fr); }
  .reviews__shell { grid-template-columns: 1fr; gap: 55px; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-card:last-child { display: none; }
  .footer-main { grid-template-columns: 1.7fr 1fr 1fr; }
  .footer-links:last-child { display: none; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom p:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }
  .announcement { min-height: 31px; padding: 6px 40px 6px 12px; letter-spacing: .08em; }
  .announcement p span, .announcement p span + * { display: none; }
  .site-header { top: 31px; }
  .header-shell { min-height: 69px; }
  .brand-logo { width: 128px; height: 50px; padding: 4px 7px; }
  .header-actions .icon-button { width: 33px; padding: 7px; }
  .mobile-menu { top: 100px; height: calc(100dvh - 100px); }
  .is-scrolled .mobile-menu { top: 69px; height: calc(100dvh - 69px); }
  .hero { min-height: 710px; height: 95svh; align-items: flex-end; }
  .hero__image { background-position: 67% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(8,25,19,.88) 4%, rgba(8,25,19,.46) 61%, rgba(8,25,19,.1)); }
  .hero__content { padding: 0 0 68px; }
  .eyebrow { margin-bottom: 18px; font-size: 11px; }
  .hero h1 { margin-bottom: 20px; font-size: 53px; line-height: .95; }
  .hero__lede { margin-bottom: 30px; font-size: 17px; line-height: 1.55; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { min-height: 49px; }
  .value-strip__inner { width: 100%; grid-template-columns: 1fr; }
  .value-strip__inner > div { min-height: 82px; padding-inline: 26px; border-left: 0 !important; }
  .value-strip__inner > div:last-child { border-bottom: 0; }
  .section { padding: 75px 0; }
  .section-heading h2, .ritual-feature h2, .story blockquote, .newsletter h2 { font-size: 44px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card, .category-card:first-child { grid-column: auto; min-height: 420px; }
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-card__image { aspect-ratio: .9; }
  .product-badge { top: 8px; left: 8px; padding: 6px 7px; font-size: 11px; }
  .quick-add { left: 6px; right: 6px; bottom: 6px; height: 42px; padding: 0 10px; transform: none; font-size: 11px; }
  .product-card__meta { display: flex; }
  .product-card__meta h3 { min-height: auto; font-size: 20px; line-height: 1.25; }
  .price { margin-top: 4px !important; }
  .product-benefit { min-height: auto; font-size: 15px; }
  .ritual-feature__visual, .story__image { min-height: 420px; }
  .ritual-feature__content, .story__content { padding: 70px 22px; }
  .ingredient-row { grid-template-columns: 1fr; }
  .ingredient-card { min-height: 260px; padding: 30px; }
  .ingredient-card__botanical { font-size: 55px; }
  .reviews__shell { gap: 40px; }
  .review-stage { min-height: 390px; padding: 35px 25px; }
  .review-card blockquote { font-size: 27px; }
  .journal__heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card:last-child { display: block; }
  .newsletter { min-height: 580px; padding: 90px 20px 65px; }
  .newsletter-form { grid-template-columns: 1fr; border: 0; }
  .newsletter-form input { border-bottom: 1px solid rgba(255,255,255,.62); }
  .newsletter-form button { min-height: 50px; margin-top: 12px; color: var(--forest); background: var(--ivory); }
  .footer-main { grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .footer-brand { grid-column: span 2; }
  .footer-links:last-child { display: flex; }
  .footer-bottom { grid-template-columns: 1fr; gap: 15px; align-items: center; padding-top: 22px; }
  .footer-bottom a { justify-self: start; }
  .search-panel { min-height: 100dvh; padding: 95px 20px 40px; }
  .search-panel h2 { font-size: 39px; }
  .search-panel input { font-size: 17px; }
  .search-suggestions { line-height: 2; }
}

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