:root {
  --green-950: #022c1d;
  --green-900: #063d28;
  --green-800: #0a5f3a;
  --green-100: #e6f3df;
  --gold-500: #f7c225;
  --gold-600: #c79312;
  --cream: #fffaf0;
  --linen: #f6efd9;
  --ink: #14231b;
  --muted: #5b675f;
  --line: rgba(6, 61, 40, 0.18);
  --shadow: 0 24px 70px rgba(6, 61, 40, 0.16);
  --radius: 8px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Karla", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold-500);
  color: var(--green-950);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-intro {
  display: none;
  place-items: center;
  gap: 2px;
  padding: 10px 16px 9px;
  background: var(--green-950);
  color: #fff;
  text-align: center;
}

.brand-intro img {
  width: min(150px, 44vw);
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-intro p {
  margin: 0;
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 34px rgba(6, 61, 40, 0.12);
}

.brand img {
  width: 148px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  color: var(--green-950);
  font-size: 17px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--green-900);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--gold-500);
  color: var(--green-950);
  box-shadow: 0 10px 24px rgba(199, 147, 18, 0.25);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  background: #fff;
  color: var(--green-950);
}

.button-report {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(199, 147, 18, 0.36);
  background: rgba(247, 194, 37, 0.12);
  color: var(--green-950);
  box-shadow: none;
  font-size: 15px;
}

.button-report:hover {
  border-color: rgba(199, 147, 18, 0.7);
  background: rgba(247, 194, 37, 0.2);
}

.button svg,
.header-cta svg,
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-950);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  padding: 124px clamp(16px, 6vw, 110px) 150px;
  overflow: hidden;
  background: var(--green-950);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(2, 30, 19, 0.08), rgba(2, 30, 19, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  color: #fff;
  align-self: flex-end;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-heading);
}

h1 {
  max-width: 620px;
  font-size: clamp(42px, 6vw, 86px);
}

.hero-title-image {
  max-width: min(620px, 100%);
}

.hero-title-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

h2 {
  font-size: clamp(30px, 3.2vw, 52px);
}

h3 {
  font-size: 24px;
  color: var(--green-950);
}

.hero-content p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr)) minmax(260px, 0.9fr);
  gap: 0;
  min-height: 96px;
  border-top: 2px solid rgba(247, 194, 37, 0.7);
  background: linear-gradient(90deg, #052817, #063c24 55%, #07351f);
  color: #fff;
}

.hero-strip span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  padding: 18px 24px;
  font-weight: 900;
}

.hero-strip span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(247, 194, 37, 0.55);
}

.hero-strip svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--gold-500);
}

.hero-strip strong,
.hero-strip small {
  display: block;
  line-height: 1.1;
}

.hero-strip strong {
  font-size: 15px;
  text-transform: uppercase;
}

.hero-strip small {
  margin-top: 4px;
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 500;
}

.hero-strip .strip-art {
  justify-content: center;
  gap: 26px;
  opacity: 0.86;
}

.hero-strip .strip-art::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  height: 1px;
  background: rgba(247, 194, 37, 0.5);
}

.hero-strip .strip-art svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.4;
}

section {
  padding: clamp(56px, 8vw, 112px) clamp(16px, 5vw, 80px);
}

.products-section,
.recipes-section {
  background: #fffaf0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
  background: linear-gradient(180deg, #fffaf0 0%, #fffaf0 58%, #f6efd9 100%);
  color: var(--ink);
}

.intro-band .eyebrow {
  color: var(--gold-600);
}

.intro-copy h2 {
  max-width: 620px;
  color: var(--green-950);
  font-size: clamp(30px, 3.6vw, 54px);
}

.intro-copy h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--gold-500);
}

.section-heading h2,
.process-copy h2,
.story-copy h2 {
  color: var(--green-950);
}

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

.promise-grid article,
.recipe-grid article,
.review-grid blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(6, 61, 40, 0.08);
}

.promise-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(6, 61, 40, 0.14);
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 61, 40, 0.09);
}

.promise-grid h3 {
  color: var(--green-950);
}

.promise-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.promise-grid svg,
.recipe-grid svg {
  width: 34px;
  height: 34px;
  color: var(--gold-600);
  margin-bottom: 18px;
}

.promise-grid svg {
  width: 38px;
  height: 38px;
  color: var(--gold-500);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.products-section .section-heading,
.recipes-section .section-heading,
.reviews-section .section-heading,
.upcoming-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.process-copy h2,
.story-copy h2 {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(240px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

.product-visual {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff8df, #eef8e9);
}

.product-visual img {
  width: min(100%, 320px);
  height: 292px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(6, 61, 40, 0.14));
}

.product-visual.cow img {
  width: min(100%, 330px);
}

.product-visual.buffalo img {
  width: min(100%, 330px);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
  font-size: 14px;
}

.product-content p,
.product-content li,
.story-copy p,
.process-copy p,
.recipe-grid p,
.promise-grid p {
  color: var(--muted);
}

.intro-band .promise-grid p {
  color: var(--muted);
}

.product-content h3 {
  margin-top: 14px;
}

.product-content ul {
  padding-left: 18px;
  margin: 18px 0 24px;
}

.product-purchase {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.size-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(74px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(6, 61, 40, 0.16);
  border-radius: 999px;
  background: #fffaf0;
}

.size-option {
  min-height: 36px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green-950);
  font-weight: 900;
  cursor: pointer;
}

.size-option.is-active {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 61, 40, 0.16);
}

.product-purchase .button {
  justify-self: stretch;
  width: 100%;
  min-height: 50px;
  white-space: nowrap;
}

.price {
  color: var(--green-950);
  font-size: 30px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.price small {
  color: var(--muted);
  font-size: 18px;
  text-decoration: line-through;
}

.combo-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: #fff;
}

.combo-card > img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.combo-card h3,
.combo-card .price {
  color: #fff;
}

.combo-card .button-report {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.combo-card p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.process-section {
  background: #f6efd9;
}

.process-copy {
  width: min(820px, 100%);
  margin-bottom: 34px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process-copy p:not(.eyebrow) {
  font-size: 18px;
}

.process-image {
  width: 100%;
  border: 1px solid rgba(199, 147, 18, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #fff;
}

.story-media {
  padding: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at top, #fff 0, #f4efd9 58%, #e3d7ad 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.story-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-950);
  font-weight: 800;
}

.story-points svg {
  color: var(--gold-600);
}

.recipes-section {
  background: linear-gradient(180deg, #fffaf0, #fffdf7);
}

.reviews-section {
  background: var(--green-950);
}

.upcoming-section {
  background: linear-gradient(180deg, var(--green-950) 0, #07351f 38%, var(--linen) 38%, var(--linen) 100%);
  padding-top: 44px;
}

.reviews-section .section-heading h2,
.reviews-section .eyebrow,
.upcoming-section .section-heading h2,
.upcoming-section .eyebrow {
  color: #fff;
}

.upcoming-section .section-heading {
  margin-bottom: 28px;
}

.upcoming-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.review-grid blockquote {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}

.review-grid p {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.35;
}

.review-grid cite {
  color: var(--gold-500);
  font-style: normal;
  font-weight: 800;
}

.review-dots,
.upcoming-dots {
  display: none;
}

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

.upcoming-card {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 320px;
  padding: 12px;
  border: 1px solid rgba(10, 57, 35, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 45, 30, 0.14);
}

.upcoming-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.6fr));
  gap: 32px;
  padding: 44px clamp(16px, 5vw, 80px);
  background: #021b12;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer img {
  width: 156px;
  height: 52px;
  object-fit: contain;
  filter: brightness(1.16) contrast(1.08);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
}

.site-footer a {
  display: block;
  min-height: 32px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.social-links svg {
  width: 28px;
  height: 28px;
}

.social-links .facebook svg {
  fill: #1877f2;
}

.social-links .instagram rect,
.social-links .instagram circle {
  fill: none;
  stroke: url("#instagram-gradient");
  stroke-width: 1.8;
}

.social-links .instagram circle:last-child {
  fill: url("#instagram-gradient");
  stroke: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--green-950);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .header-cta {
    display: none;
  }

  .intro-band,
  .story-section {
    grid-template-columns: 1fr;
  }

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

  .combo-card {
    grid-template-columns: minmax(160px, 240px) 1fr;
    gap: 22px;
  }

  .combo-card .price,
  .combo-card .button {
    justify-self: start;
  }

  .combo-card .button {
    grid-column: 2;
    width: min(100%, 260px);
  }

  .hero {
    min-height: auto;
    aspect-ratio: 16 / 9;
    padding: 0 24px 92px;
    align-items: flex-end;
    background: #0b2718;
  }

  .hero-bg {
    height: auto;
    object-fit: cover;
    object-position: center top;
    background: #0b2718;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(2, 30, 19, 0), rgba(2, 30, 19, 0.38) 72%, rgba(2, 30, 19, 0.7));
  }

  .hero-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-strip .strip-art {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .hero-strip span {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 4px 8px;
    min-height: 72px;
    align-items: center;
    padding: 12px;
  }

  .hero-strip svg {
    grid-row: span 2;
    width: 26px;
    height: 26px;
  }

  .hero-strip strong {
    align-self: end;
    font-size: 11px;
  }

  .hero-strip small {
    grid-column: 2;
    align-self: start;
    font-size: 10px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    display: none;
  }

  .brand-intro {
    display: grid;
    padding: 9px 14px 8px;
  }

  .brand-intro img {
    width: min(132px, 36vw);
    height: 38px;
  }

  .brand-intro p {
    font-size: 9px;
  }
}

@media (max-width: 760px) {

  .hero {
    min-height: 306px;
    aspect-ratio: auto;
    padding: 0 18px 104px;
    align-items: flex-end;
  }

  .hero-bg {
    height: auto;
    max-height: calc(100% - 104px);
    object-fit: contain;
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(2, 30, 19, 0.04), rgba(2, 30, 19, 0.32) 70%, rgba(2, 30, 19, 0.7));
  }

  .hero-title-image img {
    max-width: 420px;
  }

  .hero-actions {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-strip span {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 4px 8px;
    min-height: 56px;
    align-items: center;
    padding: 9px 12px;
  }

  .hero-strip span:not(:last-child)::after {
    top: 18px;
    bottom: 18px;
  }

  .hero-strip .strip-art {
    grid-column: 1 / -1;
    min-height: 58px;
  }

  .hero-strip strong {
    align-self: end;
    font-size: 11px;
  }

  .hero-strip small {
    grid-column: 2;
    align-self: start;
    font-size: 12px;
  }

  .hero-strip svg {
    grid-row: span 2;
    width: 26px;
    height: 26px;
  }

  .promise-grid,
  .recipe-grid,
  .review-grid,
  .upcoming-grid,
  .story-points {
    grid-template-columns: 1fr;
  }

  .intro-band {
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .intro-copy h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.04;
  }

  .intro-copy h2::after {
    width: 72px;
    height: 3px;
    margin-top: 18px;
  }

  .promise-grid {
    gap: 12px;
  }

  .promise-grid article {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 14px;
    align-items: center;
    padding: 18px;
  }

  .promise-grid svg {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }

  .promise-grid h3 {
    font-size: 20px;
  }

  .promise-grid p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .recipes-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .recipes-section .section-heading {
    margin-bottom: 22px;
  }

  .recipes-section .section-heading h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .recipe-grid {
    gap: 12px;
  }

  .recipe-grid article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 14px;
    align-items: center;
    padding: 18px;
  }

  .recipe-grid svg {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }

  .recipe-grid h3 {
    font-size: 20px;
  }

  .recipe-grid p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .reviews-section {
    overflow: hidden;
  }

  .review-grid {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-grid blockquote {
    flex: 0 0 min(86vw, 340px);
    min-height: 178px;
    padding: 22px;
    scroll-snap-align: center;
  }

  .review-grid p {
    font-size: 19px;
  }

  .upcoming-grid {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .upcoming-grid::-webkit-scrollbar {
    display: none;
  }

  .upcoming-card {
    flex: 0 0 min(86vw, 340px);
    min-height: 230px;
    scroll-snap-align: center;
  }

  .review-dots,
  .upcoming-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .review-dots span,
  .upcoming-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(247, 194, 37, 0.38);
  }

  .review-dots span.is-active,
  .upcoming-dots span.is-active {
    width: 22px;
    background: var(--gold-500);
  }

  .upcoming-section {
    background: linear-gradient(180deg, var(--green-950) 0, #07351f 36%, var(--linen) 36%, var(--linen) 100%);
    padding-top: 36px;
  }

  .upcoming-section .section-heading {
    margin-bottom: 28px;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .product-visual {
    min-height: 250px;
  }

  .product-visual img {
    width: min(100%, 280px);
    height: 260px;
  }

  .combo-card {
    grid-template-columns: 1fr;
  }

  .combo-card .button {
    grid-column: auto;
    width: 100%;
  }

  .price {
    font-size: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 286px;
    padding-bottom: 88px;
  }

  .hero-bg {
    object-position: center top;
    max-height: calc(100% - 88px);
  }

  .hero-strip span {
    grid-template-columns: 26px 1fr;
    min-height: 50px;
    padding: 8px 10px;
  }

  .hero-strip small {
    display: none;
  }

  .hero-strip svg {
    grid-row: auto;
    width: 24px;
    height: 24px;
  }

  .hero-strip strong {
    align-self: center;
    font-size: 10px;
  }

  .hero-strip .strip-art {
    display: none;
  }

  .intro-band {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .intro-copy h2 {
    font-size: 26px;
  }

  .promise-grid article {
    padding: 14px;
  }

  .promise-grid p {
    font-size: 14px;
  }

  .recipes-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .recipes-section .section-heading h2 {
    font-size: 26px;
  }

  .upcoming-section .section-heading h2 {
    font-size: 28px;
  }

  .upcoming-section .section-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }

  .recipe-grid article {
    padding: 14px;
  }

  .recipe-grid p {
    font-size: 14px;
  }
}

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