  /* 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;
  flex-direction: column;
  }

  .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);
  width: calc(var(--hand-h) * 283 / 412);
  transform: translateX(var(--hand-x));
  overflow: hidden;
  pointer-events: none;
  }

  .hero__hand {
  display: block;
  height: var(--hand-h);
  width: 100%;
  max-width: none;
  object-fit: contain;
  object-position: top center;
  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;
  }

  /* Spark lines beside the pinch — scales with hand */
.home-rotate-anim {
    position: absolute;
    z-index: 2;
    top: 42%;
    left: 0;
    width: clamp(22px, calc(var(--hand-h) * 0.1), 52px);
    height: auto;
    display: block;
    transform-origin: center center;
    animation: rotateLeaf 1.1s ease-in-out infinite alternate;
    will-change: transform, opacity;
    user-select: none;
}
  @keyframes rotateLeaf {
  0% {
    transform: rotate(-8deg);
    opacity: 0.55;
  }
  100% {
    transform: rotate(8deg);
    opacity: 1;
  }
  }

  @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: 520px;
  }

  .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;
  text-decoration: none;
  }

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

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

  .hero-photo img,
  .hero-photo video {
  position: absolute;
  inset: 0;
  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: -2px 0px 0;
    background: var(--white);
    overflow-x: clip;
  }

  /* Sticky stack: consecutive splits replace each other on scroll */
  .split-stack {
    position: relative;
    display: block;
  }

  .split-stack .split--sticky {
    position: sticky;
    top: 0;
    z-index: var(--stack-z, 1);
    min-height: 100vh;
    min-height: 100svh;
    margin-top: 0;
    background: var(--white);
    /* overflow on the sticky element itself breaks stickiness */
    overflow: visible;
    overflow-x: visible;
  }

  .split-stack .split--sticky .split__media {
    min-height: 100vh;
    min-height: 100svh;
  }

  @media (prefers-reduced-motion: reduce) {
    .split-stack .split--sticky {
      position: relative;
      top: auto;
      z-index: auto;
      min-height: 0;
    }

    .split-stack .split--sticky .split__media {
      min-height: clamp(420px, 58.67vw, 751px);
    }
  }

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

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

  .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;
  padding: 0.55em 1.35em;
  text-decoration: none;
  border-bottom: none;
  }

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

  .text-link--oval span {
    position: relative;
    z-index: 1;
    text-decoration: none;
    border-bottom: none;
    line-height: 1.15;
    white-space: nowrap;
  }

  /* Beat later .text-link { border-bottom } / underline rules */
  a.text-link.text-link--oval,
  a.text-link.text-link--oval span {
    border-bottom: none !important;
    text-decoration: none !important;
  }


  .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: -200px;
    bottom: -12%;
    width: min(380px, 55%);
    transform: rotate(-160deg);
    pointer-events: none;
    opacity: 1;
  }

  /* —— 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%, 450px);
  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%;
  min-width: 245px;
  }

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

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

  .trusted__dots span,
  .trusted__dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  }

  .trusted__dots span.is-active,
  .trusted__dot.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,
  .why .split__media > video: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,
  .recipe .split__media > video: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: 6px;
  align-items: center;
  }

  .slider-nav__dots button {
  width: 13px;
  height: 13px;
  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(0px, 4vw, 0px) 36px;
    margin-top: -1px;
    position: relative;
    z-index: 2;
  }
  .footer__brand {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(36px, 5vw, 56px);
  margin-right: calc(-1 * clamp(12px, 2vw, 24px));
  overflow: hidden;
  }

  .footer__brand-link {
  position: relative;
  display: block;
  width: min(1100px, 92%);
  max-width: 100%;
  line-height: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 0;
  background: transparent;
  /* Keep this wrapper free of opacity/transform so mix-blend on the img
     can still multiply against the orange footer (Figma). */
  }

  .footer__brand-hand,
  .footer__brand-text {
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  will-change: transform, opacity;
  }

  .footer__brand-hand {
  width: 100%;
  position: relative;
  z-index: 1;
  }

  .footer__brand-text {
    position: absolute;
    left: 45%;
    top: 25%;
    width: 52%;
    z-index: 2;
  }

  .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;
  transition: 0.5s;
  }

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


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

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



  .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-hand,
  .footer__brand-text {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  }

  .footer.is-in .footer__brand-hand {
  animation: footer-brand-shakeX 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .footer.is-in .footer__brand-text {
  animation: footer-brand-shakeX 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  }

  @keyframes footer-brand-shakeX {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  55% {
    opacity: 1;
    transform: translate3d(-14px, 0, 0);
  }
  68% {
    transform: translate3d(10px, 0, 0);
  }
  80% {
    transform: translate3d(-6px, 0, 0);
  }
  90% {
    transform: translate3d(3px, 0, 0);
  }
  100% {
    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,
  .home-rotate-anim,
  .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-hand,
  .footer__brand-text,
  .headline--stack > span {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }
  }

  /* —— Inner page top bar (orange strip ~83px) —— */
  .site-top {
  position: sticky;
  top: 0;
  z-index: 9999;
  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: 999999;
  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, 2.1vw, 24px);
    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: 0px;
  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: uppercase;
  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: 0px;
  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: uppercase;
  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: 0px;
  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: 0px;
  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: 0px;
  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: 0px;
  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: 0px;
  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: 0px;
  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:hidden;
  }

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

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

  .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: none;
    text-underline-offset: 3px;
    width: fit-content;
    color: inherit;
    border-bottom: 1px solid;
  }

  /* Oval CTAs: scribble frame only — never a straight underline/border through the label */
  .text-link.text-link--oval {
    border-bottom: none;
    text-decoration: none;
  }

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

  .text-link.text-link--oval span {
    position: relative;
    z-index: 1;
    text-decoration: none;
    border-bottom: none;
  }

  /* —— 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,
  .story__inner .text-link--oval {
  margin-top: clamp(8px, 1.5vw, 20px);
  min-width: 0;
  min-height: 3.25em;
  padding: 0.7em 1.75em;
  max-width: 100%;
  border-bottom: none;
  text-decoration: none;
  }

  .story--editorial .text-link--oval span,
  .story__inner .text-link--oval span {
  white-space: normal;
  text-align: center;
  max-width: 18rem;
  border-bottom: none;
  text-decoration: none;
  }

  /* 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);
    transform-origin: left center;
    margin-top: 4px;
    margin-left: 0;
    max-width: 100%;
    white-space: normal;
  }

  /* EN second line is short — keep a light stagger */
  html:not([lang^="fr"]) #alt-heading.is-in > span:nth-child(2) {
    margin-left: 30px;
    margin-top: -12px;
  }

  /* FR: “construisons l'alternative” needs the full column */
  html[lang="fr"] #alt-heading {
    font-size: clamp(32px, 3.4vw, 48px);
  }

  html[lang="fr"] #alt-heading > span {
    max-width: 100%;
    box-sizing: border-box;
  }

  #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 {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  background: #111;
  overflow: hidden;
  }

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

  .bleed-photo--quote {
  display: grid;
  place-items: center;
  }

  .bleed-photo--quote > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  }

  .bleed-photo__quote {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 48px);
  max-width: min(92%, 70rem);
  text-align: center;
  color: var(--white);
  font-style: normal;
  line-height: normal;
  }

  .bleed-photo__quote-text,
  .bleed-photo__cite {
  margin: 0;
  font-family: "Neonoir W01 Bold", cursive;
  font-size: clamp(28px, 4.6vw, 56px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  color: var(--white);
  text-shadow: none;
  }

  .bleed-photo__cite {
  display: block;
  margin-top: 0.15em;
  font-style: normal;
  }

  /* —— 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: 0;
  }

  @media (min-width: 901px) {
  #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: url(/wp-content/uploads/2026/07/dots-pattern0bg.webp);
    padding: clamp(48px, 6vw, 80px) clamp(16px, 2vw, 24px);
    overflow-x: clip;
  }

  .product-card {
    position: relative;
    display: block;
    padding: clamp(6px, 0.2vw, 6px);
    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__media {
  position: relative;
  display: block;
  overflow: hidden;
  }

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

  /* Hide native select — replaced by .ett-select UI */
  .contact-form select.ett-select__native,
  .contact-form .ett-select__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  min-height: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  pointer-events: none;
  }

  .contact-form .wpcf7-form-control-wrap:has(select),
  .contact-form .wpcf7-form-control-wrap:has(.ett-select) {
  position: relative;
  z-index: 1;
  }

  .contact-form .wpcf7-form-control-wrap:has(.ett-select.is-open) {
  z-index: 5;
  }

  .ett-select {
  position: relative;
  width: 100%;
  }

  .ett-select__shell {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--brutal-shadow);
  }

  .ett-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 22px 28px;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  }

  .ett-select__trigger:focus {
  outline: 2px solid var(--black);
  outline-offset: 2px;
  }

  .ett-select__label {
  flex: 1 1 auto;
  min-width: 0;
  }

  .ett-select__chevron {
  flex: 0 0 auto;
  width: 28px;
  height: 20px;
  background: url("../assets/arrow-down.png") center / contain no-repeat;
  /* Closed: point right (>) like design */
  transform: rotate(-90deg);
  transition: transform 0.18s ease;
  }

  /* Open: point down */
  .ett-select.is-open .ett-select__chevron {
  transform: rotate(0deg);
  }

  .ett-select__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--black);
  }

  .ett-select__option {
  margin: 0;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  cursor: pointer;
  }

  .ett-select__option:last-child {
  border-bottom: 0;
  }

  .ett-select__option:hover,
  .ett-select__option:focus,
  .ett-select__option.is-selected {
  background: #f3f3f3;
  outline: none;
  }

  .contact-form select {
  background-image: none;
  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: 6px;
      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__tag {
    margin: 0;
    padding: 0.3em 0.65em;
    font-family: var(--font-body);
    font-size: clamp(22px, 2.05vw, 22px);
    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, 42px);
  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(50px, 8vw, 50px) 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%;
  }

  .pillars__nav {
  display: none;
  }

  .pillar-card {
    background: var(--white);
    border: none;
    box-shadow: var(--brutal-shadow);
    padding: clamp(28px, 3vw, 40px) clamp(22px, 2.4vw, 32px);
    min-height: 467px;
  }
  .pillar-card h3 {
    margin: 0 0 18px;
    font-family: var(--font-condensed);
    font-size: clamp(18px, 2.7vw, 32px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: inherit;
  }

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

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

  /* Sticky stack: each block replaces the one above it on scroll */
  .info-grid-stack {
  position: relative;
  display: block;
  }

  .info-grid-stack .info-grid--sticky {
  position: sticky;
  top: 0;
  z-index: var(--stack-z, 1);
  min-height: 100vh;
  min-height: 100svh;
  align-content: stretch;
  overflow: visible;
  }

  .info-grid-stack .info-grid--sticky .info-cell {
  min-height: 100vh;
  min-height: 100svh;
  }

  @media (prefers-reduced-motion: reduce) {
  .info-grid-stack .info-grid--sticky {
    position: relative;
    top: auto;
    z-index: auto;
    min-height: 0;
  }

  .info-grid-stack .info-grid--sticky .info-cell {
    min-height: clamp(420px, 58.67vw, 751px);
  }
  }

  .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);
  overflow: visible;
  }

  .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: 5px;
  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 {
  position: relative;
  z-index: 2;
  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, 38px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--black);
  overflow: visible;
  }

  .info-cell .taste-list > .taste-list__item,
  .taste-list > .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: none;
  }

  /* Trailing commas via ::after so they stay glued to the last word (no orphan commas) */
  .taste-list__item {
  display: inline;
  }

  .taste-list__item:not(.taste-list__item--last)::after {
  content: ",";
  }

  .taste-list__text {
  background-image: url(https://sho.common-ideas.com/wp-content/uploads/2026/07/border-shape.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 6px;
  padding-bottom: 4px;
  }

  .taste-list__item--preview {
  position: relative;
  display: inline-block;
  cursor: pointer;
  max-width: 100%;
  z-index: 1;
  }

  /* Preview effect: desktop fine-pointer only */
  .taste-list__preview {
  display: none;
  }

  @media (hover: hover) and (pointer: fine) {
  .taste-list__item--preview.is-preview-open {
    z-index: 40;
  }

  .taste-list__preview {
    display: block;
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    bottom: auto;
    z-index: 30;
    width: clamp(148px, 15vw, 200px);
    aspect-ratio: 3 / 4;
    height: auto;
    overflow: hidden;
    pointer-events: none;
    box-shadow: 12px 12px 0 0 #000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px);
    transform-origin: top center;
    /* Instant close so a new hover is never fighting a leftover preview */
    transition: none;
  }

  .taste-list__item--preview.is-preview-open .taste-list__preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .taste-list__preview img,
  .taste-list__preview-video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    background: transparent;
    box-shadow: none;
  }

  .taste-list__preview-video {
    pointer-events: none;
  }
  }

  /* Phones / tablets: no hover preview at all */
  @media (max-width: 900px) {
  .taste-list__item--preview {
    cursor: inherit;
  }

  .taste-list__preview {
    display: none !important;
  }
  }

  .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: none;
  text-align: center;
  }

  /* Shared hand typing / typewriter */
  [data-typewriter] {
  display: grid;
  justify-items: center;
  }

  [data-typewriter] > * {
  grid-area: 1 / 1;
  }

  .typewriter__sizer {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  }

  .typewriter__text {
  width: 100%;
  }

  .typewriter__text::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  margin-left: 0.08em;
  vertical-align: -0.05em;
  background: currentColor;
  opacity: 0;
  }

  [data-typewriter].is-typing .typewriter__text::after,
  [data-typewriter].is-typed .typewriter__text::after,
  [data-typewriter].is-typing-active .typewriter__text::after {
  opacity: 1;
  animation: typewriter-caret-blink 0.85s steps(1, end) infinite;
  }

  [data-typewriter].is-typed:not(.is-typing-active) .typewriter__text::after {
  animation-iteration-count: 4;
  animation-fill-mode: forwards;
  }

  @keyframes typewriter-caret-blink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
  }

  @media (prefers-reduced-motion: reduce) {
  [data-typewriter].is-typing .typewriter__text::after,
  [data-typewriter].is-typed .typewriter__text::after {
    animation: none;
    opacity: 0;
  }
  }

  /* —— Recipe / showcase strip (edge-clipped slider) —— */
  .showcase {
    position: relative;
    background-image: url(/wp-content/uploads/2026/07/dots-pattern0bg.webp);
    background-size: contain;
    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: 1;
  }

  .showcase__stain--a {
    top: 5%;
    left: 15%;
    width: min(530px, 42vw);
    transform: rotate(3deg);
  }

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

  .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-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  }

  .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 {
  position: relative;
  height: clamp(420px, 58.67vw, 750px);
  min-height: 420px;
  overflow: hidden;
  background: #e8e8e8;
  }

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

  .contact-locate__leaflet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  z-index: 0;
  }

  /* Leaflet adds .leaflet-container onto the same element as .contact-locate__leaflet */
  .contact-locate__leaflet.leaflet-container,
  .contact-locate__leaflet .leaflet-container {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  font: inherit;
  }

  /* Soften Carto labels toward the flat grayscale reference */
  .contact-locate__leaflet .leaflet-tile-pane {
  filter: grayscale(1) contrast(0.92) brightness(1.04);
  }

  .contact-locate__leaflet .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: #888;
  }

  .contact-locate__leaflet .leaflet-control-zoom a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #333;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  }

  /* Cluster: dark disc + soft light halo (matches design) */
  .ett-map-cluster {
  background: transparent !important;
  border: none !important;
  }

  .ett-map-cluster__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #2a2a2a;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1;
  box-shadow: 0 0 0 10px rgba(160, 160, 160, 0.45);
  }

  .ett-map-cluster--lg .ett-map-cluster__inner {
  font-size: 16px;
  box-shadow: 0 0 0 12px rgba(160, 160, 160, 0.45);
  }

  .ett-map-cluster--md .ett-map-cluster__inner {
  font-size: 15px;
  box-shadow: 0 0 0 11px rgba(160, 160, 160, 0.45);
  }

  .ett-map-cluster--xxs .ett-map-cluster__inner {
  font-size: 12px;
  box-shadow: 0 0 0 8px rgba(160, 160, 160, 0.45);
  }

  /* Single pin — white teardrop */
  .ett-map-pin {
  background: transparent !important;
  border: none !important;
  }

  .ett-map-pin__body {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #c8c8c8;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  position: relative;
  }

  .ett-map-pin__body::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #9a9a9a;
  transform: none;
  }

  .marker-cluster,
  .marker-cluster div {
  background: transparent !important;
  }

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

  .contact-locate__address a {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 0.5px;
    margin-top: 20px;
    text-transform: lowercase;
    display: inline-block;
  }
  .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;
    box-shadow: var(--brutal-shadow);
    transition: box-shadow 0.2s ease-in-out;
  }

  .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, 2vw, 22px);
    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, 2.15vw, 22px);
    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 {
  position: relative;
  min-height: clamp(360px, 45vw, 600px);
  overflow: hidden;
  background: #111;
  }

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

  .prose-grid__media--bw img,
  .prose-grid__media--bw video {
  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;
  min-height: clamp(280px, 38vw, 495px);
  }

  .bleed-photo--innovation img {
  max-height: none;
  min-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;
  box-shadow: var(--brutal-shadow);
  }

  .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, 2.35vw, 22px);
    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(/wp-content/uploads/2026/07/tick-check.svg);
    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(/wp-content/uploads/2026/07/cross.svg);
  }
  /* .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: min(20rem, 55%);
  font-family: "DaisyWheel", "Courier New", Courier, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.25;
  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-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;
  pointer-events: none;
  }

  .product-duo__seal,
  .product-feature__seal {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  }

  .product-duo__seal-ring,
  .product-duo__seal-icon,
  .product-feature__seal-ring,
  .product-feature__seal-icon {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  }

  .product-duo__seal-icon,
  .product-feature__seal-icon {
  position: relative;
  z-index: 1;
  animation: none !important;
  transform: none !important;
  }

  .product-duo__seal-ring,
  .product-feature__seal-ring,
  img.product-duo__seal,
  img.product-feature__seal,
  img.article-download__seal,
  .recipe-facts__seal img {
  animation: ett-seal-spin 12s linear infinite;
  }

  @keyframes ett-seal-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
  }

  @media (prefers-reduced-motion: reduce) {
  .product-duo__seal-ring,
  .product-feature__seal-ring,
  .article-download__seal-ring,
  img.product-duo__seal,
  img.product-feature__seal,
  img.article-download__seal,
  .recipe-facts__seal img {
    animation: none;
  }
  }

  .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 — match new portrait assets (~1857×2560), no L/R crop */
  .gallery--techniques {
    padding: clamp(48px, 5.5vw, 72px) 0;
    min-height: 0;
    display: flex;
    align-items: center;
    background: url("/wp-content/uploads/2026/07/dots-pattern0bg.webp");
  }

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

  .gallery--techniques .gallery__slide,
  .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(200px, 20vw, 300px);
  height: auto;
  aspect-ratio: 1857 / 2560;
  background: transparent;
  }

  .gallery--techniques .gallery__slide img,
  .gallery--techniques .gallery__slide-link {
  display: block;
  width: 100%;
  height: 100%;
  }

  .gallery--techniques .gallery__slide img {
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  }

  .gallery--techniques .gallery__slide-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  }

  /* 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%, 90rem);
    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: none;
    text-align: left;
    padding-left: 10%;
  }
  .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;
  text-shadow: none;
  }

  .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-shadow: none;
  /* text-transform: uppercase; */
  }

  .quote-banner--typing .quote-banner__text {
  margin: 0;
  justify-items: start;
  text-shadow: none;
  }

  .quote-banner--umami blockquote,
  .quote-banner--umami blockquote p,
  .quote-banner--umami cite,
  .quote-banner--umami .quote-banner__text {
  text-shadow: none;
  }

  /* 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: 51%;
    margin: 0;
    transform: translateX(-50%) rotate(13deg);
    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(--brown);
    color: var(--white);
    white-space: nowrap;
    top: 75px;
  }

  .product-feature__copy {
    position: absolute;
    z-index: 1;
    left: 52%;
    bottom: clamp(28px, 9vw, 116px);
    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, 6vw, 80px);
    width: clamp(88px, 10vw, 128px);
    height: auto;
    pointer-events: none;
  }
  /* 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);
  }

  /* Persistent two-column article layout */
  .article-body__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4.5vw, 62px);
  row-gap: clamp(28px, 3.6vw, 48px);
  align-items: start;
  }

  .article-block--span-1 {
  grid-column: span 1;
  }

  .article-block--span-2 {
  grid-column: 1 / -1;
  }

  /* Explicit half-column placement */
  .article-block--col-left {
  grid-column: 1;
  }

  .article-block--col-right {
  grid-column: 2;
  }

  .article-block {
  min-width: 0;
  }

  /*
   * Auto 2-column flow: write once top→bottom;
   * CSS fills the left column, then continues at the top of the right.
   */
  .article-block--multicol > .article-col {
  columns: 2;
  column-gap: clamp(28px, 4.5vw, 62px);
  column-fill: balance;
  }

  .article-block--multicol > .article-col > * {
  margin-top: 0;
  }

  .article-block--multicol > .article-col > * + * {
  margin-top: 1.1em;
  }

  /* Keep lists in one column — items must not spill across columns. */
  .article-block--multicol > .article-col > ul,
  .article-block--multicol > .article-col > ol {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  }

  .article-block--multicol > .article-col li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  }

  /* Paired half-left + half-right stacks (true side-by-side columns) */
  .article-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4.5vw, 62px);
  align-items: start;
  }

  .article-pair__col {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
  }

  .article-pair__col .article-block--heading {
  margin-top: 0;
  }

  .article-pair__col .article-block--paired {
  width: 100%;
  }

  .article-pair__col .article-block--table {
  margin-top: 0;
  margin-bottom: 0;
  }

  .article-block--narrow > .article-col {
  max-width: 40rem;
  }

  .article-block--image-half {
  width: 100%;
  }

  .article-block--align-left {
  justify-self: start;
  }

  .article-block--align-center {
  justify-self: center;
  }

  .article-block--align-right {
  justify-self: end;
  }

  .article-block--download {
  display: flex;
  width: 100%;
  }

  .article-block--download.article-block--align-left {
  justify-content: flex-start;
  }

  .article-block--download.article-block--align-center {
  justify-content: center;
  }

  .article-block--download.article-block--align-right {
  justify-content: flex-end;
  }

  .article-block--button {
  display: flex;
  width: 100%;
  margin: clamp(8px, 1.5vw, 20px) 0;
  }

  .article-block--button.article-block--align-left {
  justify-content: flex-start;
  }

  .article-block--button.article-block--align-center {
  justify-content: center;
  }

  .article-block--button.article-block--align-right {
  justify-content: flex-end;
  }

  .article-sub--h3 {
  font-size: clamp(24px, 2.6vw, 28px);
  }

  .article-block--heading {
  margin: clamp(12px, 2vw, 24px) 0 0;
  }

  .article-block--heading:first-child {
  margin-top: 0;
  }

  .article-photo__caption {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--black);
  opacity: 0.72;
  }

  .article-col p:last-child {
  margin-bottom: 0;
  }

  .article-col ul,
  .article-col ol {
  margin: 0 0 1.1em;
  padding-left: 1.15em;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  }

  .article-col li + li {
  margin-top: 0.35em;
  }

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

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

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

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

  .article-col p {
  margin: 0 0 1.1em;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.35vw, 18px);
  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__seal {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  }

  .article-download__seal-ring,
  .article-download__seal-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  }

  .article-download__seal-ring {
  z-index: 0;
  animation: ett-seal-spin 12s linear infinite;
  }

  .article-download__seal-icon {
  z-index: 1;
  animation: none !important;
  transform: none !important;
  }

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

  @media (prefers-reduced-motion: reduce) {
  .article-download__seal-ring {
    animation: none;
  }
  }

  /* —— 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: 100%;
  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: 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);
  text-align: center;
  }

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

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

  .recipe-facts__item:not(:last-child)::after {
  content: " / ";
  font-weight: 400;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 18px);
  }

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

  .article-block--table {
  margin: clamp(20px, 2.5vw, 36px) 0;
  }

  .article-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  }

  .article-table.recipe-table {
  min-width: min(100%, 520px);
  }

  .article-table.recipe-table th:last-child,
  .article-table.recipe-table td:last-child {
  width: auto;
  }

  .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, 20px);
    top: 0;
    z-index: 3;
    width: clamp(160px, 20vw, 240px);
    height: auto;
    pointer-events: none;
    opacity: 0.9;
    mix-blend-mode: multiply;
    transform: translateY(-20%) 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: 0px;
  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 —— */
  @media (max-width: 900px) {
  /* —— Nav overlay —— */
  .nav-overlay {
    flex-direction: column;
  }

  .nav-overlay__media {
    display: none;
  }

  .nav-overlay__panel {
    flex: 1 1 100%;
    width: 100%;
    height: 100%;
    padding:
      max(20px, env(safe-area-inset-top))
      max(24px, env(safe-area-inset-right))
      max(28px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
  }

  .nav-overlay__close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
  }

  .nav-overlay__list {
    gap: clamp(16px, 3.5vh, 28px);
    padding: 56px 0 28px;
  }

  .nav-overlay__list a {
    font-size: clamp(36px, 10vw, 56px);
  }

  .nav-overlay__social {
    gap: clamp(24px, 6vw, 36px);
    padding-bottom: env(safe-area-inset-bottom);
  }

  /* —— Stack multi-column layouts —— */
  .split,
  .products,
  .prose-grid,
  .quad-grid,
  .info-grid,
  .product-duo,
  .product-duo--stocks,
  .related-products,
  .recipe-split,
  .compare__inner {
    grid-template-columns: 1fr;
  }

  .split > *,
  .products > *,
  .prose-grid > *,
  .quad-grid > *,
  .info-grid > *,
  .product-grid > *,
  .product-duo > *,
  .related-products > *,
  .compare__inner > * {
    min-width: 0;
    max-width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px);
    gap: 12px;
  }

  /* —— Split / prose media + copy —— */
  .split__media,
  .prose-grid__media,
  .prose-grid--tall .prose-grid__media,
  .prose-grid--taller .prose-grid__media,
  .prose-grid--ci .prose-grid__media,
  .quad-cell--media {
    order: -1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .split__copy,
  .quad-cell,
  .info-cell {
    min-height: 0;
    padding: clamp(28px, 6vw, 40px) clamp(20px, 5vw, 28px) clamp(36px, 7vw, 48px);
    gap: clamp(20px, 4vw, 32px);
  }

  .split__prose,
  .quad-cell p,
  .quad-cell .split__prose p,
  .info-cell p {
    width: 100%;
    max-width: none;
  }

  .split__copy p,
  .split__prose p,
  .prose-block p,
  .features__intro,
  .info-cell p,
  .quad-cell p {
    font-size: clamp(16px, 4.2vw, 18px);
  }

  .prose-grid__copy {
    padding: clamp(28px, 6vw, 40px) clamp(20px, 5vw, 32px) clamp(36px, 7vw, 52px);
    gap: clamp(22px, 4vw, 32px);
  }

  /* —— Headlines: fit viewport, kill desktop offsets —— */
  .headline,
  .headline--stack {
    font-size: clamp(28px, 8.5vw, 40px);
    max-width: 100%;
  }

  .headline--stack {
    gap: 10px;
    width: 100%;
  }

  .headline--stack span {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }

  #passion-heading > span:nth-child(2),
  #range-heading > span:nth-child(1),
  #range-heading > span:nth-child(2),
  .stocks-chefs-top-heading-left-move .headline--stack.is-in > span:nth-child(1),
  .stocks-howto-second-title-move .headline--stack.is-in > span:nth-child(2),
  .heading-style-bottom-left-move .headline--stack.is-in > span:nth-child(2),
  .governance-heading-title-move-right .headline--stack.is-in > span:nth-child(2),
  .page-id-95 .quad-grid .headline--stack.is-in > span:nth-child(2) {
    margin-left: 0 !important;
    left: 0 !important;
    position: static !important;
    transform: none !important;
    align-self: flex-start;
  }

  .trusted .trusted__titles .trusted__pill:first-child,
  .trusted .trusted__titles .trusted__sub {
    margin-left: 0;
  }

  .trusted__titles {
    align-items: stretch;
    padding: 0 16px;
  }

  .trusted__pill,
  .trusted__sub {
    font-size: clamp(28px, 8vw, 40px);
    text-align: center;
    width: fit-content;
    max-width: 100%;
    margin-left: 0 !important;
    align-self: center;
    background: var(--black);
    color: var(--white);
  }

  /* —— Product cards —— */
  .product-card__label {
    font-size: clamp(22px, 6vw, 32px);
    max-width: calc(100% - 32px);
  }

  .product-duo__col--light .product-duo__title,
  .product-duo__col--dark .product-duo__title,
  .product-feature--umami .product-feature__title {
    left: auto;
    right: auto;
    transform: none;
    position: relative;
  }

  /* —— Features / page hero —— */
  .features {
    padding: clamp(40px, 8vw, 64px) clamp(16px, 4vw, 24px);
  }

  .features__intro {
    padding: 0 4px;
  }

  /* —— Compare panel (Why we cook) —— */
  .compare {
    padding: clamp(36px, 7vw, 56px) clamp(16px, 4vw, 24px);
  }

  .compare__inner {
    gap: clamp(24px, 5vw, 36px);
    align-items: stretch;
  }

  .compare__panel--image {
    width: 100%;
    box-shadow: var(--brutal-shadow);
  }

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

  .compare__copy {
    gap: 18px;
  }

  .compare__copy .headline--stack {
    width: 100%;
  }

  .compare__copy .headline--stack span {
    max-width: 100%;
  }

  .compare__copy p {
    font-size: clamp(16px, 4.2vw, 18px);
  }

  .page-hero {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  .page-hero__title {
    font-size: clamp(18px, 5.5vw, 28px);
    max-width: min(92%, 520px);
    padding: 0.4em 0.75em;
  }

  /* —— Footer —— */
  .footer {
    padding: clamp(36px, 8vw, 56px) 16px 28px;
  }

  .footer__brand {
    justify-content: center;
    margin-right: 0;
    margin-bottom: 28px;
    overflow: hidden;
  }

  .footer__brand-link {
    width: min(340px, 88%);
  }

  .footer__nav {
    gap: 14px 20px;
    padding: 20px 8px;
    font-size: clamp(18px, 5vw, 24px);
  }

  .footer__legal {
    gap: 16px 24px;
    padding-top: 28px;
    font-size: clamp(12px, 3.4vw, 16px);
  }

  /* —— Misc sections —— */
  .story {
    padding: clamp(40px, 8vw, 64px) clamp(20px, 5vw, 28px);
  }

  .contact-form {
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 24px);
  }

  .application-block-li-custom-style .info-list {
    margin-left: 0;
  }

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

  .wine-stain,
  .section-intro__stain,
  .scrap-mark {
    max-width: 50vw;
  }

  .section-culinary-pt-custom .section-intro__stain.section-intro__stain--wine {
    top: -40px;
    max-width: 120px;
  }
  }


  /* 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;
  }
  @media (min-width: 901px) {
  .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;
  }
  .heading-style-bottom-left-move .headline--stack.is-in > span:nth-child(2) {
      position: relative;
      left: 47px;
  }
  .governance-heading-title-move-right .headline--stack.is-in > span:nth-child(2) {
      margin-left: 50px;
      transform: rotate(-6deg);
  }
  .trusted .trusted__titles .trusted__pill:first-child {
      margin-left: -260px;
  }
  .trusted .trusted__titles .trusted__sub {
      margin-left: 150px;
      background-color: var(--black);
      color: #fff;
  }
  .page-id-95 .quad-grid .headline--stack.is-in > span:nth-child(2) {
      margin-left: 100px;
      transform: rotate(-7deg);
  }
  .product-duo__col--light .product-duo__title {
      transform: rotate(17deg);
      left: 100px;
  }
  .product-duo__col--dark .product-duo__title {
      transform: rotate(352deg);
  }
  .application-block-li-custom-style .info-list {
      margin-left: 50px;
      gap: 0;
  }
  .product-feature--umami .product-feature__title {
      transform: rotate(-15deg);
      left: 40%;
  }
  }
  .contact-form select {
    background-image: none !important;
  }
  .section-culinary-pt-custom {
    padding-top: 50px;
    overflow: visible;
  }
  .section-intro--ferm-float--img .section-intro__stain--coffee {
    right: 0;
    opacity: 1;
    transform: none;
  }
  .process-flow__arrow img {
    display: inline-block;
    width: 42px;
  }
  .features .headline {
    margin-bottom: 10px;
  }
  .split__prose {
    width: 100%;
    max-width: 470px;
  }
  .text-link.text-link--oval,
  .text-link.text-link--oval span {
    border-bottom: none;
    text-decoration: none;
  }
  .what-you-can-li-style-cus .info-list li:nth-child(even) {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 0.5px;
  }
  .what-you-can-li-style-cus .info-list li {
    margin-bottom: 20px;
  }
  .info-grid div:first-child .headline {
    background-color: #fff;
    color: var(--black);
  }
  .prose-grid--taller-space-less .prose-grid__copy.reveal.is-in {
    padding-bottom: 0;
  }
  .page-id-105 .spec-table thead th {
    font-family: var(--font-condensed);
    font-size: clamp(15px, 4.5vw, 32px);
  }
  .product-feature--demi .product-feature__media {
    position: static;
  }
  .footer__nav:hover {
    background-color: #974604;
    color: #fff;
  }
  .application-block-li-custom-style .info-list li:nth-child(1), .application-block-li-custom-style .info-list li:nth-child(2), .application-block-li-custom-style .info-list li:nth-child(8), .application-block-li-custom-style .info-list li:nth-child(10){
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 0.5px;
  }
  .from-brief-to-plate-heading .info-cell--orange .headline {
    background-color: #fff;
    color:var(--black);
  }
  .section-culinary-pt-custom .section-intro__stain.section-intro__stain--wine {
    left: 0;
    width: auto;
    z-index: 999999999;
    opacity: 1;
    top: -70px;
  }
  .underline-contact {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 0.5px;
    margin-bottom: 25px;
    display: inline-block;
  }
  .spec-table tbody th:first-child {
    text-transform: uppercase;
    text-align: center;
  }
  .slash {
    font-weight: 500;
    font-size: 36px;
    position: relative;
    margin-left: -5px;
    left: 8px;
    top: -2px;
  }
  .cta-underline-white span {
    border-color: #fff;
  }
  .application-block-li-custom-style  .info-list {
    width: 80%;
  }
  .what-you-can-li-style-cus .info-list {
    width: 95%;
  }
  .our-range-from-heading-right-move .headline--stack.is-in > span:nth-child(1) {
    margin-left: 100px;
  }
  input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
  .clear-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    display: none;
  }
  .clear-btn img {
    width: 36px;
  }
  .the-site-logo {
    font-size: 44px;
    font-family: 'Anton';
    letter-spacing: 0;
    transition: .5s;
    opacity: 1;
    text-decoration: none;
  }
  .home .site-top {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-color: transparent;
      z-index: 20;
  }
  .home .site-top .the-site-logo {
      position: relative;
      z-index: 21;
  }
  /* Keep the hanging hand below the header bar so it never strikes through the logo */
  .home .hero__hand-reveal {
      top: 72px;
  }
  .home .header-sticky {
      position: sticky;
      top: 0;
      background-color: var(--orange);
  }
  .banner_subtitle {
      font-size: clamp(36px, 4.2vw, 60px);
      font-family: "Neonoir W01 Slim";
      text-transform: lowercase;
      font-weight: 700;
      justify-items: start;
      margin-top: 30px;
      /* Safari clips Neonoir swashes / the longer FR line against .hero overflow */
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0.3em 0.5em 0.25em;
      line-height: 1.4;
      overflow: visible;
  }
  .banner_subtitle .typewriter__sizer,
  .banner_subtitle .typewriter__text {
      overflow: visible;
      line-height: inherit;
  }
  .banner_subtitle .typewriter__sizer {
      padding-right: 0.28em;
  }
  .cta-content-width-cus .cta-banner__title {
      max-width: 690px;
  }
  /* :hover css  */
  .menu-btn, .site-top .lang img, .site-top .lang__toggle img, .footer__nav a, .footer__legal a, .text-link, .banner_subtitle, .blog-card__media,
  .related-products__card, .related-products__card:before, .product::after,
  .product-card__media::after {
      transition: .2s;
  }
  .product-card__label {
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .menu-btn:hover {
      transform: rotate(5deg) scale(1.1);
  }
  .lang:hover img {
      transform: rotate(-80deg);
  }
  .footer.is-in .footer__nav a:nth-child(odd):hover {
      transform: rotate(4deg);
  }
  .footer.is-in .footer__nav a:nth-child(even):hover {
      transform: rotate(-4deg);
  }
  .footer__legal a:hover, .text-link:hover {
      transform: scale(1.1);
  }
  .contact-form select:focus {
      background-image: none !important;
  }
  .form-submit:hover, .contact-form .wpcf7-submit:hover {
      box-shadow: 4px 4px 0 #000;
      background-color: #000 !important;
      color: #fff !important;
      border-color: #fff;
  }
  .blog-card__media:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      background: #000;
      opacity: 0.2;
  }
  .blog-card__media:hover:before, .related-products__card:hover:before {
      opacity: 0;
  }
  .related-products__card:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      background: #000;
      opacity: 0.5;
      z-index: 1;
  }
  .product:hover::after{
    opacity: 0;
  }
  .product-card__media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: #000;
      opacity: 0.4;
      z-index: 1;
      pointer-events: none;
  }
  .product-card:hover .product-card__media::after,
  .product-card:focus-visible .product-card__media::after {
      opacity: 0;
  }
  .product-card:nth-child(odd):hover .product-card__label,
  .product-card:nth-child(odd):focus-visible .product-card__label {
      transform: translateX(-50%) scale(1.1) rotate(3deg);
  }
  .product-card:nth-child(even):hover .product-card__label,
  .product-card:nth-child(even):focus-visible .product-card__label {
      transform: translateX(-50%) scale(1.1) rotate(-3deg);
  }
  .blog-card__tags {
    position: absolute;
    bottom: 50px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}
.product-duo__seal-icon {
    width: auto;
}

  /* —— Legal / WYSIWYG content pages (Privacy, Legal notice, Cookies) —— */
  .content-block {
    background: var(--white);
    padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 80px) clamp(80px, 10vw, 140px);
  }

  .content-block__inner {
    width: 100%;
    max-width: 1090px;   
    margin: 0 auto;
  }

  .content-block__inner > *:first-child {
    margin-top: 0;
  }

  .content-block__title {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 clamp(36px, 5vw, 56px);
    font-size: clamp(34px, 4.8vw, 60px);
    line-height: 1.15;
  }

  /* Numbered sections + h3s match blog article headings (.article-sub) */
  .content-block__inner h2,
  .content-block__inner h3,
  .content-block__inner h4 {
    margin: clamp(28px, 3.5vw, 40px) 0 0.45em;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-transform: none;
    color: var(--black);
    background: none;
    padding: 0;
  }

  .content-block__inner h2 {
    font-size: clamp(28px, 3.2vw, 32px);
  }

  .content-block__inner h3,
  .content-block__inner h4 {
    font-size: clamp(24px, 2.6vw, 28px);
  }

  .content-block__inner p {
    margin: 0 0 1em;
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    letter-spacing: -0.03em;
  }

  .content-block__inner ul,
  .content-block__inner ol {
    margin: 0 0 1.15em;
    padding-left: 1.3em;
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    letter-spacing: -0.03em;
  }

  .content-block__inner ul li {
    list-style: disc outside;
    display: list-item;
  }

  .content-block__inner ol li {
    list-style: decimal outside;
    display: list-item;
  }

  .content-block__inner li + li {
    margin-top: 0.4em;
  }

  .content-block__inner a {
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-thickness: 1px;
  }

  .content-block__inner a:hover {
    color: var(--brown);
  }

  .content-block__inner strong {
    font-weight: 700;
  }

  .content-block--table .article-block--table {
    margin: 0;
  }

  .content-block--table .article-block--half {
    max-width: 50%;
  }

  .content-block--table .article-block--col-right {
    margin-left: auto;
  }

span.typewriter__text {
    padding-left: 20px;
    padding-right: 20px;
}