:root {
  --teal: #009cae;
  --teal-dark: #43b649;
  --green: #43b649;
  --yellow: #43b649;
  --ink: #12333a;
  --muted: #5d7075;
  --line: #d8eaee;
  --surface: #f4fbfc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 51, 58, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 234, 238, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

.header-inner > * {
  min-width: 0;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 0;
  font-size: 0.83rem;
  color: var(--muted);
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 112px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-switch button {
  min-height: 30px;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
}

.language-switch button.is-active {
  color: var(--white);
  background: var(--yellow);
}

.header-phone {
  white-space: nowrap;
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle-line {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

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

.hero {
  position: relative;
  min-height: min(760px, 82vh);
  display: grid;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-aisle.jpg");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 35, 40, 0.9), rgba(7, 35, 40, 0.54) 52%, rgba(7, 35, 40, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 148px 0 96px;
}

.hero-badges {
  position: absolute;
  right: auto;
  top: 28px;
  left: max(32px, calc((100vw - var(--max)) / 2));
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 34px;
  pointer-events: none;
}

.hero-badge-image {
  width: clamp(86px, 5.6vw, 108px);
  height: clamp(86px, 5.6vw, 108px);
  object-fit: contain;
  opacity: 0.94;
  filter:
    drop-shadow(0 14px 20px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.18));
}

.hero-badge-halal {
  width: clamp(92px, 6vw, 116px);
  height: clamp(92px, 6vw, 116px);
}

.hero-badge-years {
  width: clamp(102px, 6.8vw, 132px);
  height: clamp(102px, 6.8vw, 132px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(67, 182, 73, 0.26);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.metrics-section {
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 146px;
  padding: 22px;
  background: var(--white);
}

.metric-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-dark);
  background: #e7f7fa;
  border-radius: 8px;
}

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

.metric-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.metric h3 {
  display: block;
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(1.28rem, 2.4vw, 2.05rem);
  line-height: 1;
}

.metric p {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--surface);
}

.split,
.delivery-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 62px;
}

.split-top {
  align-items: start;
}

.section-copy,
.contact-copy {
  max-width: 690px;
}

.body-copy {
  margin-top: 28px;
}

.body-copy p,
.section-heading p,
.section-copy > p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.body-copy p {
  margin: 0 0 16px;
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dcecef;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 660px;
  margin: 20px 0 0;
}

.compact-heading {
  margin-bottom: 24px;
}

.compact-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.category-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card,
.client-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.client-card:hover,
.logo-tile:hover,
.certificate-card:hover,
.community-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 156, 174, 0.4);
  box-shadow: 0 14px 34px rgba(18, 51, 58, 0.08);
}

.delivery-point span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
}

.category-card h3,
.client-card h3 {
  color: var(--teal-dark);
}

.category-card p,
.client-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.logo-block {
  margin-top: 54px;
}

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

.product-logo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.partner-logo-grid {
  margin-top: 28px;
}

.logo-tile {
  display: grid;
  grid-template-rows: 112px auto;
  row-gap: 12px;
  min-height: 174px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.logo-tile div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.logo-tile strong {
  min-width: 0;
  text-align: right;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.warehouse-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.warehouse-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 51, 58, 0.06);
}

.warehouse-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.warehouse-card div {
  padding: 22px;
}

.warehouse-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.delivery-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
}

.delivery-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.delivery-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.delivery-point span {
  margin: 0;
}

.delivery-point p {
  margin: 4px 0 0;
  color: var(--muted);
}

.fleet-grid {
  display: grid;
  gap: 16px;
  align-content: center;
}

.fleet-grid .media-frame:only-child img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.certificate-list {
  display: grid;
  gap: 14px;
}

.certificate-card,
.community-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.certificate-card {
  overflow: hidden;
}

.certificate-preview {
  position: relative;
  display: grid;
  width: 100%;
  height: 300px;
  place-items: center;
  padding: 16px;
  border: 0;
  background: #edf5f7;
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
  overflow: hidden;
}

.certificate-preview img {
  position: absolute;
  inset: 16px;
  display: block;
  width: calc(100% - 32px);
  max-width: none;
  height: calc(100% - 32px);
  object-fit: contain;
  border: 1px solid rgba(216, 234, 238, 0.9);
  box-shadow: 0 10px 26px rgba(18, 51, 58, 0.1);
}

.certificate-copy {
  padding: 20px 22px 22px;
}

.certificate-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.certificate-copy a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 51, 58, 0.78);
}

.certificate-modal[hidden] {
  display: none;
}

.certificate-modal-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, 920px);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.certificate-modal-header,
.certificate-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.certificate-modal-footer {
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.certificate-modal-header h3 {
  font-size: 1rem;
}

.certificate-modal-close {
  display: inline-flex;
  min-width: 42px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.certificate-modal-body {
  overflow: auto;
  padding: 22px;
  background: #edf5f7;
}

.certificate-modal-body img {
  width: min(100%, 820px);
  height: auto;
  margin: 0 auto;
  box-shadow: 0 16px 44px rgba(18, 51, 58, 0.18);
}

.certificate-modal-footer a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 51, 58, 0.64);
}

.request-modal[hidden] {
  display: none;
}

.request-modal-panel {
  width: min(100%, 480px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.request-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.request-modal-header h3 {
  margin: 0;
  font-size: 1.18rem;
}

.request-modal-close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.request-modal-body {
  padding: 20px;
}

.request-modal-body > p {
  margin: 0 0 18px;
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 14px;
}

.request-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.request-field {
  display: grid;
  gap: 7px;
}

.request-field span {
  font-size: 0.84rem;
  font-weight: 800;
}

.request-field input,
.request-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.request-field textarea {
  min-height: 104px;
  resize: vertical;
}

.request-field input:focus,
.request-field textarea:focus {
  border-color: var(--green);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(67, 182, 73, 0.16);
}

.request-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.request-status:empty {
  display: none;
}

.request-status[data-status="success"] {
  color: var(--green);
}

.request-status[data-status="error"] {
  color: #b42318;
}

.request-status[data-status="pending"] {
  color: var(--teal);
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.request-actions .btn {
  flex: 1 1 170px;
}

.request-cancel {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}

.community-card {
  padding: 26px;
}

.community-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.community-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: #e7f7fa;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.community-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.community-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
}

.contact-section {
  color: var(--white);
  background: var(--ink);
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-item + .contact-item {
  margin-top: 22px;
}

.contact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  overflow-wrap: anywhere;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: var(--yellow);
}

.map-wrap {
  margin-top: 28px;
}

.map-frame {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  padding: 34px;
  color: var(--ink);
  background:
    linear-gradient(32deg, transparent 0 43%, rgba(255, 255, 255, 0.72) 43% 46%, transparent 46% 100%),
    linear-gradient(118deg, transparent 0 39%, rgba(255, 255, 255, 0.78) 39% 42%, transparent 42% 100%),
    linear-gradient(90deg, transparent 0 24%, rgba(0, 156, 174, 0.16) 24% 26%, transparent 26% 100%),
    linear-gradient(0deg, transparent 0 52%, rgba(67, 182, 73, 0.24) 52% 54%, transparent 54% 100%),
    #dbe9e7;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.map-frame::before,
.map-frame::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.5) 18% 19%, transparent 19% 100%),
    linear-gradient(0deg, transparent 0 31%, rgba(255, 255, 255, 0.45) 31% 32%, transparent 32% 100%),
    linear-gradient(146deg, transparent 0 58%, rgba(255, 255, 255, 0.55) 58% 59.5%, transparent 59.5% 100%);
  opacity: 0.85;
  transform: rotate(-2deg);
}

.map-frame::after {
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(0, 156, 174, 0.18) 72% 73%, transparent 73% 100%),
    linear-gradient(0deg, transparent 0 70%, rgba(255, 255, 255, 0.55) 70% 71.5%, transparent 71.5% 100%);
  opacity: 0.75;
  transform: rotate(4deg);
}

.map-pin {
  position: absolute;
  left: 58%;
  top: 42%;
  z-index: 2;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--teal);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 125, 140, 0.34);
}

.map-pin svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-card {
  position: relative;
  z-index: 3;
  max-width: 420px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 44px rgba(18, 51, 58, 0.18);
}

.map-card span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.map-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
}

.site-footer {
  padding: 24px 0;
  color: var(--muted);
  background: #eef8fa;
}

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

.footer-inner img {
  width: 150px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 0.92rem;
}

:focus-visible {
  outline: 3px solid rgba(67, 182, 73, 0.7);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 128px;
  }

  .site-nav {
    gap: 9px;
    font-size: 0.78rem;
  }

  .header-phone {
    display: none;
  }

  .category-grid,
  .client-grid,
  .logo-grid,
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid,
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header .container {
    width: 100%;
    max-width: none;
    padding: 0 12px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 74px;
    gap: 10px 12px;
    padding: 8px 0;
  }

  .brand img {
    width: 122px;
  }

  .menu-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    justify-self: end;
  }

  .site-nav {
    position: static;
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 6px;
    overflow: visible;
    width: 100%;
    min-width: 0;
    padding: 8px 0 2px;
    border-top: 1px solid var(--line);
    background: transparent;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    border: 0;
    border-radius: 8px;
    background: var(--surface);
    white-space: normal;
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-badges {
    top: 26px;
    bottom: auto;
    left: 50%;
    display: flex;
    gap: 22px;
    transform: translateX(-50%);
  }

  .hero-badge-image,
  .hero-badge-halal {
    width: 96px;
    height: 96px;
  }

  .hero-badge-years {
    width: 108px;
    height: 108px;
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 96px;
  }

  .metrics-grid,
  .split,
  .delivery-layout,
  .contact-layout,
  .warehouse-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-layout {
    gap: 28px;
  }

  .map-frame {
    min-height: 360px;
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand img {
    width: 104px;
  }

  .language-switch {
    min-width: 88px;
  }

  .language-switch button {
    font-size: 0.72rem;
  }

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

  .site-nav a {
    font-size: 0.76rem;
  }

  .hero-content {
    padding: 150px 0 96px;
  }

  .hero-badges {
    top: 26px;
    gap: 20px;
  }

  .hero-badge-image,
  .hero-badge-halal {
    width: 94px;
    height: 94px;
  }

  .hero-badge-years {
    width: 106px;
    height: 106px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .metrics-section {
    margin-top: -26px;
  }

  .metrics-grid,
  .category-grid,
  .client-grid,
  .logo-grid,
  .product-logo-grid {
    grid-template-columns: 1fr;
  }

  .product-logo-grid,
  .partner-logo-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -12px;
    padding: 2px 12px 14px;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .product-logo-grid .logo-tile,
  .partner-logo-grid .logo-tile {
    flex: 0 0 min(78vw, 320px);
    grid-template-rows: 148px minmax(68px, auto);
    min-height: 262px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .product-logo-grid .logo-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 282px;
  }

  .product-logo-grid .logo-tile img {
    flex: 0 0 154px;
    width: 100%;
    height: 154px;
    max-height: 154px;
    object-fit: contain;
    overflow: hidden;
    padding: 18px 28px 22px;
  }

  .product-logo-grid .logo-tile div {
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    margin-top: 14px;
    padding-top: 18px;
  }

  .product-logo-grid .logo-tile strong {
    text-align: center;
    line-height: 1.35;
  }

  .metric {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 4px 14px;
    min-height: auto;
    padding: 18px;
  }

  .metric-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .metric h3 {
    font-size: 1.24rem;
  }

  .metric p {
    margin: 0;
  }

  .section {
    padding: 68px 0;
  }

  .category-card,
  .client-card,
  .community-card,
  .contact-panel {
    padding: 20px;
  }

  .request-modal {
    align-items: end;
    padding: 12px;
  }

  .request-modal-panel {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .request-modal-header,
  .request-modal-body {
    padding: 16px;
  }

  .map-wrap {
    margin-top: 18px;
  }

  .map-frame {
    min-height: 300px;
    align-items: end;
    padding: 18px;
  }

  .map-pin {
    top: 22px;
    right: 22px;
    left: auto;
    width: 48px;
    height: 48px;
    border-width: 4px;
  }

  .map-pin svg {
    width: 23px;
    height: 23px;
  }

  .map-card {
    width: 100%;
    max-width: none;
    padding: 18px;
  }

  .map-card strong {
    font-size: 0.95rem;
  }

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