@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --color-black: #0b0b0c;
  --color-charcoal: #18161a;
  --color-cream: #faf5ed;
  --color-paper: #fffdfc;
  --color-beige: #eadcc8;
  --color-taupe: #b89e82;
  --color-brown: #7b5a3a;
  --color-red: #e31e24;
  --color-red-dark: #b8141a;
  --color-gold: #f0b429;
  --color-gold-soft: #f7d88a;
  --color-border: rgba(24, 22, 26, 0.08);
  --color-muted: rgba(24, 22, 26, 0.68);
  --shadow-lg: 0 28px 70px rgba(17, 10, 10, 0.14);
  --shadow-md: 0 16px 40px rgba(17, 10, 10, 0.1);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 92px;
  --transition: 0.55s cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--color-charcoal);
  background:
    radial-gradient(circle at top right, rgba(240,180,41,0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(227,30,36,0.12), transparent 20%),
    var(--color-cream);
  line-height: 1.6;
}

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

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

button, input, textarea { font: inherit; }

.site-shell { overflow: clip; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: min(190px, 42vw);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav a.active {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(227,30,36,0.22);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  background:
    radial-gradient(circle at 10% 18%, rgba(240,180,41,0.18), transparent 16%),
    radial-gradient(circle at 88% 14%, rgba(227,30,36,0.18), transparent 18%),
    linear-gradient(135deg, #0b0b0c 0%, #19161a 58%, #281a14 100%);
  color: #fff;
  padding: clamp(72px, 11vw, 126px) 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  right: -80px;
  top: -100px;
  background: radial-gradient(circle, rgba(240,180,41,0.32), transparent 68%);
}

.hero::after {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(227,30,36,0.26), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.hero-contact::before,
.hero-contact::after {
  display: none;
}

.hero-contact .container {
  position: relative;
  z-index: 1;
}

.hero-contact-content {
  max-width: 640px;
}

.hero-page {
  background:
    linear-gradient(135deg, rgba(11,11,12,0.74), rgba(25,22,26,0.58)),
    linear-gradient(180deg, rgba(11,11,12,0.24), rgba(11,11,12,0.5));
  background-size: cover;
  background-position: center;
}

.hero-page::before,
.hero-page::after {
  display: none;
}

.hero-page .container {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 42vw, 560px);
  display: flex;
  align-items: center;
}

.hero-page-content {
  max-width: 640px;
}

.hero-recipes {
  background-image:
    linear-gradient(135deg, rgba(11,11,12,0.74), rgba(25,22,26,0.58)),
    linear-gradient(180deg, rgba(11,11,12,0.24), rgba(11,11,12,0.5)),
    url("../../media-assets/recipes-hero.jpg");
}

.hero-products {
  background-image:
    linear-gradient(135deg, rgba(11,11,12,0.74), rgba(25,22,26,0.58)),
    linear-gradient(180deg, rgba(11,11,12,0.24), rgba(11,11,12,0.5)),
    url("../../media-assets/products-hero.jpg");
}

.hero-history {
  background-image:
    linear-gradient(135deg, rgba(11,11,12,0.74), rgba(25,22,26,0.58)),
    linear-gradient(180deg, rgba(11,11,12,0.24), rgba(11,11,12,0.5)),
    url("../../media-assets/history-hero.jpg");
}

.hero-team {
  background-image:
    linear-gradient(135deg, rgba(11,11,12,0.74), rgba(25,22,26,0.58)),
    linear-gradient(180deg, rgba(11,11,12,0.24), rgba(11,11,12,0.5)),
    url("../../media-assets/team-hero.jpg");
}

.hero-contact {
  background-image:
    linear-gradient(135deg, rgba(11,11,12,0.74), rgba(25,22,26,0.58)),
    linear-gradient(180deg, rgba(11,11,12,0.24), rgba(11,11,12,0.5)),
    url("../../media-assets/contact-hero.jpg");
}

.hero-home {
  overflow: hidden;
  padding-inline: 0;
  padding-block: 0;
  background: transparent;
}

.hero-home::before,
.hero-home::after {
  display: none;
}

.hero-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: clamp(420px, 44vw, 720px);
  aspect-ratio: 1920 / 720;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(11,11,12,0.86), rgba(25,22,26,0.54)),
    linear-gradient(135deg, #0b0b0c 0%, #19161a 58%, #281a14 100%);
}

.hero-banner::after {
  display: none;
}

.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner-surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-banner-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-banner-copy-inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 580px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-banner-copy-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-banner-copy-content .hero-actions {
  justify-content: center;
}

.hero-mobile-video-stage {
  display: none;
}

.hero-banner-product {
  justify-self: center;
  align-self: center;
  width: min(100%, 580px);
  opacity: 0;
  transform: translate3d(0, 140px, 0);
  transition: opacity 0.4s ease 0.95s, transform 0.95s cubic-bezier(.22, .61, .36, 1) 0.55s;
}

.hero-banner-product-media {
  background: #fff;
}

.hero-banner-product img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.hero-home h1 {
  max-width: 9ch;
}

.hero-home p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-home.hero-video-complete .hero-banner-surface {
  opacity: 1;
}

.hero-home.hero-video-complete .hero-banner-copy {
  opacity: 1;
  pointer-events: auto;
}

.hero-banner-reveal-copy {
  display: contents;
}

.hero-home.hero-video-complete .hero-banner-product {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-home.hero-video-complete .hero-banner-copy h1 {
  color: var(--color-red);
  text-shadow:
    0 2px 4px rgba(0,0,0,0.14),
    0 8px 18px rgba(227,30,36,0.18);
}

.hero-home.hero-video-complete .hero-banner-copy p {
  color: #111;
  text-shadow: none;
}

.hero-home.hero-video-complete .hero-banner-copy .btn {
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 12px 28px rgba(0,0,0,0.24);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-red));
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 60ch;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: #fff;
  box-shadow: 0 18px 36px rgba(227,30,36,0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(227,30,36,0.32);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.hero-media {
  position: relative;
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.floating-card strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.floating-card span {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}

.card-top-left { top: 24px; left: -34px; }
.card-bottom-right { right: -18px; bottom: 26px; }

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}

.media-frame.light {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86));
  border-color: rgba(0,0,0,0.06);
}

.media-frame img {
  width: 100%;
  height: auto;
}

.hero-banner-video,
.media-frame video {
  display: block;
}

.section {
  position: relative;
  padding: clamp(74px, 11vw, 118px) 0;
}

.section.soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0));
}

.section.dark {
  background:
    radial-gradient(circle at top right, rgba(240,180,41,0.14), transparent 16%),
    linear-gradient(135deg, #131215 0%, #1a171b 100%);
  color: #fff;
}

.section.dark .section-tag,
.section.dark .section-subtitle,
.section.dark p,
.section.dark .stat-card p,
.section.dark .feature-card p {
  color: rgba(255,255,255,0.78);
}

.section.dark .section-title,
.section.dark .feature-card h3,
.section.dark .timeline-item h3,
.section.dark .contact-card h3 {
  color: #fff;
}

.section.dark .feature-card,
.section.dark .timeline-item,
.section.dark .stat-card,
.section.dark .contact-card,
.section.dark .form-shell,
.section.dark .media-panel {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

.section-header {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(227,30,36,0.08);
  color: var(--color-red-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-red), var(--color-gold));
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 1.02rem;
  max-width: 62ch;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(26px, 4vw, 66px);
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.copy-stack p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.inline-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 18px rgba(17, 10, 10, 0.05);
  font-weight: 700;
  font-size: 0.95rem;
}

.media-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2vw, 24px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -44px -44px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,36,0.12), transparent 70%);
  pointer-events: none;
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: 26px 26px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(240,180,41,0.14), rgba(227,30,36,0.08));
  pointer-events: none;
}

.media-panel img {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 10px);
  width: 100%;
}

.media-panel video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
}

.media-panel-square-video {
  display: flex;
  justify-content: center;
}

.media-panel-square-video video {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.media-panel-photo {
  padding: clamp(12px, 1.6vw, 18px);
}

.media-panel-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.media-panel-photo.parallax-media img {
  transform: translate3d(0, var(--parallax-offset), 0) scale(1.08);
  transition: transform .25s linear;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

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

.recipe-carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.recipe-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 48px) / 3));
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.recipe-carousel > .recipe-card {
  scroll-snap-align: start;
}

.recipe-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(227,30,36,0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,248,248,0.92));
  color: var(--color-red);
  box-shadow:
    0 12px 30px rgba(17,10,10,0.1),
    inset 0 1px 0 rgba(255,255,255,0.85);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background-color .2s ease, color .2s ease;
}

.carousel-arrow span {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,241,241,0.98));
  box-shadow:
    0 18px 34px rgba(227,30,36,0.16),
    0 10px 20px rgba(17,10,10,0.08);
}

.carousel-arrow:focus-visible {
  outline: 2px solid rgba(227,30,36,0.32);
  outline-offset: 3px;
}

.carousel-arrow:active {
  transform: translateY(0) scale(0.98);
}

.carousel-arrow[disabled] {
  opacity: 0.34;
  cursor: default;
  transform: none;
  color: rgba(0,0,0,0.32);
  background: rgba(255,255,255,0.72);
  box-shadow: none;
}

.feature-card,
.timeline-item,
.stat-card,
.contact-card,
.recipe-card,
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.feature-card img,
.timeline-item img,
.recipe-card img,
.product-card img {
  width: 100%;
}

.recipe-card img {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-copy {
  padding: 24px 24px 28px;
}

.feature-card h3,
.timeline-item h3,
.recipe-card h3,
.product-card h3,
.contact-card h3,
.stat-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.feature-card p,
.timeline-item p,
.recipe-card p,
.product-card p,
.contact-card p,
.stat-card p {
  margin: 0;
  color: var(--color-muted);
}

.media-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.media-strip .media-panel { height: 100%; }

.media-strip .media-panel img { height: 100%; object-fit: cover; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.stat-card {
  padding: 30px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 900;
  color: var(--color-red);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card p {
  margin-left: auto;
  margin-right: auto;
}

.stat-icon .material-symbols-outlined {
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-red);
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.timeline {
  display: grid;
  gap: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
}

.timeline-item .card-copy {
  display: grid;
  align-content: center;
}

.timeline-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red-dark);
}

.timeline-meta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 20px;
}

.contact-stack-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.contact-card {
  padding: 26px;
}

.contact-card span {
  display: inline-flex;
  min-height: 34px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(227,30,36,0.08);
  color: var(--color-red-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-shell {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brown);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.95);
  color: var(--color-charcoal);
  resize: vertical;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(227,30,36,0.34);
  box-shadow: 0 0 0 4px rgba(227,30,36,0.08);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(227,30,36,0.96), rgba(184,20,26,0.96));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--color-red-dark);
  box-shadow: none;
}

.site-footer {
  background: #090909;
  color: rgba(255,255,255,0.78);
  padding: 74px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  width: min(220px, 55vw);
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 46ch;
  margin: 0;
  color: rgba(255,255,255,0.62);
}

.footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact span {
  color: rgba(255,255,255,0.72);
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.48);
  font-size: 0.94rem;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity var(--transition), transform var(--transition);
  will-change: transform, opacity;
}

.reveal-left { transform: translate3d(-48px, 0, 0); }
.reveal-right { transform: translate3d(48px, 0, 0); }
.reveal-scale { transform: translate3d(0, 24px, 0) scale(0.94); }

.in-view.reveal,
.in-view.reveal-left,
.in-view.reveal-right,
.in-view.reveal-up,
.in-view.reveal-scale {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.parallax-media {
  --parallax-offset: 0px;
}

.parallax-media img {
  transform: translate3d(0, var(--parallax-offset), 0) scale(1.03);
  transition: transform .2s linear;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .footer-grid,
  .timeline-item,
  .media-strip,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .card-top-left,
  .card-bottom-right {
    display: none;
  }

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

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(11, 11, 12, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    transform-origin: top;
    transform: scaleY(0.94);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .grid-3,
  .stats-row,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-stack-inline {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: clamp(420px, 72vw, 620px);
    aspect-ratio: auto;
  }

  .hero-home h1,
  .hero-home p {
    max-width: 100%;
  }

  .hero-banner-copy-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-banner-product {
    width: min(68vw, 460px);
  }

  .recipe-carousel {
    grid-auto-columns: minmax(260px, 72vw);
    scroll-snap-type: x mandatory;
  }

  .recipe-carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  :root { --header-height: 82px; }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero { padding-top: 56px; padding-bottom: 74px; }

  .hero-home {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero h1 { font-size: clamp(2.45rem, 16vw, 4rem); }

  .hero-banner {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    aspect-ratio: auto;
    min-height: max(760px, 92svh);
  }

  .hero-home .hero-banner-surface {
    opacity: 1;
  }

  .hero-home .hero-banner-video {
    display: none;
  }

  .hero-banner-copy {
    opacity: 1;
    pointer-events: auto;
    align-items: flex-start;
    padding: 24px 0;
  }

  .hero-banner-copy-inner {
    width: min(calc(100% - 28px), var(--container));
    grid-template-columns: 1fr;
    align-content: start;
  }

  .hero-banner-copy-content {
    display: grid;
    justify-items: center;
    align-content: start;
  }

  .hero-home .hero-banner-copy h1 {
    color: var(--color-red);
    text-shadow:
      0 2px 4px rgba(0,0,0,0.14),
      0 8px 18px rgba(227,30,36,0.18);
  }

  .hero-mobile-video-stage {
    display: flex;
    width: 100%;
    min-height: clamp(280px, 34svh, 360px);
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    overflow: hidden;
    opacity: 1;
    max-height: 420px;
    transition: opacity 0.8s ease, max-height 0.8s ease, margin-top 0.8s ease;
  }

  .hero-mobile-inline-video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1920 / 720;
    object-fit: cover;
    object-position: center;
  }

  .hero-mobile-stage-copy {
    display: grid;
    gap: 14px;
    width: 100%;
    justify-items: center;
    align-content: center;
    padding: 28px 0 12px;
    opacity: 1;
    max-height: 220px;
    overflow: hidden;
    transition: opacity 0.8s ease, max-height 0.8s ease, padding 0.8s ease;
  }

  .hero-mobile-stage-copy h2 {
    margin: 0;
    color: var(--color-red);
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow:
      0 2px 4px rgba(0,0,0,0.14),
      0 8px 18px rgba(227,30,36,0.18);
  }

  .hero-banner-reveal-copy {
    display: block;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.8s ease 0.1s, max-height 0.8s ease 0.1s, margin-top 0.8s ease 0.1s;
  }

  .hero-banner-product {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    width: min(76vw, 340px);
    transform: none;
    transition: opacity 0.8s ease 0.2s, max-height 0.8s ease 0.2s, margin-top 0.8s ease 0.2s;
  }

  .hero-home.hero-video-complete .hero-mobile-video-stage {
    min-height: 0;
    opacity: 0;
    max-height: 0;
    margin-top: 0;
  }

  .hero-home.hero-video-complete .hero-mobile-stage-copy {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-home.hero-video-complete .hero-banner-reveal-copy {
    max-height: 260px;
    opacity: 1;
    margin-top: 10px;
  }

  .hero-home.hero-video-complete .hero-banner-product {
    max-height: 560px;
    opacity: 1;
    margin-top: 10px;
    width: min(72vw, 320px);
  }

  .recipe-carousel {
    grid-auto-columns: minmax(240px, 84vw);
  }

  .section { padding: 66px 0; }

  .media-panel,
  .feature-card,
  .timeline-item,
  .recipe-card,
  .product-card,
  .contact-card,
  .form-shell,
  .cta-band,
  .stat-card { border-radius: 22px; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }

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

  .timeline-item { grid-template-columns: 1fr; }

  .timeline-item > img { max-height: 260px; object-fit: cover; }
}
