/* Eat The Truth. — Site styles */

@font-face {
  font-family: "DaisyWheel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("DaisyWheel"),
    url("../fonts/DaisyWheel.woff2") format("woff2"),
    url("../fonts/DaisyWheel.otf") format("opentype");
}

@font-face {
  font-family: "Roc Grotesk Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/RocGrotesk-CondensedBold.woff2") format("woff2");
}

@font-face {
  font-family: "Neonoir W01 Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NeonoirW01-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Neonoir W01 Slim";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NeonoirW01-Slim.woff2") format("woff2");
}

@font-face {
  font-family: "Neonoir W01 Hand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NeonoirW01-Hand.woff2") format("woff2");
}

:root {
  --orange: #fe6900;
  --yellow: #fac814;
  --brown: #974605;
  --green: #52ae32;
  --promo: #e00000;
  --black: #000000;
  --white: #ffffff;
  --max: 1280px;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "DaisyWheel", "Courier New", Courier, monospace;
  --font-script: "Neonoir W01 Bold", cursive;
  --font-hand: "Neonoir W01 Hand", cursive;
  --font-condensed: "Roc Grotesk Condensed", "Arial Narrow", Impact, sans-serif;
  --brutal-shadow: 6px 6px 0 #000;
  --grey-texture: #8a8a8a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: var(--black);
  background: var(--white);
  overflow-x: clip;
  max-width: 100%;
}

p {
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

/* —— Hero —— */
.hero {
  position: relative;
  background: var(--orange);
  min-height: clamp(420px, 50vw, 639px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bar {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  z-index: 3;
}

.lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 45px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.lang__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.lang img,
.lang__toggle img {
  width: 32px;
  height: auto;
  transition: transform 0.2s ease;
}

.lang.is-open .lang__toggle img {
  transform: rotate(180deg);
}

.lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 5;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  min-width: 100%;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
}

.lang__menu[hidden] {
  display: none;
}

.lang__option {
  display: block;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

a.lang__option:hover,
a.lang__option:focus-visible {
  background: var(--orange);
}

.lang__option.is-current {
  opacity: 0.45;
  cursor: default;
}

.menu-btn img {
  width: clamp(36px, 4vw, 52px);
  height: auto;
}

/* Hand hangs from the top — slide reveal (toggle-style) */
.hero__hand-reveal {
  --hand-x: -35%;
  --hand-h: clamp(340px, 46.5vw, 480px);
  position: absolute;
  top: 0;
  left: 52%;
  z-index: 1;
  height: var(--hand-h);
  transform: translateX(var(--hand-x));
  overflow: hidden;
  pointer-events: none;
}

.hero__hand {
  display: block;
  height: var(--hand-h);
  width: auto;
  max-width: none;
  transform: translate3d(0, -100%, 0);
  animation: hand-slide-in 0.95s cubic-bezier(0.4, 0, 0.2, 1) 0.08s forwards;
  user-select: none;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes hand-slide-in {
  from { transform: translate3d(0, -100%, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  margin-right: clamp(40px, 8vw, 120px);
  padding-top: clamp(40px, 6vw, 80px);
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: left;
  width: 440px;
}

.hero__title span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0.4em, 0);
  animation: title-line 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__title span:nth-child(1) { animation-delay: 0.32s; }
.hero__title span:nth-child(2) { animation-delay: 0.46s; }
.hero__title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes title-line {
  from {
    opacity: 0;
    transform: translate3d(0, 0.4em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* —— Promo marquee —— */
.promo {
  background: var(--promo);
  color: var(--white);
  overflow: hidden;
  height: 62px;
  display: flex;
  align-items: center;
}

.promo__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.03em;
  line-height: 0.9;
  animation: marquee 28s linear infinite;
  padding-left: 40px;
  width: max-content;
}

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

/* —— Full-bleed photo —— */
.hero-photo {
  width: 100%;
  aspect-ratio: 1280 / 750;
  overflow: hidden;
  background: #111;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Shared split sections (full-bleed 50/50 like Figma) —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--white);
}

.split__media {
  position: relative;
  min-height: clamp(420px, 58.67vw, 751px);
  overflow: hidden;
  background: #eee;
}

.split__media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

.split__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(48px, 7vw, 100px) clamp(32px, 5.5vw, 80px) clamp(40px, 5vw, 72px);
  gap: 80px;
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 58.67vw, 751px);
}

.split__copy p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.3;
  display: inline-block;
  width: fit-content;
  padding: 0.18em 0.32em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.headline--yellow { background: var(--yellow); }
.headline--orange { background: var(--orange); }
.headline--brown { background: var(--brown); }
.headline--invert { color: var(--white); }

.headline--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: transparent;
  padding: 0;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.headline--stack span {
  background: var(--orange);
  padding: 0.18em 0.32em;
  display: inline-block;
}

.headline--stack[data-accent="orange"] span {
  background: var(--orange);
}

.headline--stack[data-accent="green"] span {
  background: var(--green);
}

.headline--stack[data-accent="yellow"] span {
  background: var(--yellow);
}

.headline--stack[data-accent="brown"] span {
  background: var(--brown);
  color: var(--white);
}

.text-link {
  font-size: 22px;
  letter-spacing: -0.03em;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}

.text-link--oval {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 56px;
  text-decoration: none;
}

.text-link--oval img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.text-link--oval span {
  position: relative;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wine-stain {
  position: absolute;
  right: 40px;
  bottom: -120px;
  width: min(300px, 25vw);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.scrap-mark {
  position: absolute;
  left: -12%;
  bottom: -8%;
  width: min(380px, 55%);
  transform: rotate(-160deg);
  pointer-events: none;
  opacity: 0.9;
}

/* —— Gallery slider (edge-clipped half slides) —— */
.gallery {
  position: relative;
  background: #6d6d6d url("../assets/gallery-bg.jpg") center / cover;
  padding: clamp(56px, 7vw, 90px) 0;
  overflow: hidden;
}

.gallery__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.gallery__viewport.is-dragging {
  cursor: grabbing;
}

.gallery__track {
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.4vw, 18px);
  width: max-content;
  will-change: transform;
  user-select: none;
}

.gallery__slide {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(200px, 21.5vw, 310px);
  height: clamp(300px, 33.5vw, 432px);
  overflow: hidden;
  background: #111;
}

/* Vary widths slightly like Figma */
.gallery__slide:nth-child(5n + 1) { width: clamp(190px, 19.5vw, 285px); }
.gallery__slide:nth-child(5n + 2) { width: clamp(180px, 18vw, 256px); }
.gallery__slide:nth-child(5n + 3) { width: clamp(230px, 24vw, 346px); }
.gallery__slide:nth-child(5n + 4) { width: clamp(195px, 20vw, 288px); }
.gallery__slide:nth-child(5n + 5) { width: clamp(195px, 20vw, 288px); }

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.gallery__slide--bw img {
  filter: grayscale(1);
}

/* —— Product panels (full-bleed, editable HTML overlays) —— */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.product {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  min-height: clamp(520px, 58.75vw, 752px);
  line-height: normal;
}

.product__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.product--chefs .product__photo {
  object-position: 55% center;
}

.product--brands .product__photo {
  object-position: center 45%;
}

/* Handwritten annotations */
.product__annot {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.product__annot--chefs {
  top: 15%;
  left: 50%;
  width: min(78%, 450px);
  transform: translateX(-50%);
}

.product__annot--cpg {
  bottom: 15%;
  left: 12%;
  right: 8%;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product__hand {
  margin: 0;
  font-family: "Neonoir W01 Slim";
  font-size: clamp(28px, 2.9vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transform: rotate(12deg);
  width: fit-content;
  margin-left: 22%;
  margin-bottom: -2%;
  position: relative;
  z-index: 1;
}

.product__hand--cpg {
  transform: rotate(-14deg);
  text-align: center;
  margin: 0.2em 0 0;
  text-transform: none;
  font-family: "Neonoir W01 Slim";
  font-weight: 400;
}

.product__arrow--cpg {
  width: min(55%, 260px);
  transform: rotate(-8deg);
  margin-bottom: 0;
  order: -1;
}

/* Editable ribbon labels */
.product__ribbons {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15em;
  pointer-events: none;
}

.product__ribbons--chefs {
  bottom: 14%;
  width: min(72%, 380px);
  transform: translateX(-50%);
  left: 50%;
}

.product__ribbons--brands {
  left: 15%;
  top: 8%;
  width: min(78%, 420px);
  align-items: flex-start;
}

.product__arrow {
  display: block;
  width: 170px;
  height: auto;
  pointer-events: none;
}

.product__arrow--chefs {
  width: 75px;
  margin-top: 0%;
  margin-left: 30%;
}

.ribbon {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 45px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  padding: 0.4em 0.4em 0.4em;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.ribbon--orange {
  background: var(--orange);
  color: var(--black);
}

.ribbon--yellow {
  background: var(--yellow);
  color: var(--black);
}

.ribbon--tilt-chefs {
  transform: rotate(-4deg);
  transform-origin: left center;
}

.ribbon--offset-chefs {
  margin-left: 18%;
  margin-top: -0.05em;
}

.ribbon--tilt-brands {
  transform: rotate(
11.71deg);
  transform-origin: left center;
  margin-left: 2%;
}

.ribbon--offset-brands {margin-top: 60px;margin-left: 70px;}

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

/* —— Trusted —— */
.trusted {
  position: relative;
  background: #5a5a5a url("../assets/trusted-bg.jpg") center / cover;
  padding: clamp(56px, 7vw, 90px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}

.trusted__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(36px, 5vw, 64px);
  padding: 0 20px;
}

.trusted__pill {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 0.15em 0.4em;
  line-height: 1.3;
}

.trusted__sub {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 0.12em 0.35em;
  line-height: 1.3;
  margin-left: clamp(24px, 4vw, 60px);
}

.trusted__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.trusted__viewport.is-dragging {
  cursor: grabbing;
}

.trusted__track {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  width: max-content;
  will-change: transform;
  user-select: none;
  padding: 8px 0 16px;
}

.card {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  width: min(560px, 72vw);
  border: 1px solid var(--black);
  box-shadow: 7px 7px 0 0 var(--black);
  min-height: clamp(320px, 32vw, 414px);
  background: var(--orange);
}

.card--orange { background: var(--orange); }
.card--brown { background: var(--brown); }
.card--green { background: var(--green); }

.card--brown .card__text,
.card--brown cite {
  color: var(--white);
}

.card--green .card__text,
.card--green cite {
  color: var(--black);
}

.card__text {
  padding: clamp(20px, 2.5vw, 36px) clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.card__text p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.card__text cite {
  font-style: normal;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: clamp(18px, 1.8vw, 22px);
}

.card__photo {
  border-left: 1px solid var(--black);
  overflow: hidden;
  min-height: 100%;
}

.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  min-height: 280px;
  pointer-events: none;
}

.trusted__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.trusted__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.trusted__dots span.is-active {
  background: var(--orange);
}

/* —— Food for Thought banner —— */
.banner-fft {
  position: relative;
  aspect-ratio: 1280 / 282;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.banner-fft__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.banner-fft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-fft__title {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  font-family: "Neonoir W01 Hand";
  font-size: clamp(42px, 7.5vw, 96px);
  color: var(--white);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* —— Why we cook —— */
.why .split__copy {
  justify-content: center;
  padding-top: clamp(64px, 9vw, 120px);
}

.why .split__media > img:first-child {
  object-position: center top;
}

/* —— Recipe slider —— */
.recipe .split__copy {
  justify-content: flex-start;
  padding-top: clamp(56px, 7vw, 90px);
}

.recipe .split__media > img:first-child {
  object-position: center center;
  transition: opacity 0.35s ease;
}

.recipe .split__media > img.is-fading {
  opacity: 0;
}

.recipe .slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 30.5rem;
  margin-top: auto;
  padding-top: 40px;
}

.slider-nav__btn {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  line-height: 0;
}

.slider-nav__btn svg {
  display: block;
}

.slider-nav__dots {
  display: flex;
  gap: 14px;
  align-items: center;
}

.slider-nav__dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--black);
  border: 0;
  padding: 0;
}

.slider-nav__dots button.is-active {
  background: var(--orange);
}

/* —— Footer —— */
.footer {
  background: var(--orange);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 40px) 36px;
}

.footer__brand {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(36px, 5vw, 56px);
  margin-right: calc(-1 * clamp(20px, 4vw, 40px));
}

.footer__brand-img {
  width: min(921px, 72%);
  height: auto;
  mix-blend-mode: multiply;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 28px 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.7vw, 35px);
  letter-spacing: -0.03em;
  text-align: center;
}

.footer__nav a {
  text-decoration: none;
  white-space: nowrap;
  color: inherit;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 25vw, 16%);
  padding-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

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

.footer__legal a:hover {
  text-decoration: underline;
}

.gallery__viewport {
  z-index: 99;
  position: relative;
}

.product::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.29);
}

/* —— Scroll + text motion —— */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
  position: relative !important;
  z-index: 2;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal--left {
  transform: translate3d(-40px, 0, 0);
}

.reveal--right {
  transform: translate3d(40px, 0, 0);
}

.reveal--scale {
  transform: scale(1.08);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--scale.is-in {
  transform: scale(1);
}

.reveal--stamp {
  opacity: 0;
  transform: scale(0.86) rotate(-2deg);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.reveal--stamp.is-in {
  opacity: 1;
  transform: none;
}

.reveal--fade {
  transform: none;
}

.headline.reveal--stamp,
.trusted__pill.reveal--stamp,
.trusted__sub.reveal--stamp {
  display: inline-block;
  width: fit-content;
}

.headline--stack.reveal--stamp {
  display: flex;
}

.headline--stack > span {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.headline--stack.is-in > span {
  opacity: 1;
  transform: none;
}

.headline--stack.is-in > span:nth-child(1) { transition-delay: 0ms; }
.headline--stack.is-in > span:nth-child(2) { transition-delay: 90ms; }

.ribbon {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.96);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.product.is-in .ribbon {
  opacity: 1;
}

.product.is-in .ribbon--tilt-chefs,
.product.is-in .ribbon--tilt-brands {
  transform: rotate(-4deg);
}

.product.is-in .ribbon--offset-chefs {
  transform: none;
  transition-delay: 100ms;
}

.product.is-in .ribbon--tilt-brands {
  transform: rotate(11.71deg);
}

.product.is-in .ribbon--offset-brands {
  transform: none;
  transition-delay: 120ms;
}

.product__annot {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.product__annot--chefs {
  transform: translate3d(0, 16px, -50%);
}

.product.is-in .product__annot {
  opacity: 1;
  transform: none;
}
.product.is-in .product__annot--chefs {
  transform: translateX(-50%);
}

.banner-fft__title {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.96);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner-fft.is-in .banner-fft__title {
  opacity: 1;
  transform: none;
}

.footer__nav a {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer.is-in .footer__nav a {
  opacity: 1;
  transform: none;
}

.footer.is-in .footer__nav a:nth-child(1) { transition-delay: 40ms; }
.footer.is-in .footer__nav a:nth-child(2) { transition-delay: 90ms; }
.footer.is-in .footer__nav a:nth-child(3) { transition-delay: 140ms; }
.footer.is-in .footer__nav a:nth-child(4) { transition-delay: 190ms; }
.footer.is-in .footer__nav a:nth-child(5) { transition-delay: 240ms; }
.footer.is-in .footer__nav a:nth-child(6) { transition-delay: 290ms; }

.footer__brand-img {
  opacity: 0;
  transform: translate3d(24px, 0, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer.is-in .footer__brand-img {
  opacity: 1;
  transform: none;
}

.hero__bar {
  opacity: 0;
  animation: bar-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

@keyframes bar-in {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.promo {
  opacity: 0;
  animation: promo-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

@keyframes promo-in {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— Motion —— */
@media (prefers-reduced-motion: reduce) {
.promo__track { animation: none; }

  .hero__hand,
  .hero__title span,
  .hero__bar,
  .promo {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__hand {
    transform: none;
  }

  .reveal,
.reveal--left,
.reveal--right,
.reveal--scale,
.reveal--stamp,
.reveal--fade,
.ribbon,
.product__annot,
.banner-fft__title,
.footer__nav a,
.footer__brand-img,
.headline--stack > span {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

/* —— Inner page top bar (orange strip ~83px) —— */
.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 83px;
  padding: 0 24px;
  background: var(--orange);
}

.site-top .lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 45px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--black);
}

.site-top .lang img,
.site-top .lang__toggle img {
  width: 32px;
  height: auto;
}

.site-top .menu-btn img {
  width: clamp(36px, 4vw, 52px);
  height: auto;
}

/* —— Full-screen nav overlay (wired by nav.js) —— */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  background: var(--brown);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__media {
  flex: 1 1 50%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

.nav-overlay__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.nav-overlay__panel {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--brown);
  color: var(--white);
  padding:
    clamp(20px, 3.5vh, 40px)
    clamp(28px, 5vw, 72px)
    clamp(20px, 3.5vh, 40px);
  overflow: hidden;
}

.nav-overlay__close {
  position: absolute;
  top: clamp(14px, 2.2vh, 28px);
  right: clamp(14px, 2.2vw, 28px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  z-index: 1;
  flex-shrink: 0;
}

.nav-overlay__close svg {
  width: 24px;
  height: 24px;
}

.nav-overlay__list {
  list-style: none;
  margin: 0;
  padding: clamp(36px, 5vh, 72px) 0 clamp(16px, 2vh, 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 2.4vh, 28px);
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-overlay__list a {
  font-family: var(--font-display);
  /* vmin keeps type readable on wide-but-short laptop screens (e.g. 1440×900) */
  font-size: clamp(28px, 5.2vmin, 56px);
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-decoration: none;
  color: var(--white);
  text-transform: none;
}

.nav-overlay__list a:hover,
.nav-overlay__list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-thickness: 2px;
}

.nav-overlay__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding-top: clamp(8px, 1.5vh, 16px);
  flex-shrink: 0;
}

.nav-overlay__social a {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-decoration: none;
  color: var(--white);
}

.nav-overlay__social a:hover,
.nav-overlay__social a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.nav-open {
  overflow: hidden;
}

/* —— Page hero: full-bleed photo + centered black pill title —— */
.page-hero {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 42vw, 520px);
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__media,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.45em 1.1em;
  max-width: min(92%, 720px);
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
}

/* Why we cook hero matches Figma: ~411px band, compact rectangular label */
.page-hero--why {
  min-height: clamp(280px, 32vw, 411px);
  aspect-ratio: 1280 / 411;
}

.page-hero--why .page-hero__title {
  border-radius: 0px;
  padding: 0.55em 1.35em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(18px, 2.4vw, 28px);
  max-width: none;
}

/* For Chefs hero — Figma compact DaisyWheel label */
.page-hero--chefs {
  min-height: clamp(280px, 32vw, 411px);
  aspect-ratio: 1280 / 411;
}

.page-hero--chefs .page-hero__title {
  border-radius: 4px;
  padding: 0.55em 1.15em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(15px, 2vw, 24px);
  max-width: min(92%, 260px);
  text-transform: none;
  line-height: 1.25;
}

/* For Brands hero — compact DaisyWheel label */
.page-hero--brands {
  min-height: clamp(280px, 32vw, 411px);
  aspect-ratio: 1280 / 411;
}

.page-hero--brands .page-hero__title {
  border-radius: 4px;
  padding: 0.5em 1em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(14px, 1.8vw, 22px);
  max-width: min(92%, 300px);
  text-transform: none;
  line-height: 1.3;
}

/* Innovation hero — compact DaisyWheel label, ~412px band */
.page-hero--innovation {
  min-height: clamp(280px, 32vw, 412px);
  aspect-ratio: 1280 / 412;
}

.page-hero--innovation .page-hero__title {
  border-radius: 4px;
  padding: 0.45em 1.05em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(16px, 2vw, 24px);
  max-width: min(92%, 200px);
  text-transform: uppercase;
  line-height: 1.2;
}

/* Food for Thought hero */
.page-hero--fft {
  min-height: clamp(280px, 32vw, 412px);
  aspect-ratio: 1280 / 412;
}

.page-hero--fft .page-hero__title {
  border-radius: 4px;
  padding: 0.5em 1.1em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(15px, 1.9vw, 24px);
  max-width: min(92%, 280px);
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: none;
}

/* Contact hero */
.page-hero--contact {
  min-height: clamp(280px, 32vw, 412px);
  aspect-ratio: 1280 / 412;
}

.page-hero--contact .page-hero__title {
  border-radius: 4px;
  padding: 0.45em 1.1em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(16px, 2vw, 24px);
  max-width: min(92%, 180px);
  text-transform: none;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Culinary Bases hero — taller band */
.page-hero--stocks {
  min-height: clamp(320px, 52vw, 667px);
  aspect-ratio: 1280 / 550;
}

.page-hero--stocks .page-hero__title {
  border-radius: 4px;
  padding: 0.5em 1.15em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(14px, 1.8vw, 22px);
  max-width: min(92%, 240px);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* Demi-Glace hero — same tall band */
.page-hero--umami {
    min-height: clamp(320px, 52vw, 667px);
    aspect-ratio: 1280 / 550;
}

.page-hero--demi .page-hero__title {
  border-radius: 4px;
  padding: 0.5em 1.15em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(14px, 1.8vw, 22px);
  max-width: min(92%, 220px);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* Umami Booster hero */
.page-hero--umami {
    min-height: clamp(320px, 52vw, 667px);
    aspect-ratio: 1280 / 550;
}

.page-hero--umami .page-hero__title {
  border-radius: 4px;
  padding: 0.5em 1.15em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(14px, 1.8vw, 22px);
  max-width: min(92%, 240px);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* —— Split 50/50 (mirrors homepage) —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--white);
  overflow-x: clip;
}

.split__media {
  position: relative;
  min-height: clamp(420px, 58.67vw, 751px);
  overflow: hidden;
  background: #eee;
}

.split__media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

.split__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(48px, 7vw, 100px) clamp(32px, 5.5vw, 80px) clamp(40px, 5vw, 72px);
  gap: 80px;
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 58.67vw, 751px);
}

.split__copy p,
.split__prose p {
  margin: 0;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.split__prose {
  display: flex;
  flex-direction: column;
  gap: 1.15em;
}

/* —— Boxed headlines —— */
.headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.3;
  display: inline-block;
  width: fit-content;
  padding: 0.18em 0.32em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--black);
}

.headline--yellow { background: var(--yellow); }
.headline--orange { background: var(--orange); }
.headline--brown { background: var(--brown); }
.headline--green { background: var(--green); }
.headline--white { background: var(--white); }
.headline--invert,
.headline--brown.headline--invert { color: var(--white); }

.headline--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: transparent;
  padding: 0;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.headline--stack span {
  background: var(--orange);
  padding: 0.18em 0.32em;
  display: inline-block;
  color: var(--black);
}

.headline--stack[data-accent="orange"] span { background: var(--orange); }
.headline--stack[data-accent="green"] span { background: var(--green); }
.headline--stack[data-accent="yellow"] span { background: var(--yellow); }
.headline--stack[data-accent="white"] span { background: var(--white); }
.headline--stack[data-accent="brown"] span {
  background: var(--brown);
  color: var(--white);
}

.headline--stack.headline--yellow span { background: var(--yellow); }
.headline--stack.headline--green span { background: var(--green); }
.headline--stack.headline--white span { background: var(--white); }
.headline--stack.headline--brown span {
  background: var(--brown);
  color: var(--white);
}
.headline--stack.headline--orange span { background: var(--orange); }

.text-link {
  font-family: var(--font-body);
  font-size: 22px;
  letter-spacing: -0.03em;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
  color: inherit;
}

.text-link--oval {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 56px;
  text-decoration: none;
}

.text-link--oval img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.text-link--oval span {
  position: relative;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Centered story / intro band —— */
.story {
  background: var(--white);
  padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 80px);
}

.story__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.5vw, 40px);
}

.story__title {
  text-align: center;
}

.story__inner > p {
  margin: 0;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: var(--black);
}

/* Editorial story (Why we cook): wide left-aligned copy, centered title, left CTA */
.story--editorial {
  padding: clamp(72px, 8vw, 100px) clamp(24px, 7.8vw, 100px) clamp(56px, 7vw, 88px);
}

.story--editorial .story__inner {
  max-width: 1090px;
  align-items: flex-start;
  gap: clamp(32px, 4vw, 48px);
}

.story--editorial .story__title {
  align-self: center;
}

.story--editorial .story__inner > p {
  max-width: none;
  width: 100%;
}

.story--editorial .text-link--oval {
  margin-top: clamp(8px, 1.5vw, 20px);
}

/* Why we cook — Figma headline tilts */
#story-heading.reveal--stamp.is-in,
#story-heading.is-in {
  transform: rotate(-2.79deg);
}

#alt-heading.is-in > span:nth-child(2) {
  transform: rotate(3deg);
}

#gov-heading.is-in > span:nth-child(2) {
  transform: rotate(-3.33deg);
}

@media (prefers-reduced-motion: reduce) {
#story-heading {
    transform: rotate(-2.79deg) !important;
  }

  #alt-heading > span:nth-child(2) {
    transform: rotate(3deg) !important;
  }

  #gov-heading > span:nth-child(2) {
    transform: rotate(-3.33deg) !important;
  }
}

/* —— Optional full-bleed photo band (e.g. demi-pour) —— */
.bleed-photo {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  background: #111;
}

.bleed-photo img {
  width: 100%;
  height: auto;
  max-height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  object-position: center;
}

/* —— Compare panel (two-column process) —— */
.compare {
  background: var(--brown);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 56px);
  overflow-x: clip;
}

.compare__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.compare__panel {
  background: #5a5a5a;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2.5vw, 28px);
  color: var(--white);
}

.compare__panel--image {
  padding: 0;
  border: none;
  background: transparent;
  background-image: none;
}

.compare__panel > img,
.compare__panel-img {
  width: 100%;
  height: auto;
  display: block;
}

.compare__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--white);
}

.compare__copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.compare__copy p + p {
  margin-top: 4px;
}

/* —— Features icon grid (brown bg) —— */
.features {
  background: var(--brown);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 48px);
  text-align: center;
}

.features__title {
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.features__panel {
  max-width: 1128px;
  margin: 0 auto;
  background: var(--grey-texture);
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 4px 4px;
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
}

.features__panel--image {
  padding: 0;
  border: none;
  background: transparent;
  background-image: none;
  box-shadow: var(--brutal-shadow);
}

.features__panel-img {
  width: 100%;
  height: auto;
  display: block;
}

.features__title--tilt,
#real-food-heading.features__title--tilt.is-in {
  transform: rotate(-4deg);
}

#real-food-heading.reveal--stamp.is-in {
  transform: rotate(-4deg);
}
#range-heading {
  width: 100%;
}
/* For Chefs — Figma stacked headline offsets (no tilt) */
#range-heading.is-in > span:nth-child(1),
#range-heading.is-in > span:nth-child(2),
#range-heading > span:nth-child(1),
#range-heading > span:nth-child(2) {
  transform: none;
}

#range-heading > span:nth-child(1) {
  align-self: flex-end;
}

#passion-heading.is-in > span:nth-child(1),
#passion-heading.is-in > span:nth-child(2),
#passion-heading > span:nth-child(1),
#passion-heading > span:nth-child(2) {
  transform: none;
}

#passion-heading > span:nth-child(2) {
  margin-left: 40px;
}

@media (prefers-reduced-motion: reduce) {
#real-food-heading {
    transform: rotate(-4deg) !important;
  }

  #range-heading > span:nth-child(1),
  #range-heading > span:nth-child(2),
  #passion-heading > span:nth-child(1),
  #passion-heading > span:nth-child(2) {
    transform: none !important;
  }
}

/* —— Product grid (3-col on textured grey) —— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #6a6a6a;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 3px 3px;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 2vw, 24px);
  overflow-x: clip;
}

.product-card {
  position: relative;
  display: block;
  padding: clamp(8px, 1.2vw, 16px);
  text-decoration: none;
  color: var(--black);
  text-align: center;
}

.product-card__label {
  position: absolute;
  top: clamp(12px, 2.5vw, 35px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 45px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.15;
  padding: 0.32em 0.5em;
  width: max-content;
  max-width: calc(100% - 24px);
  border: none;
  box-shadow: none;
  pointer-events: none;
}

.product-card__label--yellow { background: var(--yellow); color: var(--black); }

.product-card__label--brown { background: var(--brown); color: var(--white); }
.product-card__label--green { background: var(--green); color: var(--black); }

.product-card__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 403 / 579;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* —— Contact form (neo-brutalist on green) —— */
.contact-form {
  background: var(--green);
  padding: clamp(40px, 4.5vw, 56px) clamp(20px, 6.4vw, 82px) clamp(48px, 6vw, 80px);
}

.contact-form__inner {
  max-width: 1119px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form__inner .wpcf7 {
  margin: 0;
  width: 100%;
}

.contact-form__inner .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  width: 100%;
}

/* CF7 may still wrap tags in <p> — flatten so grids work */
.contact-form .wpcf7-form p {
  margin: 0;
  display: contents;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  width: 100%;
}

.contact-form__row > .wpcf7-form-control-wrap {
  width: 100%;
  min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form .wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="acceptance"]) {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  min-height: 76px;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  text-transform: uppercase;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{
  text-transform: uppercase;
}
.contact-form textarea {
  min-height: clamp(280px, 42vw, 544px);
  resize: vertical;
  padding-top: 28px;
  text-transform: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='28' viewBox='0 0 20 28' fill='none'%3E%3Cpath d='M2 8L10 20L18 8' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 28px center;
  background-size: 18px auto;
  padding-right: 64px;
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--black);
  opacity: 0.9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 0;
}

.form-check .wpcf7-form-control-wrap,
.form-check .wpcf7-acceptance,
.form-check .wpcf7-checkbox,
.form-check .wpcf7-list-item,
.form-check .wpcf7-list-item-label {
  display: contents;
}

.form-check .wpcf7-list-item {
  margin: 0;
}

.form-check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 37px;
  height: 34px;
  min-height: 34px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  cursor: pointer;
  position: relative;
}

.form-check input[type="checkbox"]:checked::after {
  content: "V";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.form-check label,
.form-check .wpcf7-list-item-label {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.form-submit,
.contact-form input.wpcf7-submit,
.contact-form .wpcf7-submit {
  align-self: center;
  margin-top: 12px;
  min-width: min(542px, 100%);
  min-height: 76px;
  padding: 20px 36px;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  cursor: pointer;
  width: auto;
}

.form-submit:hover,
.contact-form .wpcf7-submit:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #000;
}

.form-submit:active,
.contact-form .wpcf7-submit:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 #000;
}

.contact-form .wpcf7-response-output {
  margin: 0;
  padding: 16px 20px;
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  background: var(--white);
  font-family: var(--font-body);
}

.contact-form .wpcf7-not-valid-tip {
  font-family: var(--font-body);
  font-size: 14px;
  margin-top: 6px;
}

/* —— Blog listing cards —— */
.blog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 5.5vw, 84px) clamp(24px, 3vw, 40px);
  padding: 0;
  background: transparent;
  max-width: none;
  margin: 0;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
}

.blog-card__media {
  position: relative;
  aspect-ratio: 547 / 640;
  overflow: hidden;
  background: #111;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__tags {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.blog-card__tag {
  margin: 0;
  padding: 0.3em 0.65em;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.05vw, 13px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  background: var(--black);
  white-space: nowrap;
}

.blog-card__tag--green { background: var(--green); }
.blog-card__tag--orange { background: var(--orange); }

.blog-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.25vw, 16px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #666;
}

.blog-card__meta-author {
  text-align: left;
  overflow-wrap: anywhere;
}

.blog-card__meta-role {
  text-align: center;
  overflow-wrap: anywhere;
}

.blog-card__meta-role:empty {
  visibility: hidden;
}

.blog-card__meta-date {
  text-align: right;
  white-space: nowrap;
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: none;
}

/* —— Hero B&W variant —— */
.page-hero--bw .page-hero__media {
  filter: grayscale(100%) contrast(1.05);
}

/* —— Pull quote —— */
.pull-quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 22px);
  font-style: normal;
  line-height: 1.4;
  letter-spacing: -0.03em;
  max-width: 28rem;
}

.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 18px);
  font-style: normal;
  letter-spacing: -0.03em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Feature badge circles (text-only) —— */

.features__intro {
  margin: 0 auto clamp(32px, 4vw, 48px);
  max-width: 56rem;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* —— 2×2 content grid (brands intro / black box) —— */
.quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quad-cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(28px, 3.5vw, 44px);
  padding: clamp(56px, 6.5vw, 88px) clamp(40px, 5.5vw, 80px) clamp(48px, 5vw, 72px);
  min-height: clamp(420px, 58.67vw, 751px);
}

.quad-cell--white { background: var(--white); }

.quad-cell p,
.quad-cell .split__prose p {
  margin: 0;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  max-width: 30rem;
}

.quad-cell--media {
  padding: 0;
  min-height: clamp(420px, 58.67vw, 751px);
  overflow: hidden;
  background: #111;
}

.quad-cell--media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.quad-cell--media--bw img {
  filter: grayscale(100%) contrast(1.05);
}

/* —— Pillars (3 cards on orange) —— */
.pillars {
  background: var(--orange);
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4vw, 56px) clamp(64px, 8vw, 120px);
}

.pillars__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.pillars__title {
  border: none;
}

#different-heading.reveal--stamp.is-in {
  transform: rotate(-3deg);
}

#builders-heading.is-in > span:nth-child(1) {
  transform: rotate(-2.5deg);
}

#blackbox-heading.is-in > span:nth-child(1) {
  transform: rotate(2.5deg);
}

#blackbox-heading > span:nth-child(2) {
  align-self: flex-end;
}

#achieve-heading > span:nth-child(1) {
  align-self: flex-start;
}

#teams-heading.is-in > span:nth-child(1) {
  transform: rotate(-2deg);
}

#withus-heading.reveal--stamp.is-in {
  transform: rotate(-2deg);
}

@media (prefers-reduced-motion: reduce) {
#different-heading {
    transform: rotate(-3deg) !important;
  }

  #builders-heading > span:nth-child(1) {
    transform: rotate(-2.5deg) !important;
  }

  #blackbox-heading > span:nth-child(1) {
    transform: rotate(2.5deg) !important;
  }

  #teams-heading > span:nth-child(1) {
    transform: rotate(-2deg) !important;
  }

  #withus-heading {
    transform: rotate(-2deg) !important;
  }
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  width: 100%;
}

.pillar-card {
  background: var(--white);
  border: none;
  box-shadow: var(--brutal-shadow);
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.4vw, 32px);
}

.pillar-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* —— Info grid (achievements / applications) —— */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.info-cell {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 44px);
  padding: clamp(56px, 6.5vw, 88px) clamp(40px, 5.5vw, 80px) clamp(48px, 5vw, 72px);
  min-height: clamp(420px, 58.67vw, 751px);
}

.info-cell--white { background: var(--white); }
.info-cell--yellow { background: var(--yellow); }
.info-cell--green { background: var(--green); }
.info-cell--orange { background: var(--orange); }

.info-cell p {
  margin: 0;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  max-width: 30rem;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.info-list li {
  position: relative;
  padding-left: 1.1em;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.info-cell p.taste-list,
.taste-list {
  margin: 0;
  padding: 0;
  max-width: 34rem;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 3.1vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--black);
}

.info-cell .taste-list span,
.taste-list span,
.taste-list__item {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.info-cell .taste-list .taste-list__comma,
.taste-list__comma {
  text-decoration: none;
}

.cta-banner .text-link--oval {
  color: var(--white);
}

.cta-banner .text-link--oval img {
  filter: brightness(0) invert(1);
}

.info-cell--green .info-list,
.info-cell--green .split__prose p {
  color: var(--black);
}

.headline--brown.headline--invert {
  color: var(--white);
}

/* —— Process flow —— */

.process-flow__arrow {
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: 1em;
  line-height: 1;
}

.info-cell p.process-flow--brief,
.process-flow--brief {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 34rem;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 3.1vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--black);
}

.info-cell .process-flow--brief span,
.process-flow--brief span {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

.info-cell .process-flow--brief .process-flow__arrow,
.process-flow--brief .process-flow__arrow {
  display: inline;
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
  letter-spacing: inherit;
  margin: 0 0.15em;
}

/* —— Pill CTA button —— */

/* —— CTA banner —— */
.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 2560 / 961;
  min-height: 260px;
  overflow: hidden;
  background: #111;
}

.cta-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 24px;
  text-align: center;
}

.cta-banner__title {
  margin: 0;
  font-family: "Neonoir W01 Bold", cursive;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  text-align: center;
}

/* —— Recipe / showcase strip (edge-clipped slider) —— */
.showcase {
  position: relative;
  background: #b8b8b8;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 3px 3px;
  padding: clamp(52px, 6vw, 80px) 0;
  overflow: hidden;
  min-height: clamp(420px, 45.5vw, 582px);
  display: flex;
  align-items: center;
}

.showcase__stain {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  filter: hue-rotate(290deg) saturate(1.4) brightness(1.05);
}

.showcase__stain--a {
  top: -6%;
  left: 6%;
  width: min(460px, 42vw);
  transform: rotate(-22deg);
}

.showcase__stain--b {
  right: -6%;
  bottom: -14%;
  width: min(520px, 48vw);
  transform: rotate(148deg);
}

.showcase__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.showcase__viewport.is-dragging {
  cursor: grabbing;
}

.showcase__track {
  display: flex;
  align-items: stretch;
  gap: clamp(22px, 2.6vw, 36px);
  width: max-content;
  will-change: transform;
  user-select: none;
}

.showcase__slide {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(210px, 23.5vw, 300px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.55);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.showcase__slide img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* —— Contact locate (map + address) —— */
.contact-locate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
    padding: 0;
    background: var(--white);
    overflow-x: clip;
}
.contact-locate__map {
  min-height: clamp(420px, 58.67vw, 750px);
  overflow: hidden;
  background: #eee;
}

.contact-locate__map img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-locate__details {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 48px);
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px) clamp(48px, 6vw, 88px) 0;
}

.contact-locate__address {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.55;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.contact-locate__address a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.contact-locate__hq {
  text-decoration: none;
  text-transform: none;
}

/* —— Blog filter / search (Food for Thought) —— */
.blog-filter {
  background: var(--brown);
  padding: clamp(40px, 4.5vw, 56px) clamp(24px, 5vw, 74px) clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.2vw, 28px);
}

.blog-filter__search {
  position: relative;
  width: min(970px, 100%);
}

.blog-filter__search input {
  width: 100%;
  box-sizing: border-box;
  padding: 22px 28px 22px 72px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: -0.02em;
  color: var(--black);
  background: var(--white);
  border: none;
  border-radius: 0;
  outline: none;
}

.blog-filter__search input::placeholder {
  color: #888;
}

.blog-filter__search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(28px, 3vw, 40px);
  height: clamp(28px, 3vw, 40px);
  pointer-events: none;
  color: var(--black);
}

.blog-filter__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  max-width: 920px;
}

.blog-filter__tag {
  display: inline-block;
  padding: 0.4em 0.85em;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.blog-filter__tag:hover,
.blog-filter__tag.is-active {
  background: var(--white);
  color: var(--black);
}

.blog-filter__types {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}

.blog-filter__type {
  margin: 0;
  padding: 0.35em 0.75em;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.15vw, 14px);
  letter-spacing: -0.02em;
  color: var(--white);
  border: none;
  cursor: pointer;
}

.blog-filter__type--article { background: var(--green); }
.blog-filter__type--recipe { background: var(--orange); }

.blog-filter__type.is-active {
  outline: 3px solid var(--black);
  outline-offset: 2px;
}

.blog-list__empty {
  grid-column: 1 / -1;
  margin: 24px 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 20px);
}

.blog-card[hidden] {
  display: none !important;
}

.blog-list-wrap {
  padding: clamp(40px, 5vw, 56px) clamp(24px, 5.8vw, 74px) clamp(24px, 3vw, 40px);
  background: var(--white);
}

.blog-list-wrap .blog-list {
  padding: 0;
}

.see-more {
  display: flex;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 64px) clamp(56px, 7vw, 96px);
  background: var(--white);
}

.see-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 48px;
  min-width: min(542px, 100%);
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  text-transform: none;
  text-decoration: none;
  color: var(--black);
  background: var(--yellow);
  border: none;
  box-shadow: var(--brutal-shadow);
  cursor: pointer;
}

.see-more__btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #000;
}

.see-more__btn.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.see-more__btn:disabled {
  cursor: wait;
}

/* —— Centered section intro —— */
.section-intro {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 64px) clamp(36px, 4vw, 56px);
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: visible;
}

.section-intro__title {
  margin: 0 auto clamp(20px, 2.5vw, 32px);
}

.section-intro__body {
  margin: 0 auto;
  max-width: 56rem;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.section-intro .wine-stain,
.section-intro__stain {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-intro__title,
.section-intro__body {
  position: relative;
  z-index: 1;
}

.section-intro__stain--coffee {
  top: 10%;
  right: -8%;
  width: min(280px, 32vw);
  opacity: 0.85;
  mix-blend-mode: multiply;
  transform: rotate(8deg);
}

.section-intro__stain--wine {
  top: -20%;
  left: -18%;
  width: min(520px, 55vw);
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.section-intro--ferm {
  padding-top: clamp(48px, 6vw, 72px);
}

.section-intro--ci {
  padding-top: clamp(56px, 7vw, 100px);
  overflow: hidden;
}

/* —— Prose content blocks (innovation / articles) —— */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  overflow-x: clip;
}

.prose-grid--tall .prose-grid__media {
  min-height: clamp(420px, 58.67vw, 750px);
}

.prose-grid--taller .prose-grid__media {
  min-height: clamp(520px, 70vw, 900px);
}

.prose-grid--ci .prose-grid__media {
  min-height: clamp(460px, 62vw, 800px);
}

.prose-grid__media {
  min-height: clamp(360px, 45vw, 600px);
  overflow: hidden;
  background: #111;
}

.prose-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prose-grid__media--bw img {
  filter: grayscale(100%) contrast(1.05);
}

.prose-grid__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(28px, 3.5vw, 44px);
  padding: clamp(48px, 6vw, 88px) clamp(36px, 5vw, 72px);
}

.prose-block h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-transform: none;
    font-family: var(--font-condensed);
}

.prose-block p {
  margin: 0;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  max-width: 34rem;
}

.prose-solo {
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 80px) clamp(56px, 7vw, 96px);
  background: var(--white);
  max-width: 720px;
}

.prose-solo--wide {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.prose-solo--wide h3,
.prose-solo--wide p {
  max-width: 72rem;
}

.prose-solo h3 {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.15;
    font-family: var(--font-condensed);
}

.prose-solo p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.bleed-photo--innovation {
  margin: 0;
}

.bleed-photo--innovation img {
  max-height: clamp(280px, 38vw, 495px);
  width: 100%;
  object-fit: cover;
}

/* —— Spec comparison table (culinary bases) —— */
.spec-compare {
  padding: clamp(48px, 6vw, 88px) clamp(20px, 6vw, 76px);
  background: var(--orange);
}

.spec-compare__inner {
  max-width: 1128px;
  margin: 0 auto;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--white);
  border: 2px solid var(--black);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 18px);
  letter-spacing: -0.02em;
}

.spec-table th,
.spec-table td {
  padding: clamp(16px, 2vw, 28px) clamp(14px, 1.8vw, 24px);
  border: 1px solid var(--black);
  text-align: center;
  vertical-align: middle;
}

.spec-table thead th {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  background: var(--white);
}

.spec-table thead th:first-child {
  background: var(--white);
  color: var(--black);
  width: 24%;
}

.spec-table tbody th {
  font-weight: 400;
  background: var(--white);
  text-align: left;
  white-space: normal;
}

.spec-table .spec-table__win {
  color: var(--black);
  font-weight: 400;
}

.spec-table__icon {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
}

.spec-tick,
.spec-cross {
  display: inline-block;
  vertical-align: middle;
}

.spec-tick {
  position: relative;
}

.spec-tick::after {
    content: url(https://sho.common-ideas.com/wp-content/uploads/2026/07/tick-2.png);
    position: absolute;
    left: -25px;
    top: -25px;
}

.spec-cross {
  width: 36px;
  height: 36px;
  position: relative;
}

.spec-cross::before,
.spec-cross::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  /* width: 34px;
  height: 3px;
  background: var(--black); */
}
.spec-cross::before {
    content: url(https://sho.common-ideas.com/wp-content/uploads/2026/07/cross.png);
}
/* .spec-cross::before { transform: translate(-50%, -50%) rotate(45deg); }
.spec-cross::after { transform: translate(-50%, -50%) rotate(-45deg); } */

/* Stocks intro / howto splits */
.stocks-intro .split__copy,
.stocks-howto .split__copy,
.stocks-store .split__copy,
.stocks-chefs .split__copy {
  justify-content: flex-start;
  padding-top: clamp(64px, 8vw, 120px);
}

.stocks-howto #use-heading > span:nth-child(1) {
  background: var(--brown);
  color: var(--white);
  width: fit-content;
}

.stocks-howto #use-heading > span:nth-child(2) {
  background: var(--brown);
  color: var(--white);
  width: fit-content;
  margin-left: clamp(24px, 3vw, 48px);
}

.stocks-chefs #chefs-heading > span:nth-child(1) {
  align-self: center;
  width: fit-content;
}

.stocks-chefs #chefs-heading > span:nth-child(2) {
  align-self: flex-start;
  width: fit-content;
}

/* —— Product duo (Light / Dark stock) —— */
.product-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.product-duo--stocks {
  background: #6a6a6a;
  background-image: radial-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 3px 3px;
}

.product-duo--stocks .product-duo__col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  text-align: left;
  border-bottom: none;
  min-height: clamp(480px, 58vw, 749px);
  overflow: hidden;
}

.product-duo--stocks .product-duo__col + .product-duo__col {
  border-left: none;
}

.product-duo--stocks .product-duo__col--light,
.product-duo--stocks .product-duo__col--dark {
  background: transparent;
  color: var(--black);
}

.product-duo--stocks .product-duo__visual {
  position: absolute;
  inset: 0;
}

.product-duo--stocks .product-duo__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-duo--stocks .product-duo__title {
  position: relative;
  z-index: 1;
  margin: clamp(28px, 3.5vw, 48px) auto 0 clamp(12%, 14vw, 18%);
  width: fit-content;
  font-size: clamp(28px, 3.2vw, 44px);
  transform: rotate(-2.5deg);
}

.product-duo--stocks .product-duo__col--light .product-duo__title {
  background: var(--yellow);
  color: var(--black);
  padding: 0.2em 0.4em;
}

.product-duo--stocks .product-duo__col--dark .product-duo__title {
  background: var(--orange);
  color: var(--black);
  padding: 0.2em 0.4em;
  margin-left: clamp(10%, 12vw, 16%);
}

.product-duo--stocks .product-duo__copy {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 2.5vw, 40px);
  bottom: clamp(24px, 3vw, 48px);
  margin: 0;
  max-width: 16rem;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  font-size: clamp(13px, 1.2vw, 16px);
}

.product-duo--stocks .product-duo__seal {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 2.5vw, 40px);
  bottom: clamp(20px, 3vw, 44px);
  width: clamp(88px, 10vw, 128px);
  height: auto;
}

.product-duo__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 28px);
  padding: clamp(40px, 5vw, 72px) clamp(24px, 3vw, 40px);
  text-align: center;
  border-bottom: 2px solid var(--black);
}

.product-duo__col + .product-duo__col {
  border-left: 2px solid var(--black);
}

.product-duo__col--light { background: #fff8dc; }
.product-duo__col--dark { background: #1a1a1a; color: var(--white); }

.product-duo__photo {
  width: min(220px, 55%);
  height: auto;
}

.product-duo__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}

.product-duo__col--light .product-duo__title {
  background: var(--yellow);
  padding: 0.15em 0.35em;
}

.product-duo__col--dark .product-duo__title {
  background: var(--orange);
  color: var(--black);
  padding: 0.15em 0.35em;
}

.product-duo__copy {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.45;
  letter-spacing: -0.03em;
  text-align: left;
}

/* Techniques strip — homepage gallery carousel on Figma grey texture */
.gallery--techniques {
  background: #c8c8c8 url("/wp-content/uploads/2026/07/dots-pattern0bg.webp") center / cover;
  background-blend-mode: multiply;
  padding: clamp(48px, 5.5vw, 72px) 0;
  min-height: clamp(420px, 45.5vw, 582px);
  display: flex;
  align-items: center;
}

.gallery--techniques .gallery__slide {
  width: clamp(180px, 18.5vw, 270px);
  height: clamp(320px, 33vw, 480px);
}

.gallery--techniques .gallery__slide:nth-child(5n + 1),
.gallery--techniques .gallery__slide:nth-child(5n + 2),
.gallery--techniques .gallery__slide:nth-child(5n + 3),
.gallery--techniques .gallery__slide:nth-child(5n + 4),
.gallery--techniques .gallery__slide:nth-child(5n + 5) {
  width: clamp(180px, 18.5vw, 270px);
}

.gallery--techniques .gallery__track {
  gap: clamp(16px, 2vw, 28px);
}

/* Quote with photo */
.quote-banner--stocks {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 32vw, 411px);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 64px);
  background: #111;
  overflow: hidden;
}

.quote-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-banner--stocks blockquote {
    position: relative;
    z-index: 1;
    max-width: min(90%, 70rem);
    margin: 0;
    color: var(--white);
    font-family: "Neonoir W01 Bold", NeonoirW01-Bold, cursive;
    font-size: clamp(28px, 4.7vw, 60px);
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    text-align: left;
    padding-left: 25%;
}
.quote-banner--stocks blockquote p {
  margin: 0;
  font-family: "Neonoir W01 Bold", NeonoirW01-Bold, cursive;
  font-size: clamp(28px, 4.7vw, 60px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.01em;
}

.quote-banner--stocks cite {
  display: block;
  margin-top: 0;
  font-family: "Neonoir W01 Bold", NeonoirW01-Bold, cursive;
  font-size: clamp(28px, 4.7vw, 60px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.01em;
  text-decoration: none;
  /* text-transform: uppercase; */
}

/* Related products — Culinary Bases (Figma /productstocks) */
.related-products--stocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  background: #111;
  overflow: hidden;
}

.related-products--stocks .related-products__card {
  position: relative;
  display: block;
  min-height: clamp(240px, 26.5vw, 340px);
  aspect-ratio: 640 / 340;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
}

.related-products--stocks .related-products__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center right;
}

.related-products--stocks .related-products__card:last-child img {
  object-position: 62% center;
}

.related-products--stocks span.related-products__label {
  position: absolute;
  top: 50%;
  z-index: 1;
  margin: 0;
  padding: 0.18em 0.38em;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.15;
  border: none !important;
  box-shadow: none !important;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%);
}

.related-products--stocks span.related-products__label--brown {
  left: clamp(28px, 8%, 56px);
  background: var(--brown) !important;
  color: var(--white) !important;
}

.related-products--stocks span.related-products__label--green {
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green) !important;
  color: var(--black) !important;
}

.related-products--stocks span.related-products__label--orange {
  left: clamp(28px, 8%, 56px);
  background: var(--orange) !important;
  color: var(--white) !important;
}

/* Demi intro / store */
.demi-intro .split__copy,
.demi-store .split__copy {
  justify-content: flex-start;
  padding-top: clamp(64px, 8vw, 120px);
}

/* Demi product feature (full-bleed bottle) */
.product-feature--demi {
  position: relative;
  min-height: clamp(480px, 60vw, 778px);
  overflow: hidden;
  background: #1a1a1a;
}

.product-feature__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.product-feature__title {
  position: absolute;
  z-index: 1;
  top: clamp(36px, 5vw, 64px);
  left: 50%;
  margin: 0;
  transform: translateX(-50%) rotate(-3deg);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  padding: 0.2em 0.4em;
  background: var(--orange);
  color: var(--white);
  white-space: nowrap;
}

.product-feature__copy {
  position: absolute;
  z-index: 1;
  left: 52%;
  bottom: clamp(28px, 4vw, 56px);
  margin: 0;
  max-width: min(25rem, 42vw);
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: left;
  text-transform: none;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.product-feature__seal {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(20px, 3vw, 44px);
  width: clamp(88px, 10vw, 128px);
  height: auto;
}

/* Umami intro / store (store is text-left, image-right) */
.umami-intro .split__copy,
.umami-store .split__copy {
  justify-content: flex-start;
  padding-top: clamp(64px, 8vw, 120px);
}

.product-feature--umami {
  position: relative;
  min-height: clamp(480px, 60vw, 778px);
  overflow: hidden;
  background: #1a1a1a;
}

.product-feature--umami .product-feature__title {
  background: var(--green);
  color: var(--black);
}

.product-feature--umami .product-feature__media {
  object-position: center center;
}

.related-products--umami .related-products__card:last-child img {
  object-position: center right;
}

/* —— How-to panels —— */

/* —— Quote banner —— */
.quote-banner {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 64px);
  background: var(--brown);
  text-align: center;
  color: var(--white);
}

/* —— Related product links —— */
.related-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--grey-texture);
  background-image: radial-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 3px 3px;
}

.related-products a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--black);
}

.related-products img {
  width: min(180px, 50%);
  height: auto;
}

.related-products span {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  padding: 0.25em 0.55em;
}

/* —— Blog article (Figma 24:684) —— */
.page-hero--article {
  min-height: clamp(360px, 52vw, 667px);
  aspect-ratio: 1280 / 550;
}

.page-hero--article .page-hero__title {
  display: none;
}

.article-hero-tags {
  position: absolute;
  right: clamp(16px, 2.5vw, 40px);
  bottom: clamp(14px, 2vw, 32px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.article-hero-tags__item {
    margin: 0;
    padding: 0.15em 0.5em;
    font-family: var(--font-body);
    font-size: clamp(11px, 2.05vw, 22px);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--white);
    background: var(--black);
    white-space: nowrap;
}
.article-hero-tags__item--article {
  color: var(--black);
  background: var(--green);
  min-width: 5.5em;
  text-align: center;
}

.article-hero-tags__item--recipe {
  color: var(--white);
  background: var(--orange);
  min-width: 5.5em;
  text-align: center;
}

.article {
  background: var(--white);
  padding: 0 0 clamp(56px, 7vw, 100px);
}

.article-meta {
  display: flex;
  /* grid-template-columns: 1fr 1fr 1fr; */
  justify-content: space-between;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3.2vw, 41px) clamp(28px, 3.5vw, 48px);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 18px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--black);
}
.article-meta span:nth-child(2) {
  text-align: center;
}

.article-meta span:last-child {
  text-align: right;
}

.article-title {
  width: fit-content;
  max-width: none;
  margin: 0 auto clamp(48px, 5.5vw, 80px);
  gap: 10px;
  align-items: flex-start;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.05;
  overflow: visible;
}

.article-title > span {
  display: inline-block;
  width: max-content;
  max-width: none;
  padding: 0.16em 0.32em;
  white-space: nowrap;
  overflow: visible;
  transform-origin: center center;
}

.article-title > span:nth-child(1) {
  transform: rotate(-1deg);
}

.article-title > span:nth-child(2) {
    margin-top: 6.1px;
    margin-left: clamp(40px, 7vw, 100px);
    transform: rotate(-4deg);
    transform-origin: left center;
}

.article-title.is-in > span:nth-child(1) {
  transform: rotate(-1deg);
}

.article-title.is-in > span:nth-child(2) {
  transform: rotate(-4deg);
}

.article-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3.2vw, 41px);
}

.article-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 62px);
  align-items: start;
}

.article-row--media {
  margin-top: clamp(8px, 1vw, 16px);
}

.article-row--close {
  margin-top: 0;
}

.article-sub {
  margin: 0 0 0.45em;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: none;
  color: var(--black);
}

.article-row--media + .article-sub {
  margin-top: clamp(40px, 5vw, 64px);
}

.article-col p {
  margin: 0 0 1.1em;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 12px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--black);
}

.article-photo {
  margin: 0;
}

.article-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 569 / 718;
  object-fit: cover;
}

.article-learn {
  position: relative;
  display: inline-block;
  width: min(196px, 72%);
  aspect-ratio: 196 / 89;
  margin: clamp(4px, 1vw, 12px) 0 clamp(8px, 1.5vw, 20px);
  color: inherit;
  text-decoration: none;
}

.article-learn__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
}

.article-download {
  display: block;
  width: clamp(100px, 10vw, 127px);
  margin: clamp(28px, 3.5vw, 48px) 0 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-download img {
  width: 100%;
  height: auto;
  display: block;
}

.article-download:hover {
  transform: rotate(-8deg) scale(1.04);
}

/* —— Blog recipe (Figma 26:38) —— */
.recipe-page {
  background: var(--white);
  overflow: visible;
}

.recipe-title.headline--orange > span,
.recipe-title.headline--stack.headline--orange > span {
  background: var(--orange);
}

.recipe-panel {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
}

.recipe-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3.5vw, 48px);
  border-bottom: 1.5px solid var(--black);
}

.recipe-facts__seal {
  display: block;
  width: clamp(100px, 10vw, 127px);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.recipe-facts__seal img {
  width: 100%;
  height: auto;
  display: block;
}

.recipe-facts__seal:hover {
  transform: rotate(-8deg) scale(1.04);
}

.recipe-facts__copy {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--black);
}

.recipe-facts__copy p {
  margin: 0 0 0.35em;
}

.recipe-facts__copy p:last-child {
  margin-bottom: 0;
}

.recipe-facts__copy strong {
    font-weight: 700;
    font-size: 32px;
    font-family: var(--font-condensed);
    letter-spacing: -0.03em;
}
.recipe-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.recipe-split__left {
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3.5vw, 48px) clamp(36px, 4vw, 56px);
}

.recipe-split__right {
  padding: 0;
  border-left: 1.5px solid var(--black);
  display: flex;
  flex-direction: column;
}

.recipe-intro {
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--black);
}

.recipe-heading {
  margin: 0;
  padding: 0.42em clamp(24px, 3.5vw, 48px);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1.5px solid var(--black);
}

.recipe-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: -0.02em;
  color: var(--black);
}

.recipe-table th,
.recipe-table td {
  padding: 12px 14px;
  border: 1.5px solid var(--black);
  text-align: left;
  vertical-align: middle;
}

.recipe-table th {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.recipe-table th:last-child,
.recipe-table td:last-child {
  width: 38%;
  text-align: left;
}

.recipe-steps {
  margin: 0;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3.5vw, 48px) clamp(28px, 3.5vw, 44px);
  list-style: none;
  counter-reset: recipe-step;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--black);
  flex: 1;
}

.recipe-steps li {
  position: relative;
  margin: 0 0 1em;
  padding-left: 0;
  counter-increment: recipe-step;
}

.recipe-steps li:last-child {
  margin-bottom: 0;
}

.recipe-steps li::before {
  content: counter(recipe-step) "- ";
  font-weight: 700;
}

.recipe-notes {
  position: relative;
  margin: 0;
  padding: 0 0 clamp(36px, 4vw, 56px);
  border-top: none;
  overflow: visible;
}

.recipe-notes .recipe-heading {
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
}

.recipe-notes p {
  margin: 0;
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3.5vw, 48px) 0;
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--black);
}

.recipe-panel,
.recipe-split,
.recipe-split__right {
  overflow: visible;
}

.recipe-bridge {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.recipe-bridge__stain {
  position: absolute;
  right: clamp(24px, 8vw, 40px);
  top: 0;
  z-index: 3;
  width: clamp(160px, 20vw, 240px);
  height: auto;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: multiply;
  transform: translateY(-50%) rotate(-8deg);
}

.recipe-gallery.gallery--techniques {
  background: none;
  background-image: none;
  padding: clamp(40px, 5vw, 64px) 0;
  min-height: 0;
  margin: 0;
}

/* —— 404 —— */
.error-404 {
  background: var(--white);
}

.page-hero--404 {
  min-height: clamp(280px, 32vw, 412px);
  aspect-ratio: 1280 / 412;
}

.page-hero--404 .page-hero__title {
  border-radius: 4px;
  padding: 0.45em 1.25em;
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-size: clamp(28px, 4vw, 48px);
  max-width: min(92%, 220px);
  text-transform: none;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.error-404__intro {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.error-404__stain {
  top: -12%;
  right: clamp(-40px, -2vw, 24px);
  width: min(320px, 38vw);
  opacity: 0.75;
}

.error-404__hand {
  margin: 0 auto clamp(12px, 2vw, 20px);
  font-family: "Neonoir W01 Hand", cursive;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  color: var(--brown);
  transform: rotate(-2deg);
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 36px);
  margin-top: clamp(28px, 4vw, 40px);
}

.error-404__actions .text-link {
  font-family: var(--font-body);
  color: var(--black);
}

.error-404__actions .text-link--oval span {
  font-size: clamp(18px, 2vw, 22px);
}


/* —— Responsive: stack at 900px —— */


/* New Css  */
.umami-prd-text-black span.related-products__label.related-products__label--orange {
    color: var(--black) !important;
}
.umami-store-paragraph-width p {
    max-width: 440px;
}
.highlight-text-bg-brown .headline {
    color: #fff;
}
.stocks-chefs-top-heading-left-move .headline--stack.is-in > span:nth-child(1) {
    position: relative;
    left: 70px;
}
.stocks-howto-second-title-move .headline--stack.is-in > span:nth-child(2) {
    position: relative;
    left: 45px;
}
.contact-form select {
    background-image: url(/wp-content/uploads/2026/07/arrow-single-down.png) !important;
    background-size: 30px !important;
    background-repeat: no-repeat !important;
    background-position: 97% !important;
}
.section-culinary-pt-custom {
    padding-top: 50px;
}
.section-intro--ferm-float--img .section-intro__stain--coffee {
    right: 0;
    opacity: 1;
    transform: none;
}