:root {
  --black: #000;
  --carbon: #222;
  --graphite: #454545;
  --white: #fff;
  --paper: #f7f7f7;
  --mist: #e5e7eb;
  --orange: #f59a23;
  --max: 1360px;
  --header: 76px;
  --pad: clamp(22px, 4vw, 64px);
  --display: clamp(4.4rem, 15vw, 14rem);
  --heading: clamp(2.3rem, 5.2vw, 5.2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: .22em; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.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;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  background: var(--white); color: var(--black); padding: 10px 16px;
}
.skip-link:focus { top: 12px; }

.site-header {
  height: var(--header); position: fixed; inset: 0 0 auto; z-index: 100;
  background: var(--carbon); color: var(--white); transition: border-color .2s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: #4a4a4a; }
.nav-shell {
  max-width: var(--max); height: 100%; margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { width: 190px; background: var(--white); padding: 6px 12px; border-radius: 2px; text-decoration: none; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }
.site-nav a {
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  text-decoration: none; padding: 8px 0; border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a.is-active { border-bottom-color: var(--white); }
.site-nav .nav-cta { border: 1px solid var(--white); padding: 10px 18px; border-radius: 2px; }
.site-nav .nav-cta:hover, .site-nav .nav-cta.is-active { color: var(--black); background: var(--white); }
.language-menu { position: relative; }
.language-current {
  display: inline-flex; align-items: center; gap: 8px; border: 0; border-bottom: 1px solid transparent;
  background: transparent; color: var(--white); padding: 8px 0; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.language-current:hover, .language-current:focus-visible, .language-current[aria-expanded="true"] { border-bottom-color: var(--white); }
.language-options {
  position: absolute; z-index: 120; top: calc(100% + 17px); right: 0; width: 220px;
  padding: 12px; border: 1px solid var(--mist); background: var(--white); color: var(--black);
}
.language-options[hidden] { display: none; }
.language-options button {
  display: block; width: 100%; border: 0; border-bottom: 1px solid var(--mist); background: transparent;
  color: var(--black); padding: 10px 8px; text-align: left; font-size: .86rem;
}
.language-options button:hover, .language-options button:focus-visible, .language-options button.is-selected { background: var(--paper); font-weight: 700; }
.language-credit { display: block; padding: 12px 8px 3px; color: #6b6b6b; font-size: .64rem; line-height: 1.35; }
.translate-engine { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid #5d5d5d; background: transparent; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; background: var(--white); margin: 5px 0; }

main { overflow: hidden; }
.section { padding: clamp(76px, 9vw, 140px) var(--pad); }
.section-shell { width: min(100%, var(--max)); margin: 0 auto; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--carbon); color: var(--white); }
.eyebrow {
  margin: 0 0 24px; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: inherit;
}
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; background: currentColor; vertical-align: middle; margin-right: 12px; }
.section-title { max-width: 980px; margin: 0; font-size: var(--heading); line-height: .98; letter-spacing: -.055em; }
.section-lead { max-width: 720px; margin: 32px 0 0; color: var(--graphite); font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.section-dark .section-lead { color: #d7d7d7; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 13px 24px; min-height: 48px; border: 1px solid; border-radius: 2px;
  font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
}
.button-light { border-color: var(--white); color: var(--white); background: transparent; }
.button-light:hover { background: var(--white); color: var(--black); }
.button-dark { border-color: var(--carbon); color: var(--white); background: var(--carbon); }
.button-dark:hover { background: var(--black); }
.text-link { font-weight: 700; text-decoration-thickness: 1px; }

.hero {
  min-height: min(940px, 100svh); padding-top: var(--header); background: var(--carbon); color: var(--white);
  position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
}
.hero-copy {
  min-height: calc(min(940px, 100svh) - var(--header)); padding: clamp(48px, 7vw, 110px) var(--pad);
  display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2;
}
.hero-word { width: fit-content; margin: -3vw 0 0; position: relative; white-space: nowrap; }
.hero-quality {
  position: absolute; z-index: 2; left: 51%; top: 50%; transform: translate(-50%, -50%);
  border: 1px solid var(--white); background: var(--carbon); color: var(--white); padding: .14em .32em;
  font-size: clamp(1.45rem, 3vw, 3.25rem); font-weight: 700; line-height: 1; letter-spacing: .075em;
}
.hero-go { font-size: clamp(9rem, 21vw, 22rem); font-weight: 800; line-height: .73; letter-spacing: -.09em; }
.hero h1 { max-width: 710px; margin: 34px 0 18px; font-size: clamp(2rem, 4vw, 4.8rem); line-height: .98; letter-spacing: -.05em; }
.hero-sub { max-width: 600px; margin: 0 0 34px; color: #d7d7d7; font-size: clamp(1rem, 1.4vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.hero-actions .text-link { font-size: .86rem; }
.hero-media { min-height: 600px; position: relative; overflow: hidden; background: url('/assets/img/cooking-poster.webp') center / cover no-repeat; }
.hero-video { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.hero-proof {
  position: absolute; left: var(--pad); bottom: 24px; z-index: 3;
  display: flex; gap: 28px; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase;
}

.page-hero {
  min-height: 560px; padding: calc(var(--header) + 70px) var(--pad) 70px; background: var(--carbon); color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-hero .section-shell { position: relative; }
.page-display { margin: 0 0 34px; font-size: var(--display); line-height: .72; letter-spacing: -.085em; white-space: nowrap; }
.page-hero-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: end; }
.page-hero h1 { margin: 0; max-width: 900px; font-size: clamp(2.2rem, 4.7vw, 4.6rem); line-height: .98; letter-spacing: -.052em; }
.page-hero p { margin: 0; max-width: 450px; color: #d7d7d7; font-size: 1.08rem; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.intro-grid .statement { margin: 0; font-size: clamp(2rem, 4vw, 4.3rem); line-height: 1; letter-spacing: -.045em; }
.body-copy { max-width: 700px; }
.body-copy p:first-child { margin-top: 0; }
.body-copy p { font-size: clamp(1rem, 1.2vw, 1.16rem); color: var(--graphite); }
.body-copy strong { color: var(--black); }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--mist); }
.pillar-card { padding: 42px 30px 0 0; border-right: 1px solid var(--mist); }
.pillar-card + .pillar-card { padding-left: 30px; }
.pillar-card:last-child { border-right: 0; }
.pillar-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--paper); margin-bottom: 28px; }
.pillar-card h3 { margin: 0 0 12px; font-size: 1.5rem; }
.pillar-card ul { list-style: none; margin: 0 0 24px; padding: 0; color: var(--graphite); }
.pillar-card li { padding: 5px 0; border-bottom: 1px solid var(--mist); }

.number-split { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: end; }
.big-number { margin: 0; font-size: clamp(8rem, 24vw, 23rem); font-weight: 800; line-height: .68; letter-spacing: -.1em; }
.number-copy { padding-bottom: 6px; }
.number-copy h2 { margin: 0 0 24px; font-size: clamp(2.2rem, 4.2vw, 4.4rem); line-height: .98; letter-spacing: -.05em; }
.number-copy p { max-width: 620px; color: #d7d7d7; font-size: 1.1rem; }

.benefit-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #4d4d4d; }
.benefit { padding: 28px 24px 0 0; border-right: 1px solid #4d4d4d; }
.benefit + .benefit { padding-left: 24px; }
.benefit:last-child { border-right: 0; }
.benefit span { display: block; font-size: 2rem; margin-bottom: 26px; }
.benefit h3 { margin: 0 0 10px; font-size: 1.05rem; }
.benefit p { margin: 0; color: #bdbdbd; font-size: .9rem; }

.quote { max-width: 1040px; margin: 0; font-size: clamp(2.25rem, 5vw, 5.2rem); line-height: 1; letter-spacing: -.05em; }
.quote-mark { color: var(--orange); }
.quote-author { margin-top: 38px; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.cta-panel h2 { margin: 0; font-size: var(--heading); line-height: .98; letter-spacing: -.055em; }

.product-list { border-top: 1px solid var(--mist); }
.product-row {
  min-height: 430px; display: grid; grid-template-columns: 90px minmax(230px, .68fr) minmax(320px, 1.32fr);
  gap: 34px; align-items: center; padding: 46px 0; border-bottom: 1px solid var(--mist);
}
.product-index { align-self: start; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; }
.product-row h2 { margin: 0; font-size: clamp(2.5rem, 5.2vw, 5.5rem); line-height: .9; letter-spacing: -.06em; }
.product-row figure { width: 100%; margin: 0; display: flex; flex-direction: column; align-items: center; }
.product-row img { width: min(100%, 280px); max-height: 285px; object-fit: contain; }
.product-row figcaption {
  width: 100%; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--mist);
  color: var(--graphite); font-size: 1rem; line-height: 1.72;
}

.process-list { counter-reset: process; border-top: 1px solid var(--mist); }
.process-step {
  counter-increment: process; display: grid; grid-template-columns: 110px .75fr 1.25fr; gap: 40px;
  padding: clamp(42px, 6vw, 82px) 0; border-bottom: 1px solid var(--mist); align-items: start;
}
.process-step::before { content: "0" counter(process); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1rem; }
.process-step h2 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: .95; letter-spacing: -.05em; }
.process-step ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.process-step li { padding: 10px 0; border-bottom: 1px solid var(--mist); font-size: 1.05rem; }

.faq-list { max-width: 1020px; margin-left: auto; border-top: 1px solid var(--mist); }
.faq-list details { border-bottom: 1px solid var(--mist); }
.faq-list summary {
  position: relative; list-style: none; padding: 28px 70px 28px 0; cursor: pointer;
  font-size: clamp(1.25rem, 2.2vw, 2rem); font-weight: 600; letter-spacing: -.025em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 23px; font-size: 2rem; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { max-width: 780px; padding: 0 70px 30px 0; color: var(--graphite); font-size: 1.05rem; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 130px); align-items: start; }
.contact-intro h1, .contact-intro h2 { margin: 0 0 26px; font-size: var(--heading); line-height: .98; letter-spacing: -.055em; }
.contact-intro p { max-width: 420px; color: var(--graphite); }
.contact-direct { display: inline-block; margin-top: 22px; font-size: 1.15rem; font-weight: 700; }
.contact-form { position: relative; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.contact-form label:not(.check-field) { display: block; margin-bottom: 22px; }
.contact-form label > span:first-child { display: block; margin-bottom: 8px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid #a0a0a0; border-radius: 0;
  background: transparent; color: var(--black); padding: 12px 0; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--black); box-shadow: 0 1px 0 var(--black); }
.contact-form textarea { resize: vertical; }
.check-field { display: flex; align-items: flex-start; gap: 12px; margin: 6px 0 25px; font-size: .88rem; }
.check-field input { margin-top: 5px; accent-color: var(--black); }
.form-note { margin: 16px 0 0; color: var(--graphite); font-size: .85rem; }
.form-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-bottom: 28px; padding: 15px 18px; border: 1px solid; }
.form-status.is-success { border-color: #237a4b; color: #195f39; background: #f1fbf5; }
.form-status.is-error { border-color: #aa3030; color: #852323; background: #fff6f6; }

.legal { max-width: 900px; }
.legal h1 { margin: 0 0 28px; font-size: clamp(2.8rem, 7vw, 6.5rem); line-height: .9; letter-spacing: -.06em; }
.legal h2 { margin: 54px 0 16px; font-size: 1.6rem; }
.legal h3 { margin: 30px 0 10px; font-size: 1.1rem; }
.legal p, .legal li { color: var(--graphite); }
.legal table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 14px; border: 1px solid var(--mist); }
.legal th { background: var(--paper); }

.site-footer { background: var(--carbon); color: var(--white); padding: 76px var(--pad) 24px; }
.footer-main { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 260px 1fr auto; gap: 60px; align-items: center; }
.footer-brand { background: var(--white); padding: 9px 14px; border-radius: 2px; }
.footer-statement { margin: 0; color: #c6c6c6; }
.footer-email { font-size: clamp(1.1rem, 2vw, 1.7rem); font-weight: 600; text-decoration: none; }
.footer-bottom { max-width: var(--max); margin: 60px auto 0; padding-top: 20px; border-top: 1px solid #4a4a4a; display: flex; justify-content: space-between; gap: 24px; color: #b8b8b8; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; }

.cookie-notice {
  position: fixed; z-index: 200; left: 20px; bottom: 20px; width: min(500px, calc(100% - 40px));
  background: var(--white); border: 1px solid var(--black); padding: 18px; box-shadow: 0 12px 40px rgb(0 0 0 / 18%);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0 0 14px; font-size: .88rem; }
.cookie-notice-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-notice a { font-size: .82rem; }
.cookie-notice button { border: 1px solid var(--black); background: var(--black); color: var(--white); padding: 9px 15px; border-radius: 2px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-notice button.cookie-secondary { background: var(--white); color: var(--black); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed; inset: var(--header) 0 0; background: var(--carbon); padding: 44px var(--pad);
    display: none; flex-direction: column; align-items: stretch; gap: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 1.6rem; padding: 14px 0; }
  .site-nav .nav-cta { margin-top: 20px; text-align: center; font-size: 1rem; }
  .language-menu { padding: 8px 0; }
  .language-current { font-size: 1rem; }
  .language-options { position: static; width: 100%; margin-top: 10px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 660px; padding-bottom: 100px; }
  .hero-media { min-height: 72vw; }
  .hero-proof { bottom: 32px; }
  .page-hero { min-height: 500px; }
  .page-hero-row, .intro-grid, .number-split, .contact-layout { grid-template-columns: 1fr; }
  .page-hero-row { gap: 28px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card, .pillar-card + .pillar-card { padding: 36px 0; border-right: 0; border-bottom: 1px solid var(--mist); }
  .pillar-card img { aspect-ratio: 16/9; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(n+3) { border-top: 1px solid #4d4d4d; padding-top: 26px; margin-top: 28px; }
  .product-row { grid-template-columns: 55px 1fr; }
  .product-row figure { grid-column: 2; align-items: flex-start; }
  .process-step { grid-template-columns: 70px 1fr; }
  .process-step ul { grid-column: 2; }
  .footer-main { grid-template-columns: 220px 1fr; }
  .footer-email { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header: 68px; }
  .brand { width: 166px; }
  .hero-copy { min-height: 620px; }
  .hero-quality { font-size: 6vw; }
  .hero-go { font-size: 39vw; }
  .hero h1 { font-size: 2.45rem; }
  .hero-proof { flex-direction: column; gap: 4px; }
  .page-hero { min-height: 450px; padding-top: calc(var(--header) + 50px); }
  .page-display { font-size: 22vw; white-space: normal; }
  .benefit-grid, .field-grid { grid-template-columns: 1fr; }
  .benefit, .benefit + .benefit { border-right: 0; border-top: 1px solid #4d4d4d; padding: 24px 0 0; margin-top: 24px; }
  .product-row { grid-template-columns: 40px 1fr; gap: 22px; min-height: 0; }
  .product-row figure { grid-column: 2; }
  .product-row figure { justify-content: flex-start; }
  .product-row img { max-height: 230px; }
  .cookie-notice-row { align-items: flex-start; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
  .process-step { grid-template-columns: 42px 1fr; gap: 18px; }
  .process-step ul { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { width: 220px; }
  .footer-email { grid-column: auto; word-break: break-word; }
  .footer-bottom { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 12px 18px; }
}

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