/** Shopify CDN: Minification failed

Line 1934:0 Unexpected "}"

**/
/* =====================================================================
   Splash Cookies — theme.css
   Ported from index.html / product.html / gifting.html / story.html
   Color tokens are injected by layout/theme.liquid from settings.
   ===================================================================== */

/* ---------- custom brand fonts (self-hosted in theme assets) ---------- */
@font-face {
  font-family: 'HighBeams';
  src: url('HighBeamsRegular.woff2') format('woff2'),
       url('HighBeamsRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HighBeams';
  src: url('HighBeams-Italic.woff2') format('woff2'),
       url('HighBeams-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Crumb';
  src: url('CrumbRegular.woff2') format('woff2'),
       url('CrumbRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sundae';
  src: url('SundaeRegular.woff2') format('woff2'),
       url('SundaeRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "HighBeams", Georgia, serif;
  font-optical-sizing: auto;
  background: var(--bone);
  color: var(--forest);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--terra); color: var(--bone); }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; border-radius: 3px; }

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--bone);
  padding: 10px 14px;
  z-index: 100;
}
.skip-to-content:focus { left: 14px; top: 14px; }

/* ---------- utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.eyebrow {
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--terra);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--blush { color: var(--blush); }
.eyebrow--blush::before { background: var(--blush); }
.eyebrow--deep { color: var(--terra-deep); }

.h2 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--forest);
  margin: 0 0 24px;
}

.photo-tag {
  position: absolute;
  top: 18px; right: 18px;
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(232,221,208,.85);
  background: rgba(58,80,72,.3);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 3;
}
.photo-tag--tl { top: 14px; left: 14px; right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "HighBeams", Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  line-height: 1;
}
.btn-primary { background: var(--terra); color: var(--bone); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-1px); }
.btn-secondary { background: var(--bone); color: var(--forest); border-color: var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--bone); }
.btn-link { background: transparent; color: inherit; border-color: currentColor; }
.btn-link:hover { background: var(--bone); color: var(--forest); }
.btn-blush { background: var(--blush); color: var(--forest-deep); border-color: var(--blush); }
.btn-blush:hover { background: var(--blush-deep); color: var(--forest-deep); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-large { padding: 18px 36px 19px; font-size: 17px; }
.btn-large-block { padding: 18px 36px 19px; font-size: 17px; width: 100%; justify-content: center; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--forest);
  color: var(--bone);
  font-family: "HighBeams", Georgia, serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 16px;
  text-align: center;
}
.announce .sep { color: var(--blush); margin: 0 10px; }

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
  background: var(--bone);
  position: sticky;
  top: 0;
  z-index: 50;
}
.wordmark {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--terra);
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.wordmark .dot {
  display: inline-block;
  width: .42em; height: .42em;
  border-radius: 50%;
  background: var(--blush-deep);
  margin-left: .04em;
  transition: background .3s var(--ease);
}
.wordmark:hover .dot { background: var(--terra); }

.nav-center {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  font-family: "HighBeams", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
}
.nav-center a {
  color: var(--forest);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav-center a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-center a:hover,
.nav-center a.active { color: var(--terra); }
.nav-center a:hover::after,
.nav-center a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  border-radius: 999px;
  padding: 7px 16px;
  cursor: pointer;
  font-family: "HighBeams", Georgia, serif;
  font-size: 14px;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.icon-btn:hover { background: var(--forest); color: var(--bone); }

/* ---------- mobile menu ---------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  width: 40px; height: 40px;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 18px; height: 18px; }

.menu-drawer {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 60;
  padding: clamp(60px, 12vw, 100px) clamp(24px, 6vw, 56px) 40px;
  display: none;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}
.menu-drawer.is-open { display: flex; }
.menu-drawer-close {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  width: 40px; height: 40px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.menu-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.menu-drawer a {
  font-family: "Crumb", Georgia, serif;
  font-size: clamp(28px, 7vw, 44px);
  color: var(--terra);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.05;
  display: inline-block;
}
.menu-drawer a:hover { color: var(--terra-deep); }
.menu-drawer .drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--forest);
  opacity: .7;
}

body.menu-open { overflow: hidden; }

@media (max-width: 780px) {
  .nav-center { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero (homepage) ---------- */
.hero {
  position: relative;
  padding: 0;
  background: var(--bone);
}
.hero-inner {
  position: relative;
  width: 100%;
  min-height: min(78vh, 720px);
  background: linear-gradient(160deg, var(--blush) 0%, var(--blush-deep) 60%, var(--terra) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: relative;
  width: 100%;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 80px) clamp(40px, 6vw, 80px);
  background: linear-gradient(180deg, transparent 0%, rgba(36,53,48,.55) 100%);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  z-index: 2;
}
.hero h1 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .96;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--bone);
  max-width: 14ch;
}
.hero h1 .wink {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: .55em;
  color: var(--blush);
  letter-spacing: -0.015em;
  margin-top: .15em;
}
.hero-lede {
  font-family: "HighBeams", Georgia, serif;
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 42ch;
  color: var(--bone);
  opacity: .92;
  margin: 0;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- promise strip ---------- */
.promise {
  background: var(--terra);
  color: var(--bone);
  padding: 18px 24px;
  text-align: center;
  font-family: "HighBeams", Georgia, serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.promise .dot {
  width: 5px; height: 5px;
  background: var(--blush);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- featured product (homepage) ---------- */
.featured {
  background: var(--bone-warm);
  padding: clamp(64px, 9vw, 120px) 0;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 880px) {
  .featured-grid { grid-template-columns: 1fr; }
}
.featured-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 70%, var(--terra) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-text { max-width: 30em; }
.featured h2 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--terra);
  margin: 0 0 16px;
}
.featured-subtitle {
  font-style: italic;
  font-size: 16px;
  margin: 0 0 28px;
  color: var(--forest);
}
.featured-desc {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--forest);
}
.featured-price {
  font-family: "HighBeams", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--terra);
  margin: 0 0 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.featured-price .price-note {
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  color: var(--forest);
  opacity: .7;
}
.featured-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.featured-bullets li {
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--forest);
}
.featured-bullets li::before {
  content: "·";
  color: var(--terra);
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  margin-top: -2px;
}

/* ---------- how it works ---------- */
.how {
  background: var(--bone);
  padding: clamp(64px, 9vw, 120px) 0;
  text-align: center;
}
.how-intro {
  max-width: 30em;
  margin: 0 auto 56px;
}
.how h2 { margin-bottom: 16px; }
.how-intro p {
  font-size: 17px;
  color: var(--forest);
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  text-align: left;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
}
.step {
  background: var(--bone-warm);
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-img {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.step-img img { width: 100%; height: 100%; object-fit: cover; }
.step-img--blush { background: linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 100%); }
.step-img--toffee { background: linear-gradient(145deg, #C99A6B 0%, #8E6840 100%); }
.step-img--terra { background: linear-gradient(145deg, var(--terra) 0%, var(--terra-deep) 100%); }

.step-number {
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--terra);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0;
}
.step h3 {
  font-family: "Sundae", "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: 38px;
  color: var(--forest);
  margin: 0;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 16px;
  color: var(--forest);
  margin: 0;
  line-height: 1.55;
}
.step-time {
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--terra);
  margin-top: 6px;
}

/* ---------- founder ---------- */
.founder {
  background: var(--forest);
  color: var(--bone);
  padding: clamp(64px, 9vw, 128px) 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 880px) {
  .founder-grid { grid-template-columns: 1fr; }
}
.founder-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 60%, var(--terra) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.founder .eyebrow { color: var(--blush); }
.founder .eyebrow::before { background: var(--blush); }
.founder h2 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 24px;
}
.founder p {
  color: var(--bone);
  opacity: .9;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.founder .signed {
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  margin: 0 0 32px;
  opacity: .8;
}

/* ---------- reviews (homepage + PDP) ---------- */
.reviews {
  background: var(--bone);
  padding: clamp(64px, 9vw, 120px) 0;
  text-align: center;
}
.reviews .h2 {
  margin-bottom: 56px;
  color: var(--forest);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  text-align: left;
}
@media (max-width: 880px) {
  .review-grid { grid-template-columns: 1fr; }
}
.review {
  background: var(--bone-warm);
  padding: 36px 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--rule);
}
.review-stars {
  color: var(--blush);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-quote {
  font-family: "HighBeams", Georgia, serif;
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--forest);
  margin: 0;
}
.review-attr {
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--forest);
  opacity: .7;
  margin: 0;
}
.review-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 14px;
}
.review-summary {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 14px; color: var(--forest); opacity: .8;
}
.review-summary strong { color: var(--terra); font-style: normal; font-weight: 700; }

/* ---------- newsletter ---------- */
.newsletter {
  background: var(--blush);
  padding: clamp(64px, 8vw, 112px) 0;
  text-align: center;
}
.newsletter-inner {
  max-width: 36em;
  margin: 0 auto;
}
.newsletter h2 {
  color: var(--terra-deep);
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.newsletter p {
  font-size: 16px;
  color: var(--forest);
  margin: 0 0 32px;
}
.newsletter form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter input {
  flex: 1 1 240px;
  background: var(--bone);
  border: 1.5px solid var(--forest);
  color: var(--forest);
  font-family: "HighBeams", Georgia, serif;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 999px;
  min-width: 0;
}
.newsletter input::placeholder {
  color: var(--forest);
  opacity: .55;
  font-style: italic;
}
.newsletter button {
  background: var(--forest);
  color: var(--bone);
  border: none;
  font-family: "HighBeams", Georgia, serif;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.newsletter button:hover { background: var(--forest-deep); }
.newsletter-fine {
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--forest);
  opacity: .65;
  margin-top: 16px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--bone);
  padding: clamp(48px, 6vw, 80px) 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 56px;
}
@media (max-width: 780px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
}
.foot-brand .wordmark { color: var(--blush); font-size: 30px; }
.foot-brand .wordmark .dot { background: var(--blush); }
.foot-brand p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone);
  opacity: .7;
  max-width: 22em;
}
.foot-col h4 {
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a {
  color: var(--bone);
  text-decoration: none;
  font-size: 15px;
  opacity: .85;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.foot-col a:hover { color: var(--blush); opacity: 1; }
.foot-bottom {
  border-top: 1px solid rgba(232,221,208,.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--bone);
  opacity: .6;
}

/* =====================================================================
   PRODUCT (PDP)
   ===================================================================== */
.breadcrumb {
  padding: 20px clamp(20px, 4vw, 56px) 0;
  max-width: var(--container); margin: 0 auto;
  font-family: "HighBeams", Georgia, serif; font-style: italic; font-size: 13px;
  color: var(--forest); opacity: .7;
}
.breadcrumb a { color: var(--forest); text-decoration: none; }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb span.sep { margin: 0 8px; }

.product-hero { padding: 32px 0 clamp(48px, 6vw, 80px); }
.product-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: flex-start;
}
@media (max-width: 960px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* gallery */
.gallery { display: flex; gap: 14px; }
.gallery-thumbs {
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.gallery-thumb {
  width: 76px; height: 92px; border-radius: 10px; cursor: pointer;
  border: 1.5px solid transparent;
  position: relative; overflow: hidden;
  background: var(--bone-warm);
  padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { border-color: var(--terra); }
.gallery-thumb:nth-child(1):not([data-has-image]) { background: linear-gradient(155deg, var(--blush), var(--blush-deep)); }
.gallery-thumb:nth-child(2):not([data-has-image]) { background: linear-gradient(155deg, #C99A6B, #8E6840); }
.gallery-thumb:nth-child(3):not([data-has-image]) { background: linear-gradient(155deg, var(--terra), var(--terra-deep)); }
.gallery-thumb:nth-child(4):not([data-has-image]) { background: linear-gradient(155deg, var(--forest), var(--forest-deep)); }
.gallery-main {
  flex: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 60%, var(--terra) 100%);
  position: relative;
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 540px) {
  .gallery { flex-direction: column-reverse; }
  .gallery-thumbs { flex-direction: row; }
  .gallery-thumb { width: 64px; height: 76px; }
}

/* product details */
.pd-eyebrow {
  font-style: italic; font-size: 13px;
  color: var(--terra); letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 14px;
}
.pd-title {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--terra); margin: 0 0 14px;
}
.pd-subtitle {
  font-style: italic; font-size: 16px; color: var(--forest); margin: 0 0 28px;
}
.pd-price {
  display: flex; align-items: baseline; gap: 14px;
  font-family: "HighBeams", Georgia, serif;
  margin: 0 0 8px;
  flex-wrap: wrap;
}
.pd-price .main {
  font-weight: 700; font-size: 36px; color: var(--terra); letter-spacing: -0.02em;
}
.pd-price .note {
  font-style: italic; font-size: 14px; color: var(--forest); opacity: .7;
}
.pd-comparison {
  font-size: 13px; font-style: italic; color: var(--forest); opacity: .7;
  margin: 0 0 28px;
}
.pd-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 10px;
}
.pd-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--forest); line-height: 1.5;
}
.pd-bullets li::before {
  content: "·"; color: var(--terra);
  font-weight: 800; font-size: 22px; line-height: 1; margin-top: -3px;
}

/* add-to-cart card */
.atc {
  background: var(--bone-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.atc-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.atc-row:last-of-type { border-bottom: none; }
.atc-label {
  font-family: "HighBeams", Georgia, serif; font-weight: 500; font-size: 15px;
  color: var(--forest);
  display: flex; flex-direction: column; gap: 2px;
}
.atc-label .sub {
  font-style: italic; font-size: 13px; color: var(--forest); opacity: .65; font-weight: 400;
}
.switch {
  width: 46px; height: 26px;
  background: var(--bone);
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  position: relative; cursor: pointer;
  transition: background .25s var(--ease);
  padding: 0;
}
.switch::after {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
  top: 50%; left: 3px;
  transform: translateY(-50%);
  transition: left .25s var(--ease), background .25s var(--ease);
}
.switch.is-on { background: var(--terra); border-color: var(--terra); }
.switch.is-on::after { left: 25px; background: var(--bone); }

.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  background: transparent; border: none;
  width: 36px; height: 36px;
  font-family: "HighBeams", Georgia, serif; font-size: 18px; font-weight: 500;
  color: var(--forest); cursor: pointer;
}
.qty button:hover { background: var(--forest); color: var(--bone); }
.qty span {
  min-width: 30px; text-align: center;
  font-family: "HighBeams", Georgia, serif; font-size: 15px;
}

.ship-note {
  font-style: italic; font-size: 13px; color: var(--forest); opacity: .7;
  text-align: center; margin: 14px 0 0;
}

/* trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.trust-item {
  text-align: center;
  font-size: 12px; color: var(--forest); line-height: 1.4;
}
.trust-icon {
  width: 32px; height: 32px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 14px; color: var(--terra-deep); font-weight: 600;
}
@media (max-width: 540px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* PDP section wrappers */
.section {
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--rule);
}
.section--warm { background: var(--bone-warm); border-top: none; }
.section--forest { background: var(--forest); color: var(--bone); border-top: none; }
.section--forest .h2 { color: var(--bone); }
.section--forest .eyebrow { color: var(--blush); }
.section--forest .eyebrow::before { background: var(--blush); }
.section--blush { background: var(--blush); border-top: none; }
.section-narrow { max-width: 760px; text-align: center; margin: 0 auto; }

/* what's inside */
.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .inside-grid { grid-template-columns: 1fr; } }
.inside-img {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--blush), var(--blush-deep) 60%, var(--terra));
  position: relative; overflow: hidden;
}
.inside-img img { width: 100%; height: 100%; object-fit: cover; }
.inside-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.inside-list li {
  font-size: 17px; color: var(--forest);
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.inside-list li:last-child { border-bottom: none; padding-bottom: 0; }
.inside-num {
  font-family: "Crumb", Georgia, serif;
  font-weight: 700; font-size: 22px;
  color: var(--terra); flex-shrink: 0;
  width: 32px; line-height: 1;
  font-feature-settings: "tnum";
}

/* what you're NOT doing wedge */
.wedge h2 { color: var(--bone); }
.wedge-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 36px;
  max-width: 760px;
}
@media (max-width: 540px) { .wedge-list { grid-template-columns: 1fr; } }
.wedge-list li {
  font-family: "Crumb", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--bone);
  line-height: 1.2;
  letter-spacing: -0.015em;
  padding-left: 36px;
  position: relative;
}
.wedge-list li::before {
  content: "×";
  position: absolute;
  left: 0; top: -2px;
  font-family: "HighBeams", Georgia, serif;
  font-weight: 300; font-size: 32px;
  color: var(--blush);
  line-height: 1;
}
.wedge-foot {
  margin-top: 40px;
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--blush);
}

/* ingredients */
.ing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}
@media (max-width: 880px) { .ing-grid { grid-template-columns: 1fr; } }
.ing-block { background: var(--bone-warm); border-radius: 16px; padding: 28px 32px; }
.ing-block h3 {
  font-family: "HighBeams", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terra); margin: 0 0 14px;
}
.ing-block p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--forest); }
.ing-block .allergens {
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}

/* cross-sell */
.cross {
  background: var(--blush);
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
}
.cross h2 { color: var(--terra-deep); margin: 0 auto 20px; max-width: 18ch; }
.cross p { font-size: 17px; color: var(--forest); margin: 0 auto 32px; max-width: 36em; }

/* =====================================================================
   GIFTING PAGE
   ===================================================================== */
.gift-hero {
  background: var(--blush);
  padding: 0;
}
.gift-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) 0;
}
@media (max-width: 880px) { .gift-hero-grid { grid-template-columns: 1fr; } }
.gift-hero-text { max-width: 30em; }
.gift-hero h1 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 100px);
  line-height: .98; letter-spacing: -0.03em;
  color: var(--terra-deep); margin: 0 0 24px;
}
.gift-hero h1 .wink {
  display: block; font-style: italic; font-weight: 400;
  color: var(--forest); font-size: .5em;
  letter-spacing: -0.01em; margin-top: .2em;
}
.gift-hero-lede {
  font-family: "HighBeams", Georgia, serif;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55; color: var(--forest);
  margin: 0 0 36px;
}
.gift-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.gift-hero-img {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background:
    linear-gradient(155deg, transparent 0%, rgba(184,90,72,.15) 100%),
    linear-gradient(0deg, var(--bone) 0%, var(--bone-warm) 100%);
  position: relative; overflow: hidden;
  border: 1px solid var(--rule);
}
.gift-hero-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 4; }

/* gift box silhouette */
.gift-box {
  position: absolute;
  inset: 16% 18% 12% 18%;
  background: var(--terra);
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(58,80,72,.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gift-ribbon {
  position: absolute; inset: 0;
  border: 14px solid var(--blush);
  border-left-width: 56px;
  border-right-width: 56px;
  pointer-events: none;
  box-sizing: border-box;
}
.gift-bow {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 38px;
  background: var(--blush);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: inset 0 -10px 0 rgba(0,0,0,.05);
}
.gift-bow::before, .gift-bow::after {
  content: ""; position: absolute; top: 50%;
  width: 26px; height: 26px;
  background: var(--blush-deep);
  border-radius: 0 0 8px 0;
}
.gift-bow::before { left: -10px; transform: translateY(-50%) rotate(20deg); border-radius: 0 0 0 8px; }
.gift-bow::after { right: -10px; transform: translateY(-50%) rotate(-20deg); }
.gift-tag {
  position: absolute; bottom: 16%; right: -8%;
  background: var(--bone);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(58,80,72,.2);
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 14px; color: var(--forest);
  transform: rotate(8deg);
  border: 1px solid var(--rule);
  z-index: 5;
}
.gift-tag strong {
  display: block; font-style: normal; font-weight: 700;
  color: var(--terra); font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 4px;
}

/* use cases */
.use-cases {
  background: var(--bone);
  padding: clamp(64px, 9vw, 120px) 0;
}
.uc-head { text-align: center; max-width: 32em; margin: 0 auto 64px; }
.uc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 880px) { .uc-grid { grid-template-columns: 1fr; } }
.uc-card {
  background: var(--bone-warm);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease);
}
.uc-card:hover { transform: translateY(-4px); }
.uc-img {
  aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
}
.uc-img img { width: 100%; height: 100%; object-fit: cover; }
.uc-img--terra { background: linear-gradient(155deg, var(--terra) 0%, var(--terra-deep) 100%); }
.uc-img--forest { background: linear-gradient(155deg, var(--forest) 0%, var(--forest-deep) 100%); }
.uc-img--blush { background: linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 100%); }
.uc-body { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }
.uc-eyebrow {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terra); margin: 0 0 10px;
}
.uc-card h3 {
  font-family: "HighBeams", Georgia, serif;
  font-variation-settings: "opsz" 144; font-weight: 600;
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--forest);
  margin: 0 0 14px; letter-spacing: -0.02em; line-height: 1.1;
}
.uc-card p {
  color: var(--forest); margin: 0; font-size: 15px; line-height: 1.55;
  flex: 1;
}
.uc-link {
  margin-top: 20px;
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 14px; color: var(--terra); text-decoration: none;
}
.uc-link:hover { color: var(--terra-deep); }

/* what's in the gift box */
.box-section {
  background: var(--bone-warm);
  padding: clamp(64px, 9vw, 120px) 0;
}
.box-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
@media (max-width: 880px) { .box-grid { grid-template-columns: 1fr; } }
.box-img {
  aspect-ratio: 5 / 6;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--terra) 0%, var(--terra-deep) 100%);
  position: relative; overflow: hidden;
}
.box-img img { width: 100%; height: 100%; object-fit: cover; }
.box-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.box-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 18px; border-bottom: 1px solid var(--rule);
  font-size: 17px; color: var(--forest); line-height: 1.5;
}
.box-list li:last-child { border-bottom: none; padding-bottom: 0; }
.box-list .num {
  font-family: "Crumb", Georgia, serif; font-variation-settings: "opsz" 144;
  font-weight: 700; font-size: 22px; color: var(--terra);
  flex-shrink: 0; width: 32px; line-height: 1;
}

/* personalization */
.personal {
  background: var(--forest); color: var(--bone);
  padding: clamp(64px, 9vw, 120px) 0;
}
.personal h2 { color: var(--bone); }
.personal .eyebrow { color: var(--blush); }
.personal .eyebrow::before { background: var(--blush); }
.personal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
@media (max-width: 880px) { .personal-grid { grid-template-columns: 1fr; } }
.personal p {
  color: var(--bone); opacity: .9;
  font-size: 17px; line-height: 1.65;
  margin: 0 0 32px;
}

.note-mock {
  background: var(--bone);
  border-radius: 16px;
  padding: 32px;
  color: var(--forest);
  box-shadow: 0 24px 48px rgba(36,53,48,.4);
}
.note-mock label {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terra); display: block; margin-bottom: 14px;
}
.note-mock textarea {
  width: 100%; min-height: 110px;
  background: transparent; border: none;
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--forest);
  resize: vertical;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 12px;
}
.note-mock textarea:focus { outline: none; border-bottom-color: var(--terra); }
.note-mock textarea::placeholder { color: var(--forest); opacity: .55; font-style: italic; }
.note-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-style: italic; font-size: 13px; color: var(--forest); opacity: .7;
}
.note-sig {
  margin-top: 20px;
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 16px; color: var(--terra);
}

/* gift card */
.giftcard {
  background: var(--bone);
  padding: clamp(64px, 9vw, 120px) 0;
}
.gc-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
@media (max-width: 880px) { .gc-grid { grid-template-columns: 1fr; } }
.gc-card {
  aspect-ratio: 8 / 5;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(232,221,208,.4), transparent 60%),
    linear-gradient(155deg, var(--terra) 0%, var(--terra-deep) 100%);
  border-radius: 22px;
  color: var(--bone);
  padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  box-shadow: 0 28px 60px rgba(58,80,72,.25);
}
.gc-card::after {
  content: ""; position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(229,191,163,.35) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  border-radius: 50%;
}
.gc-amount {
  font-family: "Crumb", Georgia, serif; font-variation-settings: "opsz" 144;
  font-weight: 700; font-size: clamp(48px, 5vw, 76px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--bone);
}
.gc-top {
  display: flex; align-items: baseline; justify-content: space-between;
}
.gc-top .gc-brand {
  font-family: "Crumb", Georgia, serif; font-weight: 800;
  font-variation-settings: "opsz" 144; font-size: 22px;
  letter-spacing: -0.04em;
}
.gc-top .gc-brand .dot { width: .42em; height: .42em; border-radius: 50%; background: var(--blush); display: inline-block; margin-left: .04em; vertical-align: baseline; }
.gc-label {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blush);
}

/* =====================================================================
   STORY PAGE
   ===================================================================== */
.story-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
}
@media (max-width: 900px) { .story-hero { grid-template-columns: 1fr; } }
.story-hero h1 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .98; letter-spacing: -0.03em;
  color: var(--terra); margin: 0 0 24px;
}
.story-hero h1 .accent { display: block; color: var(--forest); font-weight: 500; font-style: italic; font-size: .85em; }
.story-hero p { font-size: clamp(17px, 1.4vw, 20px); color: var(--forest); margin: 0 0 24px; max-width: 36ch; }
.story-hero .signed {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 18px; color: var(--terra); margin: 0;
}
.story-hero-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--blush), var(--blush-deep) 60%, var(--terra));
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.story-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.invention {
  background: var(--forest); color: var(--bone);
  padding: clamp(56px, 8vw, 96px) 0;
}
.invention-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 880px) { .invention-grid { grid-template-columns: 1fr; } }
.invention .pull {
  font-family: "Crumb", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15; letter-spacing: -.02em;
  color: var(--blush);
  max-width: 20ch;
}
.invention p { color: var(--bone); opacity: .9; font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.invention .chip {
  display: inline-block;
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blush);
  background: rgba(229,191,163,.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.invention .tagline {
  font-style: italic;
  color: var(--blush);
  font-size: clamp(18px, 1.6vw, 22px);
}

.timeline {
  padding: clamp(56px, 8vw, 96px) 0;
}
.timeline-wrap { max-width: 880px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.tl-list { display: grid; gap: 1.2rem; margin-top: 28px; }
.tl-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 1.4rem;
  align-items: start; padding-bottom: 24px; border-bottom: 1px solid var(--rule);
}
.tl-item .yr {
  font-family: "HighBeams", Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--terra);
  font-weight: 500;
}
.tl-item h3 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 600; font-size: 22px;
  color: var(--forest); margin: 0 0 6px;
}
.tl-item p { margin: 0; font-size: 16px; color: var(--forest); line-height: 1.6; }
@media (max-width: 540px) {
  .tl-item { grid-template-columns: 90px 1fr; gap: 14px; }
}

.family-section {
  background: var(--bone-warm);
  padding: clamp(56px, 8vw, 96px) 0;
}
.family-head { text-align: center; margin-bottom: 56px; }
.fam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
@media (max-width: 880px) { .fam-grid { grid-template-columns: 1fr; } }
.fam-card {
  background: var(--bone);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.fam-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(155deg, var(--blush), var(--blush-deep) 60%, var(--terra));
  position: relative; overflow: hidden;
}
.fam-img img { width: 100%; height: 100%; object-fit: cover; }
.fam-body { padding: 24px 24px 28px; }
.fam-body h3 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 600; font-size: 26px;
  color: var(--forest); margin: 0 0 6px;
}
.fam-body .role {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); margin: 0 0 12px;
}
.fam-body p { font-size: 15px; color: var(--forest); margin: 0; line-height: 1.55; }

.pillars-section {
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 40px; }
.pillar {
  background: var(--bone-warm);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
}
.pillar .num {
  font-family: "Crumb", Georgia, serif; font-variation-settings: "opsz" 144;
  font-weight: 700; font-size: 30px;
  color: var(--terra); line-height: 1;
  font-feature-settings: "tnum";
}
.pillar h3 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 600; font-size: 18px;
  color: var(--forest); margin: 14px 0 6px;
}
.pillar .sub {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: 13px; color: var(--forest); opacity: .6; margin: 0;
}
@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }

.signoff {
  background: var(--forest); color: var(--bone);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.signoff .pull {
  font-family: "Crumb", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15; letter-spacing: -.02em;
  color: var(--blush); margin: 0 auto;
  max-width: 22ch;
}
.signoff .wink {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--blush); margin: 24px 0 28px;
}

/* =====================================================================
   COLLECTION (basic grid)
   ===================================================================== */
.coll-head { padding: clamp(48px, 6vw, 80px) 0 24px; text-align: center; }
.coll-head h1 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--terra); margin: 0 0 16px;
}
.coll-head p { font-size: 17px; color: var(--forest); margin: 0 auto; max-width: 32em; }
.coll-grid {
  padding: clamp(32px, 5vw, 64px) 0 clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 880px) { .coll-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .coll-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bone-warm);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
}
.product-card:hover { transform: translateY(-3px); }
.product-card .card-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--blush), var(--blush-deep) 60%, var(--terra));
  position: relative; overflow: hidden;
}
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-card h3 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 600; font-size: 24px;
  color: var(--terra); margin: 0; letter-spacing: -0.02em;
}
.product-card .meta { font-size: 14px; color: var(--forest); opacity: .8; margin: 0; }
.product-card .price {
  font-family: "HighBeams", Georgia, serif; font-weight: 700;
  font-size: 20px; color: var(--terra); margin: 0;
}

/* =====================================================================
   CART / 404
   ===================================================================== */
.cart-page,
.notfound-page {
  padding: clamp(64px, 9vw, 120px) 0;
  text-align: center;
}
.cart-page h1,
.notfound-page h1 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--terra); margin: 0 0 20px;
}
.cart-page p,
.notfound-page p { font-size: 17px; color: var(--forest); max-width: 36em; margin: 0 auto 32px; }

.cart-table { width: 100%; border-collapse: collapse; margin: 32px 0; text-align: left; }
.cart-table th, .cart-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px; color: var(--forest);
}
.cart-table th {
  font-family: "HighBeams", Georgia, serif; font-style: italic;
  font-weight: 400; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra);
}
.cart-total {
  font-family: "HighBeams", Georgia, serif; font-weight: 700;
  font-size: 22px; color: var(--terra);
  text-align: right; margin: 18px 0 28px;
}

/* =====================================================================
   MISC
   ===================================================================== */
body { animation: pageIn .6s var(--ease); }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  * { transition: none !important; }
}
/* ---------- Sundae script tier ---------- */
.step h3,
.fam-body h3,
.pillar h3,
.tl-item .yr,
.reviews .h2,
.newsletter h2 {
  font-family: "Sundae", Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.step h3 {
  font-size: 38px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}
.fam-body h3,
.pillar h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
}
.tl-item .yr {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}
.reviews .h2,
.newsletter h2 {
  font-size: clamp(32px, 4vw, 52px) !important;
  line-height: 1.15;
  text-wrap: balance;
}

/* All other section H2s stay in Crumb */
.h2,
.featured h2,
.founder h2,
.invention .pull,
.signoff .pull {
  font-family: "Crumb", Georgia, serif !important;
  font-weight: 400 !important;
  font-size: clamp(36px, 5vw, 64px) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

/* Featured product headline is anchor-tier — keep big in Crumb */
.featured h2 {
  font-family: "Crumb", Georgia, serif;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.step-img video,
.gallery-main video,
.featured-img video,
.founder-img video,
.hero-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ---------- coming soon teasers on collection page ---------- */
.coming-soon-section {
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
  background: var(--bone-warm);
  border-top: 1px solid var(--rule);
  margin-top: clamp(40px, 6vw, 80px);
}
.coming-soon-head {
  text-align: center;
  max-width: 36em;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.cs-lede {
  font-size: 16px;
  color: var(--forest);
  opacity: .75;
  margin: 0;
}

.coming-soon-card {
  background: var(--bone);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  position: relative;
}
.coming-soon-card .cs-img {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  filter: blur(0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-img--terra {
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(232,221,208,.4), transparent 60%),
    linear-gradient(155deg, var(--terra) 0%, var(--terra-deep) 100%);
}
.cs-img--blush {
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(232,221,208,.5), transparent 60%),
    linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 100%);
}
.cs-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bone);
  color: var(--terra);
  font-family: "HighBeams", Georgia, serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 3;
}
.cs-mark {
  font-family: "Crumb", Georgia, serif;
  font-size: clamp(140px, 18vw, 220px);
  color: rgba(232,221,208,.5);
  line-height: 1;
  text-shadow: 0 12px 32px rgba(36,53,48,.2);
}
.coming-soon-card .card-body {
  padding: 24px 24px 28px;
}
.coming-soon-card h3 {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--terra);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.coming-soon-card .meta {
  font-size: 14px;
  color: var(--forest);
  opacity: .7;
  margin: 0;
  font-style: italic;
}
/* Product description body: left-align, style lists properly */
.section--warm .section-narrow > div:last-of-type {
  text-align: left;
  max-width: 600px;
  margin: 24px auto 0;
}
.section--warm .section-narrow ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
  text-align: left;
}
.section--warm .section-narrow ol {
  padding-left: 24px;
  margin: 16px 0;
  text-align: left;
}
.section--warm .section-narrow li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.section--warm .section-narrow p {
  margin: 16px 0;
}
.section--warm .section-narrow > .eyebrow,
.section--warm .section-narrow > h2 {
  text-align: center;
}
/* ---------- palette-swap contrast fixes ---------- */

/* Dark sections (founder, wedge, footer): eyebrows pop in saffron instead of caramel */
.founder .eyebrow,
.wedge .eyebrow,
.invention .chip,
.signoff .eyebrow {
  color: #C99518 !important;
}
.founder .eyebrow::before,
.wedge .eyebrow::before {
  background: #C99518 !important;
}

/* Wedge crossed-out items: keep them light/legible on cocoa */
.wedge-list li {
  color: #E8DDD0 !important;
}
.wedge-list li::before {
  color: #C99518 !important;
}
.wedge-foot {
  color: #C99518 !important;
}

/* Newsletter: was blush bg, now caramel - darken body text for contrast */
.newsletter p {
  color: #3D1F12 !important;
}
.newsletter input {
  background: #E8DDD0 !important;
  color: #3D1F12 !important;
  border-color: #3D1F12 !important;
}
.newsletter input::placeholder {
  color: #3D1F12 !important;
  opacity: .6;
}

/* Cross-sell: was blush, now caramel - ensure title/body still read */
.cross h2 {
  color: #2A140C !important;
}
.cross p {
  color: #2A140C !important;
}

/* Promise strip: persimmon bg, ensure dot stays visible */
.promise .dot {
  background: #C99518 !important;
}

/* Trust icons: caramel circles became too dark - lighten with saffron */
.trust-icon {
  background: #C99518 !important;
  color: #2A140C !important;
}

/* Coming-soon badge: ensure it still reads on caramel gradient cards */
.cs-badge {
  background: #E8DDD0 !important;
  color: #C8451F !important;
}
.cs-mark {
  color: rgba(232,221,208,.4) !important;
}
/* Let founder body inherit color from the wrapper's inline style */
.founder p {
  color: inherit;
}
/* =====================================================================
   PRODUCT HERO — Nexba-inspired structure
   ===================================================================== */
.pd-hero { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 64px); }
.pd-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: flex-start;
}
@media (max-width: 880px) { .pd-grid { grid-template-columns: 1fr; gap: 24px; } }

.pd-gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--bone-warm);
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,.9); color: var(--forest);
  font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.pd-gallery-arrow--prev { left: 16px; }
.pd-gallery-arrow--next { right: 16px; }
}

/* Title + price */
.pd-title {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.pd-social {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--forest);
  margin: 0 0 16px;
}
.pd-stars { color: var(--blush); letter-spacing: 1px; }
.pd-social-divider { opacity: .4; }
.pd-social-text { font-family: "HighBeams", Georgia, serif; }

.pd-price {
  font-family: "Crumb", Georgia, serif;
  font-weight: 400; font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.pd-desc-short {
  font-size: 15px; line-height: 1.55;
  margin: 0 0 24px;
}

/* Block label */
.pd-label {
  font-family: "HighBeams", Georgia, serif;
  font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 12px;
}
.pd-label-value {
  color: var(--terra); font-weight: 700;
}
.pd-block { margin: 0 0 24px; }

/* Kit swatches */
.kit-swatches {
  display: flex; gap: 12px; align-items: center;
}
.kit-swatch {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  background: var(--bone-warm);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.kit-swatch img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.kit-swatch.is-active {
  border-color: var(--terra);
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}
.kit-swatch.is-soon {
  background: linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 100%);
  color: var(--bone);
  cursor: not-allowed;
  opacity: .85;
}
.kit-soon-mark {
  font-family: "Crumb", Georgia, serif;
  font-size: 32px; color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

/* Pack size buttons */
.pack-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.pack-btn {
  position: relative;
  background: var(--bone);
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 14px 8px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: "HighBeams", Georgia, serif;
  transition: border-color .2s ease, background .2s ease;
}
.pack-btn .pack-size {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); font-weight: 700;
}
.pack-btn .pack-price {
  font-size: 13px; color: var(--forest); opacity: .7;
}
.pack-btn.is-active {
  border-color: var(--forest);
  background: var(--bone-warm);
}
.pack-btn .pack-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--blush); color: var(--forest-deep);
  font-size: 10px; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 999px;
  white-space: nowrap;
  font-weight: 700;
}

/* Purchase options card */
.po-card {
  display: block;
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 18px 18px 20px;
  margin: 0 0 10px;
  cursor: pointer;
  background: var(--bone);
  transition: border-color .2s ease, background .2s ease;
  position: relative;
}
.po-card.is-selected {
  border-color: var(--forest);
  background: rgba(232, 184, 149, .15);
}
.po-input { position: absolute; opacity: 0; pointer-events: none; }
.po-header {
  display: flex; align-items: center; gap: 10px;
  font-family: "HighBeams", Georgia, serif;
  margin: 0 0 4px;
}
.po-radio {
  width: 18px; height: 18px;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.po-card.is-selected .po-radio::after {
  content: ""; width: 9px; height: 9px;
  background: var(--forest); border-radius: 50%;
}
.po-title {
  font-size: 15px; font-weight: 700; color: var(--forest);
}
.po-badge {
  font-size: 10px; letter-spacing: .08em; font-weight: 700;
  background: var(--blush); color: var(--forest-deep);
  padding: 3px 8px; border-radius: 999px;
}
.po-price {
  margin-left: auto;
  font-family: "Crumb", Georgia, serif;
  font-size: 18px; color: var(--terra);
}
.po-bullets {
  list-style: none; padding: 0; margin: 10px 0 14px;
  font-size: 13px; color: var(--forest);
}
.po-bullets li { padding-left: 18px; position: relative; margin: 4px 0; }
.po-bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--terra); font-weight: 700; }
.po-cadence-label {
  font-family: "HighBeams", Georgia, serif;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 8px;
}
.cadence-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.cadence-btn {
  background: var(--bone);
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  padding: 10px 4px;
  font-family: "HighBeams", Georgia, serif;
  font-size: 11px; letter-spacing: .1em; font-weight: 700;
  color: var(--forest);
  cursor: pointer;
}
.cadence-btn.is-active {
  background: var(--forest); color: var(--bone); border-color: var(--forest);
}

/* Add to cart pill */
.pd-atc {
  display: block; width: 100%;
  background: var(--forest); color: var(--bone);
  border: none; border-radius: 999px;
  padding: 18px 28px;
  font-family: "HighBeams", Georgia, serif;
  font-size: 16px; letter-spacing: .1em; font-weight: 700;
  cursor: pointer;
  margin: 18px 0 12px;
  transition: background .2s ease, transform .2s ease;
}
.pd-atc:hover { background: var(--forest-deep); transform: translateY(-1px); }

.pd-ship {
  text-align: center;
  font-size: 13px; color: var(--forest); opacity: .7;
  margin: 0;
  font-style: italic;
}
.pd-ship-icon { margin-right: 6px; }
.cart-remove {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--terra);
  text-decoration: underline;
  letter-spacing: .04em;
  font-style: italic;
}
.cart-remove:hover {
  color: var(--terra-deep);
}
/* Multi-image gallery with thumbs on the left */
.pd-gallery {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pd-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.pd-gallery-thumb {
  width: 72px;
  height: 86px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  overflow: hidden;
  padding: 0;
  background: var(--bone-warm);
  cursor: pointer;
  transition: border-color .2s ease;
}
.pd-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-gallery-thumb.is-active {
  border-color: var(--terra);
}
.pd-gallery-main {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--bone-warm);
}
.pd-gallery-main img[data-gallery-img] {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-gallery-main img[data-gallery-img].is-active {
  display: block;
}
@media (max-width: 540px) {
  .pd-gallery { flex-direction: column-reverse; }
  .pd-gallery-thumbs { flex-direction: row; flex-wrap: wrap; }
  .pd-gallery-thumb { width: 60px; height: 72px; }
}
.hero-img-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-img-bg { z-index: 1; }
.hero-overlay { z-index: 3 !important; }
/* ---------- Spacing audit: more breathing room across the site ---------- */
.reviews .h2,
.newsletter h2,
.how-intro .h2 {
  margin-bottom: 56px !important;
}
.review-grid {
  margin-top: 8px;
}
.newsletter-fine {
  margin-top: 48px;
}
.newsletter {
  padding-bottom: 128px !important;
}
.site-footer {
  padding-top: 96px !important;
}
.how-intro p {
  margin-top: 16px;
}

/* Sundae script headlines need more space below — script descenders crowd what follows */
.reviews .h2,
.newsletter h2,
.how-intro .h2 {
  margin-bottom: 56px !important;
}

/* Reviews grid: gap above the cards */
.review-grid {
  margin-top: 8px;
}

/* Newsletter: more room for fine print + more space before footer */
.newsletter-fine {
  margin-top: 48px;
}
.newsletter {
  padding-bottom: 128px !important;
}

/* Footer: more breathing room from the section above */
.site-footer {
  padding-top: 96px !important;
}

/* How it works: intro paragraph below Sundae heading needs space */
.how-intro p {
  margin-top: 16px;
}
.how-intro {
  margin-bottom: 72px !important;
}

/* Featured product: standardize internal vertical rhythm */
.featured-text h2 {
  margin-bottom: 24px !important;
}
.featured-text .featured-subtitle {
  margin-bottom: 32px !important;
}
.featured-text .featured-desc {
  margin-bottom: 32px;
}

/* Founder section: body paragraphs breathe */
.founder h2 {
  margin-bottom: 28px !important;
}
.founder p {
  margin-bottom: 28px;
}
.founder .signed {
  margin: 32px 0 36px;
}

/* Promise strip: a bit more presence */
.promise {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

/* Featured + Founder + Reviews bottom padding minimums */
.featured {
  padding-bottom: clamp(96px, 9vw, 120px) !important;
}
.reviews {
  padding-bottom: clamp(96px, 9vw, 120px) !important;
}
.founder {
  padding-bottom: clamp(112px, 10vw, 144px) !important;
}
/* More space between eyebrow and the headline beneath it */
.eyebrow--center { margin-bottom: 40px !important; }
.how-intro .eyebrow,
.reviews .eyebrow,
.uc-head .eyebrow { margin-bottom: 40px !important; }
.newsletter-fine { margin-top: 40px !important; }
.pd-desc-short p { margin: 0 0 16px; }
.pd-desc-short p:last-child { margin-bottom: 0; }
.pd-desc-short ul, .pd-desc-short ol { margin: 12px 0; padding-left: 24px; }
.pd-desc-short li { margin-bottom: 6px; }
.promise .dot { background: #A1A776 !important; }
/* ---------- Visual polish: layered shadows + hover lifts ---------- */

/* Multi-layered shadow values used across cards */
:root {
  --shadow-card: 0 2px 8px rgba(31, 24, 16, 0.04), 0 8px 24px rgba(31, 24, 16, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(31, 24, 16, 0.08), 0 16px 32px rgba(31, 24, 16, 0.1);
  --shadow-image: 0 8px 24px rgba(31, 24, 16, 0.08), 0 16px 40px rgba(31, 24, 16, 0.06);
  --shadow-image-large: 0 12px 32px rgba(31, 24, 16, 0.1), 0 24px 56px rgba(31, 24, 16, 0.08);
  --shadow-button: 0 4px 12px rgba(31, 24, 16, 0.12);
  --shadow-button-hover: 0 6px 18px rgba(31, 24, 16, 0.18);
}

/* Cards: How-it-works steps */
.step {
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Cards: Reviews */
.review {
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* Cards: Coming soon teasers + product cards on collection */
.coming-soon-card,
.product-card {
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.coming-soon-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Cards: Gifting use cases */
.uc-card {
  box-shadow: var(--shadow-card);
}
.uc-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Cards: Family members on story */
.fam-card {
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.fam-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* Cards: Pillars on story */
.pillar {
  box-shadow: 0 1px 4px rgba(31, 24, 16, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* Cards: Ingredients blocks on PDP */
.ing-block {
  box-shadow: 0 2px 8px rgba(31, 24, 16, 0.04);
}

/* Images: Featured product, founder, story hero */
.featured-img,
.founder-img,
.story-hero-img,
.inside-img,
.box-img {
  box-shadow: var(--shadow-image-large);
}

/* Product page gallery */
.pd-gallery-main,
.gallery-main {
  box-shadow: var(--shadow-image);
}

/* Buttons: primary CTAs */
.btn-primary {
  box-shadow: var(--shadow-button);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-primary:hover {
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-1px);
}

/* Add to cart pill on product page */
.pd-atc {
  box-shadow: var(--shadow-button);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.pd-atc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

/* Pack size buttons */
.pack-btn {
  box-shadow: 0 1px 3px rgba(31, 24, 16, 0.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.pack-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 24, 16, 0.08);
}
.pack-btn.is-active {
  box-shadow: 0 2px 8px rgba(31, 24, 16, 0.1), 0 8px 24px rgba(31, 24, 16, 0.06);
}

/* Sticky nav: subtle line shadow when content scrolls under */
.nav {
  box-shadow: 0 1px 0 rgba(31, 24, 16, 0.05), 0 4px 16px rgba(31, 24, 16, 0.03);
}

/* Daisy and gift card visual elements (already had shadows but ensuring consistency) */
.gc-card {
  box-shadow: var(--shadow-image-large);
}

/* Smoother focus rings */
:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 3px;
  box-shadow: 0 0 0 4px rgba(194, 74, 48, 0.15);
}
/* ---------- Mobile spacing audit (≤ 780px) ---------- */
@media (max-width: 780px) {
  /* HERO */
  .hero-overlay {
    padding-top: clamp(56px, 9vw, 80px) !important;
    padding-bottom: clamp(32px, 5vw, 48px) !important;
    padding-left: clamp(20px, 5vw, 32px) !important;
    padding-right: clamp(20px, 5vw, 32px) !important;
    gap: 18px !important;
  }
  .hero h1 {
    font-size: clamp(36px, 10vw, 56px) !important;
    line-height: .98 !important;
  }
  .hero h1 .wink {
    font-size: .32em !important;
    margin-top: .15em !important;
  }
  .hero-lede {
    font-size: 15px !important;
  }
  .hero-ctas {
    gap: 10px !important;
  }
  .hero-ctas .btn {
    padding: 12px 22px !important;
    font-size: 14px !important;
  }

  /* PROMISE STRIP */
  .promise {
    padding: 14px 16px !important;
    font-size: 11px !important;
    letter-spacing: .15em !important;
    gap: 14px !important;
  }

  /* FEATURED PRODUCT */
  .featured {
    padding: clamp(48px, 9vw, 72px) 0 !important;
  }
  .featured-grid {
    gap: 32px !important;
  }
  .featured h2 {
    font-size: clamp(36px, 10vw, 56px) !important;
  }

  /* HOW IT WORKS */
  .how {
    padding: clamp(48px, 9vw, 72px) 0 !important;
  }
  .how-intro {
    margin-bottom: 40px !important;
  }
  .how-intro .eyebrow,
  .uc-head .eyebrow,
  .reviews .eyebrow {
    margin-bottom: 24px !important;
  }
  .step h3 {
    font-size: 30px !important;
  }

  /* FOUNDER */
  .founder {
    padding: clamp(56px, 10vw, 88px) 0 !important;
  }
  .founder-grid {
    gap: 32px !important;
  }
  .founder h2 {
    font-size: clamp(28px, 8vw, 42px) !important;
    margin-bottom: 20px !important;
  }
  .founder p {
    margin-bottom: 20px !important;
  }

  /* REVIEWS */
  .reviews {
    padding: clamp(48px, 9vw, 72px) 0 !important;
  }
  .reviews .h2 {
    margin-bottom: 40px !important;
    font-size: clamp(30px, 8vw, 44px) !important;
  }

  /* NEWSLETTER */
  .newsletter {
    padding-top: clamp(48px, 9vw, 72px) !important;
    padding-bottom: clamp(56px, 10vw, 88px) !important;
  }
  .newsletter h2 {
    font-size: clamp(28px, 8vw, 42px) !important;
    margin-bottom: 18px !important;
  }
  .newsletter p {
    margin-bottom: 28px !important;
  }
  .newsletter-fine {
    margin-top: 28px !important;
  }

  /* FOOTER */
  .site-footer {
    padding: 56px 0 24px !important;
  }
  .foot-grid {
    margin-bottom: 32px !important;
  }

  /* PRODUCT PAGE — pack buttons cramp on mobile */
  .pack-row {
    gap: 6px !important;
  }
  .pack-btn {
    padding: 12px 4px !important;
  }
  .pack-btn .pack-size {
    font-size: 12px !important;
  }
  .pack-btn .pack-price {
    font-size: 11px !important;
  }
  .pack-btn .pack-badge {
    font-size: 9px !important;
    padding: 2px 6px !important;
  }
  
  /* Product page padding tighter */
  .pd-hero {
    padding: 24px 0 32px !important;
  }
  .pd-title {
    font-size: clamp(32px, 9vw, 48px) !important;
  }
  .pd-atc {
    padding: 16px 24px !important;
    font-size: 15px !important;
  }
}
/* Mobile hero tweaks: lift content up + bigger Sundae wink */
@media (max-width: 780px) {
  .hero-overlay {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
  }
  .hero h1 .wink {
    font-size: .48em !important;
  }
}
.founder .eyebrow {
  color: #6E2C3C !important;
}
.founder .eyebrow::before {
  background: #6E2C3C !important;
}
.reviews .eyebrow::before {
  background: currentColor !important;
}
html {
  scroll-behavior: smooth;
}
.nav {
  border-bottom: none !important;
}
.breadcrumb {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
