@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-mono-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
}
[hidden] { display: none !important; }
body.is-dialog-open { overflow: hidden; }

:root {
  --obsidian: #11100f;
  --charcoal: #1b1917;
  --cream: #f3e6d2;
  --paper: #fff9f0;
  --ink: #211e1a;
  --muted: #6e665e;
  --line: rgba(33, 30, 26, 0.16);
  --chicken: #c98222;
  --chicken-light: #f0b84e;
  --spicy: #d85032;
  --herb: #506b53;
  --beef: #702f33;
  --beef-dark: #481e22;
  --copper: #b86a3c;
  --focus: #f0b84e;
  --white: #fff;
  --max-width: 1280px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

::selection {
  background: var(--chicken-light);
  color: var(--obsidian);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-shell {
  min-width: 0;
  overflow: clip;
  background: var(--paper);
}

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

.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;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 90;
  height: 36px;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 16, 15, 0.15);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.09em;
  line-height: 36px;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.announcement__track > span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.announcement__track b {
  font-weight: 750;
}

.announcement__track i {
  color: var(--spicy);
  font-style: normal;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: var(--header-height);
  background: rgba(17, 16, 15, 0.86);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 16, 15, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.logo-link {
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark__symbol {
  position: relative;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(
      from -30deg,
      var(--chicken-light) 0 15%,
      transparent 15% 18%,
      var(--copper) 18% 36%,
      transparent 36% 39%,
      var(--spicy) 39% 56%,
      transparent 56% 60%,
      var(--beef) 60% 78%,
      transparent 78% 82%,
      var(--chicken) 82% 100%
    );
  box-shadow: 0 0 24px rgba(216, 80, 50, 0.2);
}

.brand-mark__symbol::after {
  content: "";
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--obsidian);
}

.brand-mark__symbol span,
.brand-mark__symbol span::before,
.brand-mark__symbol span::after {
  position: absolute;
  right: 1px;
  width: 15px;
  height: 2px;
  content: "";
  border-radius: 3px;
  background: var(--cream);
  transform: rotate(-8deg);
}

.brand-mark__symbol span {
  bottom: 8px;
}

.brand-mark__symbol span::before {
  right: 1px;
  bottom: 5px;
  width: 12px;
}

.brand-mark__symbol span::after {
  right: 2px;
  bottom: 10px;
  width: 9px;
}

.brand-mark__word {
  display: grid;
  color: var(--white);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.brand-mark__word strong {
  font-size: 18px;
  font-weight: 780;
}

.brand-mark--compact .brand-mark__symbol {
  width: 92px;
  height: 92px;
}

.brand-mark--compact .brand-mark__symbol::after {
  width: 54px;
  height: 54px;
  background: var(--paper);
}

.brand-mark--compact .brand-mark__symbol span {
  right: 4px;
  bottom: 20px;
  width: 36px;
  height: 4px;
}

.brand-mark--compact .brand-mark__symbol span::before {
  right: 2px;
  bottom: 10px;
  width: 29px;
  height: 4px;
}

.brand-mark--compact .brand-mark__symbol span::after {
  right: 4px;
  bottom: 20px;
  width: 22px;
  height: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 560;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--chicken-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.language-switcher span {
  color: rgba(255, 255, 255, 0.25);
}

.language-switcher a {
  color: rgba(255, 255, 255, 0.52);
}

.language-switcher a[aria-current="page"] {
  color: var(--chicken-light);
  font-weight: 800;
}

.header-external {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease;
}

.header-external:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.button-arrow {
  display: inline-block;
  font-size: 1.05em;
  transition: transform 180ms ease;
}

a:hover .button-arrow,
button:hover .button-arrow {
  transform: translate(3px, -3px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 32%),
    radial-gradient(circle at 74% 46%, rgba(201, 130, 34, 0.11), transparent 26%),
    var(--obsidian);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.2;
  pointer-events: none;
  animation: glow-shift 14s ease-in-out infinite alternate;
}

.hero__glow--amber {
  top: 6%;
  right: 13%;
  width: 340px;
  height: 340px;
  background: var(--chicken);
}

.hero__glow--red {
  right: 33%;
  bottom: 2%;
  width: 270px;
  height: 270px;
  background: var(--beef);
  animation-delay: -6s;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: 24px;
  padding-block: 72px 48px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--chicken-light);
}

.hero h1,
.section-heading h2,
.why-intro h2,
.halal-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 5.75rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
}

.hero__intro {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 680;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--cream {
  background: var(--cream);
  color: var(--ink);
}

.button--cream:hover {
  background: var(--white);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.button--dark {
  background: var(--obsidian);
  color: var(--white);
}

.button--dark:hover {
  background: var(--beef-dark);
}

.hero__status {
  display: flex;
  max-width: 540px;
  align-items: flex-start;
  gap: 14px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--chicken-light);
  box-shadow: 0 0 0 6px rgba(240, 184, 78, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero__status div {
  display: grid;
  gap: 6px;
}

.hero__status strong {
  font-size: 13px;
}

.hero__status div > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

.hero__orbit {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 40s linear infinite;
}

.hero__orbit::before,
.hero__orbit::after {
  position: absolute;
  inset: 38px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.hero__orbit::after {
  inset: 94px;
}

.hero__orbit > span {
  position: absolute;
  top: 46px;
  left: 55px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chicken-light);
  box-shadow: 0 0 16px rgba(240, 184, 78, 0.7);
}

.hero__orbit > span:last-child {
  top: auto;
  right: 46px;
  bottom: 70px;
  left: auto;
  background: var(--spicy);
}

.hero-pack {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  width: min(340px, 52%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 36px 34px rgba(0, 0, 0, 0.34));
  transform-origin: bottom center;
}

.hero-pack--beef {
  right: -5px;
  z-index: 1;
  width: min(305px, 47%);
  animation: package-drift-back 7.4s ease-in-out infinite;
}

.hero-pack--chicken {
  right: 36%;
  animation: package-drift 6.7s ease-in-out infinite;
}

.hero__plinth {
  position: absolute;
  right: 2%;
  bottom: 20px;
  width: 94%;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(240, 184, 78, 0.2), transparent 62%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 14px 30px rgba(255, 255, 255, 0.02);
}

.hero__badge {
  position: absolute;
  z-index: 4;
  top: 9%;
  right: 1%;
  width: 138px;
  animation: badge-float 6s ease-in-out infinite;
}

.hero__badge .halal-stamp {
  width: 100%;
}

.hero__categories {
  position: relative;
  z-index: 3;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.17em;
}

.hero__categories i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--spicy);
}

.stats-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  min-height: 134px;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 30px;
  border-left: 1px solid var(--line);
}

.stat:last-child {
  border-right: 1px solid var(--line);
}

.stat strong {
  color: var(--beef);
  font-size: 33px;
  font-weight: 720;
  letter-spacing: -0.06em;
}

.stat span {
  max-width: 104px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-paper {
  background:
    radial-gradient(circle at 12% 5%, rgba(201, 130, 34, 0.07), transparent 25%),
    var(--paper);
}

.products-section {
  padding: 124px 0 138px;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 64px;
}

.section-heading h2,
.why-intro h2,
.halal-copy h2,
.faq-heading h2,
.contact-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.section-heading > p,
.why-intro > p,
.professional-section .section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.filter-bar {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 36px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.filter-bar button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 640;
  transition: background 180ms ease, color 180ms ease;
}

.filter-bar button span {
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(33, 30, 26, 0.08);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.filter-bar button.is-active {
  background: var(--obsidian);
  color: var(--white);
}

.filter-bar button.is-active span {
  background: rgba(255, 255, 255, 0.14);
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 620px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(33, 30, 26, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(243, 230, 210, 0.54)),
    var(--cream);
  box-shadow: 0 22px 55px rgba(52, 38, 25, 0.07);
  animation: card-enter 520ms both;
  animation-delay: calc(var(--card-index) * 65ms);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--product-accent);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 240ms ease;
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--product-accent) 48%, transparent);
  box-shadow: 0 34px 70px rgba(52, 38, 25, 0.13);
  transform: translateY(-6px);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 20px 0;
}

.product-family,
.product-format,
.professional-card__tag {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.halal-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--product-accent, var(--herb)) 32%, transparent);
  border-radius: 999px;
  color: var(--herb);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__image {
  position: relative;
  display: grid;
  height: 350px;
  place-items: center;
  margin: 8px 8px 0;
}

.product-card__halo {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--product-accent) 13%, transparent);
  filter: blur(1px);
  transition: transform 260ms ease;
}

.product-card__image img {
  position: relative;
  z-index: 1;
  width: 235px;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(64, 43, 24, 0.13));
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-card__image img {
  transform: translateY(-8px) scale(1.025);
}

.product-card:hover .product-card__halo {
  transform: scale(1.08);
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 22px 24px;
}

.product-format {
  margin-bottom: 9px;
  color: var(--product-accent);
}

.product-card h3 {
  min-height: 50px;
  margin: 0;
  font-size: 20px;
  font-weight: 710;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.product-card__content > p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--product-accent) 35%, transparent);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0;
  background:
    radial-gradient(circle at 75% 12%, rgba(240, 184, 78, 0.11), transparent 26%),
    linear-gradient(138deg, var(--beef-dark), #2c1216 74%);
  color: var(--white);
}

.why-section::after {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.016);
}

.why-intro {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 850px;
  margin-bottom: 64px;
}

.why-intro > p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why-card {
  display: grid;
  min-height: 330px;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 36px 28px 32px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.why-card:not(:first-child) {
  padding-left: 28px;
}

.why-card:last-child {
  border-right: 0;
}

.why-card__number {
  align-self: start;
  color: transparent;
  font-size: 76px;
  font-weight: 780;
  letter-spacing: -0.08em;
  line-height: 0.9;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}

.why-card__index {
  color: var(--chicken-light);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.why-card h3 {
  margin: 54px 0 14px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.halal-section {
  padding: 126px 0;
  background:
    radial-gradient(circle at 22% 48%, rgba(80, 107, 83, 0.11), transparent 22%),
    var(--paper);
}

.halal-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 150px);
}

.halal-visual {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
}

.halal-stamp {
  position: relative;
  z-index: 2;
  display: block;
  width: 320px;
  max-width: 78vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: drop-shadow(0 34px 35px rgba(49, 65, 51, 0.2));
  transform: rotate(-3deg);
}

.halal-stamp::before,
.halal-stamp::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
}

.halal-stamp::before {
  inset: -7px;
  border: 1px dashed rgba(80, 107, 83, 0.36);
}

.halal-stamp::after {
  inset: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 249, 240, 0.18),
    inset 0 0 34px rgba(17, 16, 15, 0.14);
}

.halal-stamp svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.halal-stamp__field {
  fill: #405e48;
  stroke: rgba(255, 249, 240, 0.24);
  stroke-width: 2;
}

.halal-stamp__outer,
.halal-stamp__inner,
.halal-stamp__rule {
  fill: none;
  stroke: var(--paper);
}

.halal-stamp__outer {
  stroke-width: 2.2;
}

.halal-stamp__dash {
  fill: none;
  stroke: rgba(255, 249, 240, 0.64);
  stroke-dasharray: 2 6;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.halal-stamp__inner {
  stroke: rgba(240, 184, 78, 0.78);
  stroke-width: 1.2;
}

.halal-stamp__rule {
  stroke: rgba(255, 249, 240, 0.46);
  stroke-width: 1;
}

.halal-stamp text {
  fill: var(--paper);
}

.halal-stamp__oba,
.halal-stamp__range,
.halal-stamp__category {
  font-family: var(--font-geist-mono), monospace;
  font-weight: 700;
}

.halal-stamp__oba {
  font-size: 12px;
  letter-spacing: 0.14em;
}

.halal-stamp__main {
  font-family: var(--font-geist-sans), "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 860;
  letter-spacing: -0.045em;
}

.halal-stamp__range {
  fill: var(--chicken-light) !important;
  font-size: 8.5px;
  letter-spacing: 0.18em;
}

.halal-stamp__category {
  font-size: 8.5px;
  letter-spacing: 0.18em;
}

.halal-stamp__dot {
  fill: var(--chicken-light);
}

.halal-stamp--compact {
  width: 138px;
  max-width: none;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.36));
  transform: rotate(4deg);
}

.halal-stamp--compact::before {
  border-color: rgba(255, 249, 240, 0.28);
}

.halal-rings,
.halal-rings span {
  position: absolute;
  inset: 0;
}

.halal-rings span {
  margin: auto;
  border: 1px solid rgba(80, 107, 83, 0.12);
  border-radius: 50%;
}

.halal-rings span:nth-child(1) {
  width: 360px;
  height: 360px;
}

.halal-rings span:nth-child(2) {
  width: 430px;
  height: 430px;
}

.halal-rings span:nth-child(3) {
  width: 500px;
  height: 500px;
}

.halal-copy h2 {
  max-width: 730px;
}

.halal-copy__lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.halal-copy ul {
  display: grid;
  gap: 0;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.halal-copy li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 610;
}

.halal-copy li span {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(80, 107, 83, 0.1);
  color: var(--herb);
  font-size: 11px;
}

.halal-note {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--herb);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.professional-section {
  padding: 126px 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(112, 47, 51, 0.26), transparent 28%),
    var(--obsidian);
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.55);
}

.professional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.professional-card {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: 110px 1fr;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
}

.professional-card::after {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.025);
}

.professional-card--retail {
  background: linear-gradient(145deg, rgba(201, 130, 34, 0.19), rgba(255, 255, 255, 0.025));
}

.professional-card--distribution {
  background: linear-gradient(145deg, rgba(112, 47, 51, 0.3), rgba(255, 255, 255, 0.025));
}

.professional-card__number {
  color: rgba(255, 255, 255, 0.18);
  font-size: 54px;
  font-weight: 750;
  letter-spacing: -0.08em;
}

.professional-card > div:last-child {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.professional-card__tag {
  color: var(--chicken-light);
}

.professional-card h3 {
  max-width: 430px;
  margin: 72px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.professional-card p {
  max-width: 460px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.professional-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 700;
}

.faq-section {
  padding: 126px 0;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-monogram {
  margin-top: 58px;
  opacity: 0.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  align-items: center;
  grid-template-columns: 42px 1fr 28px;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--beef);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.faq-list summary strong {
  font-size: 17px;
  font-weight: 660;
}

.faq-list summary i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: transform 200ms ease, background 200ms ease;
}

.faq-list details[open] summary i {
  background: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -4px 46px 26px 60px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  padding: 118px 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(201, 130, 34, 0.13), transparent 28%),
    var(--obsidian);
  color: var(--white);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(70px, 9vw, 130px);
}

.contact-copy p {
  max-width: 530px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
  line-height: 1.65;
}

.contact-cards {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-cards a {
  position: relative;
  display: grid;
  min-height: 116px;
  align-items: center;
  grid-template-columns: 110px 1fr 30px;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding 180ms ease, background 180ms ease;
}

.contact-cards a:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-cards a > span:first-child {
  color: var(--chicken-light);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cards strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 2.1vw, 1.7rem);
  font-weight: 570;
  letter-spacing: -0.025em;
}

.site-footer {
  padding: 72px 0 28px;
  background: #0b0a09;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 70px;
  padding-bottom: 62px;
}

.footer-top > div:first-child p {
  max-width: 290px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.footer-top nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-top nav a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-top nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact a:nth-child(n + 3) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--chicken-light);
}

.footer-bottom {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.product-dialog-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(6, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  animation: backdrop-in 220ms ease both;
}

.product-dialog {
  position: relative;
  display: grid;
  width: min(1040px, 88vw);
  height: 100%;
  overflow: auto;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.28);
  animation: dialog-in 320ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 249, 240, 0.86);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.dialog-close span {
  font-size: 28px;
  font-weight: 320;
  line-height: 1;
}

.dialog-image {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--product-accent) 16%, transparent), transparent 38%),
    var(--cream);
}

.dialog-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--product-accent);
}

.dialog-image__halo {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid color-mix(in srgb, var(--product-accent) 30%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px color-mix(in srgb, var(--product-accent) 6%, transparent),
    0 0 0 88px color-mix(in srgb, var(--product-accent) 3%, transparent);
}

.dialog-image img {
  position: relative;
  z-index: 1;
  width: min(350px, 82%);
  max-height: 82vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(64, 43, 24, 0.17));
}

.dialog-content {
  padding: 110px clamp(38px, 5vw, 76px) 80px;
}

.dialog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--product-accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-content h2 {
  margin: 28px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.dialog-lead {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.dialog-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 30px 0 0;
}

.dialog-highlights span {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--product-accent) 24%, transparent);
  border-radius: 999px;
  color: var(--product-accent);
  font-size: 10px;
  font-weight: 680;
}

.dialog-content dl {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.dialog-content dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-content dt {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-content dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.dialog-note {
  margin: 26px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--product-accent);
  background: color-mix(in srgb, var(--product-accent) 5%, transparent);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.privacy-page,
.not-found-page {
  min-height: 100vh;
  padding: 80px 0;
  background: var(--paper);
}

.legal-shell {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 70px;
  font-size: 13px;
  font-weight: 650;
}

.legal-shell h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.legal-updated {
  margin: 22px 0 48px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--beef);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes glow-shift {
  from { transform: translate3d(-20px, 0, 0) scale(0.95); }
  to { transform: translate3d(28px, 18px, 0) scale(1.08); }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes package-drift {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-9px) rotate(-0.5deg); }
}

@keyframes package-drift-back {
  0%, 100% { transform: translateY(-3px) rotate(4deg); }
  50% { transform: translateY(6px) rotate(3deg); }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(240, 184, 78, 0.1); }
  50% { box-shadow: 0 0 0 10px rgba(240, 184, 78, 0.02); }
}

@keyframes card-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dialog-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 16, 15, 0.98);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: grid;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 25px 0 34px;
  }

  .mobile-menu a {
    display: flex;
    min-height: 55px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--white);
    font-size: 17px;
  }

  .mobile-menu a span {
    color: var(--chicken-light);
    font-family: var(--font-geist-mono), monospace;
    font-size: 9px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
  }

  .hero-pack--chicken {
    right: 31%;
  }

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

  .product-card {
    min-height: 650px;
  }

  .product-card__image {
    height: 390px;
  }

  .product-card__image img {
    width: 275px;
    height: 380px;
  }

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

  .why-card__number {
    font-size: 64px;
  }

  .why-card h3 {
    margin-top: 34px;
  }

}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .header-external {
    display: none;
  }

  .hero {
    min-height: 1120px;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 86px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero__orbit {
    left: 50%;
    width: 500px;
    height: 500px;
  }

  .hero-pack {
    width: 310px;
  }

  .hero-pack--chicken {
    right: 48%;
    transform: translateX(15%);
  }

  .hero-pack--beef {
    right: 12%;
    width: 285px;
  }

  .hero__plinth {
    right: 8%;
    width: 84%;
  }

  .hero__badge {
    right: 9%;
  }

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

  .stat:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .why-card {
    min-height: 260px;
    grid-template-columns: 110px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .why-card:not(:first-child) {
    padding-left: 0;
  }

  .why-card h3 {
    margin-top: 34px;
  }

  .halal-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .halal-visual {
    min-height: 440px;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }

  .faq-monogram {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .product-dialog {
    width: 94vw;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  }

  .dialog-content dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .announcement {
    height: 32px;
    font-size: 9px;
    line-height: 32px;
  }

  .announcement__track > span {
    gap: 16px;
    padding-right: 16px;
  }

  .brand-mark__symbol {
    width: 33px;
    height: 33px;
  }

  .brand-mark__symbol::after {
    width: 19px;
    height: 19px;
  }

  .brand-mark__word {
    font-size: 13px;
  }

  .brand-mark__word strong {
    font-size: 16px;
  }

  .header-actions {
    gap: 12px;
  }

  .language-switcher {
    font-size: 10px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 995px;
  }

  .hero__grid {
    gap: 20px;
    padding: 62px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero__intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero__buttons {
    display: grid;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero__status {
    margin-top: 32px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__orbit {
    top: 52%;
    width: 350px;
    height: 350px;
  }

  .hero-pack {
    bottom: 30px;
    width: 230px;
  }

  .hero-pack--chicken {
    right: 42%;
  }

  .hero-pack--beef {
    right: 3%;
    width: 215px;
  }

  .hero__badge {
    top: 7%;
    right: 3%;
    width: 96px;
  }

  .hero__categories {
    height: 56px;
    gap: 11px;
    font-size: 7px;
  }

  .stats-grid {
    min-height: 0;
  }

  .stat {
    min-height: 98px;
    gap: 10px;
    padding: 18px 14px;
  }

  .stat strong {
    font-size: 27px;
  }

  .stat span {
    font-size: 8px;
  }

  .products-section,
  .why-section,
  .halal-section,
  .professional-section,
  .faq-section,
  .contact-section {
    padding: 88px 0;
  }

  .section-heading h2,
  .why-intro h2,
  .halal-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading > p,
  .why-intro > p,
  .professional-section .section-heading > p {
    font-size: 15px;
  }

  .filter-bar {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 18px;
  }

  .filter-bar button {
    justify-content: center;
    padding-inline: 8px;
    font-size: 11px;
  }

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

  .product-card {
    min-height: 610px;
    border-radius: 22px;
  }

  .product-card__image {
    height: 360px;
  }

  .product-card__image img {
    width: 255px;
    height: 350px;
  }

  .why-intro {
    margin-bottom: 40px;
  }

  .why-card {
    min-height: 0;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding-block: 28px;
  }

  .why-card__number {
    font-size: 48px;
  }

  .why-card h3 {
    margin-top: 24px;
    font-size: 21px;
  }

  .halal-visual {
    min-height: 350px;
  }

  .halal-stamp {
    width: 250px;
  }

  .halal-rings span:nth-child(1) {
    width: 270px;
    height: 270px;
  }

  .halal-rings span:nth-child(2) {
    width: 320px;
    height: 320px;
  }

  .halal-rings span:nth-child(3) {
    display: none;
  }

  .halal-copy__lead {
    font-size: 16px;
  }

  .professional-card {
    min-height: 390px;
    grid-template-columns: 58px 1fr;
    padding: 26px 22px;
  }

  .professional-card__number {
    font-size: 34px;
  }

  .professional-card h3 {
    margin-top: 58px;
    font-size: 27px;
  }

  .faq-list summary {
    min-height: 82px;
    grid-template-columns: 28px 1fr 28px;
    gap: 10px;
  }

  .faq-list summary strong {
    font-size: 15px;
  }

  .faq-list details > p {
    margin: 0 0 22px 38px;
    font-size: 13px;
  }

  .contact-cards a {
    min-height: 104px;
    grid-template-columns: 1fr 30px;
    gap: 6px 14px;
  }

  .contact-cards a > span:first-child {
    grid-column: 1 / -1;
  }

  .contact-cards strong {
    font-size: 17px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-top > div:first-child {
    grid-column: auto;
  }

  .footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-dialog-backdrop {
    align-items: flex-end;
  }

  .product-dialog {
    display: block;
    width: 100%;
    height: min(94vh, 900px);
    border-radius: 26px 26px 0 0;
    animation-name: dialog-up;
  }

  .dialog-image {
    position: relative;
    height: 390px;
  }

  .dialog-image img {
    width: 240px;
    max-height: 360px;
  }

  .dialog-image__halo {
    width: 270px;
    height: 270px;
  }

  .dialog-content {
    padding: 42px 20px 60px;
  }

  .dialog-content h2 {
    font-size: 36px;
  }

  .dialog-lead {
    font-size: 15px;
  }

  .dialog-content .button {
    width: 100%;
  }
}

@keyframes dialog-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand-mark__word {
    display: none;
  }

  .hero {
    min-height: 940px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero-pack {
    width: 200px;
  }

  .hero-pack--beef {
    width: 185px;
  }

  .hero__categories span:nth-of-type(3),
  .hero__categories i:nth-of-type(3) {
    display: none;
  }

  .filter-bar button span {
    display: none;
  }

  .product-card__image img {
    width: 230px;
  }

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

  .professional-card__number {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .announcement__track {
    animation: none !important;
  }
}
