:root {
  --green: #0c7a3d;
  --green-dark: #064a29;
  --yellow: #b95338;
  --red: #c7362f;
  --ink: #18211b;
  --muted: #66736c;
  --paper: #f4f7f5;
  --line: rgba(24, 33, 27, 0.14);
  --shadow: 0 24px 70px rgba(18, 34, 23, 0.18);
  --content-max: 1320px;
  --content-gutter: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf7;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

main {
  overflow-x: hidden;
}

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

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

body.preview-open {
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(255, 253, 247, 0.34);
  color: var(--ink);
  border-bottom-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.site-header.menu-open {
  position: fixed;
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-shell a,
.nav-link {
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease, transform 180ms ease;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.46);
}

.site-header.scrolled .nav-shell a,
.site-header.scrolled .nav-link,
.site-header.menu-open .nav-shell a,
.site-header.menu-open .nav-link {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.nav-shell a:hover,
.nav-link:hover {
  color: var(--yellow);
  transform: translateY(-1px);
}

.nav-shell .brand-mark {
  width: 150px;
  height: 104px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 5px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.scrolled .brand-mark,
.site-header.menu-open .brand-mark {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

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

.icon-button {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  position: relative;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  margin: 2.5px 0;
}

.mega-menu {
  display: none;
  width: min(1060px, calc(100% - 32px));
  margin: -2px auto 0;
  padding: 18px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  grid-template-columns: 220px 1fr;
  gap: 18px;
}

.mega-menu.open {
  display: grid;
}

.mega-categories {
  display: grid;
  gap: 8px;
  align-content: start;
}

.mega-categories button,
.filter-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.mega-categories button.active,
.filter-tabs button.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

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

.mini-product {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.mini-product:hover {
  background: #f4f7f5;
  color: var(--green-dark);
}

.pack-shot {
  width: 58px;
  height: 64px;
  display: grid;
  place-items: end center;
  border-radius: 7px 7px 16px 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 -18px 0 rgba(0, 0, 0, 0.08), 0 12px 18px rgba(0, 0, 0, 0.12);
}

.pack-dal {
  background: linear-gradient(145deg, #b95338, #587a8d);
}

.pack-rice {
  background: linear-gradient(145deg, #f8f4df, #0c7a3d);
}

.pack-value {
  background: linear-gradient(145deg, #0c7a3d, #b95338);
}

.hero-section {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 150px max(40px, 8vw) 80px;
  background: var(--yellow);
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: none;
  transition: opacity 900ms ease;
}

.hero-image.active {
  opacity: 1;
  transform: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 35, 20, 0.68), rgba(10, 35, 20, 0.22) 48%, #d2dc1326);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button {
  background: var(--green);
  color: #fff;
}

.secondary-button {
  background: #fff;
  color: var(--green-dark);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 34, 23, 0.18);
}

.primary-button:hover {
  background: var(--yellow);
  color: var(--green-dark);
}

.secondary-button:hover {
  background: var(--green-dark);
  color: #fff;
}

.hero-stat {
  position: absolute;
  right: 6vw;
  bottom: 62px;
  z-index: 1;
  width: min(270px, 42vw);
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-dots {
  position: absolute;
  left: 6vw;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.active {
  width: 52px;
  background: var(--yellow);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-size: 18px;
}

.hero-stat span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.category-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green-dark);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  color: #fff;
}

.category-band a {
  min-height: 150px;
  padding: 28px 8vw;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: inset 1px 0 0 #d2dc1326;
  transition: background 220ms ease, transform 220ms ease;
}

.category-band a:last-child {
  border-right: 0;
}

.category-band a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: var(--yellow);
}

.category-band span {
  display: none;
  color: var(--yellow);
  font-weight: 950;
}

.category-band strong {
  font-size: 24px;
}

.category-band small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
}

.page-hero {
  --page-bg: url("assets/hero-harvest-field.webp");
  min-height: 430px;
  padding: 170px max(32px, 8vw) 78px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #172018;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(12, 18, 14, 0.68) 0%, rgba(12, 18, 14, 0.36) 48%, rgba(12, 18, 14, 0.1) 100%),
    var(--page-bg);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.page-about .page-hero {
  --page-bg: url("assets/hero-kitchen-grains.webp");
}

.page-products .page-hero {
  --page-bg: url("assets/hero-harvest-field.webp");
}

.page-recipes .page-hero {
  --page-bg: url("assets/hero-retail-display.webp");
}

.page-videos .page-hero {
  --page-bg: url("images/product-video-2-poster.jpeg");
}

.page-export .page-hero {
  --page-bg: url("assets/sultan-hero.webp");
}

.page-contact .page-hero {
  --page-bg: url("assets/hero-harvest-field.webp");
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.page-links-section {
  display: grid;
  gap: 28px;
}

.section-note {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.page-link-grid a {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 34, 23, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.page-link-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 122, 61, 0.3);
  box-shadow: 0 24px 48px rgba(18, 34, 23, 0.14);
}

.page-link-grid span {
  color: var(--yellow);
  font-weight: 950;
}

.page-link-grid strong {
  font-size: 24px;
}

.page-link-grid small {
  color: var(--muted);
  line-height: 1.5;
}

.story-section,
.products-section,
.recipe-section,
.export-section,
.video-section,
.contact-section,
.stats-section {
  width: min(var(--content-max), calc(100% - var(--content-gutter)));
  margin: 0 auto;
  padding: 90px 0;
  scroll-margin-top: 24px;
}

.content-box {
  width: min(var(--content-max), calc(100% - var(--content-gutter)));
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  gap: 90px;
  position: relative;
}

.content-box > .story-section,
.content-box > .quality-grid,
.content-box > .products-section,
.content-box > .recipe-section,
.content-box > .export-section,
.content-box > .video-section,
.content-box > .contact-section,
.content-box > .stats-section {
  width: 100%;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.content-box > .story-section,
.content-box > .products-section,
.content-box > .recipe-section,
.content-box > .video-section,
.content-box > .contact-section,
.content-box > .page-links-section {
  padding: 72px 80px 88px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 202, 0.96)),
    #d2dc1326;
  border: 1px solid #d2dc1326;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 34, 23, 0.12);
}

.story-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.story-section-centered {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

.content-box > .story-section-centered {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.story-section-centered .story-copy {
  max-width: 820px;
  margin-inline: auto;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.story-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.quality-grid {
  width: min(var(--content-max), calc(100% - var(--content-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quality-grid article,
.product-card,
.recipe-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 34, 23, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.quality-grid article:hover,
.product-card:hover,
.recipe-list article:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 122, 61, 0.28);
  box-shadow: 0 24px 48px rgba(18, 34, 23, 0.14);
}

.quality-grid article:hover h3,
.product-card:hover h3,
.recipe-list article:hover strong,
.contact-card:hover strong {
  color: var(--green);
}

.quality-grid article {
  min-height: 210px;
  padding: 28px;
}

.quality-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgb(12 122 61 / 12%);
  color: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.quality-grid h3,
.product-card h3,
.recipe-list strong,
.site-footer h3 {
  margin: 18px 0 8px;
}

.quality-grid p,
.product-card p,
.recipe-list small,
.export-section p,
.contact-section p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.content-box > .products-section .section-heading,
.content-box > .video-section .section-heading,
.content-box > .page-links-section .section-heading {
  display: grid;
  justify-content: center;
  text-align: center;
}

.content-box > .products-section .section-heading > div,
.content-box > .video-section .section-heading > div,
.content-box > .page-links-section .section-heading > div,
.content-box > .products-section .section-heading > p,
.content-box > .video-section .section-heading > p,
.content-box > .page-links-section .section-heading > p {
  margin-inline: auto;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

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

.product-card {
  min-height: 0;
  padding: 18px;
  display: grid;
  grid-template-rows: 320px auto auto;
  gap: 12px;
}

.product-card:hover {
  background: #fbfdfc;
}

.product-visual {
  height: 320px;
  min-height: 320px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #d2dc1326, #f7fbf9);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 0;
  width: 100%;
  cursor: zoom-in;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.55), transparent 54%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.product-card:hover .product-visual::after {
  opacity: 1;
}

.product-visual .pack-shot {
  width: 88px;
  height: 112px;
  font-size: 12px;
  transition: transform 260ms ease;
}

.product-image {
  width: 100%;
  height: 100%;
  max-width: 360px;
  max-height: 305px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 320ms ease, filter 320ms ease;
  will-change: transform;
}

.product-image-card {
  max-width: 360px;
  max-height: 305px;
}

.product-card:hover .product-image,
.product-card:hover .product-visual .pack-shot {
  transform: scale(1.13);
}

.product-card:hover .product-image {
  filter: saturate(1.08) contrast(1.03);
}

.product-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-preview-modal.open {
  display: flex;
}

.product-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 12, 0.72);
  backdrop-filter: blur(4px);
}

.product-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(90svh, 820px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: #fffdf7;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.product-preview-stage {
  min-height: min(62svh, 610px);
  display: grid;
  place-items: center;
  padding: 32px;
  background: radial-gradient(circle at 50% 35%, #d2dc1326, #f7fbf9 58%, #d2dc1326);
  overflow: auto;
  cursor: zoom-in;
}

.product-preview-stage img {
  width: auto;
  max-width: 100%;
  max-height: min(58svh, 560px);
  object-fit: contain;
  transform: scale(1);
  transition: transform 220ms ease;
}

.product-preview-stage:hover img {
  transform: scale(1.28);
}

.product-preview-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.product-preview-info h2 {
  font-size: clamp(24px, 4vw, 42px);
}

.product-preview-info p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.product-preview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 74, 41, 0.95);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.product-preview-close:hover {
  transform: scale(1.06);
  background: var(--red);
}

.product-image-mini {
  width: 58px;
  height: 64px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 20px;
}

.product-card p {
  margin: 0 0 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price,
.mini-price {
  color: var(--red);
  font-weight: 950;
}

.product-price {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgb(199 54 47 / 10%);
  font-size: 14px;
}

.mini-price {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.detail-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.detail-link:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--green-dark);
}

.recipe-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.recipe-section-modern {
  grid-template-columns: 1fr;
  gap: 34px;
}

.section-heading-centered {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-content: center;
}

.section-heading-centered > p {
  max-width: 720px;
  margin: 0 auto;
}

.recipe-section-modern .recipe-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recipe-section-modern .recipe-list article {
  min-height: 230px;
  padding: 30px;
}

.recipe-panel {
  padding: clamp(30px, 4vw, 56px);
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  display: grid;
  align-content: center;
}

.recipe-panel p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  font-size: 17px;
}

.recipe-list {
  display: grid;
  gap: 16px;
  align-content: stretch;
}

.recipe-list article {
  min-height: 0;
  padding: 26px 30px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.recipe-list span {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 12px;
}

.recipe-list strong {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.15;
}

.recipe-list small {
  display: block;
  font-size: 16px;
  line-height: 1.65;
}

.video-section .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 34px;
  text-align: center;
  justify-items: center;
}

.video-section .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  text-wrap: balance;
}

.video-section .section-heading > p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
  font-size: 18px;
  padding-bottom: 0;
}

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

.video-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 34, 23, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 122, 61, 0.3);
  background: #fbfdfc;
  box-shadow: 0 24px 48px rgba(18, 34, 23, 0.14);
}

.video-open-button {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, #f7fbf9, #d2dc1326);
  border-radius: 8px;
  cursor: pointer;
}

.video-open-button img,
.video-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transition: transform 280ms ease, filter 280ms ease;
}

.video-placeholder {
  background: linear-gradient(145deg, var(--green-dark), var(--green));
}

.video-card:hover .video-open-button img,
.video-card:hover .video-placeholder {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(12, 122, 61, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.video-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
}

.video-card:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--yellow);
}

.video-card:hover .video-play-icon::before {
  border-left-color: var(--green-dark);
}

.video-card strong {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  transition: color 180ms ease;
}

.video-card:hover strong {
  color: var(--green);
}

.video-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-preview-modal.open {
  display: flex;
}

.video-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 12, 0.76);
  backdrop-filter: blur(4px);
}

.video-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: 92svh;
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.video-preview-dialog video {
  width: 100%;
  max-height: 78svh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

.video-preview-dialog h2 {
  font-size: clamp(20px, 4vw, 30px);
}

.video-preview-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 74, 41, 0.95);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.video-preview-close:hover {
  transform: scale(1.06);
  background: var(--red);
}

.export-section {
  padding: 72px 80px 88px;
  background: #d2dc1326;
  border-radius: 8px;
}

.export-section-modern {
  max-width: 1020px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 202, 0.96)),
    #d2dc1326;
  border: 1px solid #d2dc1326;
  box-shadow: 0 24px 70px rgba(18, 34, 23, 0.12);
}

.export-section-modern h2 {
  max-width: 860px;
  margin-inline: auto;
}

.export-section p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 18px;
}

.export-copy {
  max-width: 820px;
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.export-copy p {
  max-width: 820px;
  margin: 0;
  text-align: center;
}

.content-box > .export-section {
  padding: 72px 80px 88px;
}

.content-box > .export-section-modern {
  width: min(100%, 1020px);
  margin-inline: auto;
}

.export-section .primary-button {
  margin-top: 14px;
}

.export-section-modern .primary-button {
  width: fit-content;
  margin-inline: auto;
  margin-top: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 46px;
  align-items: start;
}

.contact-intro > p {
  max-width: 620px;
  font-size: 18px;
}

.contact-intro {
  text-align: center;
}

.contact-intro > p,
.contact-cards,
.inquiry-types,
.social-links {
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 34, 23, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  font-size: 18px;
}

.contact-card p {
  margin: 7px 0 0;
}

.inquiry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.inquiry-types span {
  padding: 9px 13px;
  background: rgb(12 122 61 / 10%);
  border: 1px solid rgb(12 122 61 / 18%);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 48px;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 12px 26px rgba(18, 34, 23, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.05);
  background: currentColor;
  box-shadow: 0 18px 34px rgba(18, 34, 23, 0.14);
}

.social-links a:hover svg {
  color: #fff;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(1) {
  color: #c13584;
}

.social-links a:nth-child(2) {
  color: #1877f2;
}

.social-links a:nth-child(3) {
  color: #128c4a;
}

.social-links a:nth-child(4) {
  color: #c5221f;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 34, 23, 0.08);
}

.contact-form h3 {
  margin: 0 0 4px;
  font-size: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.search-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: progress;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.stats-section {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stats-section article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px;
  background: var(--green-dark);
  border-radius: 8px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.stats-section article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(18, 34, 23, 0.18);
}

.stats-section article::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -38px;
  bottom: -50px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.24;
}

.stats-section strong {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.9;
  position: relative;
  z-index: 1;
}

.stats-section span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 34px 0 20px;
  background: var(--green-dark);
  color: #fff;
}

.footer-box {
  width: min(var(--content-max), calc(100% - var(--content-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.site-footer .footer-copyright {
  width: min(var(--content-max), calc(100% - var(--content-gutter)));
  margin: 18px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.footer-brand {
  font-size: 28px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}


.site-footer h3 {
  color: #fff;
}

.site-footer .footer-social-links {
  display: flex;
  justify-content: flex-start;
  margin: 16px 0 0;
}

.site-footer .footer-social-links a {
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-footer .footer-social-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.site-footer .footer-social-links svg {
  width: 20px;
  height: 20px;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: none;
  width: min(430px, 100%);
  max-width: 100%;
  height: 100svh;
  padding: 24px;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
  overflow: auto;
}

.drawer.open {
  display: block;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.drawer-header h2 {
  font-size: 28px;
}

.drawer-results {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.drawer-product {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.drawer-product:hover,
.mini-product:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 122, 61, 0.28);
  box-shadow: 0 14px 28px rgba(18, 34, 23, 0.1);
  background: #f4f7f5;
  color: var(--green-dark);
}

.mini-product,
.drawer-product .product-image,
.mini-product .product-image {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.drawer-product:hover .product-image,
.mini-product:hover .product-image,
.drawer-product:hover .pack-shot,
.mini-product:hover .pack-shot {
  transform: scale(1.08);
}

.full-width {
  width: 100%;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  background: rgba(0, 0, 0, 0.42);
}

.backdrop.open {
  display: block;
}

.admin-body {
  background: #f7fbf9;
}

.admin-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 70px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
}

.admin-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 34, 23, 0.08);
}

.admin-app {
  max-width: 1240px;
}

.admin-actions,
.admin-form-actions,
.admin-row-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-login {
  max-width: 520px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 34, 23, 0.08);
}

.admin-login h2 {
  font-size: 34px;
}

.admin-login form {
  display: flex;
  gap: 10px;
}

.admin-body [hidden] {
  display: none !important;
}

.admin-login form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-login input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.admin-tabs button.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.admin-two-column,
.admin-three-column {
  display: grid;
  gap: 16px;
}

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

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

.admin-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
}

.admin-form h3 {
  margin: 0;
  font-size: 24px;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 900;
}

.admin-form textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-form-wide {
  margin-top: 16px;
}

.admin-product-form {
  margin-bottom: 18px;
}

.admin-file {
  max-width: 270px;
  padding: 8px;
  background: #fff;
}

.admin-check {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: auto;
}

.admin-check input {
  width: 18px;
  min-height: 18px;
}

.admin-muted {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-global-status {
  margin-top: 14px;
}

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

.admin-stat-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #fffdf7, #f4faf6);
}

.admin-stat-grid span,
.admin-stat-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.admin-stat-grid strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.admin-stat-grid .status-online {
  color: var(--green);
  font-size: 28px;
}

.admin-welcome {
  margin-top: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 12px;
  background: var(--green-dark);
  color: #fff;
}

.admin-welcome h3 {
  margin: 0 0 8px;
  color: #fff;
}

.admin-welcome p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.admin-page-editor {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.admin-page-editor summary {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  cursor: pointer;
  background: #fffdf7;
  font-weight: 950;
}

.admin-page-editor summary small {
  color: var(--muted);
}

.admin-page-editor .admin-form {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.danger-button {
  color: var(--red);
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-panel-head h2 {
  font-size: 32px;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-admin-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
}

.admin-thumb {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgb(12 122 61 / 10%);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-card strong,
.admin-card span {
  display: block;
}

.admin-card span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.admin-card p {
  color: var(--ink);
  line-height: 1.6;
}

.admin-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.admin-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-card dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "menu brand"
      "left left";
    min-height: 92px;
    height: auto;
    padding: 6px 0;
    position: relative;
  }

  .menu-toggle {
    display: inline-grid;
    grid-area: menu;
    justify-self: start;
  }

  .nav-shell .brand-mark {
    grid-area: brand;
    justify-self: center;
    width: 122px;
    height: 82px;
    border-radius: 9px;
    padding: 7px 9px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .site-header.menu-open .nav-left,
  .site-header.menu-open .nav-right {
    display: flex;
  }

  .site-header.menu-open .nav-shell {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "menu brand"
      "left left"
      "right right";
    align-items: center;
    gap: 12px;
    width: min(330px, calc(100% - 28px));
    min-height: 100vh;
    margin: 0;
    padding: 18px 16px 22px;
    background: rgba(255, 253, 247, 0.96);
    border-right: 1px solid rgba(12, 122, 61, 0.16);
    box-shadow: 24px 0 60px rgba(18, 34, 23, 0.24);
    align-content: start;
    overflow-y: auto;
    color: var(--ink);
  }

  .site-header.menu-open .menu-toggle {
    grid-area: menu;
    color: var(--green-dark);
  }

  .site-header.menu-open .brand-mark {
    grid-area: brand;
    justify-self: center;
  }

  .site-header.menu-open .nav-left {
    grid-area: left;
    margin-top: 20px;
  }

  .site-header.menu-open .nav-right {
    grid-area: right;
  }

  .site-header.menu-open .nav-left,
  .site-header.menu-open .nav-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .site-header.menu-open .nav-left a,
  .site-header.menu-open .nav-left button,
  .site-header.menu-open .nav-right a,
  .site-header.menu-open .nav-right button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(12, 122, 61, 0.07);
    border: 1px solid rgba(12, 122, 61, 0.14);
    color: var(--green-dark);
    text-align: left;
    white-space: normal;
  }

  .site-header.menu-open .nav-right .icon-button {
    width: 100%;
    justify-content: flex-start;
  }

  .mega-menu.open {
    grid-template-columns: 1fr;
    max-height: 66vh;
    overflow: auto;
  }

  .mega-products,
  .product-grid,
  .video-grid,
  .quality-grid,
  .category-band,
  .page-link-grid,
  .story-section,
  .recipe-section,
  .contact-section,
  .stats-section,
  .footer-box {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .video-section .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .video-section .section-heading > p {
    max-width: 680px;
    padding-bottom: 0;
  }

  .hero-section {
    padding-top: 116px;
  }

  .page-hero {
    min-height: 360px;
    padding-top: 130px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 18vw, 84px);
  }

  .hero-stat {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    margin-top: 34px;
  }

  .hero-dots {
    left: 24px;
    bottom: 22px;
  }

  .export-section {
    padding: 38px 22px;
  }

  .content-box > .export-section {
    padding: 38px 22px 46px;
  }

  .content-box > .story-section,
  .content-box > .products-section,
  .content-box > .recipe-section,
  .content-box > .video-section,
  .content-box > .contact-section,
  .content-box > .page-links-section {
    padding: 38px 22px 46px;
  }

  .admin-header,
  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-two-column,
  .admin-three-column {
    grid-template-columns: 1fr;
  }

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

  .admin-card dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .contact-section,
  .stats-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: 92svh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    white-space: normal;
  }

  .category-band a,
  .quality-grid article,
  .recipe-panel,
  .recipe-list article {
    padding: 22px;
  }

  .category-band a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: inset 0 1px 0 #d2dc1326;
  }

  .category-band a:last-child {
    border-bottom: 0;
  }

  .product-grid {
    gap: 14px;
  }

  .recipe-section-modern .recipe-list {
    grid-template-columns: 1fr;
  }

  .story-section,
  .products-section,
  .recipe-section,
  .export-section,
  .video-section,
  .contact-section,
  .stats-section,
  .quality-grid {
    width: 100%;
  }

  .content-box,
  .footer-box {
    width: min(var(--content-max), calc(100% - 28px));
  }

  .content-box {
    padding: 56px 0;
    gap: 56px;
  }

  .product-card {
    grid-template-rows: 235px auto auto;
  }

  .product-visual {
    height: 235px;
    min-height: 235px;
  }

  .drawer-product {
    grid-template-columns: 54px 1fr;
  }

  .product-preview-modal {
    padding: 12px;
  }

  .video-preview-modal {
    padding: 12px;
  }

  .product-preview-stage {
    min-height: 52svh;
    padding: 22px;
  }

  .product-preview-stage:hover img {
    transform: scale(1.12);
  }

  .product-preview-info {
    align-items: stretch;
    flex-direction: column;
  }

  .video-preview-dialog {
    width: min(420px, 100%);
  }

  .admin-login form,
  .admin-actions,
  .admin-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-admin-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-image,
  .product-card:hover .product-image,
  .product-card:hover .product-visual .pack-shot,
  .product-preview-stage:hover img,
  .video-card:hover .video-open-button img,
  .video-card:hover .video-placeholder,
  .video-card:hover .video-play-icon,
  .primary-button:hover,
  .secondary-button:hover,
  .category-band a:hover,
  .quality-grid article:hover,
  .product-card:hover,
  .recipe-list article:hover,
  .contact-card:hover,
  .social-links a:hover,
  .stats-section article:hover {
    transform: none;
  }
}
