/* Hallmark · pre-emit critique: P5 H4 E4 S5 R4 V5 */
:root {
  --color-ink: #080605;
  --color-ink-2: #120d0b;
  --color-ink-3: #1c1410;
  --color-paper: #f4eee2;
  --color-paper-dim: #c9bda9;
  --color-muted: #8d8070;
  --color-accent: #d01916;
  --color-accent-2: #7d0c0a;
  --color-gold: #c97924;
  --color-line: rgba(244, 238, 226, 0.16);
  --color-line-strong: rgba(208, 25, 22, 0.46);
  --color-line-gold: rgba(201, 121, 36, 0.34);
  --color-glass: rgba(8, 6, 5, 0.7);
  --color-glass-soft: rgba(244, 238, 226, 0.055);
  --shadow-red: 0 0 42px rgba(208, 25, 22, 0.24);
  --shadow-hero: 0 34px 90px rgba(0, 0, 0, 0.55);
  --surface-hero: linear-gradient(180deg, rgba(244, 238, 226, 0.045), rgba(8, 6, 5, 0.52)),
    linear-gradient(90deg, rgba(8, 6, 5, 0.62), rgba(35, 11, 7, 0.34), rgba(8, 6, 5, 0.62));
  --surface-panel: radial-gradient(circle at 12% 16%, rgba(208, 25, 22, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.055), rgba(8, 6, 5, 0.58)),
    rgba(18, 13, 11, 0.86);
  --text-metal: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 10px, rgba(8, 6, 5, 0.14) 10px 12px),
    linear-gradient(180deg, #fff6e5 0%, #cfc3ad 45%, #8e806e 100%);
  --text-red: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 10px, rgba(8, 6, 5, 0.18) 10px 12px),
    linear-gradient(180deg, #f02a24 0%, #c91310 50%, #780806 100%);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --space-page: clamp(18px, 4vw, 64px);
  --radius: 8px;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-ink);
  color: var(--color-paper);
  font-family: var(--font-body);
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(244, 238, 226, 0.2) 0 1px, transparent 1.4px),
    radial-gradient(circle at 76% 62%, rgba(208, 25, 22, 0.16) 0 1px, transparent 1.4px);
  background-size: 52px 48px, 74px 68px;
  mix-blend-mode: screen;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

/* width/height attributes reserve space (CLS); keep the intrinsic ratio when CSS sets only width */
img {
  height: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  min-height: var(--header-height);
  padding: 10px var(--space-page);
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.94), rgba(28, 9, 6, 0.82) 48%, rgba(8, 6, 5, 0.9)),
    rgba(8, 6, 5, 0.82);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: clamp(64px, 6.6vw, 94px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 18px rgba(208, 25, 22, 0.32));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 237, 210, 0.18), transparent 66%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.brand:hover {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 26px rgba(208, 25, 22, 0.44));
}

.brand:hover::after {
  opacity: 1;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(244, 238, 226, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.06), rgba(244, 238, 226, 0.025)),
    rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08);
}

.nav a,
.header-cta,
.btn,
.text-link,
.text-button,
.partner-tile {
  min-height: 44px;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(116px, 10vw, 168px);
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  color: var(--color-paper-dim);
  font-family: var(--font-display);
  font-size: clamp(13px, 1vw, 15px);
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255, 238, 211, 0.18) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-52%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transform: scaleX(0.32);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(208, 25, 22, 0.42);
  color: var(--color-paper);
  background: rgba(208, 25, 22, 0.12);
  transform: translateY(-1px);
}

.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: translateX(52%);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(226, 26, 22, 0.98), rgba(125, 12, 10, 0.98));
  color: var(--color-paper);
  font-family: var(--font-display);
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(208, 25, 22, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-contacts {
  display: grid;
  gap: 3px;
  min-width: 172px;
  margin: 0;
  padding: 9px 12px 10px;
  border: 1px solid rgba(208, 25, 22, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(208, 25, 22, 0.16), rgba(8, 6, 5, 0.38)),
    rgba(8, 6, 5, 0.42);
  box-shadow: 0 0 24px rgba(208, 25, 22, 0.16), inset 0 1px 0 rgba(244, 238, 226, 0.08);
  font-style: normal;
  line-height: 1.08;
}

.header-contact-label {
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-contact-link {
  display: inline-flex;
  width: fit-content;
  color: var(--color-paper);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.header-phone {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-email {
  color: rgba(244, 238, 226, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-contact-link:hover,
.header-contact-link:focus-visible {
  color: var(--color-accent);
  text-shadow: 0 0 18px rgba(208, 25, 22, 0.36);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(244, 238, 226, 0.5);
  box-shadow: 0 0 34px rgba(208, 25, 22, 0.38);
  transform: translateY(-1px);
}

.brand:focus-visible,
.nav a:focus-visible,
.header-contact-link:focus-visible,
.header-cta:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(244, 238, 226, 0.82);
  outline-offset: 3px;
}

.menu-toggle {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(244, 238, 226, 0.04);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(208, 25, 22, 0.62);
  background: rgba(208, 25, 22, 0.14);
  transform: translateY(-1px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-paper);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.8vw, 30px);
  padding: calc(var(--header-height) + 42px) var(--space-page) 36px;
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: #030201;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-media::before {
  background-image: url("./assets/hero-tabasco-cheese.webp");
  background-position: 50% 50%;
  background-size: cover;
  filter: saturate(1.35) contrast(1.18) brightness(0.68);
  opacity: 0.94;
  transform: scale(1.08);
}

.hero-media::after {
  background:
    radial-gradient(circle at 10% 70%, rgba(218, 24, 18, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 83%, rgba(240, 45, 26, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 78%, rgba(218, 24, 18, 0.16) 0 1px, transparent 2px),
    radial-gradient(ellipse at 50% 46%, rgba(152, 44, 12, 0.2) 0, rgba(8, 3, 1, 0.12) 42%, rgba(0, 0, 0, 0.78) 92%),
    linear-gradient(0deg, rgba(41, 5, 3, 0.68) 0, rgba(8, 4, 2, 0.1) 36%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.88) 100%);
  background-size:
    180px 130px,
    220px 160px,
    260px 170px,
    100% 100%,
    100% 100%,
    100% 100%;
}

.hero-scrim {
  z-index: 1;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(8, 6, 5, 0) 0, rgba(8, 6, 5, 0.34) 72%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.98) 0 30%, rgba(8, 6, 5, 0.32) 62%, rgba(8, 6, 5, 0.7) 100%),
    linear-gradient(0deg, rgba(8, 6, 5, 0.9) 0, rgba(8, 6, 5, 0.08) 48%, rgba(8, 6, 5, 0.74) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--color-line-gold) 0 1px, transparent 1px calc(100% - 1px), var(--color-line-gold) calc(100% - 1px)),
    radial-gradient(circle at 82% 42%, rgba(208, 25, 22, 0.22), transparent 32%);
  opacity: 0.7;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  width: min(1560px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: min(660px, 100%);
  max-width: 660px;
  padding-bottom: 0;
}

.hero h1 {
  display: grid;
  gap: clamp(8px, 0.9vw, 14px);
  max-width: 660px;
  font-size: clamp(48px, 4.18vw, 82px);
  line-height: 0.9;
}

.hero-title-line {
  display: block;
  width: 100%;
  max-width: 100%;
  color: transparent;
  background: var(--text-metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(244, 238, 226, 0.18);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.7)) drop-shadow(0 0 18px rgba(244, 238, 226, 0.12));
  overflow-wrap: normal;
}

.hero-title-red {
  background: var(--text-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke-color: rgba(208, 25, 22, 0.24);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.76)) drop-shadow(0 0 20px rgba(208, 25, 22, 0.18));
}

.hero-mascot {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid rgba(244, 238, 226, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 58% 42%, rgba(208, 25, 22, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(244, 238, 226, 0.08), rgba(8, 6, 5, 0.38)),
    var(--color-glass);
  box-shadow: var(--shadow-hero), 0 0 80px rgba(208, 25, 22, 0.18);
}

.hero-mascot::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(8, 6, 5, 0.38), transparent 38%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-mascot video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.12) brightness(1.04);
}

.product-showcase {
  position: relative;
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 54%, rgba(208, 25, 22, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(244, 238, 226, 0.05), rgba(8, 6, 5, 0.22));
  box-shadow: var(--shadow-hero), 0 0 90px rgba(208, 25, 22, 0.2);
  perspective: 1200px;
}

.product-showcase::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(244, 238, 226, 0.16);
  border-radius: inherit;
  background:
    linear-gradient(100deg, transparent 0 36%, rgba(255, 244, 218, 0.18) 46%, transparent 58%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(8, 6, 5, 0.42), transparent 38%);
  background-size: 220% 100%, 100% 100%, 100% 100%;
  opacity: 0.86;
  pointer-events: none;
  animation: showcase-sweep 6.6s ease-in-out infinite;
}

.showcase-turntable {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 2;
  place-items: center;
  transform-style: preserve-3d;
  animation: showcase-tilt 7.2s ease-in-out infinite;
}

.showcase-turntable::before,
.showcase-turntable::after,
.showcase-orbit {
  content: "";
  position: absolute;
  pointer-events: none;
}

.showcase-turntable::before {
  z-index: 0;
  width: 70%;
  height: 18%;
  left: 15%;
  bottom: 6%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 41, 28, 0.28), transparent 58%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.78), transparent 70%);
  filter: blur(10px);
  animation: showcase-shadow 7.2s ease-in-out infinite;
}

.showcase-turntable::after {
  z-index: 2;
  width: 64%;
  height: 7%;
  left: 18%;
  bottom: 13.6%;
  border-radius: 999px;
  border-top: 2px solid rgba(255, 62, 43, 0.74);
  box-shadow: 0 0 20px rgba(208, 25, 22, 0.46), inset 0 0 18px rgba(208, 25, 22, 0.26);
  transform: rotateX(68deg);
  animation: showcase-ring 2.2s linear infinite;
}

.showcase-orbit {
  z-index: 3;
  width: 24%;
  height: 3%;
  left: 24%;
  bottom: 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 218, 0.8) 44%, rgba(255, 56, 38, 0.9) 54%, transparent);
  filter: blur(1px);
  transform: rotateX(68deg);
  mix-blend-mode: screen;
  animation: showcase-orbit 2.2s ease-in-out infinite;
}

.showcase-turntable img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.08) brightness(1.02) drop-shadow(0 34px 42px rgba(0, 0, 0, 0.5));
  animation: showcase-product 7.2s ease-in-out infinite;
}

.hero-infographics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1560px, 100%);
  margin: clamp(10px, 2vw, 24px) auto 0;
  border: 1px solid rgba(244, 238, 226, 0.12);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.045), rgba(8, 6, 5, 0.52)),
    linear-gradient(90deg, rgba(8, 6, 5, 0.62), rgba(35, 11, 7, 0.34), rgba(8, 6, 5, 0.62));
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(244, 238, 226, 0.08);
  backdrop-filter: blur(8px);
}

.hero-info-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 20px clamp(14px, 1.7vw, 30px);
}

.hero-info-item + .hero-info-item {
  border-left: 1px solid rgba(244, 238, 226, 0.1);
}

.hero-info-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 238, 226, 0.035);
  pointer-events: none;
}

.hero-info-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e21a16 18% 82%, transparent);
  box-shadow: 0 0 16px rgba(226, 26, 22, 0.7), 0 0 34px rgba(226, 26, 22, 0.34);
  transform: translateX(-50%);
}

.hero-info-item strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.22vw, 21px);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-info-item.is-margin {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding-right: clamp(18px, 2vw, 34px);
}

.hero-info-item.is-margin strong {
  font-size: clamp(14px, 1.05vw, 18px);
  max-width: 180px;
}

.hero-info-item em {
  grid-column: 2;
  margin-top: -14px;
  color: rgba(244, 238, 226, 0.55);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-info-icon {
  position: relative;
  display: grid;
  grid-row: span 2;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 26, 22, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.06), rgba(8, 6, 5, 0.28));
  filter: drop-shadow(0 0 14px rgba(226, 26, 22, 0.34));
}

.hero-info-icon::before,
.hero-info-icon::after {
  content: "";
  position: absolute;
}

.icon-quality {
  border: 1px solid rgba(244, 238, 226, 0.64);
  clip-path: polygon(50% 4%, 88% 16%, 82% 70%, 50% 96%, 18% 70%, 12% 16%);
}

.icon-quality::before {
  inset: 17px;
  border: 1px solid var(--color-accent);
  clip-path: inherit;
}

.icon-quality::after {
  content: "★";
  position: static;
  color: var(--color-paper);
  font-size: 25px;
}

.icon-flavors {
  border: 1px solid rgba(244, 238, 226, 0.42);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -6deg, rgba(244, 238, 226, 0.76) 0 4deg, transparent 4deg 13deg),
    radial-gradient(circle, rgba(226, 26, 22, 0.26) 0 30%, rgba(8, 6, 5, 0.84) 31% 100%);
}

.icon-flavors::before {
  inset: 20px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  background: rgba(8, 6, 5, 0.76);
}

.icon-flavors::after {
  inset: 30px;
  border-radius: 50%;
  background: var(--color-paper);
}

.icon-margin::before {
  inset: 14px 10px 20px 14px;
  border: 2px solid var(--color-paper);
  transform: skewX(-22deg);
}

.icon-margin::after {
  inset: 24px 18px 10px 8px;
  border: 2px solid var(--color-accent);
  transform: skewX(-22deg);
}

.icon-supply::before {
  left: 10px;
  top: 25px;
  width: 35px;
  height: 20px;
  border: 2px solid var(--color-paper);
  border-radius: 2px;
}

.icon-supply::after {
  right: 7px;
  top: 31px;
  width: 17px;
  height: 14px;
  border: 2px solid var(--color-accent);
  border-left: 0;
  border-radius: 0 3px 3px 0;
  box-shadow: -39px 17px 0 -13px var(--color-accent), -8px 17px 0 -13px var(--color-accent);
}

.icon-partner {
  border: 1px solid rgba(244, 238, 226, 0.5);
  border-radius: 50%;
}

.icon-partner::before {
  inset: 9px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
}

.icon-partner::after {
  content: "✦";
  position: static;
  color: var(--color-paper);
  font-size: 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 19px);
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(50px, 8.8vw, 118px);
}

h2 {
  font-size: clamp(38px, 6.4vw, 92px);
  color: transparent;
  background: var(--text-metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(244, 238, 226, 0.12);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.62)) drop-shadow(0 0 16px rgba(244, 238, 226, 0.08));
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-paper);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.58), 0 0 18px rgba(208, 25, 22, 0.12);
}

p {
  color: var(--color-paper-dim);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.55;
}

.hero-actions,
.feature-row,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -42% auto -42% -72%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(244, 238, 226, 0.34), transparent);
  opacity: 0;
  transform: skewX(-18deg);
  transition: left 520ms ease, opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  left: 126%;
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn-primary {
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-paper);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: #e41f1b;
  box-shadow: 0 0 42px rgba(208, 25, 22, 0.38), 0 14px 32px rgba(0, 0, 0, 0.26);
}

.btn-ghost,
.btn-soft {
  border: 1px solid var(--color-line-strong);
  background: rgba(8, 6, 5, 0.34);
  color: var(--color-paper);
}

.btn-ghost:hover,
.btn-soft:hover {
  border-color: rgba(244, 238, 226, 0.42);
  background: rgba(208, 25, 22, 0.12);
  box-shadow: 0 0 32px rgba(208, 25, 22, 0.2);
}

.statement {
  padding: clamp(48px, 7vw, 96px) var(--space-page);
  background: var(--color-paper);
  color: var(--color-ink);
}

.statement p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 5.2vw, 74px);
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
}

.section-grid,
.partners,
.production,
.lead,
.taste-lab,
.pistachio-focus {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 148px) var(--space-page);
  isolation: isolate;
}

.section-grid::before,
.partners::before,
.production::before,
.lead::before,
.taste-lab::before,
.pistachio-focus::before,
.assortment::before,
.process::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 121, 36, 0.22) 0 1px, transparent 1px calc(100% - 1px), rgba(201, 121, 36, 0.18) calc(100% - 1px)),
    radial-gradient(circle at 78% 24%, rgba(208, 25, 22, 0.18), transparent 28%),
    radial-gradient(ellipse at 48% 100%, rgba(125, 12, 10, 0.2), transparent 46%);
  opacity: 0.72;
}

.section-grid,
.partners,
.lead,
.pistachio-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.section-grid,
.partners,
.production,
.lead,
.pistachio-focus {
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.86), rgba(18, 13, 11, 0.96)),
    var(--color-ink);
}

.section-copy p,
.section-head p,
.lead-copy p {
  max-width: 660px;
}

.feature-row {
  margin: 32px 0;
}

.feature-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.06), rgba(244, 238, 226, 0.02)),
    rgba(8, 6, 5, 0.34);
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link::after {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  box-shadow: 0 0 16px rgba(226, 26, 22, 0.42);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-paper);
  transform: translateY(-1px);
}

.text-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.inline-actions {
  align-items: center;
  margin-top: 32px;
}

.flagship-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-line);
}

.flagship-points article {
  position: relative;
  min-height: 132px;
  padding: 18px;
  background: var(--surface-panel);
}

.flagship-points strong {
  display: block;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1;
  text-transform: uppercase;
}

.flagship-points p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
}

.flagship {
  display: block;
}

.flagship-head {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.flagship-head h2 {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(48px, 7.6vw, 116px);
  line-height: 0.92;
  text-wrap: balance;
}

.flagship-head p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
  text-wrap: pretty;
}

.video-panel {
  margin: 0;
  overflow: hidden;
}

.flagship .video-panel {
  width: min(100%, 1320px);
  margin: clamp(34px, 5vw, 70px) auto 0;
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.06), rgba(8, 6, 5, 0.58)),
    var(--surface-panel);
  box-shadow:
    inset 0 1px 0 rgba(244, 238, 226, 0.12),
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(208, 25, 22, 0.16);
}

.video-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.flagship .video-panel video {
  min-height: clamp(360px, 55vw, 720px);
}

.video-panel figcaption {
  padding: 14px 16px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

.format-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 1px;
  overflow: hidden;
  width: min(100%, 980px);
  margin: 18px auto 0;
  border: 1px solid rgba(201, 121, 36, 0.24);
  border-radius: var(--radius);
  background: rgba(201, 121, 36, 0.24);
}

.format-card {
  min-height: 116px;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.055), rgba(244, 238, 226, 0.018)),
    rgba(8, 6, 5, 0.68);
}

.format-card span {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(31px, 3.6vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
}

.format-card strong {
  display: block;
  margin-top: 10px;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1;
  text-transform: uppercase;
}

.format-card p {
  max-width: 430px;
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.format-card--pack {
  display: grid;
  grid-template-columns: clamp(132px, 14vw, 210px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.format-card--pack img {
  width: 100%;
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 20px rgba(208, 25, 22, 0.14));
}

.format-card--cup {
  display: grid;
  grid-template-columns: clamp(74px, 8vw, 116px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.format-card--cup img {
  width: 100%;
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(208, 25, 22, 0.16));
}

.flagship-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.taste-lab {
  background:
    radial-gradient(circle at 18% 18%, rgba(208, 25, 22, 0.18), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(201, 121, 36, 0.14), transparent 28%),
    var(--color-ink);
}

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

.taste-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(8, 6, 5, 0.72)),
    var(--surface-panel);
}

.taste-card h3 {
  margin-top: 0;
}

.taste-card p {
  margin: 0;
}

.glass-placeholder {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(244, 238, 226, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 62%, rgba(244, 238, 226, 0.16), transparent 48%),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.2), transparent 18%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 28px rgba(244, 238, 226, 0.1), var(--shadow-red);
}

.glass-placeholder::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(244, 238, 226, 0.18);
  border-radius: 50%;
}

.glass-placeholder span,
.wide-video-slot > span {
  color: var(--color-muted);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.taste-hot {
  border-color: rgba(208, 25, 22, 0.42);
}

.taste-smoke {
  background:
    radial-gradient(circle at 68% 20%, rgba(201, 121, 36, 0.16), transparent 26%),
    var(--surface-panel);
}

.taste-spice {
  background:
    radial-gradient(circle at 60% 18%, rgba(125, 12, 10, 0.26), transparent 30%),
    var(--surface-panel);
}

.wide-video-slot {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 34px);
  border-color: var(--color-line-strong);
}

.wide-video-slot > span {
  display: grid;
  min-height: 280px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(208, 25, 22, 0.16), rgba(255, 255, 255, 0.035)),
    var(--color-ink);
}

.taste-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  width: min(1560px, 100%);
  margin: 0 auto clamp(30px, 5vw, 58px);
}

.taste-intro {
  position: relative;
  z-index: 2;
}

.taste-intro h2 {
  display: grid;
  gap: 5px;
  max-width: 600px;
  font-size: clamp(62px, 7vw, 118px);
}

.taste-intro h2 span {
  display: block;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.taste-intro h2 span:last-child {
  color: transparent;
  background: var(--text-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke-color: rgba(208, 25, 22, 0.24);
}

.taste-intro p {
  max-width: 560px;
}

.taste-intro .btn {
  margin-top: 18px;
}

.taste-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(201, 121, 36, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.045), rgba(8, 6, 5, 0.58)),
    rgba(18, 13, 11, 0.84);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08), 0 26px 70px rgba(0, 0, 0, 0.3);
}

.taste-proof article {
  min-height: 128px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 20px clamp(16px, 2vw, 28px);
}

.taste-proof article + article {
  border-left: 1px solid rgba(201, 121, 36, 0.24);
}

.taste-proof span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(208, 25, 22, 0.12), 0 0 22px rgba(208, 25, 22, 0.2);
}

.taste-proof strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.flavor-stage {
  position: relative;
  width: min(1560px, 100%);
  margin: 0 auto;
}

.flavor-stage::before {
  content: "";
  position: absolute;
  inset: 3% -4% 10%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 42% 62%, rgba(208, 25, 22, 0.2), transparent 48%),
    radial-gradient(ellipse at 68% 42%, rgba(201, 121, 36, 0.13), transparent 42%),
    linear-gradient(180deg, transparent 0 38%, rgba(23, 8, 4, 0.72) 100%);
  filter: blur(1px);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px) clamp(12px, 1.6vw, 22px);
  align-items: end;
}

.flavor-card,
.flavor-more {
  position: relative;
  min-width: 0;
  text-align: center;
}

.flavor-card {
  display: grid;
  gap: 10px;
}

.flavor-card::before,
.flavor-more::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: -1;
  width: 76%;
  aspect-ratio: 1 / 0.24;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 70, 42, 0.42), transparent 58%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.9), transparent 72%);
  filter: blur(5px);
  transform: translateX(-50%);
}

.flavor-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 55px;
  width: 70%;
  height: 9px;
  border-top: 2px solid rgba(255, 66, 42, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(208, 25, 22, 0.54), inset 0 0 14px rgba(208, 25, 22, 0.26);
  transform: translateX(-50%);
  pointer-events: none;
}

.flavor-bowl {
  position: relative;
  min-height: clamp(118px, 10vw, 166px);
}

.flavor-bowl img {
  width: 100%;
  height: clamp(128px, 11vw, 184px);
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.1) contrast(1.08) brightness(1.03) drop-shadow(0 22px 24px rgba(0, 0, 0, 0.45));
  transform: scale(1.08);
}

.flavor-card h3 {
  min-height: 42px;
  display: grid;
  place-items: start center;
  margin: 0 auto;
  color: var(--color-paper-dim);
  font-size: clamp(16px, 1.35vw, 24px);
  line-height: 0.96;
  text-align: center;
}

.flavor-card:hover .flavor-bowl img {
  filter: saturate(1.18) contrast(1.12) brightness(1.1) drop-shadow(0 26px 30px rgba(0, 0, 0, 0.52));
  transform: scale(1.12) translateY(-4px);
  transition: transform 180ms ease, filter 180ms ease;
}

.flavor-chili .flavor-bowl img,
.flavor-crab .flavor-bowl img,
.flavor-adjika .flavor-bowl img,
.flavor-thai .flavor-bowl img {
  filter: hue-rotate(-18deg) saturate(1.55) contrast(1.16) brightness(0.98) drop-shadow(0 22px 24px rgba(0, 0, 0, 0.45));
}

.flavor-herbs .flavor-bowl img,
.flavor-wasabi .flavor-bowl img {
  filter: hue-rotate(72deg) saturate(1.05) contrast(1.12) brightness(0.92) drop-shadow(0 22px 24px rgba(0, 0, 0, 0.45));
}

.flavor-garlic .flavor-bowl img,
.flavor-classic .flavor-bowl img {
  filter: saturate(0.78) contrast(1.03) brightness(1.1) drop-shadow(0 22px 24px rgba(0, 0, 0, 0.45));
}

.flavor-smoke .flavor-bowl img,
.flavor-bacon .flavor-bowl img {
  filter: hue-rotate(-8deg) saturate(1.36) contrast(1.14) brightness(0.94) drop-shadow(0 22px 24px rgba(0, 0, 0, 0.45));
}

.flavor-tomato .flavor-bowl img {
  filter: hue-rotate(-10deg) saturate(1.42) contrast(1.14) brightness(1.02) drop-shadow(0 22px 24px rgba(0, 0, 0, 0.45));
}

.flavor-more {
  display: grid;
  min-height: clamp(166px, 15vw, 238px);
  align-content: center;
  justify-items: center;
  padding: 20px;
  border: 1px solid rgba(201, 121, 36, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(208, 25, 22, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.045), rgba(8, 6, 5, 0.62)),
    rgba(18, 13, 11, 0.84);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08), 0 0 50px rgba(208, 25, 22, 0.16);
}

.flavor-more strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(50px, 5vw, 82px);
  line-height: 0.9;
}

.flavor-more span,
.flavor-more p {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.flavor-more span {
  color: var(--color-paper);
  font-size: clamp(16px, 1.25vw, 22px);
}

.flavor-more p {
  max-width: 130px;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.28;
}

.flavor-extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: clamp(22px, 4vw, 42px) auto 0;
}

.flavor-extra span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(201, 121, 36, 0.24);
  border-radius: var(--radius);
  background: rgba(244, 238, 226, 0.045);
  color: var(--color-paper-dim);
  font-size: 13px;
  text-transform: uppercase;
}

.flavor-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1560px, 100%);
  margin: clamp(28px, 5vw, 56px) auto 0;
  border: 1px solid rgba(201, 121, 36, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.045), rgba(8, 6, 5, 0.58)),
    rgba(18, 13, 11, 0.84);
  overflow: hidden;
}

.flavor-bottom article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 18px clamp(16px, 2vw, 28px);
}

.flavor-bottom article + article {
  border-left: 1px solid rgba(201, 121, 36, 0.24);
}

.flavor-bottom strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1;
  text-transform: uppercase;
}

.flavor-bottom p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.35;
}

.flavor-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.flavor-icon-cube {
  border: 2px solid currentColor;
  transform: rotate(30deg) skewX(-8deg);
}

.flavor-icon-cube::before,
.flavor-icon-cube::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.flavor-icon-cube::before {
  left: 10px;
  top: 10px;
}

.flavor-icon-cube::after {
  right: 10px;
  bottom: 10px;
}

.flavor-icon-drop {
  border: 2px solid currentColor;
  border-radius: 54% 46% 56% 44%;
  transform: rotate(45deg);
}

.flavor-icon-box {
  border: 2px solid currentColor;
}

.flavor-icon-box::before,
.flavor-icon-chart::before,
.flavor-icon-chart::after {
  content: "";
  position: absolute;
}

.flavor-icon-box::before {
  inset: 9px;
  border: 1px solid currentColor;
}

.flavor-icon-chart::before {
  left: 6px;
  right: 6px;
  bottom: 8px;
  height: 28px;
  background:
    linear-gradient(currentColor, currentColor) 0 100% / 8px 13px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 100% / 8px 22px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 100% / 8px 30px no-repeat;
}

.flavor-icon-chart::after {
  right: 2px;
  top: 5px;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-6deg);
}

.taste-lab {
  scroll-margin-top: var(--header-height);
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(20px, 2.2vw, 34px)) clamp(58px, 6.3vw, 112px) clamp(28px, 3.8vw, 58px);
  background:
    radial-gradient(ellipse at 50% 46%, rgba(8, 6, 5, 0) 0 46%, rgba(0, 0, 0, 0.52) 83%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1) 44% 58%, rgba(0, 0, 0, 0.82)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.58)),
    url("./assets/generated/taste-lab-background-extended.webp") center / cover,
    #030201;
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%;
}

.taste-lab::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background:
    radial-gradient(ellipse at 48% 0, rgba(226, 26, 22, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.taste-screen-nav {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  max-width: 1540px;
  margin: 0 auto clamp(24px, 2.8vw, 44px);
}

.taste-logo {
  width: clamp(78px, 6.7vw, 112px);
  aspect-ratio: 1;
  filter: drop-shadow(0 0 20px rgba(208, 25, 22, 0.42));
}

.taste-screen-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  color: var(--color-paper-dim);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.05vw, 18px);
  text-transform: uppercase;
}

.taste-screen-nav a {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.taste-screen-nav nav a:hover,
.taste-screen-nav nav a.is-active {
  color: var(--color-accent);
}

.taste-partner-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  color: var(--color-accent);
  font-family: var(--font-display);
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(208, 25, 22, 0.06);
}

.taste-partner-btn:hover {
  color: var(--color-paper);
  border-color: rgba(244, 238, 226, 0.44);
  transform: translateY(-1px);
}

.taste-side-rail {
  position: absolute;
  z-index: 6;
  left: clamp(18px, 2vw, 34px);
  top: clamp(118px, 12vw, 190px);
  bottom: clamp(142px, 12vw, 210px);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  justify-items: center;
  color: rgba(244, 238, 226, 0.72);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.taste-side-rail::before,
.taste-side-rail::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background: rgba(244, 238, 226, 0.42);
  transform: translateX(-50%);
}

.taste-side-rail::before {
  top: 38px;
  height: 34%;
}

.taste-side-rail::after {
  bottom: 82px;
  height: 30%;
}

.taste-side-rail span {
  writing-mode: horizontal-tb;
  font-size: 15px;
}

.taste-side-rail b {
  color: var(--color-accent);
}

.taste-side-rail i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 16px rgba(226, 26, 22, 0.95), 0 0 34px rgba(226, 26, 22, 0.5);
}

.taste-side-rail small {
  color: rgba(244, 238, 226, 0.74);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.taste-hero {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(420px, 0.74fr) minmax(500px, 1fr) minmax(160px, 0.3fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  max-width: 1540px;
  margin-bottom: clamp(22px, 3vw, 48px);
  min-height: clamp(560px, 42vw, 700px);
}

.taste-intro {
  position: relative;
  z-index: 7;
  padding-top: clamp(8px, 1.2vw, 20px);
}

.taste-kicker {
  max-width: 470px;
  margin: 0 0 18px;
  color: rgba(244, 238, 226, 0.78);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.42;
}

.taste-intro .eyebrow {
  margin-bottom: 4px;
  color: var(--color-accent);
}

.taste-intro h2 {
  max-width: 440px;
  gap: 0;
  font-size: clamp(56px, 4.5vw, 88px);
  line-height: 0.92;
}

.taste-intro h2 span:first-child {
  color: transparent;
  background: var(--text-metal);
  -webkit-background-clip: text;
  background-clip: text;
}

.taste-intro h2 span:last-child {
  background: var(--text-red);
  -webkit-background-clip: text;
  background-clip: text;
}

.taste-intro p:not(.taste-kicker) {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(244, 238, 226, 0.74);
  font-size: clamp(16px, 1.28vw, 22px);
  line-height: 1.42;
}

.taste-assort-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 26px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  background: rgba(8, 6, 5, 0.32);
  box-shadow: 0 0 18px rgba(208, 25, 22, 0.16);
}

.taste-assort-btn span {
  color: var(--color-accent);
  font-size: 24px;
  line-height: 1;
}

.taste-proof {
  grid-column: 2 / 3;
  align-self: center;
  margin-top: clamp(78px, 7vw, 112px);
  width: min(660px, 100%);
  margin-right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: rgba(201, 73, 20, 0.44);
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.74), rgba(26, 11, 7, 0.48), rgba(8, 6, 5, 0.76));
}

.taste-proof article {
  min-height: 118px;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 20px clamp(16px, 1.6vw, 24px);
}

.taste-proof article + article {
  border-left-color: rgba(201, 73, 20, 0.32);
}

.taste-proof-icon {
  position: relative;
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  background: transparent;
  box-shadow: none;
}

.taste-proof-icon::before,
.taste-proof-icon::after {
  content: "";
  position: absolute;
}

.taste-proof-star::before {
  content: "☆";
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--color-accent);
  font-size: 31px;
}

.taste-proof-leaf {
  border-radius: 50% 0 50% 50%;
  transform: rotate(-28deg);
}

.taste-proof-leaf::after {
  left: 16px;
  top: 8px;
  width: 2px;
  height: 38px;
  background: currentColor;
  transform: rotate(38deg);
}

.taste-proof-fire {
  border-color: transparent;
}

.taste-proof-fire::before {
  left: 12px;
  top: 5px;
  width: 28px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 52% 48% 52% 48%;
  transform: rotate(45deg);
}

.taste-proof b {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.28vw, 24px);
  line-height: 1;
  text-transform: uppercase;
}

.taste-proof strong {
  color: rgba(244, 238, 226, 0.68);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
}

.taste-mascot {
  position: relative;
  z-index: 6;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  right: auto;
  top: auto;
  width: clamp(180px, 13vw, 260px);
  margin: 0;
  pointer-events: none;
  transform: translate(10%, 20px);
}

.taste-mascot::before {
  content: "";
  position: absolute;
  inset: 16% 6% 2%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at 52% 52%, rgba(208, 25, 22, 0.22), transparent 62%);
  filter: blur(18px);
}

.taste-mascot img {
  width: 100%;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 24px rgba(208, 25, 22, 0.24));
}

.taste-bowl {
  right: clamp(-96px, -4.5vw, -48px);
  top: 22px;
  width: clamp(430px, 38vw, 680px);
}

.taste-bowl::before {
  inset: 42% 6% -2%;
  background: radial-gradient(ellipse at 52% 55%, rgba(208, 25, 22, 0.38), transparent 68%);
  filter: blur(24px);
}

.taste-bowl img {
  filter:
    drop-shadow(0 28px 44px rgba(0, 0, 0, 0.76))
    drop-shadow(0 0 34px rgba(208, 25, 22, 0.28));
}

.taste-mascot figcaption {
  position: absolute;
  right: 42%;
  top: -12px;
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(201, 73, 20, 0.64);
  border-radius: var(--radius);
  color: rgba(244, 238, 226, 0.72);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  background: rgba(8, 6, 5, 0.74);
}

.taste-mascot figcaption::after {
  content: "";
  position: absolute;
  right: -19px;
  bottom: -11px;
  width: 30px;
  height: 24px;
  border-right: 1px solid rgba(201, 73, 20, 0.64);
  border-bottom: 1px solid rgba(201, 73, 20, 0.64);
  transform: skew(35deg) rotate(18deg);
  background: rgba(8, 6, 5, 0.74);
}

.taste-bowl figcaption {
  right: 62%;
  top: 26px;
}

.taste-creative {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  left: auto;
  right: auto;
  top: auto;
  width: min(132%, clamp(900px, 75vw, 1300px));
  margin: 0;
  pointer-events: none;
  transform: translateX(-3%);
  mix-blend-mode: normal;
}

.taste-creative::before {
  content: none;
}

.taste-creative-image {
  display: block;
  width: clamp(1480px, 118vw, 1780px);
  max-width: none;
  height: auto;
  margin-left: 50%;
  border-radius: 0;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.42));
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 72%, rgba(0, 0, 0, 0.82) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 72%, rgba(0, 0, 0, 0.82) 84%, transparent 100%);
}

.taste-benefits {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1540px, 100%);
  margin: clamp(8px, 1.8vw, 24px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(201, 73, 20, 0.42);
  border-radius: var(--radius);
  background: rgba(201, 73, 20, 0.32);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(244, 238, 226, 0.08);
}

.taste-benefits article {
  position: relative;
  min-height: 158px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 6px 18px;
  padding: clamp(18px, 2vw, 26px);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.07), rgba(8, 6, 5, 0.66)),
    rgba(18, 13, 11, 0.86);
}

.taste-benefit i {
  position: relative;
  grid-row: 1 / 4;
  display: block;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(201, 73, 20, 0.62);
  border-radius: 50%;
  color: var(--color-accent);
  background:
    radial-gradient(circle at 50% 50%, rgba(208, 25, 22, 0.22), transparent 62%),
    rgba(8, 6, 5, 0.52);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.12), 0 0 28px rgba(208, 25, 22, 0.14);
}

.taste-benefit i::before,
.taste-benefit i::after {
  content: "";
  position: absolute;
}

.taste-benefit-margin i::before {
  inset: 17px 15px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.taste-benefit-margin i::after {
  left: 22px;
  right: 16px;
  bottom: 22px;
  height: 24px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skewY(-28deg);
  transform-origin: right bottom;
}

.taste-benefit-format i::before {
  left: 13px;
  bottom: 15px;
  width: 22px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: 18px 10px 0 -7px rgba(208, 25, 22, 0.4);
}

.taste-benefit-format i::after {
  right: 14px;
  bottom: 15px;
  width: 18px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 6px 6px;
}

.taste-benefit-matrix i::before {
  inset: 15px;
  background:
    radial-gradient(circle, currentColor 0 3px, transparent 4px) 0 0 / 18px 18px,
    radial-gradient(circle, rgba(244, 238, 226, 0.75) 0 2px, transparent 3px) 9px 9px / 18px 18px;
}

.taste-benefit-matrix i::after {
  inset: 14px;
  border: 1px solid rgba(244, 238, 226, 0.34);
  border-radius: 8px;
}

.taste-benefit-repeat i::before {
  inset: 16px;
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.taste-benefit-repeat i::after {
  right: 15px;
  top: 17px;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(18deg);
}

.taste-benefits span {
  display: inline-flex;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
}

.taste-benefits h3 {
  margin: 0;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.85vw, 34px);
  line-height: 0.95;
  text-transform: uppercase;
}

.taste-benefits p {
  max-width: 260px;
  margin: 4px 0 0;
  color: rgba(244, 238, 226, 0.68);
  font-size: 13px;
  line-height: 1.42;
}

.taste-bowl-hero {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64%;
  transform: translateX(-50%);
}

.taste-bowl-hero::after {
  content: "KGB SNACK";
  position: absolute;
  left: 50%;
  bottom: 5.5%;
  transform: translateX(-50%);
  color: rgba(218, 139, 52, 0.66);
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.taste-bowl-hero img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  filter:
    drop-shadow(0 30px 46px rgba(0, 0, 0, 0.76))
    drop-shadow(0 0 34px rgba(208, 25, 22, 0.3));
}

.taste-bowl-cross {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 30%;
  height: 44%;
  z-index: 3;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 111, 32, 0.92) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(255, 111, 32, 0.92) 50%, transparent calc(50% + 1px));
  filter: drop-shadow(0 0 10px rgba(255, 111, 32, 0.8));
  opacity: 0.88;
}

.taste-callout {
  position: absolute;
  z-index: 4;
  width: clamp(112px, 9vw, 150px);
  text-align: center;
}

.taste-callout::before {
  content: "";
  position: absolute;
  top: 24%;
  width: clamp(92px, 9vw, 142px);
  border-top: 2px dashed rgba(255, 255, 255, 0.78);
}

.taste-callout::after {
  content: "";
  position: absolute;
  top: calc(24% - 8px);
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #e8001f;
  box-shadow: 0 0 16px rgba(232, 0, 31, 0.92);
}

.taste-callout img {
  width: clamp(78px, 7vw, 116px);
  height: clamp(78px, 7vw, 116px);
  object-fit: contain;
  padding: 10px;
  border: 2px solid rgba(227, 189, 85, 0.76);
  border-radius: 50%;
  background: radial-gradient(circle, #2d2b25, #070707 72%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.46);
}

.taste-callout strong {
  display: block;
  margin-top: 12px;
  color: rgba(244, 238, 226, 0.9);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.taste-callout strong::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 10px auto 0;
  background: #e8001f;
}

.taste-callout-bacon {
  left: 0;
  top: 1%;
}

.taste-callout-tabasco {
  left: 0;
  bottom: 2%;
}

.taste-callout-caviar {
  right: 0;
  top: 1%;
}

.taste-callout-tom {
  right: 0;
  bottom: 2%;
}

.taste-callout-bacon::before,
.taste-callout-tabasco::before {
  left: 82%;
}

.taste-callout-bacon::after,
.taste-callout-tabasco::after {
  left: calc(82% + clamp(92px, 9vw, 142px));
}

.taste-callout-caviar::before,
.taste-callout-tom::before {
  right: 82%;
}

.taste-callout-caviar::after,
.taste-callout-tom::after {
  right: calc(82% + clamp(92px, 9vw, 142px));
}

.flavor-stage {
  z-index: 4;
  max-width: 1540px;
}

.flavor-stage::before {
  inset: -18% -6% -6%;
  background:
    radial-gradient(ellipse at 52% 44%, rgba(226, 26, 22, 0.24), transparent 42%),
    linear-gradient(180deg, transparent 0 28%, rgba(8, 6, 5, 0.34) 46%, rgba(0, 0, 0, 0.64) 100%);
  filter: blur(0);
}

.flavor-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px) clamp(18px, 2.4vw, 34px);
}

.flavor-card {
  gap: 4px;
  min-height: 205px;
}

.flavor-bowl {
  min-height: clamp(146px, 11vw, 206px);
}

.flavor-bowl::before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 86%;
  height: 16px;
  border-radius: 50%;
  border-top: 2px solid rgba(255, 63, 35, 0.92);
  box-shadow: 0 0 20px rgba(226, 26, 22, 0.72), 0 0 42px rgba(226, 26, 22, 0.34);
  transform: translateX(-50%);
}

.flavor-bowl::after {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 82%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(226, 26, 22, 0.28), rgba(0, 0, 0, 0.88) 68%, transparent 70%);
  filter: blur(5px);
  transform: translateX(-50%);
}

.flavor-bowl img {
  position: relative;
  z-index: 2;
  height: clamp(150px, 12vw, 220px);
  transform: scale(1.24);
}

.flavor-card::before,
.flavor-card::after {
  display: none;
}

.flavor-card h3 {
  position: relative;
  z-index: 3;
  max-width: 150px;
  min-height: 42px;
  color: var(--color-paper);
  font-size: clamp(15px, 1.2vw, 23px);
  line-height: 0.96;
  text-shadow: 0 2px 0 #000, 0 0 14px rgba(0, 0, 0, 0.72);
}

.flavor-card:hover .flavor-bowl img {
  transform: scale(1.29) translateY(-4px);
}

.flavor-more {
  align-self: center;
  justify-self: center;
  width: clamp(138px, 11vw, 190px);
  min-height: auto;
  aspect-ratio: 1;
  border-color: rgba(201, 73, 20, 0.58);
  background:
    radial-gradient(circle at 50% 42%, rgba(208, 25, 22, 0.14), transparent 58%),
    rgba(9, 6, 5, 0.82);
}

.flavor-more::before {
  display: none;
}

.flavor-more strong {
  font-size: clamp(46px, 4.2vw, 76px);
}

.flavor-arrow {
  position: absolute;
  z-index: 7;
  top: 41%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  background: rgba(8, 6, 5, 0.42);
  color: var(--color-accent);
  font-size: 25px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.flavor-arrow:hover {
  background: rgba(208, 25, 22, 0.14);
  transform: translateY(-1px);
}

.flavor-arrow-prev {
  left: clamp(-26px, -2vw, -14px);
}

.flavor-arrow-next {
  right: clamp(-26px, -2vw, -14px);
}

.flavor-garnish,
.flavor-smoke-wisp {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.flavor-cheese {
  right: 4%;
  bottom: 22%;
  width: 30px;
  height: 24px;
  background: linear-gradient(135deg, #e0aa52, #a7611d);
  clip-path: polygon(0 20%, 100% 0, 80% 100%, 10% 84%);
}

.flavor-pepper {
  left: 2%;
  bottom: 18%;
  width: 54px;
  height: 18px;
  border-radius: 80% 20% 80% 20%;
  background: linear-gradient(90deg, #7c0d09, #e21a16);
  transform: rotate(-18deg);
  box-shadow: 0 0 10px rgba(226, 26, 22, 0.44);
}

.flavor-pepper::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -2px;
  width: 12px;
  height: 9px;
  border-radius: 50%;
  border-top: 3px solid #5d8a31;
  transform: rotate(20deg);
}

.flavor-smoke-wisp {
  left: 44%;
  top: -4px;
  width: 46px;
  height: 70px;
  border-radius: 50%;
  border-left: 2px solid rgba(244, 238, 226, 0.22);
  filter: blur(1px);
  transform: rotate(26deg);
}

.flavor-crab-claw {
  right: 1%;
  bottom: 16%;
  width: 48px;
  height: 28px;
  border: 7px solid #a42d16;
  border-left: 0;
  border-radius: 0 60% 60% 0;
  transform: rotate(22deg);
}

.flavor-herb-leaf {
  left: 7%;
  bottom: 19%;
  width: 42px;
  height: 30px;
  background:
    radial-gradient(ellipse at 20% 50%, #4f7e25 0 36%, transparent 38%),
    radial-gradient(ellipse at 50% 42%, #6ca83d 0 34%, transparent 36%),
    radial-gradient(ellipse at 78% 58%, #4f7e25 0 34%, transparent 36%);
}

.flavor-bacon-strip {
  right: 0;
  bottom: 17%;
  width: 64px;
  height: 24px;
  border-radius: 40%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.22), transparent 20% 80%, rgba(255,255,255,0.16)),
    repeating-linear-gradient(90deg, #7e1e13 0 13px, #d26842 13px 23px);
  transform: rotate(15deg);
}

.flavor-wasabi-pea {
  right: 10%;
  bottom: 19%;
  width: 34px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a4c356, #556c20);
  box-shadow: -16px 6px 0 -3px #6f8c2f;
}

.flavor-garlic-clove {
  right: 6%;
  bottom: 17%;
  width: 38px;
  height: 44px;
  border-radius: 48% 48% 58% 58%;
  background: linear-gradient(135deg, #efe1c8, #a6825f);
  transform: rotate(20deg);
}

.flavor-tomato-dot {
  right: 3%;
  bottom: 18%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.34), transparent 18%),
    radial-gradient(circle, #d33b1f, #7d0c0a);
}

.flavor-tomato-dot::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -7px;
  width: 24px;
  height: 14px;
  background: #4f7e25;
  clip-path: polygon(50% 0, 62% 38%, 100% 18%, 72% 58%, 88% 100%, 50% 72%, 12% 100%, 28% 58%, 0 18%, 38% 38%);
}

.flavor-bottom {
  max-width: 1540px;
  margin-top: clamp(20px, 2.6vw, 36px);
  border-color: rgba(201, 73, 20, 0.52);
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.72), rgba(25, 11, 7, 0.58), rgba(8, 6, 5, 0.72));
}

.flavor-bottom article {
  min-height: 94px;
}

.flavor-bottom article + article {
  border-left-color: rgba(201, 73, 20, 0.34);
}

.flavor-bottom strong {
  color: rgba(244, 238, 226, 0.82);
}

.flavor-bottom p {
  color: rgba(244, 238, 226, 0.58);
}

.taste-lab:has(.taste-hero:last-child) {
  min-height: auto;
}

.taste-lab:has(.taste-hero:last-child) .taste-hero {
  margin-bottom: 0;
}

.taste-lab .flavor-grid {
  align-items: stretch;
  margin-top: clamp(10px, 1.6vw, 24px);
}

.taste-lab .flavor-card {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px 14px;
  border: 1px solid rgba(201, 73, 20, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.045), rgba(8, 6, 5, 0.44)),
    rgba(15, 8, 6, 0.58);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.06), 0 12px 30px rgba(0, 0, 0, 0.24);
}

.taste-lab .flavor-card h3 {
  max-width: 100%;
  min-height: 0;
  place-items: center;
  color: rgba(244, 238, 226, 0.9);
}

.taste-lab .flavor-card::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  box-shadow: 0 0 14px rgba(226, 26, 22, 0.62);
  transform: translateX(-50%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 76px);
}

.matrix-item,
.quality-card,
.lead-form,
.lead-note,
.flagship-points,
.video-panel,
.taste-card,
.wide-video-slot,
.pistachio-proof article,
.partner-tile,
.mascot-cue,
.process-list,
.process-list li {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--surface-panel);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08), 0 22px 60px rgba(0, 0, 0, 0.28);
}

.matrix-item::before,
.quality-card::before,
.lead-form::before,
.lead-note::before,
.taste-card::before,
.wide-video-slot::before,
.pistachio-proof article::before,
.partner-tile::before,
.mascot-cue::before,
.process-list li::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 238, 226, 0.035);
  pointer-events: none;
}

.matrix-item::after,
.quality-card::after,
.lead-note::after,
.taste-card::after,
.pistachio-proof article::after,
.partner-tile::after,
.process-list li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e21a16 18% 82%, transparent);
  box-shadow: 0 0 16px rgba(226, 26, 22, 0.7), 0 0 34px rgba(226, 26, 22, 0.34);
  transform: translateX(-50%);
}

.assortment,
.process {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 148px) var(--space-page);
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0), rgba(125, 12, 10, 0.18)),
    var(--color-ink);
  isolation: isolate;
}

.matrix {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: 18px;
}

.product-matrix {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.matrix-item {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
}

.matrix-item.is-primary {
  grid-column: span 2;
  min-height: 420px;
  border-color: var(--color-line-strong);
  background:
    radial-gradient(circle at 72% 24%, rgba(201, 121, 36, 0.2), transparent 30%),
    var(--surface-panel);
}

.product-matrix > .product-bowl {
  grid-column: span 2;
}

.matrix-item.is-featured-pistachio {
  grid-column: span 2;
  min-height: 420px;
  gap: clamp(10px, 1.2vw, 16px);
  border-color: rgba(96, 150, 64, 0.44);
  background:
    radial-gradient(circle at 78% 18%, rgba(96, 150, 64, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(33, 52, 27, 0.5), rgba(8, 6, 5, 0.86) 58%),
    var(--surface-panel);
}

.matrix-item.is-featured-pistachio span {
  font-size: clamp(48px, 6vw, 82px);
}

.matrix-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(244, 238, 226, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 50% 50%, rgba(96, 150, 64, 0.16), transparent 64%),
    rgba(8, 6, 5, 0.82);
  box-shadow: inset 0 0 28px rgba(244, 238, 226, 0.06), 0 24px 54px rgba(0, 0, 0, 0.34);
}

.matrix-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-bowl {
  position: relative;
  overflow: hidden;
  padding-top: 190px;
}

.product-bowl.is-video-product {
  gap: clamp(10px, 1.2vw, 16px);
  padding-top: clamp(22px, 3vw, 34px);
}

.cheese-balls-video-frame {
  border-color: rgba(224, 170, 58, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(224, 170, 58, 0.16), transparent 64%),
    rgba(8, 6, 5, 0.82);
}

.fried-cheese-video-frame {
  border-color: rgba(201, 121, 36, 0.32);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 121, 36, 0.18), transparent 64%),
    rgba(8, 6, 5, 0.82);
}

.cheese-barrels-video-frame {
  border-color: rgba(179, 91, 38, 0.3);
  background:
    radial-gradient(circle at 50% 50%, rgba(179, 91, 38, 0.18), transparent 64%),
    rgba(8, 6, 5, 0.82);
}

.bowl-visual {
  position: absolute;
  top: 26px;
  left: 50%;
  width: min(210px, 62%);
  aspect-ratio: 1 / 0.72;
  border: 1px solid rgba(244, 238, 226, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201, 121, 36, 0.38), transparent 48%),
    radial-gradient(ellipse at 50% 18%, rgba(244, 238, 226, 0.18), transparent 22%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 26px rgba(244, 238, 226, 0.08), 0 24px 52px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.bowl-visual::before {
  content: "";
  position: absolute;
  inset: 22% 14% 28%;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, rgba(244, 238, 226, 0.2) 0 4px, transparent 4px 14px);
  opacity: 0.7;
}

.bowl-visual.is-green {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(96, 150, 64, 0.46), transparent 48%),
    radial-gradient(ellipse at 50% 18%, rgba(244, 238, 226, 0.18), transparent 22%),
    rgba(255, 255, 255, 0.035);
}

.bowl-visual.is-gold {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(224, 170, 58, 0.44), transparent 48%),
    radial-gradient(ellipse at 50% 18%, rgba(244, 238, 226, 0.18), transparent 22%),
    rgba(255, 255, 255, 0.035);
}

.bowl-visual.is-amber {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(179, 91, 38, 0.44), transparent 48%),
    radial-gradient(ellipse at 50% 18%, rgba(244, 238, 226, 0.18), transparent 22%),
    rgba(255, 255, 255, 0.035);
}

.matrix-item span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
}

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

.mascot-cue {
  grid-column: 2;
  margin-top: 14px;
  padding: 18px 20px;
  border-color: var(--color-line-strong);
  background: var(--surface-panel);
}

.mascot-cue strong {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.mascot-cue p {
  margin: 8px 0 0;
  font-size: 16px;
}

.pistachio-focus {
  background:
    radial-gradient(circle at 68% 24%, rgba(96, 150, 64, 0.22), transparent 26%),
    var(--color-ink-2);
}

.pistachio-proof {
  display: grid;
  gap: 14px;
}

.pistachio-proof article {
  padding: 22px;
}

.pistachio-proof strong {
  display: block;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.partner-tile {
  position: relative;
  display: flex;
  min-height: 152px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px;
  color: var(--color-paper);
  text-align: left;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.partner-tile.is-active,
.partner-tile:hover {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.partner-tile span {
  color: var(--color-paper-dim);
}

.partner-tile strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 24px;
}

.process-list span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 34px;
}

.production {
  background:
    radial-gradient(circle at 82% 28%, rgba(201, 121, 36, 0.14), transparent 32%),
    var(--color-ink-2);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.quality-card {
  min-height: 270px;
  padding: clamp(20px, 3vw, 32px);
}

.quality-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 28px;
}

.quality-card h3 {
  margin-bottom: 16px;
}

.lead {
  background:
    radial-gradient(circle at 12% 80%, rgba(201, 121, 36, 0.18), transparent 28%),
    var(--color-ink);
}

.lead-note {
  margin-top: 28px;
  padding: 18px;
}

.lead-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 28px 0 0;
  font-style: normal;
}

.lead-contact {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(244, 238, 226, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.06), rgba(8, 6, 5, 0.38)),
    rgba(8, 6, 5, 0.42);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lead-contact::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lead-contact span {
  color: rgba(244, 238, 226, 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-contact strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.lead-contact:hover,
.lead-contact:focus-visible {
  border-color: rgba(208, 25, 22, 0.54);
  box-shadow: 0 0 34px rgba(208, 25, 22, 0.18), inset 0 1px 0 rgba(244, 238, 226, 0.1);
  transform: translateY(-1px);
}

.lead-contact:hover::after,
.lead-contact:focus-visible::after {
  opacity: 1;
}

.lead-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.lead-note span {
  color: var(--color-paper-dim);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 32px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--color-paper-dim);
  font-size: 13px;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.055), rgba(244, 238, 226, 0.018)),
    rgba(8, 6, 5, 0.42);
  color: var(--color-paper);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(244, 238, 226, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 6, 5, 0.28);
  color: var(--color-paper-dim);
  font-size: 13px;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-accent);
}

.form-consent a,
.legal-document a {
  color: var(--color-paper);
  text-decoration: underline;
  text-decoration-color: rgba(201, 121, 36, 0.6);
  text-underline-offset: 3px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--color-paper-dim);
  font-size: 13px;
  line-height: 1.4;
}

.form-status.is-error {
  color: #ffb7a8;
}

.form-status.is-success {
  color: #f7d294;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(760px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid rgba(244, 238, 226, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.08), rgba(8, 6, 5, 0.72)),
    rgba(8, 6, 5, 0.94);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--color-paper-dim);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(208, 25, 22, 0.18), transparent 34%),
    linear-gradient(180deg, #120d0b, #080605 42%, #080605);
}

.legal-document {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0;
}

.legal-document h1 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
  text-transform: uppercase;
}

.legal-updated {
  margin: 0 0 30px;
  color: var(--color-muted);
}

.legal-document section {
  padding: 24px 0;
  border-top: 1px solid rgba(244, 238, 226, 0.12);
}

.legal-document h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.legal-document p {
  margin: 0 0 12px;
  color: var(--color-paper-dim);
  font-size: 16px;
  line-height: 1.68;
}

.legal-warning {
  padding: 14px 16px;
  border: 1px solid rgba(208, 25, 22, 0.42);
  border-radius: var(--radius);
  background: rgba(208, 25, 22, 0.1);
  color: var(--color-paper);
}

@media (max-width: 860px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner div {
    justify-content: space-between;
  }
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(208, 25, 22, 0.72);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.075), rgba(244, 238, 226, 0.025)),
    rgba(8, 6, 5, 0.58);
  box-shadow: 0 0 0 3px rgba(208, 25, 22, 0.18), inset 0 1px 0 rgba(244, 238, 226, 0.1);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--color-muted);
}

.lead-form select option {
  color: var(--color-ink);
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
}

.form-wide {
  grid-column: 1 / -1;
}

@keyframes showcase-tilt {
  0%,
  100% {
    transform: rotateY(-5deg) translateY(0);
  }

  50% {
    transform: rotateY(5deg) translateY(-7px);
  }
}

@keyframes showcase-product {
  0%,
  100% {
    transform: scale(1.03) translateX(-1.2%);
  }

  50% {
    transform: scale(1.045) translateX(1.2%);
  }
}

@keyframes showcase-shadow {
  0%,
  100% {
    transform: translateX(-2%) scaleX(0.94);
    opacity: 0.72;
  }

  50% {
    transform: translateX(2%) scaleX(1.05);
    opacity: 0.92;
  }
}

@keyframes showcase-ring {
  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes showcase-orbit {
  0%,
  100% {
    translate: -38% 0;
    opacity: 0.18;
  }

  48%,
  56% {
    opacity: 0.88;
  }

  50% {
    translate: 188% 0;
  }
}

@keyframes showcase-sweep {
  0%,
  100% {
    background-position: 150% 0, 0 0, 0 0;
  }

  50% {
    background-position: -40% 0, 0 0, 0 0;
  }
}

@media (max-width: 1320px) {
  .header-contacts {
    min-width: 160px;
  }

  .nav a {
    min-width: clamp(104px, 9vw, 148px);
    padding: 0 12px;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .site-header {
    gap: 12px;
  }

  .header-contact-label {
    display: none;
  }

  .header-phone {
    font-size: 16px;
  }

  .header-cta {
    padding: 0 14px;
  }
}

@media (max-width: 640px) {
  .lead-contacts {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-contact {
    min-height: 88px;
  }
}

@media (max-width: 380px) {
  .header-phone {
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-showcase::before,
  .showcase-turntable,
  .showcase-turntable::before,
  .showcase-turntable::after,
  .showcase-orbit,
  .showcase-turntable img {
    animation: none;
  }

}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: 34px var(--space-page) 96px;
  border-top: 1px solid var(--color-line);
  background: var(--color-ink);
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  font-size: 15px;
}

.footer-contacts {
  display: grid;
  gap: 8px;
  margin: 0;
  font-style: normal;
}

.footer-contacts a {
  color: var(--color-paper);
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-contacts a:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.footer-contacts a:last-child {
  color: rgba(244, 238, 226, 0.66);
  font-size: 14px;
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--color-accent);
  text-shadow: 0 0 18px rgba(208, 25, 22, 0.32);
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    padding-right: calc(var(--space-page) + 60px);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 8px;
    padding: 12px var(--space-page) 16px;
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(28, 9, 6, 0.98), rgba(8, 6, 5, 0.98)),
      var(--color-ink);
  }

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

  .nav a {
    width: 100%;
    min-height: 48px;
    min-width: 0;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .header-contacts {
    min-width: 0;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-contact-label {
    display: none;
  }

  .header-phone {
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(208, 25, 22, 0.42);
    border-radius: var(--radius);
    background: rgba(208, 25, 22, 0.12);
    font-size: 15px;
  }

  .header-email {
    justify-self: end;
    font-size: 11px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: var(--space-page);
    transform: translateY(-50%);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }

  .brand {
    width: 62px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 28px);
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(8, 6, 5, 0.98) 0 42%, rgba(8, 6, 5, 0.62) 76%, rgba(8, 6, 5, 0.9) 100%);
  }

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

  .hero-mascot {
    justify-self: stretch;
    width: 100%;
  }

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

  .hero-info-item:nth-child(odd) {
    border-left: 0;
  }

  .section-grid,
  .partners,
  .lead,
  .section-head,
  .taste-hero,
  .pistachio-focus,
  .wide-video-slot {
    grid-template-columns: minmax(0, 1fr);
  }

  .taste-proof,
  .flavor-bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .taste-proof article + article,
  .flavor-bottom article + article {
    border-left: 0;
    border-top: 1px solid rgba(201, 121, 36, 0.24);
  }

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

  .matrix,
  .product-matrix,
  .taste-grid,
  .process-list,
  .quality-grid,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .matrix-item.is-primary,
  .matrix-item.is-featured-pistachio,
  .product-matrix > .product-bowl {
    grid-column: 1 / -1;
  }

  .matrix-item,
  .matrix-item.is-primary {
    min-height: 260px;
  }

  .product-bowl {
    padding-top: 160px;
  }

  .mascot-cue {
    grid-column: auto;
  }

  .process-list {
    border-radius: var(--radius);
  }

  .site-footer {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100vw;
  }

  h1 {
    width: min(350px, calc(100vw - 40px));
    max-width: min(350px, calc(100vw - 40px));
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 0.98;
  }

  h3 {
    font-size: clamp(25px, 9vw, 34px);
  }

  .statement p {
    width: min(310px, calc(100vw - 40px));
    max-width: min(310px, calc(100vw - 40px));
    font-size: clamp(25px, 8vw, 32px);
    line-height: 1;
    text-align: left;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .brand {
    width: 54px;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero-content,
  .section-copy,
  .section-head,
  .lead-copy,
  .taste-hero,
  .flavor-stage,
  .flavor-bottom,
  .wide-video-slot {
    width: 100%;
    max-width: min(320px, calc(100vw - 40px));
    min-width: 0;
  }

  .hero h1 {
    max-width: min(350px, calc(100vw - 40px));
    font-size: clamp(34px, 9.2vw, 40px);
    gap: 8px;
  }

  .hero-actions,
  .inline-actions,
  .feature-row {
    display: grid;
  }

  .hero-infographics {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(350px, calc(100vw - 40px));
  }

  .hero-info-item {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 82px;
    padding: 12px 14px;
  }

  .hero-info-item + .hero-info-item {
    border-left: 0;
    border-top: 1px solid rgba(244, 238, 226, 0.1);
  }

  .hero-info-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .btn {
    width: 100%;
  }

  .hero-mascot {
    padding: 5px;
  }

  .hero-mascot video {
    min-height: 260px;
  }

  .taste-card {
    min-height: 430px;
  }

  .glass-placeholder {
    min-height: 220px;
  }

  .taste-intro h2 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .taste-proof article,
  .flavor-bottom article {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 92px;
    padding: 14px;
  }

  .taste-proof span,
  .flavor-icon {
    width: 44px;
    height: 44px;
  }

  .taste-proof strong,
  .flavor-bottom strong {
    font-size: 18px;
  }

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

  .flavor-bowl {
    min-height: 104px;
  }

  .flavor-bowl img {
    height: 118px;
  }

  .flavor-card h3 {
    min-height: 36px;
    font-size: 15px;
  }

  .flavor-card::before,
  .flavor-more::before {
    bottom: 32px;
  }

  .flavor-card::after {
    bottom: 46px;
  }

  .flavor-more {
    min-height: 142px;
    border-radius: var(--radius);
  }

  .flavor-more strong {
    font-size: 48px;
  }

  .flavor-extra {
    justify-content: flex-start;
  }

  .flavor-extra span {
    min-height: 30px;
    font-size: 12px;
  }

  .partner-grid,
  .lead-form {
    grid-template-columns: minmax(0, 1fr);
  }

}

@media (max-width: 1180px) {
  .taste-hero {
    grid-template-columns: minmax(300px, 0.62fr) minmax(500px, 1fr);
    align-items: center;
    min-height: auto;
  }

  .taste-creative {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(122%, 940px);
    transform: translateX(-4%);
  }

  .taste-mascot {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    width: clamp(150px, 18vw, 210px);
    margin-top: -76px;
    transform: translateX(6%);
  }

  .taste-mascot figcaption {
    right: 50%;
    top: -8px;
    min-width: 150px;
    padding: 10px 12px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .taste-lab {
    min-height: auto;
    padding: calc(var(--header-height) + 24px) var(--space-page) 58px;
  }

  .taste-screen-nav {
    display: none;
  }

  .taste-side-rail {
    display: none;
  }

  .taste-hero {
    width: 100%;
    max-width: 680px;
    min-height: 0;
    margin-bottom: 28px;
    grid-template-columns: 1fr;
  }

  .taste-intro {
    order: 1;
    display: grid;
    justify-items: start;
    padding-top: 0;
  }

  .taste-intro h2 {
    max-width: 100%;
    font-size: clamp(46px, 11vw, 76px);
  }

  .taste-intro h2 span {
    white-space: normal;
  }

  .taste-kicker,
  .taste-intro p:not(.taste-kicker) {
    max-width: 620px;
  }

  .taste-mascot {
    order: 3;
    position: relative;
    grid-column: auto;
    grid-row: auto;
    right: auto;
    top: auto;
    justify-self: center;
    width: min(310px, 82vw);
    margin: 4px auto 8px;
    transform: none;
  }

  .taste-mascot figcaption {
    right: auto;
    left: 0;
    top: 4px;
    min-width: 152px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .taste-creative {
    order: 2;
    position: relative;
    grid-column: auto;
    grid-row: auto;
    right: auto;
    top: auto;
    justify-self: center;
    width: min(680px, 96vw);
    margin: 4px auto 8px;
    transform: none;
  }

  .taste-creative-image {
    width: min(760px, 138vw);
  }

  .taste-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }

  .taste-benefits article {
    min-height: 146px;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .taste-benefit i {
    width: 58px;
    height: 58px;
  }

  .taste-callout {
    width: 112px;
  }

  .taste-callout img {
    width: 74px;
    height: 74px;
    padding: 8px;
  }

  .taste-callout strong {
    font-size: 18px;
  }

  .taste-callout::before {
    width: 70px;
  }

  .taste-callout-bacon::after,
  .taste-callout-tabasco::after {
    left: calc(82% + 70px);
  }

  .taste-callout-caviar::after,
  .taste-callout-tom::after {
    right: calc(82% + 70px);
  }

  .taste-proof {
    grid-column: auto;
    margin: 8px 0 0;
  }

  .taste-proof article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .taste-proof b {
    font-size: 22px;
  }

  .flavor-stage {
    width: 100%;
    max-width: 680px;
  }

  .flavor-arrow {
    display: none;
  }

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

  .flavor-card {
    min-height: 174px;
  }

  .flavor-bowl {
    min-height: 126px;
  }

  .flavor-bowl img {
    height: 142px;
    transform: scale(1.2);
  }

  .flavor-card h3 {
    max-width: 136px;
    font-size: 16px;
  }

  .flavor-more {
    width: min(150px, 42vw);
    border-radius: 50%;
  }

  .flavor-bottom {
    width: 100%;
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .taste-lab {
    padding: calc(var(--header-height) + 18px) 18px 46px;
  }

  .taste-hero,
  .flavor-stage,
  .flavor-bottom {
    max-width: none;
  }

  .taste-intro h2 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .taste-kicker,
  .taste-intro p:not(.taste-kicker) {
    font-size: 16px;
    line-height: 1.42;
  }

  .taste-assort-btn {
    width: 100%;
    justify-content: center;
    padding: 0 14px;
  }

  .taste-mascot {
    width: min(280px, 82vw);
  }

  .taste-creative {
    width: min(122vw, 780px);
    transform: none;
  }

  .taste-creative-image {
    width: min(640px, 164vw);
  }

  .taste-benefits {
    grid-template-columns: 1fr;
  }

  .taste-benefits article {
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .taste-benefit i {
    width: 52px;
    height: 52px;
  }

  .taste-callout {
    width: 76px;
  }

  .taste-callout img {
    width: 54px;
    height: 54px;
    padding: 6px;
  }

  .taste-callout strong {
    margin-top: 7px;
    font-size: 12px;
  }

  .taste-callout strong::after {
    width: 24px;
    margin-top: 6px;
  }

  .taste-callout::before {
    width: 42px;
    border-top-width: 1px;
  }

  .taste-callout::after {
    top: calc(24% - 5px);
    width: 9px;
    height: 9px;
    border-width: 2px;
  }

  .taste-callout-bacon::after,
  .taste-callout-tabasco::after {
    left: calc(82% + 42px);
  }

  .taste-callout-caviar::after,
  .taste-callout-tom::after {
    right: calc(82% + 42px);
  }

  .taste-proof {
    margin-top: 4px;
  }

  .taste-proof article,
  .flavor-bottom article {
    min-height: 88px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .taste-proof-icon,
  .taste-proof span,
  .flavor-icon {
    width: 42px;
    height: 42px;
  }

  .taste-proof b {
    font-size: 20px;
  }

  .flavor-grid {
    gap: 20px 10px;
  }

  .flavor-bowl img {
    height: 128px;
  }

  .flavor-card h3 {
    font-size: 15px;
  }
}

/* Final layout pass: stable grids, no overlaps, responsive taste section. */
body {
  --content-max: 1440px;
}

main > section {
  overflow-x: clip;
}

.hero-stage,
.hero-infographics,
.section-head,
.matrix,
.product-matrix,
.quality-grid,
.process-list,
.taste-hero,
.taste-benefits,
.pistachio-focus,
.partners,
.lead {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.section-copy,
.lead-copy,
.taste-intro,
.taste-creative,
.taste-mascot,
.video-panel,
.partner-grid,
.pistachio-proof,
.lead-form {
  min-width: 0;
}

.hero-stage {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.hero-content,
.section-copy,
.lead-copy {
  max-width: 650px;
}

.flagship .section-copy.flagship-head {
  max-width: 1120px;
}

.hero-infographics {
  overflow: hidden;
  border-radius: var(--radius);
}

.section-grid,
.partners,
.lead,
.pistachio-focus {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section-head {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.taste-lab {
  padding: calc(var(--header-height) + clamp(24px, 3vw, 48px)) var(--space-page) clamp(42px, 5vw, 76px);
}

.taste-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.37fr) minmax(0, 0.63fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px) clamp(24px, 3.5vw, 58px);
  min-height: 0;
  margin-bottom: clamp(24px, 3.4vw, 50px);
}

.taste-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  z-index: 5;
  width: min(100%, 470px);
  padding-top: 0;
}

.taste-kicker {
  max-width: 430px;
  margin-bottom: 18px;
  color: rgba(244, 238, 226, 0.82);
  font-size: clamp(15px, 1.05vw, 18px);
}

.taste-intro h2 {
  max-width: 100%;
  font-size: clamp(52px, 4.7vw, 82px);
}

.taste-intro h2 span {
  white-space: normal;
}

.taste-intro p:not(.taste-kicker) {
  max-width: 440px;
  margin-top: 20px;
  color: rgba(244, 238, 226, 0.72);
  font-size: clamp(15px, 1.04vw, 18px);
}

.taste-creative {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: center;
  align-self: center;
  z-index: 3;
  width: 100%;
  max-width: 960px;
  margin: 0;
  transform: none;
}

.taste-creative-image {
  width: min(100%, 980px);
  max-width: 100%;
  margin: 0 auto;
  transform: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 74%, rgba(0, 0, 0, 0.88) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 74%, rgba(0, 0, 0, 0.88) 86%, transparent 100%);
}

.taste-mascot {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: end;
  gap: 14px;
  width: min(100%, 420px);
  margin: 0;
  transform: none;
  pointer-events: none;
}

.taste-mascot::before {
  inset: auto 10px 4px auto;
  width: 128px;
  height: 128px;
}

.taste-mascot figcaption {
  position: relative;
  inset: auto;
  min-width: 0;
  max-width: 250px;
  padding: 14px 16px;
  color: rgba(244, 238, 226, 0.78);
  font-size: 13px;
  text-align: left;
}

.taste-mascot figcaption::after {
  right: -15px;
  bottom: 16px;
  width: 24px;
  height: 18px;
  transform: skew(34deg) rotate(-18deg);
}

.taste-mascot img {
  width: 112px;
  max-width: none;
}

.taste-benefits {
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-color: rgba(201, 73, 20, 0.54);
  background: rgba(201, 73, 20, 0.4);
}

.taste-benefits article {
  min-height: 178px;
  padding: clamp(20px, 2.2vw, 30px);
  background:
    linear-gradient(155deg, rgba(244, 238, 226, 0.08), rgba(8, 6, 5, 0.72)),
    radial-gradient(circle at 20% 15%, rgba(208, 25, 22, 0.16), transparent 36%),
    rgba(18, 13, 11, 0.9);
}

.taste-benefits article:first-child {
  background:
    linear-gradient(155deg, rgba(208, 25, 22, 0.16), rgba(8, 6, 5, 0.74)),
    radial-gradient(circle at 18% 16%, rgba(244, 238, 226, 0.08), transparent 34%),
    rgba(18, 13, 11, 0.94);
}

.taste-benefits h3 {
  font-size: clamp(22px, 1.72vw, 30px);
}

.taste-benefits p {
  max-width: 300px;
  font-size: 13.5px;
}

.taste-benefit i {
  width: 62px;
  height: 62px;
}

.product-matrix,
.quality-grid,
.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.matrix-item,
.quality-card,
.process-list li {
  min-width: 0;
}

@media (max-width: 1280px) {
  .hero-stage,
  .section-grid,
  .partners,
  .lead,
  .pistachio-focus {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content,
  .section-copy,
  .lead-copy {
    max-width: 760px;
  }

  .flagship-head {
    max-width: 1040px;
  }

  .hero-mascot,
  .video-panel {
    justify-self: center;
    width: min(100%, 860px);
  }

  .flagship .video-panel {
    width: min(100%, 1100px);
  }

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

  .section-head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .taste-hero {
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  }

  .taste-creative-image {
    width: min(100%, 900px);
  }

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

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

  .taste-benefits article {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .taste-benefits h3 {
    font-size: clamp(26px, 3.1vw, 36px);
  }

  .taste-benefits p {
    max-width: 360px;
    font-size: 14.5px;
  }

}

@media (max-width: 980px) {
  .section-grid,
  .partners,
  .production,
  .lead,
  .pistachio-focus,
  .assortment,
  .process,
  .taste-lab {
    padding-left: var(--space-page);
    padding-right: var(--space-page);
  }

  .hero-infographics,
  .taste-benefits,
  .product-matrix,
  .quality-grid,
  .process-list,
  .partner-grid,
  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taste-hero {
    max-width: 760px;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .taste-intro,
  .taste-creative,
  .taste-mascot {
    grid-column: 1;
  }

  .taste-intro {
    grid-row: 1;
    width: 100%;
    justify-self: center;
    text-align: center;
  }

  .taste-kicker,
  .taste-intro p:not(.taste-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .taste-creative {
    grid-row: 2;
    width: 100%;
    max-width: 760px;
  }

  .taste-creative-image {
    width: min(100%, 760px);
  }

  .taste-mascot {
    grid-row: 3;
    justify-self: center;
    width: min(100%, 520px);
    grid-template-columns: minmax(0, 1fr) 124px;
  }

  .taste-mascot img {
    width: 124px;
  }

  .taste-benefits {
    max-width: 760px;
  }

}

@media (max-width: 640px) {
  :root {
    --space-page: 18px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    padding-left: 18px;
    padding-right: 84px;
  }

  .menu-toggle {
    right: 18px;
  }

  .hero,
  .section-grid,
  .partners,
  .production,
  .lead,
  .pistachio-focus,
  .assortment,
  .process,
  .taste-lab {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-stage,
  .section-grid,
  .partners,
  .production,
  .lead,
  .pistachio-focus,
  .assortment,
  .process,
  .taste-hero,
  .taste-benefits,
  .product-matrix,
  .quality-grid,
  .process-list,
  .partner-grid,
  .lead-form,
  .hero-infographics {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content,
  .section-copy,
  .lead-copy,
  .section-head,
  .taste-intro,
  .flavor-stage,
  .flavor-bottom,
  .wide-video-slot {
    width: 100%;
    max-width: none;
  }

  h1,
  .hero h1,
  h2,
  .taste-intro h2 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .taste-intro h2 {
    font-size: clamp(42px, 13.4vw, 58px);
    text-align: center;
  }

  .taste-kicker,
  .taste-intro p:not(.taste-kicker) {
    max-width: 100%;
  }

  .taste-creative {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    overflow: hidden;
  }

  .taste-creative-image {
    width: 100%;
    max-width: 100%;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 76%, rgba(0, 0, 0, 0.9) 88%, transparent 100%);
    mask-image: radial-gradient(ellipse at 50% 50%, #000 0 76%, rgba(0, 0, 0, 0.9) 88%, transparent 100%);
  }

  .taste-mascot {
    grid-template-columns: minmax(0, 1fr) 96px;
    width: 100%;
  }

  .taste-mascot img {
    width: 96px;
  }

  .taste-mascot figcaption {
    font-size: 12px;
  }

  .taste-benefits article,
  .lead-form,
  .partner-tile,
  .matrix-item,
  .quality-card,
  .process-list li {
    min-height: 0;
  }

  .taste-benefits article {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 18px;
  }

  .taste-benefit i {
    width: 50px;
    height: 50px;
  }

  .taste-benefits h3 {
    font-size: clamp(23px, 8vw, 32px);
  }

  .taste-benefits p {
    max-width: none;
    font-size: 14px;
  }

  .hero-info-item,
  .hero-info-item.is-margin {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .hero-info-item em {
    margin-top: -8px;
  }

  .btn,
  .feature-row span,
  .text-link {
    max-width: 100%;
  }

  .flagship-head {
    text-align: left;
  }

  .flagship-head h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .flagship-head p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
    font-size: 17px;
  }

  .flagship .video-panel {
    width: 100%;
    margin-top: 28px;
  }

  .flagship .video-panel video {
    min-height: 260px;
  }

  .format-strip {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .format-card {
    min-height: 0;
    padding: 18px;
  }

  .format-card--pack {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
  }

  .format-card--cup {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .format-card p {
    max-width: none;
  }

  .feature-row,
  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-row span,
  .btn {
    width: 100%;
  }

}

/* Gemini bowl asset: keep the poster untouched; extend only the section ambience. */
.taste-lab {
  background:
    radial-gradient(circle at 58% 46%, rgba(170, 28, 14, 0.075), transparent 44%),
    radial-gradient(circle at 24% 70%, rgba(207, 32, 18, 0.05), transparent 36%),
    linear-gradient(90deg, #000 0%, #020101 42%, #040101 68%, #000 100%),
    #000;
}

.taste-creative {
  max-width: 1040px;
}

.taste-creative-image {
  aspect-ratio: 1376 / 768;
  object-fit: contain;
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: 0;
  filter:
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 34px rgba(207, 32, 18, 0.16));
}

@media (max-width: 1280px) {
  .taste-creative {
    max-width: 900px;
  }
}

@media (max-width: 980px) {
  .taste-creative {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .taste-lab {
    background:
      radial-gradient(circle at 50% 46%, rgba(170, 28, 14, 0.08), transparent 48%),
      linear-gradient(180deg, #000 0%, #030101 48%, #000 100%),
      #000;
  }

  .taste-creative-image {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Taste map replaces the old four-card infographic with a real assortment story. */
.taste-system {
  position: relative;
  z-index: 6;
  width: min(1540px, 100%);
  margin: clamp(10px, 2vw, 28px) auto 0;
  padding: clamp(18px, 2.4vw, 34px);
  border: 1px solid rgba(201, 73, 20, 0.46);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 238, 226, 0.07), rgba(244, 238, 226, 0.018)),
    radial-gradient(circle at 76% 18%, rgba(208, 25, 22, 0.22), transparent 320px),
    rgba(8, 6, 5, 0.82);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(244, 238, 226, 0.1);
  backdrop-filter: blur(10px);
}

.taste-system-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(20px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(18px, 2vw, 28px);
}

.taste-system-head span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.35vw, 19px);
  text-transform: uppercase;
}

.taste-system-head h3 {
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(36px, 5vw, 78px);
}

.taste-system-head p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(15px, 1.22vw, 19px);
}

.taste-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.28fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.taste-map {
  position: relative;
  min-height: clamp(430px, 37vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(244, 238, 226, 0.13);
  border-radius: calc(var(--radius) - 3px);
  background:
    linear-gradient(90deg, rgba(244, 238, 226, 0.07) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(0deg, rgba(244, 238, 226, 0.07) 1px, transparent 1px) 0 0 / 100% 33.33%,
    radial-gradient(circle at 25% 74%, rgba(218, 139, 52, 0.2), transparent 220px),
    radial-gradient(circle at 73% 28%, rgba(208, 25, 22, 0.24), transparent 260px),
    rgba(2, 1, 1, 0.84);
}

.taste-map::before {
  content: "";
  position: absolute;
  inset: 54px 58px 58px 66px;
  border-left: 1px solid rgba(218, 139, 52, 0.52);
  border-bottom: 1px solid rgba(218, 139, 52, 0.52);
  pointer-events: none;
}

.taste-map-axis {
  position: absolute;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 238, 226, 0.54);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.taste-map-axis-x {
  left: 66px;
  right: 58px;
  bottom: 24px;
}

.taste-map-axis-y {
  left: 20px;
  top: 58px;
  bottom: 62px;
  writing-mode: vertical-rl;
}

.taste-zone {
  position: absolute;
  z-index: 1;
  max-width: 430px;
  color: rgba(244, 238, 226, 0.13);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  pointer-events: none;
}

.taste-zone-core {
  left: 92px;
  bottom: 86px;
}

.taste-zone-hot {
  left: 230px;
  top: 70px;
}

.taste-zone-gastro {
  right: 72px;
  top: 150px;
  text-align: right;
}

.taste-point {
  position: absolute;
  z-index: 3;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  color: rgba(244, 238, 226, 0.92);
  font-size: clamp(10px, 0.82vw, 13px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.84);
}

.taste-point::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border: 2px solid rgba(244, 238, 226, 0.72);
  border-radius: 50%;
  background: var(--point-color);
  box-shadow:
    0 0 0 6px rgba(244, 238, 226, 0.04),
    0 0 18px color-mix(in srgb, var(--point-color), transparent 28%);
}

.point-core {
  --point-color: #da8b34;
}

.point-hot {
  --point-color: #d01916;
}

.point-gastro {
  --point-color: #f05a22;
}

.taste-route {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(244, 238, 226, 0.12);
  border-radius: calc(var(--radius) - 3px);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.06), rgba(8, 6, 5, 0.7)),
    rgba(14, 9, 7, 0.86);
}

.taste-route-item {
  position: relative;
  min-height: 130px;
  padding: clamp(18px, 2vw, 28px);
}

.taste-route-item + .taste-route-item {
  border-top: 1px solid rgba(244, 238, 226, 0.1);
}

.taste-route-item::before {
  content: "";
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  top: 0;
  width: 48px;
  height: 2px;
  background: rgba(218, 139, 52, 0.9);
  box-shadow: 0 0 18px rgba(218, 139, 52, 0.42);
}

.taste-route-item.is-active {
  background:
    linear-gradient(135deg, rgba(208, 25, 22, 0.34), rgba(208, 25, 22, 0.05)),
    rgba(8, 6, 5, 0.34);
}

.taste-route-item strong {
  display: block;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 0.84;
  text-transform: uppercase;
}

.taste-route-item.is-active strong {
  color: var(--color-accent);
}

.taste-route-item span {
  display: block;
  max-width: 260px;
  margin-top: 12px;
  color: rgba(244, 238, 226, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .taste-system-head,
  .taste-system-grid {
    grid-template-columns: 1fr;
  }

  .taste-route {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .taste-route-item + .taste-route-item {
    border-top: 0;
    border-left: 1px solid rgba(244, 238, 226, 0.1);
  }
}

@media (max-width: 720px) {
  .taste-system {
    padding: 16px;
  }

  .taste-map {
    min-height: 620px;
  }

  .taste-map-axis {
    font-size: 11px;
  }

  .taste-map-axis-x {
    left: 46px;
    right: 24px;
  }

  .taste-map-axis-y {
    left: 10px;
  }

  .taste-zone {
    max-width: 190px;
    font-size: 32px;
  }

  .taste-zone-core {
    left: 56px;
  }

  .taste-zone-hot {
    left: 84px;
  }

  .taste-zone-gastro {
    right: 22px;
  }

  .taste-point {
    max-width: 112px;
    font-size: 9px;
    white-space: normal;
  }

  .taste-point::before {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }

  .taste-route {
    grid-template-columns: 1fr;
  }

  .taste-route-item + .taste-route-item {
    border-top: 1px solid rgba(244, 238, 226, 0.1);
    border-left: 0;
  }
}

/* Premium snippet cards: same simple logic, clearer miniature diagrams. */
.taste-benefits--premium {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-color: rgba(201, 73, 20, 0.48);
  background:
    linear-gradient(90deg, rgba(201, 73, 20, 0.36), rgba(244, 238, 226, 0.08), rgba(201, 73, 20, 0.36));
}

.taste-benefits--premium article {
  min-height: 210px;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 8px 22px;
  padding: clamp(22px, 2.25vw, 34px);
  background:
    radial-gradient(circle at 22% 22%, rgba(208, 25, 22, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.075), rgba(8, 6, 5, 0.76)),
    rgba(16, 10, 8, 0.92);
}

.taste-benefits--premium article::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 238, 226, 0.055);
  pointer-events: none;
}

.taste-benefits--premium .taste-benefit i {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(244, 238, 226, 0.16);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(244, 238, 226, 0.07), rgba(8, 6, 5, 0.22)),
    rgba(8, 6, 5, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(244, 238, 226, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.28);
}

.taste-benefits--premium .taste-benefit i::before,
.taste-benefits--premium .taste-benefit i::after,
.taste-benefits--premium .taste-benefit i b {
  content: "";
  position: absolute;
  display: block;
}

.taste-benefits--premium .taste-benefit i b {
  background: rgba(244, 238, 226, 0.74);
}

.taste-benefits--premium .taste-benefit-margin i::before {
  left: 18px;
  right: 18px;
  bottom: 22px;
  height: 1px;
  border: 0;
  background: rgba(244, 238, 226, 0.28);
  transform: none;
}

.taste-benefits--premium .taste-benefit-margin i::after {
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 42px;
  border: 0;
  background:
    linear-gradient(135deg, transparent 0 45%, var(--color-accent) 46% 54%, transparent 55%),
    radial-gradient(circle at 86% 14%, var(--color-accent) 0 5px, transparent 6px);
  transform: none;
}

.taste-benefits--premium .taste-benefit-margin i b:nth-child(1) {
  left: 20px;
  bottom: 26px;
  width: 10px;
  height: 18px;
}

.taste-benefits--premium .taste-benefit-margin i b:nth-child(2) {
  left: 39px;
  bottom: 26px;
  width: 10px;
  height: 30px;
  background: rgba(201, 121, 36, 0.86);
}

.taste-benefits--premium .taste-benefit-margin i b:nth-child(3) {
  left: 58px;
  bottom: 26px;
  width: 10px;
  height: 44px;
  background: var(--color-accent);
}

.taste-benefits--premium .taste-benefit-format i::before {
  left: 16px;
  top: 26px;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(244, 238, 226, 0.72);
  border-radius: 4px;
  box-shadow: 34px 8px 0 -8px rgba(208, 25, 22, 0.54);
}

.taste-benefits--premium .taste-benefit-format i::after {
  right: 16px;
  top: 22px;
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-accent);
  border-radius: 50% 50% 7px 7px;
}

.taste-benefits--premium .taste-benefit-format i b:nth-child(1) {
  left: 20px;
  top: 18px;
  width: 18px;
  height: 4px;
  background: var(--color-gold);
}

.taste-benefits--premium .taste-benefit-format i b:nth-child(2) {
  left: 51px;
  top: 49px;
  width: 14px;
  height: 2px;
  background: rgba(244, 238, 226, 0.56);
}

.taste-benefits--premium .taste-benefit-format i b:nth-child(3) {
  left: 47px;
  top: 42px;
  width: 2px;
  height: 16px;
  background: rgba(244, 238, 226, 0.42);
}

.taste-benefits--premium .taste-benefit-matrix i::before {
  inset: 16px;
  border: 1px solid rgba(244, 238, 226, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle, var(--color-accent) 0 3px, transparent 4px) 0 0 / 20px 20px,
    radial-gradient(circle, rgba(201, 121, 36, 0.9) 0 3px, transparent 4px) 10px 10px / 20px 20px,
    transparent;
}

.taste-benefits--premium .taste-benefit-matrix i::after {
  right: 17px;
  bottom: 17px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(244, 238, 226, 0.68);
  border-radius: 50%;
  background: rgba(8, 6, 5, 0.76);
}

.taste-benefits--premium .taste-benefit-matrix i b:nth-child(1) {
  right: 25px;
  bottom: 36px;
  width: 12px;
  height: 2px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

.taste-benefits--premium .taste-benefit-matrix i b:nth-child(2) {
  right: 22px;
  bottom: 27px;
  width: 18px;
  height: 2px;
  background: var(--color-accent);
  transform: rotate(-45deg);
}

.taste-benefits--premium .taste-benefit-matrix i b:nth-child(3) {
  left: 22px;
  top: 22px;
  width: 22px;
  height: 2px;
  background: rgba(244, 238, 226, 0.62);
}

.taste-benefits--premium .taste-benefit-repeat i::before {
  inset: 20px;
  border: 3px solid rgba(244, 238, 226, 0.7);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.taste-benefits--premium .taste-benefit-repeat i::after {
  right: 22px;
  top: 24px;
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--color-accent);
  border-right: 3px solid var(--color-accent);
  transform: rotate(18deg);
}

.taste-benefits--premium .taste-benefit-repeat i b:nth-child(1) {
  left: 34px;
  top: 31px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent) 0 4px, rgba(201, 121, 36, 0.78) 5px 10px, transparent 11px);
}

.taste-benefits--premium .taste-benefit-repeat i b:nth-child(2) {
  left: 29px;
  bottom: 23px;
  width: 34px;
  height: 2px;
  background: rgba(244, 238, 226, 0.5);
}

.taste-benefits--premium .taste-benefit-repeat i b:nth-child(3) {
  right: 27px;
  bottom: 29px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold);
}

@media (max-width: 1180px) {
  .taste-benefits--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .taste-benefits--premium {
    grid-template-columns: 1fr;
  }

  .taste-benefits--premium article {
    min-height: 174px;
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .taste-benefits--premium .taste-benefit i {
    width: 82px;
    height: 82px;
  }
}

/* Pistachio block: full source image is preserved; only the outer ambience is extended. */
.pistachio-focus {
  grid-template-columns: minmax(240px, 0.72fr) minmax(560px, 1.68fr) minmax(250px, 0.86fr);
  gap: clamp(16px, 2.4vw, 34px);
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(28px, 4vw, 72px));
  padding-bottom: clamp(52px, 7vw, 112px);
  background:
    radial-gradient(ellipse at 50% 52%, rgba(8, 6, 5, 0) 0 34%, rgba(8, 6, 5, 0.52) 66%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(ellipse at 52% 58%, rgba(208, 25, 22, 0.24), transparent 42%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.1) 42% 60%, rgba(0, 0, 0, 0.88)),
    linear-gradient(180deg, #090504, #160b08 48%, #070403);
}

.pistachio-focus::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 28%, rgba(208, 25, 22, 0.18) 0 1px, transparent 1.6px),
    radial-gradient(circle at 82% 64%, rgba(201, 121, 36, 0.18) 0 1px, transparent 1.6px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 42%, rgba(0, 0, 0, 0.48));
  background-size: 88px 74px, 116px 96px, 100% 100%;
  opacity: 0.72;
}

.pistachio-focus .section-copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
}

.pistachio-focus .section-copy h2 {
  font-size: clamp(38px, 3.9vw, 66px);
  line-height: 0.92;
}

.pistachio-focus .section-copy p {
  color: rgba(244, 238, 226, 0.76);
  font-size: clamp(16px, 1.16vw, 20px);
  line-height: 1.42;
}

.pistachio-visual {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(980px, 108%);
  margin: 0;
}

.pistachio-visual::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 6%;
  height: 18%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(208, 25, 22, 0.42), transparent 62%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.84), transparent 72%);
  filter: blur(16px);
}

.pistachio-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  border-radius: 0;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.5));
}

.pistachio-proof {
  position: relative;
  z-index: 4;
  align-self: center;
}

.pistachio-proof article {
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.065), rgba(8, 6, 5, 0.72)),
    rgba(18, 13, 11, 0.78);
  backdrop-filter: blur(12px);
}

.pistachio-proof p {
  color: rgba(244, 238, 226, 0.66);
}

@media (max-width: 1280px) {
  .pistachio-focus {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .pistachio-focus .section-copy,
  .pistachio-proof {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .pistachio-visual {
    width: min(900px, 100%);
  }
}

@media (max-width: 720px) {
  .pistachio-focus {
    padding-top: calc(var(--header-height) + 22px);
  }

  .pistachio-focus .section-copy {
    text-align: center;
  }

  .pistachio-visual {
    width: min(128%, 720px);
    transform: translateX(-1%);
  }

  .pistachio-proof article {
    padding: 20px;
  }
}

/* Pistachio sequence: a dedicated motion block first, then the separate bowl image scene. */
.pistachio-video {
  display: block;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  background:
    radial-gradient(circle at 74% 24%, rgba(96, 150, 64, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(8, 6, 5, 0.92), rgba(17, 13, 9, 0.98)),
    var(--color-ink);
}

.pistachio-video .section-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pistachio-video .section-copy p {
  margin-left: auto;
  margin-right: auto;
}

.pistachio-video .feature-row {
  justify-content: center;
}

.pistachio-video .section-copy h2 {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.92;
  text-wrap: balance;
}

.pistachio-video-panel {
  width: min(100%, 1320px);
  margin: clamp(34px, 5vw, 70px) auto 0;
  border: 1px solid rgba(96, 150, 64, 0.34);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.06), rgba(8, 6, 5, 0.58)),
    var(--surface-panel);
  box-shadow:
    inset 0 1px 0 rgba(244, 238, 226, 0.12),
    0 34px 110px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(96, 150, 64, 0.16);
}

.pistachio-video-panel video {
  min-height: clamp(360px, 55vw, 720px);
  object-position: center center;
}

.pistachio-format-strip {
  border-color: rgba(96, 150, 64, 0.28);
  background: rgba(96, 150, 64, 0.28);
}

.pistachio-format-card {
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.055), rgba(244, 238, 226, 0.018)),
    rgba(9, 15, 8, 0.76);
}

.pistachio-format-card span {
  color: #b8ce3f;
}

.pistachio-format-card img {
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 20px rgba(96, 150, 64, 0.18));
}

.pistachio-image-block {
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  gap: clamp(20px, 4vw, 68px);
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(52px, 7vw, 112px);
}

.pistachio-image-block .pistachio-visual {
  width: min(1180px, 120%);
}

.pistachio-image-block .pistachio-proof {
  align-self: center;
}

@media (max-width: 1280px) {
  .pistachio-video .section-copy,
  .pistachio-video-panel {
    width: min(100%, 860px);
    margin-left: auto;
    margin-right: auto;
  }

  .pistachio-image-block {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .pistachio-video .section-copy {
    text-align: center;
  }

  .pistachio-video-panel video {
    min-height: 300px;
  }

  .pistachio-image-block {
    min-height: 0;
  }
}

/* Pistachio lab mirrors the 25-flavor block: same rhythm, new product story. */
.pistachio-lab {
  position: relative;
  scroll-margin-top: var(--header-height);
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(20px, 2.2vw, 34px)) clamp(58px, 6.3vw, 112px) clamp(28px, 3.8vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 52% 47%, rgba(8, 6, 5, 0) 0 46%, rgba(0, 0, 0, 0.54) 82%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.12) 42% 60%, rgba(0, 0, 0, 0.86)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.6)),
    #030201;
}

.pistachio-lab::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54%;
  background:
    radial-gradient(ellipse at 46% 0, rgba(226, 26, 22, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.pistachio-lab-hero,
.pistachio-benefits {
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}

.pistachio-lab-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 0.56fr) minmax(620px, 1fr) minmax(120px, 0.16fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  min-height: clamp(560px, 42vw, 700px);
  margin-bottom: clamp(22px, 3vw, 48px);
}

.pistachio-lab-intro {
  grid-column: 1;
  grid-row: 1;
}

.pistachio-lab-intro h2 span:first-child {
  color: transparent;
  background: var(--text-metal);
  -webkit-background-clip: text;
  background-clip: text;
}

.pistachio-lab-intro h2 span:last-child {
  background: var(--text-red);
  -webkit-background-clip: text;
  background-clip: text;
}

.pistachio-lab-creative {
  position: relative;
  z-index: 4;
  grid-column: 2 / 4;
  grid-row: 1;
  justify-self: center;
  width: min(108%, 1080px);
  margin: 0;
  pointer-events: none;
  transform: translateX(3%);
}

.pistachio-lab-creative img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.42));
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 62%, rgba(0, 0, 0, 0.82) 76%, transparent 96%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 62%, rgba(0, 0, 0, 0.82) 76%, transparent 96%);
}

.pistachio-lab-mascot {
  position: absolute;
  z-index: 8;
  left: clamp(360px, 31vw, 520px);
  bottom: clamp(54px, 5vw, 92px);
  width: clamp(168px, 12vw, 230px);
  transform: none;
}

.pistachio-lab-mascot figcaption {
  left: 70%;
  right: auto;
  top: 34%;
  min-width: 230px;
  max-width: 250px;
  text-align: left;
}

.pistachio-lab-mascot figcaption::after {
  left: -19px;
  right: auto;
  transform: skew(-35deg) rotate(-18deg);
}

.pistachio-benefits {
  position: relative;
  z-index: 3;
}

@media (max-width: 1280px) {
  .pistachio-lab {
    min-height: 0;
  }

  .pistachio-lab-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .pistachio-lab-intro,
  .pistachio-lab-creative,
  .pistachio-lab-mascot {
    grid-column: 1;
  }

  .pistachio-lab-intro {
    grid-row: 1;
    max-width: 760px;
  }

  .pistachio-lab-creative {
    grid-row: 2;
    width: min(1080px, 100%);
    transform: none;
  }

  .pistachio-lab-mascot {
    position: relative;
    left: auto;
    bottom: auto;
    grid-row: 3;
    justify-self: center;
    width: clamp(128px, 20vw, 190px);
    transform: translateY(-10%);
  }

  .pistachio-lab-mascot figcaption {
    right: 58%;
  }
}

@media (max-width: 720px) {
  .pistachio-lab {
    padding: calc(var(--header-height) + 22px) 18px 34px;
  }

  .pistachio-lab-intro {
    text-align: center;
    margin: 0 auto;
  }

  .pistachio-lab-creative {
    width: min(100%, 720px);
    transform: none;
  }

  .pistachio-lab-mascot {
    display: grid;
    width: min(100%, 360px);
    grid-template-columns: minmax(0, 1fr) 92px;
    margin: -18px auto 0;
    transform: none;
  }

  .pistachio-lab-mascot figcaption {
    position: relative;
    inset: auto;
    min-width: 0;
    max-width: none;
    text-align: left;
  }

  .pistachio-lab-mascot figcaption::after {
    right: -15px;
    left: auto;
    bottom: 16px;
    transform: skew(34deg) rotate(-18deg);
  }

  .pistachio-lab-mascot img {
    width: 92px;
  }
}

/* Final pistachio lab composition: same KGB poster language, calmer hierarchy. */
.pistachio-lab {
  min-height: auto;
  padding: calc(var(--header-height) + clamp(34px, 5vw, 78px)) var(--space-page) clamp(54px, 6vw, 92px);
  background:
    radial-gradient(ellipse at 70% 38%, rgba(96, 150, 64, 0.18), transparent 32%),
    radial-gradient(ellipse at 46% 58%, rgba(208, 25, 22, 0.18), transparent 44%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.94) 0 32%, rgba(18, 8, 5, 0.58) 54%, rgba(8, 6, 5, 0.9) 100%),
    linear-gradient(180deg, #050302 0%, #120907 48%, #060302 100%);
}

.pistachio-lab::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 121, 36, 0.22) 0 1px, transparent 1px calc(100% - 1px), rgba(201, 121, 36, 0.2) calc(100% - 1px)),
    radial-gradient(circle at 18% 24%, rgba(244, 238, 226, 0.18) 0 1px, transparent 1.4px),
    radial-gradient(circle at 82% 68%, rgba(96, 150, 64, 0.2) 0 1px, transparent 1.4px);
  background-size: 100% 100%, 82px 74px, 118px 104px;
  opacity: 0.46;
}

.pistachio-lab::after {
  z-index: 0;
  height: 44%;
  background:
    radial-gradient(ellipse at 54% 0, rgba(184, 206, 63, 0.1), transparent 42%),
    radial-gradient(ellipse at 44% 0, rgba(226, 26, 22, 0.15), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.64));
}

.pistachio-lab-hero,
.pistachio-benefits {
  position: relative;
  z-index: 2;
  width: min(1540px, 100%);
}

.pistachio-lab-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  grid-template-rows: minmax(420px, auto) auto;
  align-items: end;
  gap: clamp(18px, 2.4vw, 36px) clamp(28px, 4vw, 72px);
  min-height: 0;
  margin-bottom: clamp(36px, 4vw, 70px);
}

.pistachio-lab-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  width: min(100%, 560px);
  max-width: none;
  text-align: left;
}

.pistachio-lab-intro h2 {
  max-width: 560px;
  font-size: clamp(46px, 4.7vw, 84px);
  line-height: 0.92;
}

.pistachio-lab-intro h2 span {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.pistachio-lab-intro p:not(.taste-kicker) {
  max-width: 390px;
  color: rgba(244, 238, 226, 0.74);
}

.pistachio-lab-creative {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  justify-self: end;
  width: min(112%, 1120px);
  margin: 0 clamp(-34px, -2.2vw, -14px) clamp(-24px, -1.8vw, -8px) 0;
  transform: translateY(clamp(8px, 1.8vw, 24px));
}

.pistachio-lab-creative::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 7%;
  bottom: 4%;
  z-index: 0;
  height: 17%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(226, 26, 22, 0.2), transparent 58%),
    radial-gradient(ellipse at 50% 50%, rgba(96, 150, 64, 0.14), transparent 64%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.9), transparent 74%);
  filter: blur(14px);
}

.pistachio-lab-creative img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  filter:
    saturate(1.03)
    contrast(1.04)
    drop-shadow(0 34px 68px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 22px rgba(208, 25, 22, 0.08));
  -webkit-mask-image: none;
  mask-image: none;
}

.pistachio-lab-mascot {
  position: relative;
  left: auto;
  bottom: auto;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(96px, 8vw, 128px);
  align-items: end;
  gap: 14px;
  width: min(100%, 430px);
  margin: 0;
  transform: none;
  pointer-events: none;
}

.pistachio-lab-mascot::before {
  inset: auto 8px 4px auto;
  width: clamp(104px, 9vw, 144px);
  height: clamp(104px, 9vw, 144px);
  background: radial-gradient(ellipse at 52% 52%, rgba(208, 25, 22, 0.22), transparent 64%);
}

.pistachio-lab-mascot figcaption {
  position: relative;
  inset: auto;
  min-width: 0;
  max-width: 270px;
  padding: 14px 16px;
  color: rgba(244, 238, 226, 0.78);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.pistachio-lab-mascot figcaption::after {
  left: auto;
  right: -15px;
  bottom: 16px;
  width: 24px;
  height: 18px;
  transform: skew(34deg) rotate(-18deg);
}

.pistachio-lab-mascot img {
  width: clamp(96px, 8vw, 128px);
}

.pistachio-benefits.taste-benefits--premium {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-color: rgba(96, 150, 64, 0.28);
  background:
    linear-gradient(90deg, rgba(96, 150, 64, 0.26), rgba(201, 121, 36, 0.18), rgba(208, 25, 22, 0.22));
}

.pistachio-benefits.taste-benefits--premium article {
  min-height: 196px;
  grid-template-columns: clamp(78px, 6vw, 96px) minmax(0, 1fr);
  gap: 8px clamp(16px, 1.6vw, 22px);
  padding: clamp(20px, 2vw, 30px);
  background:
    radial-gradient(circle at 22% 22%, rgba(96, 150, 64, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.075), rgba(8, 6, 5, 0.76)),
    rgba(13, 14, 9, 0.92);
}

.pistachio-benefits.taste-benefits--premium .taste-benefit i {
  width: clamp(74px, 5.5vw, 92px);
  height: clamp(74px, 5.5vw, 92px);
}

.pistachio-benefits h3 {
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
}

.pistachio-benefits p {
  max-width: 330px;
  font-size: 13.5px;
}

@media (max-width: 1280px) {
  .pistachio-lab {
    padding-top: calc(var(--header-height) + 42px);
  }

  .pistachio-lab-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    max-width: 860px;
  }

  .pistachio-lab-intro,
  .pistachio-lab-creative,
  .pistachio-lab-mascot {
    grid-column: 1;
  }

  .pistachio-lab-intro {
    grid-row: 1;
    justify-self: center;
    width: min(100%, 760px);
    text-align: center;
  }

  .pistachio-lab-intro h2,
  .pistachio-lab-intro p,
  .pistachio-lab-intro .taste-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .pistachio-lab-creative {
    grid-row: 2;
    justify-self: center;
    width: min(106%, 880px);
    margin: 4px auto -8px;
    transform: none;
  }

  .pistachio-lab-mascot {
    grid-row: 3;
    justify-self: center;
    width: min(100%, 500px);
    transform: none;
  }

  .pistachio-benefits.taste-benefits--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
  }
}

@media (max-width: 720px) {
  .pistachio-lab {
    padding: calc(var(--header-height) + 24px) 18px 42px;
  }

  .pistachio-lab-hero {
    width: 100%;
    max-width: 100%;
    gap: 22px;
    margin-bottom: 24px;
  }

  .pistachio-lab-intro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
  }

  .pistachio-lab-intro h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 0.94;
    text-align: left;
  }

  .pistachio-lab-intro h2 span {
    overflow-wrap: anywhere;
  }

  .pistachio-lab-intro .taste-kicker,
  .pistachio-lab-intro p:not(.taste-kicker) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.42;
  }

  .pistachio-lab-creative {
    width: min(112%, 620px);
    max-width: 100%;
    min-width: 0;
    justify-self: center;
    margin: 2px auto 0;
    overflow: visible;
  }

  .pistachio-lab-creative img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .pistachio-lab-mascot {
    grid-template-columns: minmax(0, 1fr) 86px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pistachio-lab-mascot img {
    width: 86px;
  }

  .pistachio-lab-mascot figcaption {
    max-width: none;
    padding: 12px 14px;
    font-size: 12px;
  }

  .pistachio-benefits.taste-benefits--premium {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .pistachio-benefits.taste-benefits--premium article {
    min-height: 0;
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 18px;
  }

  .pistachio-benefits.taste-benefits--premium .taste-benefit i {
    width: 62px;
    height: 62px;
  }

  .pistachio-benefits h3 {
    font-size: clamp(23px, 7.4vw, 31px);
  }

  .pistachio-benefits p {
    max-width: none;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .pistachio-lab-mascot {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 10px;
  }

  .pistachio-lab-mascot img {
    width: 72px;
  }

  .pistachio-benefits.taste-benefits--premium article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 6px 14px;
    padding: 16px;
  }

  .pistachio-benefits.taste-benefits--premium .taste-benefit i {
    width: 52px;
    height: 52px;
  }
}

/* Site standardization layer: shared section types and consistent rhythm. */
:root {
  --standard-max: min(1540px, calc(100vw - (var(--space-page) * 2)));
  --standard-copy: 760px;
  --standard-section-pad: clamp(72px, 9vw, 132px);
  --standard-section-pad-tight: clamp(56px, 7vw, 96px);
  --standard-title: clamp(42px, 5vw, 82px);
  --standard-title-large: clamp(52px, 6vw, 104px);
  --standard-card-title: clamp(24px, 2vw, 34px);
  --standard-body: clamp(16px, 1.25vw, 21px);
  --standard-gap: clamp(28px, 4.6vw, 72px);
  --standard-panel: linear-gradient(180deg, rgba(244, 238, 226, 0.065), rgba(244, 238, 226, 0.018)),
    rgba(11, 8, 7, 0.78);
  --standard-border: 1px solid rgba(244, 238, 226, 0.15);
  --standard-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.1), 0 30px 84px rgba(0, 0, 0, 0.36);
}

.product-video,
.flavor-story,
.catalog-section,
.flow-section,
.lead-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: var(--standard-section-pad) var(--space-page);
  background:
    radial-gradient(circle at 78% 18%, rgba(208, 25, 22, 0.14), transparent 30%),
    radial-gradient(circle at 16% 78%, rgba(201, 121, 36, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(8, 6, 5, 0.96), rgba(18, 13, 11, 0.98));
}

.product-video::before,
.flavor-story::before,
.catalog-section::before,
.flow-section::before,
.lead-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.44;
  background:
    linear-gradient(90deg, rgba(201, 121, 36, 0.2) 0 1px, transparent 1px calc(100% - 1px), rgba(201, 121, 36, 0.16) calc(100% - 1px)),
    radial-gradient(circle at 18% 24%, rgba(244, 238, 226, 0.14) 0 1px, transparent 1.4px);
  background-size: 100% 100%, 82px 74px;
}

.product-video--pistachio,
.flavor-story--pistachio {
  background:
    radial-gradient(circle at 74% 22%, rgba(96, 150, 64, 0.18), transparent 30%),
    radial-gradient(circle at 20% 76%, rgba(208, 25, 22, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(7, 8, 5, 0.96), rgba(16, 16, 9, 0.98));
}

.product-video .section-copy,
.product-video .flagship-head,
.catalog-section .section-head,
.flow-section .section-head {
  display: block;
  width: min(100%, var(--standard-copy));
  max-width: var(--standard-copy);
  margin: 0 auto clamp(30px, 4vw, 58px);
  text-align: center;
}

.product-video .section-copy p,
.product-video .flagship-head p,
.catalog-section .section-head p,
.flow-section .section-head p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.product-video h2,
.catalog-section h2,
.flow-section h2,
.lead-section h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--standard-title);
  line-height: 0.96;
  text-align: inherit;
  text-wrap: balance;
}

.product-video .section-copy p:not(.eyebrow),
.product-video .flagship-head p:not(.eyebrow),
.catalog-section .section-head p:not(.eyebrow),
.flow-section .section-head p:not(.eyebrow),
.lead-section .lead-copy p:not(.eyebrow),
.flavor-story .taste-intro p:not(.taste-kicker) {
  color: rgba(244, 238, 226, 0.76);
  font-size: var(--standard-body);
  line-height: 1.42;
  text-wrap: pretty;
}

.product-video .video-panel,
.product-video .pistachio-video-panel {
  width: min(100%, 1320px);
  margin: 0 auto;
  overflow: hidden;
  border: var(--standard-border);
  border-radius: var(--radius);
  background: var(--standard-panel);
  box-shadow: var(--standard-shadow), 0 0 62px rgba(208, 25, 22, 0.12);
}

.product-video--pistachio .video-panel {
  border-color: rgba(96, 150, 64, 0.3);
  box-shadow: var(--standard-shadow), 0 0 62px rgba(96, 150, 64, 0.13);
}

.product-video .video-panel video {
  width: 100%;
  min-height: clamp(340px, 50vw, 680px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-video .format-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1080px);
  margin: clamp(16px, 2vw, 24px) auto 0;
  border: var(--standard-border);
  border-radius: var(--radius);
  background: rgba(244, 238, 226, 0.11);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08);
}

.product-video--pistachio .format-strip {
  border-color: rgba(96, 150, 64, 0.28);
  background: rgba(96, 150, 64, 0.2);
}

.product-video .format-card {
  display: grid;
  grid-template-columns: clamp(108px, 12vw, 176px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  min-height: 154px;
  padding: clamp(18px, 2.2vw, 28px);
  background: var(--standard-panel);
}

.product-video .format-card img {
  width: 100%;
  max-height: 142px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.42));
}

.product-video .format-card span {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.9;
}

.product-video .format-card strong {
  max-width: 360px;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.02;
}

.product-video .format-card p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.42;
}

.product-video .flagship-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 36px);
}

.flavor-story {
  min-height: 0;
  padding: calc(var(--header-height) + clamp(36px, 5vw, 72px)) var(--space-page) clamp(58px, 7vw, 108px);
  background:
    radial-gradient(ellipse at 72% 42%, rgba(208, 25, 22, 0.18), transparent 36%),
    radial-gradient(ellipse at 28% 72%, rgba(201, 121, 36, 0.12), transparent 34%),
    linear-gradient(180deg, #050302 0%, #120907 54%, #060302 100%);
}

.flavor-story--pistachio {
  background: #050402;
}

.flavor-story--pistachio.pistachio-lab::before,
.flavor-story--pistachio.pistachio-lab::after {
  background: none;
  opacity: 0;
}

.flavor-story .taste-hero,
.flavor-story .pistachio-lab-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  grid-template-rows: auto auto;
  align-items: end;
  gap: clamp(18px, 2.4vw, 34px) var(--standard-gap);
  width: var(--standard-max);
  max-width: 1540px;
  min-height: 0;
  margin: 0 auto clamp(34px, 4vw, 62px);
}

.flavor-story .taste-intro,
.flavor-story .pistachio-lab-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  width: min(100%, 540px);
  max-width: none;
  padding: 0;
  text-align: left;
}

.flavor-story .taste-kicker {
  max-width: 470px;
  margin: 0 0 18px;
  color: rgba(244, 238, 226, 0.82);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.42;
}

.flavor-story .taste-intro h2,
.flavor-story .pistachio-lab-intro h2 {
  display: grid;
  gap: 2px;
  max-width: 580px;
  margin: 0;
  font-size: var(--standard-title-large);
  line-height: 0.92;
  text-align: left;
  text-wrap: balance;
}

.flavor-story .taste-intro h2 span,
.flavor-story .pistachio-lab-intro h2 span {
  white-space: normal;
  overflow-wrap: normal;
}

.flavor-story .taste-intro p:not(.taste-kicker),
.flavor-story .pistachio-lab-intro p:not(.taste-kicker) {
  max-width: 470px;
  margin: 20px 0 0;
  text-align: left;
}

.flavor-story .taste-creative,
.flavor-story .pistachio-lab-creative {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: center;
  width: min(100%, 1030px);
  max-width: 100%;
  margin: 0;
  overflow: visible;
  pointer-events: none;
  transform: translateY(clamp(-86px, -5.2vw, -48px));
}

.flavor-story .taste-creative::before,
.flavor-story .pistachio-lab-creative::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 12%;
  right: 8%;
  bottom: 4%;
  height: 18%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(226, 26, 22, 0.16), transparent 56%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.86), transparent 72%);
  filter: blur(14px);
}

.flavor-story--pistachio .pistachio-lab-creative::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(96, 150, 64, 0.16), transparent 56%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.86), transparent 72%);
}

.flavor-story .taste-creative-image,
.flavor-story .pistachio-lab-creative img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  transform: none;
  filter:
    saturate(1.03)
    contrast(1.04)
    drop-shadow(0 34px 68px rgba(0, 0, 0, 0.54));
  -webkit-mask-image: none;
  mask-image: none;
}

.flavor-story--cheese .taste-creative {
  width: min(100%, 1080px);
}

.flavor-story--pistachio .pistachio-lab-creative {
  justify-self: end;
  width: min(92%, 920px);
  transform: translate(clamp(32px, 4vw, 66px), clamp(-96px, -5.8vw, -54px));
}

.flavor-story .taste-mascot,
.flavor-story .pistachio-lab-mascot {
  position: relative;
  z-index: 4;
  left: auto;
  bottom: auto;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(94px, 8vw, 126px);
  align-items: end;
  gap: 14px;
  width: min(100%, 430px);
  margin: clamp(-54px, -3vw, -28px) 0 0;
  transform: none;
  pointer-events: none;
}

.flavor-story .taste-mascot figcaption,
.flavor-story .pistachio-lab-mascot figcaption {
  position: relative;
  inset: auto;
  min-width: 0;
  max-width: 270px;
  padding: 14px 16px;
  color: rgba(244, 238, 226, 0.78);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.flavor-story .taste-mascot figcaption::after,
.flavor-story .pistachio-lab-mascot figcaption::after {
  left: auto;
  right: -15px;
  bottom: 16px;
  width: 24px;
  height: 18px;
  transform: skew(34deg) rotate(-18deg);
}

.flavor-story .taste-mascot img,
.flavor-story .pistachio-lab-mascot img {
  width: clamp(94px, 8vw, 126px);
}

.flavor-story .taste-benefits,
.flavor-story .pistachio-benefits.taste-benefits--premium {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: var(--standard-max);
  max-width: 1540px;
  margin: 0 auto;
  overflow: hidden;
  border: var(--standard-border);
  border-radius: var(--radius);
  background: rgba(244, 238, 226, 0.12);
  box-shadow: var(--standard-shadow);
}

.flavor-story--pistachio .pistachio-benefits.taste-benefits--premium {
  border-color: rgba(96, 150, 64, 0.28);
  background: rgba(96, 150, 64, 0.18);
}

.flavor-story .taste-benefits article,
.flavor-story .pistachio-benefits.taste-benefits--premium article {
  display: grid;
  grid-template-columns: clamp(70px, 6vw, 92px) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 8px clamp(14px, 1.5vw, 22px);
  min-height: 204px;
  padding: clamp(20px, 2vw, 30px);
  background: var(--standard-panel);
}

.flavor-story .taste-benefit i {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: clamp(62px, 5.2vw, 84px);
  height: clamp(62px, 5.2vw, 84px);
}

.flavor-story .taste-benefits span {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
}

.flavor-story .taste-benefits h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: var(--standard-card-title);
  line-height: 0.98;
}

.flavor-story .taste-benefits p {
  grid-column: 2;
  grid-row: 3;
  max-width: 330px;
  margin: 0;
  color: rgba(244, 238, 226, 0.68);
  font-size: 13.5px;
  line-height: 1.42;
}

.catalog-section .matrix {
  width: var(--standard-max);
  max-width: 1540px;
  margin: 0 auto;
}

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

.catalog-section .matrix-item,
.catalog-section .matrix-item.is-primary,
.catalog-section .matrix-item.is-featured-pistachio,
.catalog-section .product-matrix > .product-bowl {
  grid-column: auto;
  display: flex;
  min-height: 390px;
  padding: clamp(18px, 2vw, 26px);
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  overflow: hidden;
  border: var(--standard-border);
  background: var(--standard-panel);
  box-shadow: var(--standard-shadow);
}

.catalog-section .matrix-item.is-primary,
.catalog-section .matrix-item.is-featured-pistachio {
  border-color: rgba(201, 121, 36, 0.28);
}

.catalog-section .matrix-item.is-featured-pistachio {
  border-color: rgba(96, 150, 64, 0.3);
}

.catalog-section .matrix-video-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 4px;
  border: 1px solid rgba(244, 238, 226, 0.14);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(8, 6, 5, 0.58);
}

.catalog-section .matrix-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-section .matrix-item > span {
  margin-top: auto;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 0.9;
}

.catalog-section .matrix-item h3 {
  margin: 0;
  font-size: clamp(25px, 2.15vw, 38px);
  line-height: 0.98;
}

.catalog-section .matrix-item p {
  max-width: 340px;
  margin: 0;
  color: rgba(244, 238, 226, 0.68);
  font-size: 14px;
  line-height: 1.42;
}

.flow-section {
  padding-top: var(--standard-section-pad-tight);
}

.flow-section .section-head {
  margin-bottom: clamp(26px, 3.6vw, 46px);
}

.flow-section .process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1180px);
  margin: 0 auto;
  border: var(--standard-border);
  border-radius: var(--radius);
  background: rgba(244, 238, 226, 0.12);
  box-shadow: var(--standard-shadow);
}

.flow-section .process-list li {
  display: grid;
  align-content: start;
  gap: 26px;
  min-height: 220px;
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--standard-panel);
}

.flow-section .process-list span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.9;
}

.flow-section .process-list p {
  max-width: 230px;
  margin: 0;
  color: rgba(244, 238, 226, 0.74);
  font-size: 15px;
  line-height: 1.42;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--standard-gap);
  align-items: center;
}

.lead-section .lead-copy,
.lead-section .lead-form {
  width: 100%;
  max-width: 650px;
}

.lead-section .lead-copy {
  justify-self: end;
}

.lead-section .lead-copy h2 {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.lead-section .lead-copy p {
  max-width: 570px;
}

.lead-section .lead-form {
  justify-self: start;
  border: var(--standard-border);
  background: var(--standard-panel);
  box-shadow: var(--standard-shadow);
}

@media (max-width: 1180px) {
  :root {
    --standard-max: min(100%, calc(100vw - (var(--space-page) * 2)));
  }

  .flavor-story .taste-hero,
  .flavor-story .pistachio-lab-hero,
  .lead-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .flavor-story .taste-intro,
  .flavor-story .pistachio-lab-intro,
  .flavor-story .taste-creative,
  .flavor-story .pistachio-lab-creative,
  .flavor-story .taste-mascot,
  .flavor-story .pistachio-lab-mascot {
    grid-column: 1;
  }

  .flavor-story .taste-intro,
  .flavor-story .pistachio-lab-intro {
    grid-row: 1;
    justify-self: center;
    width: min(100%, 760px);
    text-align: center;
  }

  .flavor-story .taste-intro h2,
  .flavor-story .pistachio-lab-intro h2,
  .flavor-story .taste-intro p:not(.taste-kicker),
  .flavor-story .pistachio-lab-intro p:not(.taste-kicker),
  .flavor-story .taste-kicker {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .flavor-story .taste-creative,
  .flavor-story .pistachio-lab-creative {
    grid-row: 2;
    width: min(100%, 880px);
    margin-top: clamp(-26px, -2vw, -14px);
    transform: translateY(-18px);
  }

  .flavor-story .taste-mascot,
  .flavor-story .pistachio-lab-mascot {
    grid-row: 3;
    justify-self: center;
    margin-top: 0;
  }

  .flavor-story .taste-benefits,
  .flavor-story .pistachio-benefits.taste-benefits--premium,
  .catalog-section .product-matrix,
  .flow-section .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-section .lead-copy,
  .lead-section .lead-form {
    justify-self: center;
    max-width: 760px;
  }

  .lead-section .lead-copy,
  .lead-section .lead-copy h2 {
    text-align: center;
  }

  .lead-section .lead-copy p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --standard-title: clamp(34px, 10vw, 48px);
    --standard-title-large: clamp(38px, 11vw, 54px);
    --standard-section-pad: clamp(52px, 13vw, 72px);
  }

  .hero-content,
  .hero h1 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    gap: 6px;
    font-size: clamp(31px, 8.35vw, 39px);
    line-height: 0.94;
  }

  .hero-title-line {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .product-video,
  .catalog-section,
  .flow-section,
  .lead-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .flavor-story {
    padding: calc(var(--header-height) + 24px) 18px 46px;
  }

  .product-video .section-copy,
  .product-video .flagship-head,
  .catalog-section .section-head,
  .flow-section .section-head {
    text-align: left;
  }

  .product-video h2,
  .catalog-section h2,
  .flow-section h2,
  .lead-section h2 {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .product-video .section-copy p,
  .product-video .flagship-head p,
  .catalog-section .section-head p,
  .flow-section .section-head p {
    margin-left: 0;
    margin-right: 0;
  }

  .product-video .video-panel video {
    min-height: 280px;
  }

  .product-video .format-strip,
  .flavor-story .taste-benefits,
  .flavor-story .pistachio-benefits.taste-benefits--premium,
  .catalog-section .product-matrix,
  .flow-section .process-list,
  .lead-section .lead-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-video .format-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .product-video .format-card img {
    max-height: 116px;
  }

  .flavor-story .taste-intro,
  .flavor-story .pistachio-lab-intro,
  .flavor-story .taste-intro h2,
  .flavor-story .pistachio-lab-intro h2,
  .flavor-story .taste-intro p:not(.taste-kicker),
  .flavor-story .pistachio-lab-intro p:not(.taste-kicker),
  .flavor-story .taste-kicker {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .flavor-story .taste-hero,
  .flavor-story .pistachio-lab-hero {
    width: 100%;
    gap: 22px;
    margin-bottom: 26px;
  }

  .flavor-story .taste-creative,
  .flavor-story .pistachio-lab-creative {
    width: min(112%, 620px);
    justify-self: center;
    margin-top: -10px;
    transform: translateY(-8px);
  }

  .flavor-story .taste-mascot,
  .flavor-story .pistachio-lab-mascot {
    grid-template-columns: minmax(0, 1fr) 82px;
    width: 100%;
    margin-top: 0;
  }

  .flavor-story .taste-mascot img,
  .flavor-story .pistachio-lab-mascot img {
    width: 82px;
  }

  .flavor-story .taste-benefits article,
  .flavor-story .pistachio-benefits.taste-benefits--premium article {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .flavor-story .taste-benefit i {
    width: 54px;
    height: 54px;
  }

  .catalog-section .matrix-item,
  .catalog-section .matrix-item.is-primary,
  .catalog-section .matrix-item.is-featured-pistachio,
  .catalog-section .product-matrix > .product-bowl {
    min-height: 0;
  }

  .flow-section .process-list li {
    min-height: 0;
  }

  .lead-section {
    gap: 28px;
  }

  .lead-section .lead-copy,
  .lead-section .lead-copy h2 {
    text-align: left;
  }

  .lead-section .lead-copy p {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 430px) {
  .product-video .format-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .product-video .format-card img {
    max-height: 96px;
  }

  .product-video .format-card span {
    font-size: 34px;
  }

  .flavor-story .taste-mascot,
  .flavor-story .pistachio-lab-mascot {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 10px;
  }

  .flavor-story .taste-mascot img,
  .flavor-story .pistachio-lab-mascot img {
    width: 70px;
  }

  .flavor-story .taste-benefits article,
  .flavor-story .pistachio-benefits.taste-benefits--premium article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 6px 12px;
    padding: 16px;
  }
}

/* Process infographic override */
.flow-section.process {
  background:
    radial-gradient(circle at 88% 26%, rgba(208, 25, 22, 0.3), transparent 24%),
    linear-gradient(105deg, rgba(8, 6, 5, 0.98) 0%, rgba(8, 6, 5, 0.96) 48%, rgba(73, 13, 10, 0.72) 100%),
    var(--color-ink);
}

/* warehouse / loading-dock ambience, top-right — pure CSS perspective + red rim light */
.flow-section.process::after {
  content: "";
  display: none;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -4%;
  width: min(52vw, 720px);
  height: 64%;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(78% 70% at 84% 6%, rgba(226, 26, 22, 0.26), transparent 60%),
    repeating-conic-gradient(from 208deg at 88% 0%, rgba(244, 238, 226, 0.06) 0 0.35deg, transparent 0.35deg 5.6deg),
    repeating-linear-gradient(0deg, rgba(244, 238, 226, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(244, 238, 226, 0.045) 0 1px, transparent 1px 52px);
  mask-image: radial-gradient(120% 100% at 86% 0%, #000 38%, transparent 80%);
}

.flow-section.process .section-head {
  width: min(100%, 1180px);
  margin-bottom: clamp(32px, 4.8vw, 64px);
  align-items: flex-start;
  text-align: left;
}

.flow-section.process .eyebrow {
  color: var(--color-accent);
  text-shadow: 0 0 18px rgba(208, 25, 22, 0.38);
}

.flow-section.process .section-head .process-subtitle {
  margin-top: clamp(12px, 1.4vw, 18px);
  color: rgba(244, 238, 226, 0.6);
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.012em;
}

.process-map {
  /* vertical center of the emblem band — route line + arrows align to it */
  --line-y: clamp(46px, 4vw, 60px);
  position: relative;
  width: 100%;
  margin-top: clamp(4px, 1vw, 12px);
}

.process-map::before {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  left: max(18px, 2.4%);
  right: max(18px, 3%);
  top: var(--line-y);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(226, 26, 22, 0.9) 0 5px, transparent 5px 13px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  filter: drop-shadow(0 0 6px rgba(226, 26, 22, 0.55));
  transform: translateY(-50%);
}

/* travelling light pulse along the route */
.process-map::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: max(18px, 2.4%);
  right: max(18px, 3%);
  top: var(--line-y);
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 196, 188, 0.95) 50%, transparent 100%);
  background-size: 24% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 9px rgba(226, 26, 22, 0.85));
  animation: routeFlow 4.8s linear infinite;
}

.flow-section .process-list.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
  width: 100%;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.flow-section .process-list.process-flow .process-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(12px, 1.2vw, 18px);
  min-height: clamp(244px, 20vw, 292px);
  padding: clamp(20px, 2vw, 30px);
  overflow: visible;
  border: 1px solid rgba(244, 238, 226, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent, rgba(226, 26, 22, 0.85) 18%, rgba(255, 90, 80, 0.95) 50%, rgba(226, 26, 22, 0.85) 82%, transparent) top / 100% 2px no-repeat,
    linear-gradient(135deg, rgba(244, 238, 226, 0.1), transparent 20% 80%, rgba(208, 25, 22, 0.12)),
    radial-gradient(circle at 88% 18%, rgba(201, 121, 36, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.07), rgba(8, 6, 5, 0.32)),
    #120d0b;
  box-shadow:
    inset 0 1px 0 rgba(244, 238, 226, 0.11),
    inset 0 0 36px rgba(0, 0, 0, 0.26),
    0 26px 74px rgba(0, 0, 0, 0.36);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.flow-section .process-list.process-flow .process-step::before {
  inset: 10px;
  border-color: rgba(244, 238, 226, 0.07);
  border-radius: calc(var(--radius) - 2px);
  clip-path: inherit;
}

.flow-section .process-list.process-flow .process-step::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: auto;
  top: var(--line-y);
  right: -32px;
  bottom: auto;
  width: clamp(18px, 1.9vw, 30px);
  height: 16px;
  background:
    linear-gradient(90deg, rgba(226, 26, 22, 0.95), rgba(226, 26, 22, 0.95)) left 50% / calc(100% - 8px) 2px no-repeat,
    linear-gradient(45deg, transparent 45%, rgba(226, 26, 22, 0.95) 46% 56%, transparent 57%) right 2px top 2px / 14px 7px no-repeat,
    linear-gradient(-45deg, transparent 45%, rgba(226, 26, 22, 0.95) 46% 56%, transparent 57%) right 2px bottom 2px / 14px 7px no-repeat;
  filter: drop-shadow(0 0 9px rgba(226, 26, 22, 0.8));
  box-shadow: none;
  transform: translateY(-50%);
}

.flow-section .process-list.process-flow .process-step:last-child::after {
  right: -31px;
}

.process-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: clamp(18px, 2vw, 28px);
  border-bottom: 1px solid rgba(244, 238, 226, 0.08);
}

.flow-section .process-list.process-flow .process-number {
  display: none;
  align-self: flex-start;
  margin-top: 4px;
  color: rgba(244, 238, 226, 0.42);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1;
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px rgba(226, 26, 22, 0.25);
}

.process-emblem,
.process-launch-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  isolation: isolate;
}

/* Large circular icon-emblem = primary element of each step card */
.process-emblem {
  width: clamp(54px, 4.6vw, 64px);
  height: clamp(54px, 4.6vw, 64px);
  border-radius: 16px;
  color: #f3e7d8;
  background:
    radial-gradient(circle at 50% 30%, rgba(226, 26, 22, 0.32), transparent 62%),
    radial-gradient(circle at 50% 118%, rgba(26, 17, 14, 0.95), rgba(10, 7, 6, 0.98)),
    #0d0908;
  border: 1px solid rgba(226, 26, 22, 0.5);
  box-shadow:
    0 0 0 1px rgba(244, 238, 226, 0.05),
    0 0 16px rgba(226, 26, 22, 0.32),
    inset 0 0 14px rgba(226, 26, 22, 0.2),
    inset 0 1px 0 rgba(244, 238, 226, 0.12);
  animation: emblemPulse 4.8s ease-in-out infinite;
}

/* outer glowing ring */
.process-emblem::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -6px;
  border-radius: 19px;
  border: 1px solid rgba(226, 26, 22, 0.26);
  box-shadow: 0 0 16px rgba(226, 26, 22, 0.3);
}

/* inner metallic bevel */
.process-emblem::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 12px;
  border: 1px solid rgba(244, 238, 226, 0.1);
  background: linear-gradient(180deg, rgba(244, 238, 226, 0.07), transparent 55%);
  pointer-events: none;
}

.process-emblem svg {
  width: 46%;
  height: 46%;
}

.process-launch-icon svg {
  width: 50%;
  height: 50%;
}

.process-emblem path,
.process-emblem circle,
.process-launch-icon path,
.process-launch-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-section .process-list.process-flow h3 {
  max-width: 220px;
  margin: clamp(4px, 0.8vw, 10px) 0 0;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 0.95;
  text-transform: uppercase;
}

.flow-section .process-list.process-flow p {
  max-width: 260px;
  margin: 0;
  color: rgba(244, 238, 226, 0.78);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.42;
}

.process-launch {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: clamp(176px, 16vw, 234px);
  align-self: center;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid rgba(226, 26, 22, 0.44);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 38%, rgba(226, 26, 22, 0.28), transparent 46%),
    linear-gradient(180deg, rgba(56, 8, 6, 0.74), rgba(8, 6, 5, 0.9));
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.08), 0 0 42px rgba(226, 26, 22, 0.24);
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 22px), 0 22px);
}

.process-launch::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 238, 226, 0.07);
  pointer-events: none;
}

.process-launch-icon {
  width: clamp(80px, 7vw, 104px);
  height: clamp(80px, 7vw, 104px);
  border-radius: 50%;
  color: #ff6a5d;
  background:
    radial-gradient(circle at 50% 32%, rgba(226, 26, 22, 0.5), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(44, 9, 7, 0.96), rgba(14, 8, 7, 0.98)),
    #170a09;
  border: 1px solid rgba(226, 26, 22, 0.72);
  box-shadow:
    0 0 30px rgba(226, 26, 22, 0.55),
    inset 0 0 22px rgba(226, 26, 22, 0.35),
    inset 0 1px 0 rgba(244, 238, 226, 0.14);
  animation: emblemPulse 4.8s ease-in-out infinite;
}

.process-launch-icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(226, 26, 22, 0.3);
  box-shadow: 0 0 18px rgba(226, 26, 22, 0.34);
}

.process-launch strong {
  position: relative;
  z-index: 1;
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 0.95;
  text-shadow: 0 0 20px rgba(226, 26, 22, 0.42);
}

.process-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  width: min(100%, 1240px);
  margin: clamp(34px, 5vw, 62px) auto 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}

.process-benefits li {
  position: relative;
  display: grid;
  grid-template-columns: clamp(66px, 5.4vw, 78px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 6px 16px;
  min-height: 112px;
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
  border: var(--kgb-panel-border);
  background: var(--kgb-panel-glass);
  box-shadow: var(--kgb-panel-shadow);
  clip-path: var(--kgb-panel-clip);
  backdrop-filter: blur(12px);
}

.process-benefits li::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 238, 226, 0.06);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  clip-path: inherit;
}

.process-benefits li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 62px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e21a16 18% 82%, transparent);
  box-shadow: 0 0 16px rgba(226, 26, 22, 0.72), 0 0 34px rgba(226, 26, 22, 0.34);
  transform: translateX(-50%);
  pointer-events: none;
}

.process-benefits strong {
  align-self: end;
  color: var(--color-paper-dim);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 0.95;
  text-transform: uppercase;
}

.process-benefits p {
  grid-column: 2;
  margin: 0;
  color: rgba(244, 238, 226, 0.58);
  font-size: 13.5px;
  line-height: 1.35;
}

.process-benefit-icon {
  position: relative;
  grid-row: 1 / span 2;
  width: clamp(58px, 4.8vw, 70px);
  height: clamp(58px, 4.8vw, 70px);
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(226, 26, 22, 0.46);
  border-radius: 16px;
  color: #f3e7d8;
  background:
    radial-gradient(circle at 50% 30%, rgba(226, 26, 22, 0.32), transparent 62%),
    radial-gradient(circle at 50% 118%, rgba(26, 17, 14, 0.95), rgba(10, 7, 6, 0.98)),
    #0d0908;
  box-shadow:
    0 0 0 1px rgba(244, 238, 226, 0.05),
    0 0 16px rgba(226, 26, 22, 0.28),
    inset 0 0 14px rgba(226, 26, 22, 0.18),
    inset 0 1px 0 rgba(244, 238, 226, 0.12);
}

.process-benefit-icon::before,
.process-benefit-icon::after,
.process-benefit-icon b {
  content: "";
  position: absolute;
  display: block;
}

.process-benefit-icon b {
  background: rgba(244, 238, 226, 0.72);
}

.process-benefit-icon.has-svg::before,
.process-benefit-icon.has-svg::after {
  content: none;
}

.process-benefit-icon.has-svg svg {
  width: 100%;
  height: 100%;
}

.process-benefit-icon.has-svg path,
.process-benefit-icon.has-svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-benefit-reliability::before {
  left: 18px;
  right: 18px;
  top: 12px;
  bottom: 12px;
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.8), rgba(244, 238, 226, 0.34)),
    rgba(226, 26, 22, 0.34);
  clip-path: polygon(50% 0, 84% 12%, 76% 70%, 50% 100%, 24% 70%, 16% 12%);
}

.process-benefit-reliability::after {
  left: 22px;
  right: 22px;
  top: 17px;
  bottom: 17px;
  background: rgba(8, 6, 5, 0.86);
  clip-path: polygon(50% 0, 84% 12%, 76% 70%, 50% 100%, 24% 70%, 16% 12%);
}

.process-benefit-reliability b:nth-child(1) {
  left: 27px;
  top: 36px;
  width: 11px;
  height: 3px;
  background: var(--color-accent);
  transform: rotate(42deg);
}

.process-benefit-reliability b:nth-child(2) {
  left: 35px;
  top: 32px;
  width: 18px;
  height: 3px;
  background: var(--color-accent);
  transform: rotate(-48deg);
}

.process-benefit-reliability b:nth-child(3) {
  left: 50%;
  top: 22px;
  width: 3px;
  height: 12px;
  background: rgba(244, 238, 226, 0.42);
  transform: translateX(-50%);
}

.process-benefit-precision::before {
  inset: 14px;
  border: 2px solid rgba(244, 238, 226, 0.68);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(226, 26, 22, 0.06);
}

.process-benefit-precision::after {
  inset: 8px;
  background:
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center / 100% 2px no-repeat;
  opacity: 0.5;
}

.process-benefit-precision b:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(226, 26, 22, 0.8);
  transform: translate(-50%, -50%);
}

.process-benefit-precision b:nth-child(2) {
  left: 18px;
  top: 18px;
  width: 10px;
  height: 2px;
  background: rgba(244, 238, 226, 0.52);
}

.process-benefit-precision b:nth-child(3) {
  right: 18px;
  bottom: 18px;
  width: 10px;
  height: 2px;
  background: rgba(244, 238, 226, 0.52);
}

.process-benefit-speed::before {
  left: 20px;
  top: 11px;
  width: 31px;
  height: 46px;
  background:
    linear-gradient(180deg, #ffb08a, var(--color-accent));
  clip-path: polygon(58% 0, 20% 48%, 48% 48%, 34% 100%, 82% 38%, 54% 38%);
  filter: drop-shadow(0 0 10px rgba(226, 26, 22, 0.68));
}

.process-benefit-speed::after {
  left: 15px;
  right: 15px;
  bottom: 15px;
  height: 1px;
  background: rgba(244, 238, 226, 0.28);
}

.process-benefit-speed b:nth-child(1),
.process-benefit-speed b:nth-child(2),
.process-benefit-speed b:nth-child(3) {
  height: 2px;
  background: rgba(244, 238, 226, 0.58);
}

.process-benefit-speed b:nth-child(1) {
  left: 14px;
  top: 22px;
  width: 14px;
}

.process-benefit-speed b:nth-child(2) {
  left: 10px;
  top: 30px;
  width: 18px;
}

.process-benefit-speed b:nth-child(3) {
  left: 15px;
  top: 38px;
  width: 11px;
}

.process-benefit-partnership::before {
  left: 17px;
  right: 17px;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(244, 238, 226, 0.22), var(--color-accent), rgba(244, 238, 226, 0.22));
  transform: rotate(-12deg);
}

.process-benefit-partnership::after {
  left: 29px;
  top: 25px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(244, 238, 226, 0.68);
  border-radius: 50%;
  box-shadow:
    12px -6px 0 -7px rgba(226, 26, 22, 0.95),
    -12px 8px 0 -7px rgba(201, 121, 36, 0.9);
}

.process-benefit-partnership b:nth-child(1),
.process-benefit-partnership b:nth-child(2),
.process-benefit-partnership b:nth-child(3) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 238, 226, 0.9) 0 2px, transparent 3px),
    var(--color-accent);
  box-shadow: 0 0 12px rgba(226, 26, 22, 0.55);
}

.process-benefit-partnership b:nth-child(1) {
  left: 16px;
  top: 38px;
}

.process-benefit-partnership b:nth-child(2) {
  right: 16px;
  top: 22px;
}

.process-benefit-partnership b:nth-child(3) {
  left: 50%;
  bottom: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 238, 226, 0.9) 0 2px, transparent 3px),
    rgba(201, 121, 36, 0.86);
  transform: translateX(-50%);
}

.process-benefit-icon.is-shield::before {
  inset: 4px 8px 3px;
  background:
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center / 100% 2px no-repeat;
  clip-path: polygon(50% 0, 88% 12%, 78% 75%, 50% 100%, 22% 75%, 12% 12%);
  opacity: 0.94;
}

.process-benefit-icon.is-shield::after {
  inset: 9px 13px 8px;
  background: rgba(8, 6, 5, 0.94);
  clip-path: polygon(50% 0, 88% 12%, 78% 75%, 50% 100%, 22% 75%, 12% 12%);
}

.process-benefit-icon.is-precision::before {
  inset: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(226, 26, 22, 0.06);
}

.process-benefit-icon.is-precision::after {
  inset: 0;
  background:
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center / 100% 2px no-repeat;
}

.process-benefit-icon.is-speed::before {
  inset: 7px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.process-benefit-icon.is-speed::after {
  left: -1px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 8px 8px 0 -6px currentColor;
}

.process-benefit-icon.is-partner::before,
.process-benefit-icon.is-partner::after {
  top: 18px;
  width: 22px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.process-benefit-icon.is-partner::before {
  left: 2px;
  transform: rotate(31deg);
}

.process-benefit-icon.is-partner::after {
  right: 2px;
  transform: rotate(-31deg);
}

@keyframes emblemPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(244, 238, 226, 0.05),
      0 0 22px rgba(226, 26, 22, 0.38),
      inset 0 0 18px rgba(226, 26, 22, 0.2),
      inset 0 1px 0 rgba(244, 238, 226, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(244, 238, 226, 0.07),
      0 0 36px rgba(226, 26, 22, 0.62),
      inset 0 0 24px rgba(226, 26, 22, 0.32),
      inset 0 1px 0 rgba(244, 238, 226, 0.14);
  }
}

@keyframes routeFlow {
  0% {
    background-position: -25% 0;
  }
  100% {
    background-position: 125% 0;
  }
}

.process-step:nth-child(2) .process-emblem {
  animation-delay: 0.6s;
}

.process-step:nth-child(3) .process-emblem {
  animation-delay: 1.2s;
}

.process-step:nth-child(4) .process-emblem {
  animation-delay: 1.8s;
}

@media (prefers-reduced-motion: reduce) {
  .process-emblem,
  .process-launch-icon {
    animation: none;
  }

  .process-map::after {
    animation: none;
    opacity: 0.55;
  }
}

@media (max-width: 1180px) {
  .process-map {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 940px);
  }

  .process-map::before,
  .process-map::after {
    display: none;
  }

  .flow-section .process-list.process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-section .process-list.process-flow .process-step::after {
    display: none;
  }

  .process-launch {
    width: min(100%, 360px);
    min-height: 150px;
    margin: 8px auto 0;
  }

  .process-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 940px);
  }
}

@media (max-width: 720px) {
  .flow-section.process .section-head {
    margin-bottom: 28px;
  }

  .process-map::before {
    display: none;
  }

  .flow-section .process-list.process-flow {
    position: relative;
    isolation: isolate;
  }

  .flow-section .process-list.process-flow::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 56px;
    top: 76px;
    bottom: 76px;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(226, 26, 22, 0.72) 10%, rgba(226, 26, 22, 0.72) 86%, transparent);
    pointer-events: none;
  }

  .flow-section .process-list.process-flow,
  .process-benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-section .process-list.process-flow .process-step {
    z-index: 1;
    min-height: 0;
    padding: 20px;
  }

  .process-card-top {
    padding-bottom: 16px;
  }

  .flow-section .process-list.process-flow h3,
  .flow-section .process-list.process-flow p {
    max-width: none;
  }

  .process-launch {
    justify-items: start;
    align-items: center;
    grid-template-columns: 76px minmax(0, 1fr);
    width: 100%;
    min-height: 112px;
    padding: 20px;
    text-align: left;
  }

  .process-launch-icon {
    width: 66px;
    height: 66px;
  }

  .process-benefits li {
    min-height: 0;
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .process-benefits li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 5px 12px;
  }

  .process-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
}

/* ============================================================
   Process — warehouse photo panel (right column) + launch badge overlay
   ============================================================ */
.process-photo {
  position: relative;
  isolation: isolate;
  align-self: stretch;
  min-height: clamp(244px, 20vw, 292px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 26, 22, 0.42);
  border-radius: var(--radius);
  background: #0d0908;
  box-shadow:
    inset 0 1px 0 rgba(244, 238, 226, 0.08),
    0 26px 74px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(226, 26, 22, 0.2);
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 22px), 0 22px);
}

.process-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  filter: brightness(0.72) contrast(1.04) saturate(0.86);
}

/* red duotone grade */
.process-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(155deg, rgba(226, 26, 22, 0.52) 0%, rgba(150, 16, 12, 0.24) 46%, rgba(8, 6, 5, 0.1) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* scrim: darken top for badge, blend left edge into cards, deepen bottom */
.process-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.8) 0%, rgba(8, 6, 5, 0.12) 30%, transparent 52%, rgba(8, 6, 5, 0.5) 88%, rgba(8, 6, 5, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.86) 0%, transparent 26%),
    radial-gradient(120% 80% at 70% 28%, rgba(226, 26, 22, 0.24), transparent 60%);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* launch badge — overlay on the photo (replaces the old standalone card) */
.process-photo .process-launch {
  position: absolute;
  inset: 52% 0 auto 0;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(8px, 1vw, 12px);
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0 14px;
  border: 0;
  background: none;
  box-shadow: none;
  clip-path: none;
  text-align: center;
}

.process-photo .process-launch::before {
  display: none;
}

.process-photo .process-launch-icon {
  width: clamp(58px, 5vw, 74px);
  height: clamp(58px, 5vw, 74px);
}

.process-photo .process-launch strong {
  max-width: 9ch;
  color: #ff5247;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 0.96;
  text-shadow: 0 0 22px rgba(226, 26, 22, 0.65), 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* responsive: photo becomes a banner below the cards */
@media (max-width: 1180px) {
  .process-photo {
    width: min(100%, 940px);
    height: clamp(220px, 34vw, 300px);
    min-height: 0;
    margin: 10px auto 0;
  }

  .process-photo .process-launch {
    inset: auto auto 16px 20px;
    width: auto;
    padding: 0;
    grid-auto-flow: column;
    align-items: center;
    justify-items: start;
    gap: 14px;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .process-photo {
    height: clamp(200px, 52vw, 260px);
  }

  .process-photo .process-launch strong {
    font-size: clamp(20px, 5vw, 26px);
  }
}

/* outro tagline + handshake icon weight */
.process-outro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 18px);
  width: 100%;
  margin: clamp(26px, 3vw, 40px) 0 0;
  color: rgba(244, 238, 226, 0.62);
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.process-outro-mark {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(226, 26, 22, 0.6);
}

.process-benefit-icon.benefit-lucide path {
  stroke-width: 1.5;
}

/* two-column shell: headline + cards on the left, tall warehouse photo on the right */
.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: clamp(18px, 2.2vw, 38px);
  align-items: stretch;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.process-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (max-width: 1180px) {
  .process-inner {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 940px);
  }
}

/* ============================================================
   Process-style rollout — cinematic red logistics language
   ============================================================ */
:root {
  --kgb-cinema-bg:
    radial-gradient(circle at 86% 18%, rgba(226, 26, 22, 0.22), transparent 27%),
    radial-gradient(circle at 18% 78%, rgba(201, 121, 36, 0.12), transparent 30%),
    linear-gradient(105deg, rgba(8, 6, 5, 0.99) 0%, rgba(8, 6, 5, 0.96) 48%, rgba(56, 12, 9, 0.72) 100%),
    var(--color-ink);
  --kgb-panel-glass:
    linear-gradient(90deg, transparent, rgba(226, 26, 22, 0.76) 18%, rgba(255, 90, 80, 0.9) 50%, rgba(226, 26, 22, 0.76) 82%, transparent) top / 100% 2px no-repeat,
    linear-gradient(135deg, rgba(244, 238, 226, 0.09), transparent 22% 78%, rgba(208, 25, 22, 0.11)),
    radial-gradient(circle at 84% 18%, rgba(201, 121, 36, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.066), rgba(8, 6, 5, 0.36)),
    rgba(18, 13, 11, 0.86);
  --kgb-panel-border: 1px solid rgba(244, 238, 226, 0.19);
  --kgb-panel-clip: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  --kgb-panel-shadow:
    inset 0 1px 0 rgba(244, 238, 226, 0.11),
    inset 0 0 38px rgba(0, 0, 0, 0.24),
    0 28px 78px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(226, 26, 22, 0.12);
}

.product-video,
.flavor-story,
.catalog-section,
.lead-section,
.site-footer {
  position: relative;
  isolation: isolate;
}

.product-video,
.flavor-story,
.catalog-section,
.lead-section {
  background: var(--kgb-cinema-bg);
}

.product-video::before,
.flavor-story::before,
.catalog-section::before,
.lead-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(201, 121, 36, 0.2) 0 1px, transparent 1px calc(100% - 1px), rgba(201, 121, 36, 0.18) calc(100% - 1px)),
    radial-gradient(circle at 18% 24%, rgba(244, 238, 226, 0.14) 0 1px, transparent 1.45px),
    radial-gradient(circle at 78% 62%, rgba(226, 26, 22, 0.16) 0 1px, transparent 1.45px);
  background-size: 100% 100%, 74px 68px, 116px 104px;
  mix-blend-mode: screen;
}

.product-video::after,
.flavor-story::after,
.catalog-section::after,
.lead-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 238, 226, 0.055), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 28%, rgba(0, 0, 0, 0.48));
}

.product-video--pistachio,
.flavor-story--pistachio {
  background:
    radial-gradient(circle at 82% 20%, rgba(96, 150, 64, 0.16), transparent 24%),
    radial-gradient(circle at 74% 44%, rgba(226, 26, 22, 0.18), transparent 32%),
    linear-gradient(105deg, rgba(5, 6, 4, 0.99), rgba(8, 6, 5, 0.96) 52%, rgba(41, 48, 21, 0.38)),
    var(--color-ink);
}

.product-video .video-panel,
.product-video .pistachio-video-panel,
.product-video .format-strip,
.product-video .format-card,
.flavor-story .taste-benefits,
.flavor-story .pistachio-benefits.taste-benefits--premium,
.flavor-story .taste-benefits article,
.flavor-story .pistachio-benefits.taste-benefits--premium article,
.flavor-story .taste-mascot figcaption,
.flavor-story .pistachio-lab-mascot figcaption,
.catalog-section .matrix-item,
.lead-section .lead-note,
.lead-section .lead-form {
  border: var(--kgb-panel-border);
  background: var(--kgb-panel-glass);
  box-shadow: var(--kgb-panel-shadow);
  clip-path: var(--kgb-panel-clip);
}

.product-video .video-panel,
.product-video .pistachio-video-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(226, 26, 22, 0.3);
}

.product-video .video-panel::before,
.catalog-section .matrix-video-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(226, 26, 22, 0.24), rgba(8, 6, 5, 0.04) 46%, rgba(8, 6, 5, 0.16)),
    radial-gradient(100% 80% at 70% 24%, rgba(226, 26, 22, 0.18), transparent 62%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.product-video .video-panel::after,
.catalog-section .matrix-video-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.46), transparent 28%, transparent 60%, rgba(8, 6, 5, 0.54)),
    linear-gradient(90deg, rgba(8, 6, 5, 0.42), transparent 28%, rgba(8, 6, 5, 0.2));
  pointer-events: none;
}

.product-video .video-panel video,
.catalog-section .matrix-video-frame video {
  position: relative;
  z-index: 1;
  filter: brightness(0.88) contrast(1.06) saturate(0.96);
}

.product-video--pistachio .video-panel {
  border-color: rgba(96, 150, 64, 0.32);
}

.product-video--pistachio .video-panel::before,
.product-video--pistachio .format-card::before,
.flavor-story--pistachio .pistachio-benefits.taste-benefits--premium article::before {
  background:
    linear-gradient(90deg, transparent, rgba(184, 206, 63, 0.5), rgba(226, 26, 22, 0.58), transparent) top / 100% 2px no-repeat;
}

.product-video .format-strip,
.flavor-story .taste-benefits,
.flavor-story .pistachio-benefits.taste-benefits--premium {
  gap: clamp(12px, 1.4vw, 20px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.product-video .format-card,
.flavor-story .taste-benefits article,
.flavor-story .pistachio-benefits.taste-benefits--premium article,
.catalog-section .matrix-item,
.lead-section .lead-note,
.lead-section .lead-form {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.product-video .format-card::before,
.flavor-story .taste-benefits article::before,
.flavor-story .pistachio-benefits.taste-benefits--premium article::before,
.catalog-section .matrix-item::before,
.lead-section .lead-note::before,
.lead-section .lead-form::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 238, 226, 0.06);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  clip-path: inherit;
}

.product-video .format-card::after,
.flavor-story .taste-benefits article::after,
.flavor-story .pistachio-benefits.taste-benefits--premium article::after,
.catalog-section .matrix-item::after,
.lead-section .lead-note::after,
.lead-section .lead-form::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 62px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e21a16 18% 82%, transparent);
  box-shadow: 0 0 16px rgba(226, 26, 22, 0.72), 0 0 34px rgba(226, 26, 22, 0.34);
  transform: translateX(-50%);
  pointer-events: none;
}

.product-video .format-card img,
.flavor-story .taste-creative-image,
.flavor-story .pistachio-lab-creative img {
  filter:
    saturate(1.04)
    contrast(1.05)
    drop-shadow(0 28px 48px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 28px rgba(226, 26, 22, 0.14));
}

.flavor-story .taste-hero,
.flavor-story .pistachio-lab-hero {
  min-height: clamp(520px, 40vw, 680px);
}

.flavor-story .taste-creative,
.flavor-story .pistachio-lab-creative {
  isolation: isolate;
}

.flavor-story .taste-creative::after,
.flavor-story .pistachio-lab-creative::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8% 2% 2%;
  background:
    radial-gradient(ellipse at 50% 66%, rgba(226, 26, 22, 0.2), transparent 58%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
  filter: blur(18px);
  pointer-events: none;
}

.flavor-story--pistachio .pistachio-lab-creative::after {
  background:
    radial-gradient(ellipse at 50% 66%, rgba(96, 150, 64, 0.17), transparent 58%),
    radial-gradient(ellipse at 48% 64%, rgba(226, 26, 22, 0.12), transparent 52%);
}

.flavor-story .taste-benefit i {
  border-radius: 16px;
  color: #f3e7d8;
  background:
    radial-gradient(circle at 50% 30%, rgba(226, 26, 22, 0.32), transparent 62%),
    radial-gradient(circle at 50% 118%, rgba(26, 17, 14, 0.95), rgba(10, 7, 6, 0.98)),
    #0d0908;
  border: 1px solid rgba(226, 26, 22, 0.46);
  box-shadow:
    0 0 0 1px rgba(244, 238, 226, 0.05),
    0 0 16px rgba(226, 26, 22, 0.28),
    inset 0 0 14px rgba(226, 26, 22, 0.18),
    inset 0 1px 0 rgba(244, 238, 226, 0.12);
}

.flavor-story .taste-mascot figcaption,
.flavor-story .pistachio-lab-mascot figcaption {
  background:
    linear-gradient(135deg, rgba(244, 238, 226, 0.08), rgba(8, 6, 5, 0.3)),
    rgba(8, 6, 5, 0.74);
  clip-path: var(--kgb-panel-clip);
}

.catalog-section .product-matrix {
  gap: clamp(14px, 1.6vw, 24px);
}

.catalog-section .matrix-item {
  min-height: clamp(390px, 33vw, 520px);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.catalog-section .matrix-item:hover,
.catalog-section .matrix-item:focus-within {
  border-color: rgba(226, 26, 22, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(244, 238, 226, 0.12),
    0 32px 88px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(226, 26, 22, 0.18);
  transform: translateY(-3px);
}

.catalog-section .matrix-item.is-featured-pistachio:hover {
  border-color: rgba(184, 206, 63, 0.44);
}

.catalog-section .matrix-video-frame {
  position: relative;
  overflow: hidden;
  border-color: rgba(226, 26, 22, 0.2);
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 26, 22, 0.16), transparent 64%),
    rgba(8, 6, 5, 0.82);
}

.catalog-section .matrix-item.is-featured-pistachio .matrix-video-frame {
  border-color: rgba(96, 150, 64, 0.3);
}

.catalog-section .matrix-item > span {
  text-shadow: 0 0 22px rgba(226, 26, 22, 0.42);
}

.lead-section {
  background:
    radial-gradient(ellipse at 68% 28%, rgba(226, 26, 22, 0.14), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(201, 121, 36, 0.14), transparent 30%),
    linear-gradient(105deg, rgba(8, 6, 5, 0.99) 0%, rgba(8, 6, 5, 0.98) 58%, rgba(10, 7, 6, 0.98) 100%),
    var(--color-ink);
}

.lead-section .lead-copy {
  position: relative;
}

.lead-section .lead-copy::after {
  content: "";
  display: block;
  width: min(280px, 70%);
  height: 2px;
  margin-top: clamp(22px, 3vw, 36px);
  background: repeating-linear-gradient(90deg, rgba(226, 26, 22, 0.92) 0 6px, transparent 6px 14px);
  filter: drop-shadow(0 0 8px rgba(226, 26, 22, 0.55));
}

.lead-section .lead-form label {
  position: relative;
  z-index: 1;
}

.lead-form .lead-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-color: rgba(244, 238, 226, 0.18);
  background:
    linear-gradient(180deg, rgba(244, 238, 226, 0.052), rgba(8, 6, 5, 0.4)),
    rgba(8, 6, 5, 0.48);
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
  border-color: rgba(226, 26, 22, 0.46);
}

.lead-form .form-consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  border: 0;
  box-shadow: none;
}

.lead-form .form-consent span {
  min-width: 0;
}

.lead-form .form-status {
  position: relative;
  z-index: 1;
}

.site-footer {
  overflow: hidden;
  border-top: 1px solid rgba(226, 26, 22, 0.26);
  background:
    radial-gradient(circle at 82% 20%, rgba(226, 26, 22, 0.18), transparent 28%),
    linear-gradient(105deg, rgba(8, 6, 5, 0.98), rgba(38, 9, 7, 0.72)),
    var(--color-ink);
  box-shadow: inset 0 1px 0 rgba(244, 238, 226, 0.06);
}

.site-footer .brand {
  z-index: 1;
}

.site-footer p,
.site-footer .text-link {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.site-footer p {
  width: auto;
  max-width: 640px;
  word-break: normal;
  overflow-wrap: normal;
}

.footer-contacts {
  justify-self: end;
}

.footer-links {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-content: flex-start;
  width: 100%;
  margin-top: 4px;
}

.footer-links .text-link {
  white-space: nowrap;
}

.footer-copyright {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  color: rgba(244, 238, 226, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }

  .footer-contacts {
    justify-self: start;
  }
}

@media (max-width: 1180px) {
  .catalog-section .matrix-item {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .product-video .video-panel,
  .product-video .pistachio-video-panel,
  .product-video .format-card,
  .flavor-story .taste-benefits article,
  .flavor-story .pistachio-benefits.taste-benefits--premium article,
  .catalog-section .matrix-item,
  .lead-section .lead-note,
  .lead-section .lead-form {
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  }

  .flavor-story .taste-hero,
  .flavor-story .pistachio-lab-hero {
    min-height: 0;
  }

  .lead-section .lead-copy::after {
    width: 100%;
  }
}

/* Desktop composition fix: the pistachio bowl must sit in the scene, not float at the top. */
@media (min-width: 1181px) {
  .flavor-story--pistachio {
    padding-top: calc(var(--header-height) + clamp(18px, 2.8vw, 44px));
  }

  .flavor-story--pistachio .pistachio-lab-hero {
    grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
    grid-template-rows: auto;
    align-items: center;
    min-height: clamp(560px, 38vw, 660px);
    margin-bottom: clamp(14px, 2vw, 28px);
  }

  .flavor-story--pistachio .pistachio-lab-intro {
    align-self: center;
    transform: translateY(clamp(-18px, -1.2vw, -8px));
  }

  .flavor-story--pistachio .pistachio-lab-creative {
    grid-row: 1;
    align-self: center;
    justify-self: end;
    width: min(106%, 1080px);
    margin-right: clamp(-28px, -1.4vw, -12px);
    transform: translate(clamp(10px, 1.4vw, 28px), clamp(24px, 3.5vw, 58px));
  }

  .flavor-story--pistachio .pistachio-lab-creative::before {
    bottom: -2%;
    height: 24%;
  }

  .flavor-story--pistachio .pistachio-lab-creative::after {
    inset: 20% 0 -10%;
  }

  .flavor-story--pistachio .pistachio-lab-mascot {
    display: none;
  }

  .flavor-story--pistachio .pistachio-benefits.taste-benefits--premium {
    margin-top: clamp(-8px, -0.6vw, -2px);
  }
}

@media (max-width: 720px) {
  .flavor-story--pistachio .pistachio-benefits.taste-benefits--premium article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 6px 14px;
  }

  .flavor-story--pistachio .pistachio-benefits.taste-benefits--premium .taste-benefit i {
    width: 44px;
    height: 44px;
    overflow: hidden;
  }

  .flavor-story--pistachio .pistachio-benefits.taste-benefits--premium .taste-benefit i::before,
  .flavor-story--pistachio .pistachio-benefits.taste-benefits--premium .taste-benefit i::after,
  .flavor-story--pistachio .pistachio-benefits.taste-benefits--premium .taste-benefit i b {
    display: none;
  }

  .flavor-story--pistachio .pistachio-benefits.taste-benefits--premium .taste-benefit i {
    background:
      radial-gradient(circle at 50% 48%, rgba(226, 26, 22, 0.34), transparent 54%),
      linear-gradient(135deg, rgba(244, 238, 226, 0.06), rgba(8, 6, 5, 0.4)),
      rgba(8, 6, 5, 0.72);
  }
}

/* 2026-06-09 desktop typography clarity */
:root {
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --type-display-tracking: 0.008em;
  --type-label-tracking: 0.04em;
  --type-button-tracking: 0.028em;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@media (min-width: 901px) {
  body {
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  .hero-title-line,
  .eyebrow,
  .nav a,
  .header-cta,
  .header-phone,
  .btn,
  .text-link,
  .feature-row span,
  .format-card span,
  .format-card strong,
  .hero-info-item strong,
  .taste-proof strong,
  .taste-proof span,
  .flavor-story .taste-benefits span,
  .catalog-section .matrix-item > span,
  .flow-section .process-list span,
  .flow-section .process-list.process-flow h3,
  .process-benefits strong,
  .process-launch strong,
  .legal-document h1,
  .legal-document h2 {
    letter-spacing: var(--type-display-tracking);
    text-rendering: geometricPrecision;
  }

  h1,
  h2,
  h3,
  .hero-title-line,
  .eyebrow,
  .nav a,
  .header-cta,
  .header-phone,
  .btn,
  .text-link,
  .feature-row span,
  .format-card span,
  .format-card strong,
  .hero-info-item strong,
  .taste-proof strong,
  .taste-proof span,
  .flavor-story .taste-benefits span,
  .catalog-section .matrix-item > span,
  .flow-section .process-list span,
  .flow-section .process-list.process-flow h3,
  .process-benefits strong,
  .process-launch strong {
    font-weight: 900;
  }

  h1,
  h2,
  .hero-title-line {
    -webkit-text-stroke-width: 0;
    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.58));
  }

  h2,
  .taste-intro h2 span,
  .pistachio-lab-intro h2 span,
  .flavor-story .taste-intro h2 span,
  .flavor-story .pistachio-lab-intro h2 span,
  .taste-intro h2 span:last-child,
  .flavor-story .taste-intro h2 span:last-child,
  .flavor-story .pistachio-lab-intro h2 span:last-child {
    background: linear-gradient(180deg, #fff4dc 0%, #dfcfb8 62%, #ad9d85 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  h1,
  h2 {
    line-height: 0.98;
  }

  h3 {
    line-height: 1.04;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.48);
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(52px, 4.1vw, 78px);
    line-height: 0.98;
  }

  .hero-title-line {
    background: linear-gradient(180deg, #fff4dc 0%, #e0d0b7 58%, #b3a188 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .hero-title-red {
    background: linear-gradient(180deg, #ff3a32 0%, #d51d18 58%, #8d0c09 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.62));
  }

  .hero-title-red,
  .taste-intro h2 span:last-child,
  .pistachio-lab-intro h2 span:last-child,
  .flavor-story .taste-intro h2 span:last-child,
  .flavor-story .pistachio-lab-intro h2 span:last-child {
    background: linear-gradient(180deg, #ff3a32 0%, #d51d18 58%, #8d0c09 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .hero-content {
    width: min(720px, 100%);
    max-width: 720px;
  }

  .product-video h2,
  .catalog-section h2,
  .flow-section h2,
  .lead-section h2 {
    max-width: 1140px;
    font-size: clamp(42px, 4.1vw, 70px);
    line-height: 1.02;
  }

  .flavor-story .taste-intro h2,
  .flavor-story .pistachio-lab-intro h2 {
    max-width: 620px;
    font-size: clamp(52px, 5.1vw, 88px);
    line-height: 0.98;
  }

  .flagship-head h2 {
    max-width: 1160px;
    font-size: clamp(44px, 4.7vw, 74px);
    line-height: 1;
  }

  .pistachio-focus .section-copy h2,
  .pistachio-video .section-copy h2 {
    font-size: clamp(40px, 3.9vw, 66px);
    line-height: 1.02;
  }

  .section-copy p,
  .section-head p,
  .lead-copy p,
  .product-video .section-copy p:not(.eyebrow),
  .product-video .flagship-head p:not(.eyebrow),
  .catalog-section .section-head p:not(.eyebrow),
  .flow-section .section-head p:not(.eyebrow),
  .lead-section .lead-copy p:not(.eyebrow),
  .flavor-story .taste-intro p:not(.taste-kicker),
  .flavor-story .taste-kicker {
    font-size: clamp(16px, 1.08vw, 19px);
    line-height: 1.5;
  }

  .hero-info-item strong {
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.14;
  }

  .hero-info-item.is-margin strong {
    font-size: clamp(14px, 0.98vw, 17px);
  }

  .format-card span,
  .catalog-section .matrix-item > span,
  .flow-section .process-list span {
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 0.98;
  }

  .format-card strong,
  .flavor-story .taste-benefits h3,
  .catalog-section .matrix-item h3,
  .flow-section .process-list.process-flow h3,
  .process-benefits strong {
    line-height: 1.05;
  }

  .flow-section .process-list.process-flow h3 {
    max-width: 300px;
    font-size: clamp(22px, 1.8vw, 30px);
  }

  .eyebrow,
  .header-contact-label,
  .hero-info-item em,
  .nav a,
  .header-cta,
  .btn,
  .text-link,
  .feature-row span {
    letter-spacing: var(--type-label-tracking);
  }

  .nav a,
  .header-cta,
  .btn {
    letter-spacing: var(--type-button-tracking);
  }

  .nav a {
    min-width: clamp(124px, 10.6vw, 178px);
    font-size: clamp(12px, 0.9vw, 14px);
  }

  .header-cta {
    font-size: 14px;
  }

  .header-phone {
    font-size: 17px;
    letter-spacing: 0.012em;
  }

  .btn {
    font-size: 15px;
  }

  .text-link {
    font-size: clamp(18px, 1.2vw, 21px);
    line-height: 1.08;
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  .hero h1 {
    font-size: clamp(46px, 4.7vw, 60px);
  }

  .product-video h2,
  .catalog-section h2,
  .flow-section h2,
  .lead-section h2,
  .flagship-head h2 {
    font-size: clamp(38px, 4.7vw, 58px);
  }

  .nav a {
    min-width: clamp(106px, 9.6vw, 134px);
    padding-inline: 10px;
    font-size: 12px;
  }
}
