:root {
  --ink: #151815;
  --muted: #5f655f;
  --cream: #faf8ef;
  --paper: #fffdf6;
  --matcha: #8fb339;
  --deep: #26351f;
  --lime: #d9f26b;
  --coral: #ef7b62;
  --sky: #b7d9e8;
  --lilac: #d8c8ff;
  --line: rgba(21, 24, 21, 0.13);
  --shadow: 0 24px 70px rgba(20, 27, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Assistant", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

main > section {
  scroll-margin-top: 116px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

.promo-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 34px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding-inline: 28px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.site-header {
  position: fixed;
  inset: 34px 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(250, 248, 239, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-weight: 800;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  justify-content: center;
}

.main-nav a,
.ghost-link {
  color: rgba(21, 24, 21, 0.72);
  font-weight: 700;
}

.main-nav a:hover,
.ghost-link:hover {
  color: var(--ink);
}

.header-actions {
  justify-content: end;
}

.cart-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cart-button {
  position: relative;
}

.cart-button svg,
.icon-button svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  inset: -7px -7px auto auto;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding-inline: 5px;
  color: var(--paper);
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 760px;
  padding: 156px clamp(18px, 5vw, 76px) 58px;
  color: var(--paper);
  overflow: hidden;
}

.hero-media,
.hero-media video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(15, 20, 13, 0.34), rgba(15, 20, 13, 0.78) 58%, rgba(15, 20, 13, 0.84)),
    linear-gradient(0deg, rgba(15, 20, 13, 0.54), rgba(15, 20, 13, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: min(720px, 56vw);
  justify-self: start;
  text-align: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 253, 246, 0.82);
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-actions,
.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.product-footer button,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 34px rgba(217, 242, 107, 0.24);
}

.secondary-button {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.primary-button:hover,
.secondary-button:hover,
.product-footer button:hover,
.newsletter-form button:hover {
  transform: translateY(-2px);
}

.primary-button svg,
.secondary-button svg,
.product-footer button svg,
.business-actions svg {
  width: 18px;
  height: 18px;
}

.tin-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  background:
    linear-gradient(140deg, rgba(143, 179, 57, 0.28), rgba(183, 217, 232, 0.55)),
    var(--paper);
}

.tin {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, #1c2619, #405929);
  box-shadow: 0 28px 48px rgba(38, 53, 31, 0.32);
}

.tin::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.tin-large {
  width: 168px;
  height: 230px;
  transform: rotate(-6deg);
}

.tin-title {
  font-size: 2.3rem;
  font-weight: 800;
}

.tin-subtitle {
  position: absolute;
  bottom: 52px;
  font-size: 0.7rem;
  font-weight: 800;
}

.powder-dish {
  position: absolute;
  right: 45px;
  bottom: 46px;
  width: 128px;
  height: 46px;
  background: radial-gradient(ellipse at center, #a6c64b 0 55%, #7fa22f 56% 72%, #f6f1df 73%);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(38, 53, 31, 0.22);
}

.whisk-lines {
  position: absolute;
  left: 48px;
  bottom: 50px;
  display: flex;
  gap: 5px;
  transform: rotate(14deg);
}

.whisk-lines span {
  width: 4px;
  height: 76px;
  background: #d6ae76;
  border-radius: 999px;
  transform-origin: bottom center;
}

.whisk-lines span:nth-child(1) {
  transform: rotate(-18deg);
}

.whisk-lines span:nth-child(2) {
  transform: rotate(-8deg);
}

.whisk-lines span:nth-child(4) {
  transform: rotate(8deg);
}

.whisk-lines span:nth-child(5) {
  transform: rotate(18deg);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.proof-bar div {
  padding: 24px clamp(16px, 3vw, 34px);
  border-inline-start: 1px solid var(--line);
}

.proof-bar div:last-child {
  border-inline-start: 0;
}

.proof-bar strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1;
}

.proof-bar span {
  color: var(--muted);
  font-weight: 700;
}

.origin-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 76px clamp(18px, 5vw, 76px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(21, 24, 21, 0.96), rgba(38, 53, 31, 0.86)),
    repeating-linear-gradient(135deg, rgba(217, 242, 107, 0.06) 0 1px, transparent 1px 22px),
    var(--deep);
  overflow: hidden;
}

.origin-copy {
  position: relative;
  z-index: 2;
}

.origin-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.origin-grid article {
  min-height: 210px;
  padding: 20px;
  background: rgba(255, 253, 246, 0.08);
  border: 1px solid rgba(255, 253, 246, 0.16);
  border-radius: 8px;
}

.origin-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 6px;
  font-weight: 800;
}

.origin-grid h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.origin-grid p {
  margin-bottom: 0;
  color: rgba(255, 253, 246, 0.72);
  line-height: 1.55;
}

.section,
.recipes-section {
  padding: 96px clamp(18px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2,
.media-copy h2,
.ritual-content h2,
.stockists-copy h2,
.business-copy h2,
.newsletter-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:last-child,
.media-copy p:last-child,
.stockists-copy p,
.business-copy p,
.newsletter-section p,
.ritual-content p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.compact {
  display: block;
  max-width: 720px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 24, 21, 0.24);
  box-shadow: 0 28px 56px rgba(38, 53, 31, 0.14);
}

.product-featured {
  background: #f7f9e5;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.badge.subtle {
  color: var(--ink);
  background: var(--sky);
}

.product-visual,
.product-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 292px;
  overflow: hidden;
}

.product-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0)),
    var(--sky);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: auto -12% 20px;
  height: 18px;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 246, 0.64), transparent);
  transform: rotate(-6deg);
  animation: shineSweep 3.9s ease-in-out infinite;
}

@keyframes shineSweep {
  0%,
  100% {
    translate: -28% 0;
    opacity: 0;
  }
  45%,
  58% {
    opacity: 1;
  }
  70% {
    translate: 28% 0;
    opacity: 0;
  }
}

.product-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.tin-matcha {
  width: 128px;
  height: 180px;
  animation: productFloat 4.8s ease-in-out infinite;
}

.tin-matcha span,
.soft-pack span {
  font-size: 1.6rem;
  font-weight: 800;
}

.tin-matcha small,
.soft-pack small {
  position: absolute;
  bottom: 42px;
  font-weight: 800;
}

.pouch {
  background: var(--lilac);
}

.soft-pack {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 200px;
  color: var(--deep);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.42), transparent 42%),
    #dff0b8;
  border: 1px solid rgba(21, 24, 21, 0.15);
  border-radius: 8px 8px 18px 18px;
  box-shadow: 0 24px 48px rgba(67, 71, 61, 0.2);
  animation: productFloat 5.4s ease-in-out infinite;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

.soft-pack::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 86%;
  height: 1px;
  background: rgba(21, 24, 21, 0.22);
}

.kit {
  display: flex;
  gap: 24px;
  background: #f5d4c8;
}

.tin-small {
  width: 86px;
  height: 128px;
  transform: rotate(-4deg);
}

.tin-small span {
  font-weight: 800;
}

.chasen {
  width: 72px;
  height: 148px;
  background: repeating-linear-gradient(90deg, #cf9b5b 0 4px, #e7c081 4px 8px);
  border-radius: 0 0 42px 42px;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.scoop {
  width: 110px;
  height: 11px;
  background: #d0a063;
  border-radius: 999px;
  transform: rotate(-22deg);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.product-info p {
  color: var(--muted);
  line-height: 1.55;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-footer span {
  font-size: 1.25rem;
  font-weight: 800;
}

.product-footer button {
  min-height: 42px;
  color: var(--paper);
  background: var(--ink);
}

.media-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 22px;
  padding: 86px clamp(18px, 5vw, 76px);
  color: var(--paper);
  background: var(--deep);
}

.media-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 560px;
}

.media-copy p:last-child {
  color: rgba(255, 253, 246, 0.72);
}

.media-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  grid-auto-rows: 270px;
  gap: 14px;
}

.media-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, filter 240ms ease;
}

.media-tile:hover {
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.04);
}

.media-tile.tall {
  grid-row: span 2;
}

.media-tile img,
.media-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  background: var(--paper);
}

.ritual-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ritual-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 14px;
  align-items: stretch;
}

.ritual-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.ritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article {
  display: grid;
  align-content: start;
  min-height: 160px;
  padding: 18px;
  background: #f6f0df;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps article span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  color: var(--paper);
  background: var(--deep);
  border-radius: 6px;
  font-weight: 800;
}

.steps article h3 {
  margin-bottom: 6px;
}

.steps article p {
  margin-bottom: 0;
}

.benefits-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  background: #edf4d4;
}

.benefit-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  grid-column: 1 / -1;
  align-items: stretch;
}

.benefit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
  color: var(--paper);
  background: var(--deep);
  border-radius: 8px;
}

.benefit-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.benefit-copy p:last-child {
  max-width: 560px;
  color: rgba(255, 253, 246, 0.74);
  font-size: 1.12rem;
  line-height: 1.65;
}

.benefit-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  min-height: 150px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-list svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
}

.benefit-list h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.recipes-section {
  background: var(--cream);
}

.recipe-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tab {
  min-width: 78px;
  min-height: 40px;
  padding-inline: 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.tab.active {
  color: var(--paper);
  background: var(--deep);
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.recipe-card {
  display: grid;
  min-height: 420px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.recipe-card.is-hidden {
  display: none;
}

.recipe-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.recipe-card:first-child img {
  height: 320px;
}

.recipe-card div {
  padding: 18px;
}

.recipe-card span {
  color: var(--coral);
  font-weight: 800;
}

.recipe-card h3 {
  margin: 8px 0;
  font-size: 1.45rem;
}

.recipe-card p {
  color: var(--muted);
  line-height: 1.55;
}

.stockists-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: center;
  padding: 84px clamp(18px, 5vw, 76px);
  background: var(--sky);
}

.city-tags,
.business-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.city-tags span,
.business-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding-inline: 12px;
  color: var(--ink);
  background: rgba(255, 253, 246, 0.62);
  border: 1px solid rgba(21, 24, 21, 0.12);
  border-radius: 999px;
  font-weight: 800;
}

.locator-form,
.newsletter-form {
  display: grid;
  gap: 12px;
}

.locator-form {
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
}

label span {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
}

input:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(143, 179, 57, 0.22);
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  min-height: 660px;
  background: #f5d4c8;
}

.business-media {
  min-height: 660px;
  overflow: hidden;
}

.business-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(24px, 5vw, 76px);
}

.business-copy .secondary-button {
  color: var(--ink);
  border-color: rgba(21, 24, 21, 0.22);
  background: rgba(255, 255, 255, 0.42);
}

.business-points {
  margin-bottom: 24px;
}

.reviews-section {
  padding: 88px clamp(18px, 5vw, 76px);
  background: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--paper);
  background: var(--deep);
  border-radius: 8px;
}

.review-grid article:nth-child(2) {
  background: #151815;
}

.review-grid article:nth-child(3) {
  color: var(--ink);
  background: #edf4d4;
}

.stars {
  color: var(--lime);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-grid p {
  margin: 28px 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
}

.review-grid span {
  color: currentColor;
  opacity: 0.72;
  font-weight: 800;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

details {
  background: #f8f3e7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  min-height: 58px;
  padding: 18px;
  font-size: 1.12rem;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  padding: 72px clamp(18px, 5vw, 76px);
  color: var(--paper);
  background: var(--ink);
}

.newsletter-section p {
  color: rgba(255, 253, 246, 0.72);
}

.newsletter-form {
  grid-template-columns: 1fr auto;
}

.newsletter-form button {
  color: var(--ink);
  background: var(--lime);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 36px;
  padding: 46px clamp(18px, 5vw, 76px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-weight: 800;
}

.credits {
  align-self: end;
  color: var(--muted);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(330px, calc(100vw - 36px));
  padding: 14px 16px;
  color: var(--paper);
  background: var(--deep);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 800;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(21, 24, 21, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(21, 24, 21, 0.18);
}

.sticky-cta span {
  font-weight: 800;
}

.sticky-cta strong {
  font-size: 0.78rem;
  color: rgba(21, 24, 21, 0.68);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-grid,
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-section,
  .ritual-section,
  .ritual-stage,
  .business-section,
  .origin-section {
    grid-template-columns: 1fr;
  }

  .origin-copy h2 {
    max-width: 780px;
  }

  .origin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ritual-image,
  .ritual-image img,
  .business-media {
    min-height: 440px;
    height: 440px;
  }

  .benefit-editorial {
    grid-template-columns: 1fr;
  }

  .benefit-image {
    min-height: 420px;
  }

  .business-section {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    inset: 92px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(250, 248, 239, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .ghost-link {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-top: 138px;
  }

  h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .hero-content {
    max-width: 100%;
    align-self: start;
    padding-top: 22px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section,
  .recipes-section {
    padding-block: 68px;
  }

  .section-heading,
  .stockists-section,
  .newsletter-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-section {
    padding-block: 64px;
  }

  .media-copy {
    min-height: auto;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .media-tile.tall {
    grid-row: auto;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .recipe-card,
  .recipe-card:first-child img,
  .recipe-card img {
    min-height: 0;
    height: auto;
  }

  .recipe-card img {
    aspect-ratio: 16 / 10;
  }

  .locator-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .origin-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .hero {
    padding-inline: 16px;
    padding-bottom: 32px;
  }

  .hero-actions,
  .business-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .product-grid,
  .benefit-list,
  .proof-bar {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-visual,
  .product-photo,
  .product-photo img {
    min-height: 320px;
    height: 320px;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    bottom: 14px;
    text-align: center;
  }

  .recipe-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tab {
    flex: 1 0 76px;
  }

  .origin-section {
    padding-block: 62px;
  }

  .origin-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}

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