:root {
  --ink: #102d22;
  --ink-2: #23372b;
  --cream: #f6f0e6;
  --paper: #fffaf2;
  --sand: #e9ddcb;
  --gold: #a97622;
  --green: #0b3f2d;
  --maroon: #641b1f;
  --line: rgba(25, 44, 34, .14);
  --shadow: 0 24px 70px rgba(18, 13, 8, .16);
  --soft-shadow: 0 10px 28px rgba(29, 20, 12, .075);
  --radius: 8px;
  --header-height: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
[id^="producto-"] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px clamp(20px, 5vw, 70px);
  color: #fff;
  background: rgba(2, 9, 5, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: background .35s ease, min-height .35s ease, box-shadow .35s ease;
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, #f4d399, #a97622, #fff4df);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(2, 9, 5, .96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .14);
}

.site-header.is-scrolled .mega-menu {
  top: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  width: 190px;
  min-width: 190px;
  height: 48px;
  transition: transform .25s var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 50px;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}

.brand-copy strong {
  display: block;
  font-size: 19px;
  line-height: 1;
}

.brand-copy small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  opacity: .86;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(16px, 2.4vw, 34px);
  font-weight: 750;
  font-size: 14px;
}

.site-nav > a,
.product-trigger {
  position: relative;
  color: #fff;
  opacity: .9;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.site-nav > a:hover,
.product-trigger:hover {
  opacity: 1;
}

.site-nav > a.active::after,
.site-nav > a:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, #f2c786, transparent);
  animation: navLine .35s var(--ease) both;
}

.product-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-product {
  position: relative;
}

.mega-menu {
  position: fixed;
  top: 78px;
  left: 50%;
  z-index: 70;
  display: grid;
  grid-template-columns: 280px repeat(3, minmax(170px, 1fr));
  gap: 20px;
  width: min(1040px, calc(100vw - 48px));
  padding: 22px;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(169, 118, 34, .16);
  border-radius: var(--radius);
  box-shadow: 0 28px 76px rgba(18, 13, 8, .24);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px) scale(.98);
  transform-origin: top center;
  transition: opacity .24s ease, visibility .24s ease, transform .38s var(--ease);
}

.nav-product.open .mega-menu,
.nav-product:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.mega-menu::before {
  position: absolute;
  top: -10px;
  left: var(--mega-arrow-x, 50%);
  width: 18px;
  height: 18px;
  content: "";
  background: #fffaf0;
  border-left: 1px solid rgba(169, 118, 34, .16);
  border-top: 1px solid rgba(169, 118, 34, .16);
  transform: translateX(-50%) rotate(45deg);
}

.mega-menu p,
.menu-feature p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px;
  color: var(--ink-2);
  border-radius: var(--radius);
  transition: background .22s ease, transform .22s var(--ease), color .22s ease;
}

.mega-menu a:hover {
  color: var(--green);
  background: rgba(11, 63, 45, .07);
  transform: translateX(4px);
}

.mega-menu a img {
  width: 50px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 82%, rgba(169, 118, 34, .14), transparent 42%),
    #f8f0e2;
}

.menu-feature {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius);
  background: #0b271d;
  color: #fff;
}

.menu-feature > img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: .62;
  filter: saturate(1.05);
}

.menu-feature > div {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(5, 14, 9, .92), rgba(5, 14, 9, 0));
}

.menu-feature strong {
  display: block;
  max-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.03;
}

.menu-feature a {
  display: inline-flex;
  min-height: 38px;
  padding: 9px 14px;
  margin-top: 18px;
  color: #111;
  background: #f2c786;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.menu-feature a:hover {
  color: #111;
  background: #f5d8a5;
  transform: translateY(-2px);
}

.menu-column {
  min-width: 0;
}

.sell-cta,
.btn,
.product-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, opacity .22s ease;
}

.sell-cta:hover,
.btn:hover,
.product-card button:hover {
  transform: translateY(-2px);
}

.sell-cta {
  color: #17120d;
  background: #f2c786;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(760px, 100svh);
  padding: 150px clamp(24px, 6vw, 92px) 120px;
  overflow: hidden;
  color: #fff;
  background: #140d08;
}

.hero-media,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08);
  transform: scale(1.04) translateY(calc(var(--hero-parallax, 0px) * .18));
  transition: transform .18s linear;
}

.hero-grain {
  z-index: 1;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .24) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 80%, rgba(255, 255, 255, .18) 0 1px, transparent 1px);
  background-size: 28px 28px, 42px 42px;
  mix-blend-mode: overlay;
}

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 200, 118, .18), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .48) 42%, rgba(0, 0, 0, .1)),
    linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .08));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
  animation: heroEntrance .9s var(--ease) both;
}

.eyebrow,
.section-heading p,
.story-card p,
.partner-card p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  color: #f1d39b;
}

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

.hero h1 {
  max-width: 580px;
  margin: 0 0 18px;
  font-size: clamp(56px, 8vw, 108px);
  line-height: .9;
  text-wrap: balance;
  text-shadow: 0 18px 55px rgba(0, 0, 0, .3);
}

.hero-content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 650;
}

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #0d4b34, #082d21);
  box-shadow: 0 16px 32px rgba(8, 45, 33, .24);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.btn.light {
  color: var(--ink);
  background: #fff7e9;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 18px;
  max-width: 590px;
  padding: 34px 0 0;
  margin: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .24);
  list-style: none;
}

.hero-badges li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 850;
}

.hero-badges li::before {
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  content: "";
  background: #f2c786;
  border-radius: 50%;
}

.hero-proof {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 118px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: min(310px, calc(100% - 44px));
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  animation: proofFloat 5s ease-in-out infinite;
}

.hero-proof span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 800;
  line-height: .9;
}

.hero-proof p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.product-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  width: min(1120px, calc(100% - 48px));
  padding: 18px;
  margin: -56px auto 0;
  background: rgba(255, 250, 240, .92);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.weekly-section {
  position: relative;
  overflow: hidden;
  padding: 92px clamp(20px, 5vw, 70px) 76px;
  background:
    radial-gradient(circle at 88% 10%, rgba(169, 118, 34, .18), transparent 30%),
    linear-gradient(180deg, #fff8ed, var(--cream));
}

.weekly-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(16, 45, 34, .04) 1px, transparent 1px);
  background-size: 100% 36px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.weekly-heading {
  position: relative;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.weekly-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .95;
}

.weekly-heading span {
  color: #32483d;
  font-weight: 700;
}

.weekly-controls {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
}

.weekly-filter {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(11, 63, 45, .16);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, .62);
  cursor: pointer;
  font-weight: 950;
  transition: transform .22s var(--ease), background .22s ease, color .22s ease;
}

.weekly-filter.active,
.weekly-filter:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-2px);
}

.weekly-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.weekly-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(250px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  min-height: 520px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(242, 199, 134, .28), transparent 35%),
    linear-gradient(135deg, #092b1f, #06150f);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.weekly-feature-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.weekly-feature-copy p {
  margin: 0 0 12px;
  color: #f2c786;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.weekly-feature-copy h3 {
  display: grid;
  gap: 4px;
  max-width: min(100%, 560px);
  margin: 0 0 14px;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.weekly-title-script,
.weekly-title-print {
  display: block;
  max-width: 100%;
}

.weekly-title-script {
  font-family: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 500;
  line-height: .92;
  text-wrap: balance;
}

.weekly-title-print {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
}

.weekly-feature-copy > span {
  max-width: 520px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  font-weight: 700;
}

.weekly-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.weekly-feature-meta strong {
  padding: 8px 11px;
  color: #fff7e8;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
}

.weekly-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.weekly-feature-actions button,
.weekly-feature-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
}

.weekly-feature-actions button {
  color: #111;
  background: #f2c786;
}

.weekly-feature-actions a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.weekly-feature-visual {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  place-items: center;
  min-width: 0;
}

.weekly-feature-visual img {
  width: min(340px, 86%);
  max-height: 360px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 82%, rgba(169, 118, 34, .18), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(246, 240, 230, .92));
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  animation: proofFloat 5.5s ease-in-out infinite;
}

@media (max-width: 1260px) {
  .weekly-stage {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  }

  .weekly-feature-visual img {
    width: min(300px, 90%);
    max-height: 320px;
  }

.weekly-feature-visual span {
    justify-self: center;
  }
}

.weekly-feature-visual span {
  position: static;
  justify-self: center;
  max-width: 190px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 250, 242, .92);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  font-weight: 950;
}

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

.weekly-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(25, 44, 34, .1);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 242, .72);
  box-shadow: 0 8px 22px rgba(29, 20, 12, .055);
  cursor: pointer;
  text-align: left;
  transition: transform .28s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.weekly-card:hover,
.weekly-card.active {
  transform: translateY(-5px);
  border-color: rgba(169, 118, 34, .32);
  background: #fffaf2;
  box-shadow: 0 16px 34px rgba(29, 20, 12, .095);
}

.weekly-card img {
  grid-row: 1 / span 3;
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 7px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 82%, rgba(169, 118, 34, .13), transparent 45%),
    #f8f0e2;
}

.weekly-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.weekly-card strong {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.weekly-card small {
  color: #526154;
  font-weight: 800;
}

.strip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 132px;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.strip-track::-webkit-scrollbar {
  display: none;
}

.strip-track a {
  display: grid;
  grid-template-rows: 82px auto;
  gap: 8px;
  align-items: start;
  min-height: 106px;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
  transition: transform .25s var(--ease);
}

.strip-track a:hover {
  transform: translateY(-4px);
}

.strip-track img {
  width: 88px;
  height: 82px;
  margin: 0 auto;
  object-fit: contain;
  padding: 8px;
  background:
    radial-gradient(circle at 50% 82%, rgba(169, 118, 34, .12), transparent 45%),
    #f8f0e2;
  border-radius: 14px;
}

.strip-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 28px;
  cursor: pointer;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1120px, calc(100% - 48px));
  padding: 70px 0 56px;
  margin: 0 auto;
}

.features article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 0 clamp(18px, 2.2vw, 30px);
  border-right: 1px solid var(--line);
  transition: transform .35s var(--ease), color .25s ease;
}

.features article:hover {
  transform: translateY(-6px);
}

.features article:last-child {
  border-right: 0;
}

.features span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--green);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.features h2 {
  margin: 0;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.05;
}

.features p {
  max-width: 31ch;
  font-size: 15px;
  line-height: 1.45;
}

.features p,
.product-card p,
.story-card span,
.partner-card h2,
.process-section li,
.channel-grid p,
.contact-section p {
  margin: 0;
  color: #263d31;
}

.products-section,
.channels {
  padding: 82px clamp(24px, 5vw, 70px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-logo {
  width: 118px;
  height: auto;
  margin: 0 auto 12px;
  opacity: .82;
}

.section-heading p {
  color: var(--gold);
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.section-heading span {
  color: #24382e;
  font-weight: 650;
}

.product-card,
.channel-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(49, 35, 18, .075);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.product-card:hover,
.channel-grid article:hover {
  border-color: rgba(169, 118, 34, .22);
  box-shadow: 0 16px 40px rgba(29, 20, 12, .1);
  transform: translateY(-4px);
}

.product-card {
  transform-style: preserve-3d;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 24px;
}

.filter {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 240, .55);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.filter:hover {
  transform: translateY(-1px);
  border-color: rgba(169, 118, 34, .38);
}

.filter.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-hotspot {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-card img {
  height: 255px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 84%, rgba(169, 118, 34, .16), transparent 40%),
    linear-gradient(180deg, #fff8ed, #efe2cf);
  transition: transform .45s var(--ease);
}

.product-card:hover img {
  transform: scale(1.045);
}

.product-card div {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
  pointer-events: none;
}

.product-card small {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 6px 0 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.product-card button {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
  border: 0;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  pointer-events: auto;
}

.product-card .product-card-hotspot {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-mini-meta {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  margin: 14px 0;
  border-radius: 999px;
  color: var(--green);
  background: rgba(11, 63, 45, .08);
  font-size: 12px;
  font-weight: 900;
}

.story-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  padding: 70px clamp(24px, 5vw, 70px);
  background: #fff8ed;
}

.story-card,
.partner-card {
  min-height: 330px;
  border-radius: var(--radius);
  overflow: hidden;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 42%;
  background: var(--green);
  color: #fff;
}

.story-card div,
.partner-card div {
  padding: clamp(26px, 4vw, 42px);
}

.story-card h2,
.partner-card h2,
.process-section h2,
.contact-section h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
}

.story-card span {
  display: block;
  color: rgba(255, 255, 255, .9);
}

.story-card .btn,
.partner-card .btn {
  margin-top: 22px;
}

.story-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.partner-card {
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .97), rgba(255, 250, 240, .76)),
    url("assets/brand/farm.jpg") center / cover;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(300px, 480px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: 78px clamp(24px, 7vw, 92px);
  background: var(--cream);
}

.process-media {
  padding: 10px;
  border: 1px solid rgba(49, 35, 18, .075);
  border-radius: var(--radius);
  background: #fff8ed;
  box-shadow: var(--soft-shadow);
}

.process-media img {
  max-height: 640px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}

.process-copy {
  max-width: 690px;
}

.process-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: #263d31;
  font-size: 18px;
  font-weight: 650;
}

.process-section ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  counter-reset: step;
}

.process-section li {
  position: relative;
  min-height: 110px;
  padding: 18px 18px 18px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .62);
  font-size: 16px;
  line-height: 1.42;
}

.process-section li::before {
  position: absolute;
  left: 16px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  counter-increment: step;
  content: counter(step);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 800;
}

.channels {
  background: #fff8ed;
}

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

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.channel-grid article {
  padding: 28px;
}

.channel-grid h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 56px clamp(24px, 7vw, 92px);
  color: #fff;
  background: var(--green);
}

.contact-map {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 420px);
  border: 0;
}

.contact-logo {
  width: min(210px, 56vw);
  height: auto;
  margin: 0 0 18px;
  opacity: .92;
}

.contact-section p {
  max-width: 520px;
  color: rgba(255, 255, 255, .86);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .13);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(5, 42, 29, .62);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 126px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 199, 134, .78);
  background: rgba(3, 32, 22, .74);
  box-shadow: 0 0 0 3px rgba(242, 199, 134, .14);
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #17120d;
  background: #f2c786;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: #f5d8a5;
}

.contact-footer {
  grid-column: 1 / -1;
}

.contact-footer address {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  font-style: normal;
}

.contact-footer address > * {
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.product-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(760px, 100vw);
  height: 100dvh;
  overflow-y: auto;
  background:
    radial-gradient(circle at 80% 0%, rgba(242, 199, 134, .34), transparent 28%),
    var(--paper);
  box-shadow: -20px 0 80px rgba(0, 0, 0, .2);
  transform: translateX(104%);
  transition: transform .42s var(--ease);
}

.product-drawer.open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, .46);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 14px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 28px;
  cursor: pointer;
}

.drawer-content {
  padding: 0 30px 34px;
}

.drawer-hero {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
  padding-top: 4px;
}

.drawer-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #f5ead9, #fff8ed);
  box-shadow: var(--soft-shadow);
}

.drawer-visual img {
  width: 100%;
  height: min(430px, 54vh);
  object-fit: contain;
  padding: 22px;
}

.drawer-visual span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.drawer-intro {
  min-width: 0;
}

.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.drawer-cta,
.drawer-soft-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

.drawer-cta {
  color: #fff;
  background: var(--green);
}

.drawer-soft-action {
  color: var(--green);
  background: rgba(11, 63, 45, .08);
  border: 1px solid rgba(11, 63, 45, .12);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 35;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: #fff;
  background: rgba(11, 63, 45, .94);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.94);
  transition: opacity .26s ease, transform .26s var(--ease), background .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: #082f22;
  transform: translateY(-2px) scale(1);
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(46px) scale(.985);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease),
    filter .9s var(--ease);
  filter: blur(10px);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.from-left,
.reveal-group > .from-left {
  transform: translateX(-34px);
}

.reveal.from-right,
.reveal-group > .from-right {
  transform: translateX(34px);
}

.reveal.is-visible,
.reveal-group > .is-visible {
  opacity: 1;
  transform: translate(0);
  filter: blur(0);
}

.reveal.was-visible:not(.is-visible),
.reveal-group > .was-visible:not(.is-visible) {
  opacity: .16;
  transform: translateY(-28px) scale(.992);
}

.product-card.is-entering {
  animation: cardIn .48s var(--ease) both;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.985);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes navLine {
  from {
    opacity: 0;
    transform: scaleX(.3);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.drawer-content h2 {
  margin: 10px 0 10px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.drawer-content .drawer-line {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.drawer-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0 18px;
}

.drawer-scoreboard > div,
.drawer-info-grid > div,
.prep-detail,
.nutrition-rings > div {
  padding: 16px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(25, 44, 34, .12);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(29, 20, 12, .055);
}

.drawer-scoreboard span,
.drawer-info-grid span,
.prep-detail span,
.nutrition-rings span {
  display: block;
  color: #6a6d60;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.drawer-scoreboard strong,
.drawer-info-grid strong,
.prep-detail strong,
.nutrition-rings strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.drawer-tabs {
  margin-top: 18px;
}

.drawer-tablist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  margin-bottom: 14px;
  background: rgba(11, 63, 45, .08);
  border-radius: 999px;
}

.drawer-tab {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 950;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease);
}

.drawer-tab.active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(11, 63, 45, .16);
}

.drawer-panel {
  display: none;
  animation: panelIn .42s var(--ease) both;
}

.drawer-panel.active {
  display: grid;
}

.prep-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.prep-card {
  display: grid;
  gap: 4px;
  justify-items: start;
  min-height: 112px;
  padding: 15px;
  border: 1px solid rgba(25, 44, 34, .12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s ease, border-color .22s ease;
}

.prep-card span {
  font-size: 28px;
}

.prep-card strong,
.prep-card small {
  display: block;
}

.prep-card.active,
.prep-card:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 118, 34, .38);
  background: #fffaf2;
}

.prep-detail {
  margin-top: 10px;
}

.prep-detail.pulse {
  animation: panelPulse .45s var(--ease) both;
}

.drawer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.nutrition-rings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.nutrition-rings strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
}

.drawer-note {
  margin: 12px 0 0;
  color: #526154;
}

.drawer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.drawer-chips button {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: var(--green);
  background: #e9f0df;
  font-size: 13px;
  font-weight: 850;
}

.related-products {
  margin-top: 24px;
}

.related-products > p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.related-products > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.related-products button {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(25, 44, 34, .12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  cursor: pointer;
  text-align: left;
  font-weight: 850;
  transition: transform .22s var(--ease), background .22s ease;
}

.related-products button:hover {
  transform: translateY(-3px);
  background: #fff;
}

.related-products img {
  height: 118px;
  object-fit: contain;
  padding: 8px;
  background:
    radial-gradient(circle at 50% 82%, rgba(169, 118, 34, .13), transparent 45%),
    #f8f0e2;
  border-radius: 6px;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelPulse {
  0% {
    transform: scale(.985);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    width: 174px;
    min-width: 174px;
  }

  .site-nav {
    gap: 16px;
  }

  .sell-cta {
    padding-inline: 16px;
  }

  .mega-menu {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
  }

  .menu-feature {
    display: none;
  }

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

  .features article:nth-child(2) {
    border-right: 0;
  }

  .features article {
    padding: 22px;
    border-bottom: 1px solid var(--line);
  }

  .features p {
    max-width: 38ch;
  }

  .weekly-stage,
  .weekly-feature {
    grid-template-columns: 1fr;
  }

  .weekly-feature {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    padding: 18px 24px 26px;
    background: rgba(2, 9, 5, .98);
  }

  .site-nav.open {
    display: grid;
    justify-content: stretch;
  }

  .site-nav > a,
  .product-trigger {
    padding: 12px 0;
  }

  .site-nav > a.active::after,
  .site-nav > a:hover::after {
    display: none;
  }

  .mega-menu {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 250, 240, .96);
  }

  .mega-menu::before {
    display: none;
  }

  .nav-product.open .mega-menu,
  .nav-product:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .sell-cta {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding-top: 108px;
    padding-bottom: 82px;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(330px, 100%);
    margin-top: 28px;
  }

  .hero-badges,
  .story-band,
  .process-section,
  .channel-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .contact-footer address {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekly-section {
    padding: 64px 18px 52px;
  }

  .weekly-feature {
    grid-template-columns: 1fr;
  }

  .weekly-feature-copy {
    width: 100%;
  }

  .weekly-feature-visual img {
    width: min(300px, 76%);
  }

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

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

  .features article,
  .features article:nth-child(2) {
    border-right: 0;
  }

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

  .story-card img {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .product-drawer {
    width: 100vw;
  }

  .drawer-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 208px;
    min-width: 0;
    height: 44px;
  }

  .brand-logo {
    width: 52px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 560px;
    padding: 104px 20px 54px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(46px, 14vw, 62px);
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-proof {
    display: none;
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: none;
    padding: 18px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .hero-badges li {
    padding: 7px 10px 7px 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
  }

  .hero-badges li::before {
    left: 10px;
  }

  .mega-menu a {
    min-height: 52px;
  }

  .hero-actions .btn {
    flex: 1 1 150px;
    width: auto;
    padding-inline: 14px;
    font-size: 14px;
  }

  .weekly-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .weekly-heading span,
  .section-heading span {
    display: none;
  }

  .weekly-feature {
    grid-template-columns: minmax(0, 1fr) 118px;
    grid-template-areas:
      "line visual"
      "title visual"
      "desc visual"
      "meta meta"
      "actions actions";
    gap: 12px 14px;
    padding: 18px;
  }

  .weekly-feature-copy {
    display: contents;
  }

  .weekly-feature-copy p {
    grid-area: line;
    margin: 0;
    align-self: end;
  }

  .weekly-feature-copy h3 {
    grid-area: title;
    max-width: 100%;
    margin: 0;
    align-self: start;
  }

  .weekly-title-script {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: .9;
  }

  .weekly-title-print {
    font-size: clamp(23px, 6.6vw, 29px);
    line-height: .98;
  }

  .weekly-feature-copy > span {
    grid-area: desc;
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .weekly-feature-meta {
    grid-area: meta;
    margin: 14px 0;
  }

  .weekly-feature-meta strong:nth-child(n + 3),
  .weekly-feature-actions a,
  .weekly-feature-visual span {
    display: none;
  }

  .weekly-feature-visual img {
    width: 118px;
    height: 150px;
    max-height: none;
    padding: 12px;
    border-radius: var(--radius);
  }

  .weekly-feature-visual {
    grid-area: visual;
    align-self: center;
    justify-self: end;
  }

  .weekly-feature-actions button {
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .weekly-feature-actions {
    grid-area: actions;
  }

  .weekly-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, 78vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 2px 12px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .weekly-card {
    scroll-snap-align: start;
  }

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

  .weekly-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 116px;
  }

  .weekly-card img {
    width: 76px;
    height: 76px;
  }

  .product-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .strip-arrow {
    display: none;
  }

  .products-section,
  .channels,
  .story-band,
  .process-section,
  .contact-section {
    padding-inline: 18px;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 36px);
    padding: 42px 0 34px;
  }

  .features article {
    gap: 10px;
    min-height: 132px;
    padding: 14px;
    border-right: 1px solid var(--line);
  }

  .features article:nth-child(2n) {
    border-right: 0;
  }

  .features span {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .features h2 {
    font-size: 19px;
  }

  .features p {
    display: none;
  }

  .products-section,
  .channels {
    padding-block: 52px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-logo {
    display: none;
  }

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
  }

  .product-toolbar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-bottom: 18px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .product-toolbar::-webkit-scrollbar {
    display: none;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(128px, 38%) minmax(0, 1fr);
    grid-template-areas: "visual info";
    min-height: 178px;
    border-radius: 16px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card img {
    grid-area: visual;
    width: 100%;
    height: 100%;
    min-height: 178px;
    padding: 14px 10px;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 78%, rgba(169, 118, 34, .14), transparent 45%),
      linear-gradient(180deg, #fff8ed, #efe2cf);
  }

  .product-card:hover img {
    transform: none;
  }

  .product-card div {
    grid-area: info;
    min-width: 0;
    padding: 16px 16px 14px;
  }

  .product-card small {
    font-size: 10px;
    letter-spacing: .08em;
  }

  .product-card h3 {
    margin: 5px 0 7px;
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.04;
  }

  .product-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-mini-meta {
    max-width: 100%;
    padding: 6px 9px;
    margin: 10px 0 12px;
    font-size: 11px;
    white-space: normal;
  }

  .product-card button {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .story-band {
    gap: 12px;
    padding-block: 44px;
  }

  .story-card,
  .partner-card {
    min-height: auto;
  }

  .story-card img {
    display: none;
  }

  .story-card div,
  .partner-card div {
    padding: 24px;
  }

  .story-card h2,
  .partner-card h2,
  .process-section h2,
  .contact-section h2 {
    font-size: 29px;
  }

  .story-card span {
    display: none;
  }

  .process-section {
    padding-block: 44px;
  }

  .process-media {
    padding: 7px;
  }

  .process-media img {
    max-height: 560px;
  }

  .process-section ol {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .process-section li {
    min-height: 0;
    padding: 14px 14px 14px 56px;
    font-size: 15px;
  }

  .process-section li::before {
    left: 12px;
    top: 14px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .channel-grid {
    gap: 10px;
  }

  .channel-grid article {
    padding: 20px;
  }

  .channel-grid h3 {
    font-size: 22px;
  }

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

  .contact-section {
    gap: 18px;
    padding-block: 40px;
  }

  .contact-form {
    padding: 18px;
  }

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

  .drawer-content {
    padding-inline: 18px;
  }

  .drawer-visual img {
    height: min(310px, 38vh);
    padding: 16px;
  }

  .drawer-content h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .drawer-actions {
    gap: 8px;
  }

  .drawer-cta,
  .drawer-soft-action {
    flex: 1 1 140px;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .drawer-scoreboard,
  .drawer-tablist,
  .prep-methods,
  .drawer-info-grid,
  .nutrition-rings,
  .related-products > div {
    grid-template-columns: 1fr;
  }

  .drawer-tablist {
    border-radius: var(--radius);
  }

  .prep-card {
    min-height: auto;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
  }
}
