:root {
  --color-primary: #b21717;
  --color-primary-dark: #861111;
  --color-gold: #c99319;
  --color-gold-light: #f3dfaa;
  --color-text: #2b211d;
  --color-muted: #6f6863;
  --color-background: #ffffff;
  --color-surface: #fffaf2;
  --color-border: #ead9ae;
  --color-green: #3f7d43;
  --shadow-card: 0 14px 36px rgba(92, 52, 16, 0.1);
  --shadow-soft: 0 8px 22px rgba(92, 52, 16, 0.08);
  --radius: 8px;
  --container: 1180px;
  font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #fffdf8 0, #ffffff 560px),
    var(--color-background);
  color: var(--color-text);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(201, 147, 25, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 217, 174, 0.82);
  backdrop-filter: blur(14px);
}

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

.brand-logo-wrap {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(201, 147, 25, 0.28);
  border-radius: var(--radius);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--color-gold);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.brand small {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-primary);
  background: #fff6e6;
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 900;
  line-height: 1.25;
}

.header-cta,
.button.primary {
  background: linear-gradient(180deg, #c91f1f, var(--color-primary));
  color: #fff;
  box-shadow: 0 10px 22px rgba(178, 23, 23, 0.18);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--color-primary-dark);
}

.button.secondary {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}

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

.button.line {
  background: #13a538;
  color: #fff;
}

.button.compact {
  min-height: 42px;
  padding: 8px 14px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-primary);
}

.section-pad {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.hero {
  min-height: clamp(620px, calc(100vh - 82px), 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 34px;
  padding-top: 34px;
  padding-bottom: 42px;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-gold-light);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.pill span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  font-size: 13px;
}

.pill.gold {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(243, 223, 170, 0.8);
}

.hero h1 {
  margin: 0;
  color: var(--color-primary);
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 8px;
  color: #3a2b25;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.hero-support {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--color-muted);
  font-size: 17px;
}

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

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 45%, rgba(243, 223, 170, 0.58), transparent 210px),
    linear-gradient(135deg, rgba(255, 250, 242, 0.85), rgba(255, 255, 255, 0));
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 44px;
  border-radius: 90% 10% 90% 10%;
  background: linear-gradient(135deg, #d7a92d, #fff1bd);
  opacity: 0.58;
  animation: drift 6s ease-in-out infinite;
}

.hero-visual::before {
  left: 54px;
  top: 90px;
  transform: rotate(-22deg);
}

.hero-visual::after {
  right: 36px;
  bottom: 120px;
  transform: rotate(28deg);
  animation-delay: 1.6s;
}

.hero-pork,
.hero-chicken,
.hero-eggs,
.hero-sauce,
.fresh-badge {
  position: absolute;
  filter: drop-shadow(0 22px 34px rgba(92, 52, 16, 0.16));
}

.hero-video-card {
  overflow: hidden;
  border: 1px solid rgba(234, 217, 174, 0.86);
  box-shadow: 0 26px 70px rgba(92, 52, 16, 0.11);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: var(--color-surface);
  transition: opacity 180ms ease;
}

.hero-video-card.has-video .hero-video {
  opacity: 1;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 180ms ease;
}

.hero-video-card.has-video .hero-video-fallback {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.hero-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(255, 250, 242, 0.2), transparent 42%, rgba(255, 250, 242, 0.24));
}

.video-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 6;
  display: grid;
  gap: 2px;
  max-width: min(360px, calc(100% - 40px));
  padding: 10px 14px;
  border: 1px solid rgba(234, 217, 174, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-muted);
  box-shadow: var(--shadow-soft);
}

.video-caption strong {
  color: var(--color-primary);
  font-size: 15px;
}

.video-caption span {
  font-size: 12px;
}

.hero-video-card.has-video .video-caption span {
  display: none;
}

.hero-pork {
  width: min(76%, 520px);
  right: 52px;
  top: 72px;
  z-index: 3;
}

.hero-chicken {
  width: 42%;
  right: 8px;
  top: 22px;
  z-index: 2;
}

.hero-eggs {
  width: 34%;
  left: 42px;
  bottom: 92px;
  z-index: 2;
}

.hero-sauce {
  width: 27%;
  right: 62px;
  bottom: 42px;
  z-index: 4;
}

.fresh-badge {
  right: 42px;
  bottom: 160px;
  z-index: 5;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}

.fresh-badge strong,
.fresh-badge span {
  display: block;
  line-height: 1.18;
}

.fresh-badge strong {
  color: var(--color-primary);
  font-size: 18px;
}

.fresh-badge span {
  color: var(--color-gold);
  font-size: 28px;
  font-weight: 900;
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 12px;
  }
}

.feature-strip {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-strip article {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-left: 1px solid var(--color-border);
}

.feature-strip article:first-child {
  border-left: 0;
}

.icon-dot {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 50%;
  border: 2px solid rgba(201, 147, 25, 0.38);
  color: var(--color-primary);
  background: #fff8e6;
  font-weight: 900;
}

.feature-strip h2,
.feature-strip p {
  margin: 0;
}

.feature-strip h2 {
  font-size: 18px;
}

.feature-strip p {
  color: var(--color-muted);
  font-size: 14px;
}

.section-heading {
  text-align: center;
  margin: 0 auto 26px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  align-items: end;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2,
.contact-section h2,
.promo-copy h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 34px;
  line-height: 1.22;
}

.section-note {
  margin: 0;
  color: var(--color-muted);
}

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

.category-card,
.product-card,
.branch-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-card {
  min-height: 220px;
  display: grid;
  grid-template-rows: 126px 1fr;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: var(--color-text);
  font: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-card:hover,
.category-card.active {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
}

.category-card img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  background: var(--color-surface);
}

.category-card-body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.category-card h3,
.product-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.category-card p,
.product-meta,
.product-code {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.link-button {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px auto 0;
  padding: 10px 20px;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
}

.link-button[hidden] {
  display: none;
}

.product-tools {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 7px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  padding: 10px 12px;
}

.active-filter {
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px solid rgba(178, 23, 23, 0.18);
  border-radius: var(--radius);
  color: var(--color-primary);
  background: #fff4f2;
  font-weight: 800;
}

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

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 148px 1fr;
  overflow: hidden;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--color-surface);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  min-height: 148px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: var(--color-primary);
  background:
    radial-gradient(circle at 22% 22%, rgba(201, 147, 25, 0.18), transparent 72px),
    linear-gradient(135deg, #fffaf2, #fff);
  font-weight: 900;
}

.featured-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.product-code {
  font-weight: 900;
  color: var(--color-gold);
}

.price {
  margin: 2px 0 4px;
  color: var(--color-primary);
  font-weight: 900;
}

.product-card .button {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  text-align: center;
  color: var(--color-muted);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.product-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.promo-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.promo-copy {
  padding: 34px;
}

.promo-copy h2 {
  color: #fff;
  font-size: 42px;
}

.promo-copy p {
  max-width: 500px;
  margin: 12px 0;
  color: #fff8e6;
}

.promo-copy strong {
  display: block;
  margin: 0 0 20px;
  color: var(--color-gold-light);
  font-size: 24px;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1851 / 850;
  object-fit: cover;
  object-position: center;
}

.branch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 18px;
  align-items: start;
}

.map-panel,
.contact-section,
.site-footer {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-toolbar {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}

.map-toolbar label {
  flex: 1;
}

.map-placeholder {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(184, 213, 219, 0.34) 1px, transparent 1px),
    linear-gradient(rgba(184, 213, 219, 0.34) 1px, transparent 1px),
    #edf8f4;
  background-size: 64px 64px;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(32deg, transparent 47%, rgba(201, 147, 25, 0.24) 48%, rgba(201, 147, 25, 0.24) 51%, transparent 52%),
    linear-gradient(148deg, transparent 45%, rgba(107, 155, 113, 0.2) 46%, rgba(107, 155, 113, 0.2) 50%, transparent 51%);
}

.map-pin {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--color-primary);
  box-shadow: 0 10px 18px rgba(92, 52, 16, 0.22);
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--color-gold-light);
}

.pin-one {
  left: 30%;
  top: 34%;
}

.pin-two {
  left: 62%;
  top: 24%;
}

.pin-three {
  left: 50%;
  top: 62%;
}

.map-pin.active {
  background: var(--color-gold);
  scale: 1.12;
}

.map-empty {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(520px, calc(100% - 32px));
  translate: -50% 0;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  color: var(--color-muted);
}

.map-empty strong {
  color: var(--color-primary);
}

.branch-card {
  position: sticky;
  top: 100px;
  padding: 20px;
}

.branch-card h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1.25;
}

.branch-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.branch-list li {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.branch-actions {
  display: grid;
  gap: 10px;
}

.contact-section {
  width: min(var(--container), calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 44px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(178, 23, 23, 0.06), rgba(201, 147, 25, 0.1)),
    #fff;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 32px;
  padding: 26px;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.site-footer img {
  background: #fff;
  border-radius: var(--radius);
}

.site-footer strong {
  color: var(--color-gold);
  font-size: 22px;
}

.site-footer ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
}

.site-footer li {
  min-width: 0;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.site-footer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 34px rgba(92, 52, 16, 0.16);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-contact-bar a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--color-primary);
  font-weight: 900;
}

.mobile-contact-bar a:first-child {
  background: #13a538;
}

.mobile-contact-bar a:last-child {
  background: var(--color-gold);
}

@media (max-width: 1024px) {
  .site-header {
    padding-inline: 20px;
  }

  .brand {
    min-width: auto;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-visual {
    min-height: 470px;
  }

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

  .feature-strip article:nth-child(odd) {
    border-left: 0;
  }

  .feature-strip article:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .branch-layout {
    grid-template-columns: 1fr;
  }

  .branch-card {
    position: static;
  }

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

@media (max-width: 780px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 74px;
    justify-content: space-between;
  }

  .brand-logo-wrap {
    width: 52px;
    height: 52px;
  }

  .brand-logo-wrap img {
    width: 48px;
    height: 51px;
  }

  .brand strong {
    font-size: 20px;
  }

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

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .header-cta {
    display: none;
  }

  .section-pad,
  .feature-strip,
  .contact-section,
  .site-footer {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-pork {
    right: 22px;
    top: 72px;
    width: 76%;
  }

  .hero-chicken {
    right: 6px;
    top: 34px;
    width: 42%;
  }

  .hero-eggs {
    left: 12px;
    bottom: 74px;
    width: 38%;
  }

  .hero-sauce {
    right: 24px;
    bottom: 30px;
    width: 30%;
  }

  .fresh-badge {
    right: 16px;
    bottom: 130px;
    width: 104px;
    height: 104px;
  }

  .fresh-badge strong {
    font-size: 15px;
  }

  .fresh-badge span {
    font-size: 23px;
  }

  .section-heading.split,
  .contact-section,
  .map-toolbar {
    display: grid;
  }

  .section-heading.split {
    text-align: center;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 28px;
  }

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

  .promo-copy {
    padding: 24px;
  }

  .promo-copy h2 {
    font-size: 34px;
  }

  .promo-banner img {
    aspect-ratio: 1851 / 850;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-actions .button {
    width: 100%;
  }

  .mobile-contact-bar {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 8px;
  }

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

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .feature-strip article:first-child {
    border-top: 0;
  }

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

  .category-card {
    grid-template-rows: 96px 1fr;
    min-height: 184px;
  }

  .category-card img {
    height: 96px;
  }

  .category-card h3,
  .product-card h3 {
    font-size: 16px;
  }

  .product-card {
    grid-template-rows: 118px 1fr;
  }

  .product-media img,
  .image-placeholder {
    height: 118px;
    min-height: 118px;
  }

  .product-card-body,
  .category-card-body {
    padding: 11px;
  }

  .product-meta,
  .product-code,
  .category-card p {
    font-size: 12px;
  }

  .price {
    font-size: 13px;
  }

  .map-placeholder {
    min-height: 370px;
  }

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

/* Sale page refinements */
body {
  background:
    linear-gradient(180deg, #fffdf8 0, #ffffff 300px),
    repeating-linear-gradient(90deg, rgba(234, 217, 174, 0.14) 0 1px, transparent 1px 88px),
    var(--color-background);
}

.site-header {
  box-shadow: 0 8px 26px rgba(92, 52, 16, 0.05);
}

.hero {
  min-height: 620px;
  padding-top: 28px;
  padding-bottom: 22px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(46px, 5vw, 72px);
  text-shadow: 0 4px 0 rgba(243, 223, 170, 0.35);
}

.hero-lead {
  font-size: 23px;
}

.hero-visual {
  min-height: 510px;
  background:
    radial-gradient(circle at 62% 44%, rgba(243, 223, 170, 0.8), transparent 210px),
    radial-gradient(circle at 48% 72%, rgba(178, 23, 23, 0.08), transparent 180px),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.18));
}

.hero-pork {
  width: min(82%, 560px);
  right: 30px;
  top: 58px;
}

.hero-chicken {
  width: 39%;
  right: 0;
  top: 18px;
}

.hero-eggs {
  width: 34%;
  left: 24px;
  bottom: 80px;
}

.hero-sauce {
  width: 26%;
  right: 54px;
  bottom: 44px;
}

.fresh-badge {
  right: 28px;
  bottom: 158px;
}

.feature-strip {
  margin-top: 2px;
  transform: translateY(-14px);
}

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

.category-card {
  min-height: 186px;
  grid-template-rows: 108px 1fr;
}

.category-card img {
  height: 108px;
}

.category-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff3d4;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.product-groups {
  display: grid;
  gap: 34px;
}

.product-category-section {
  scroll-margin-top: 98px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.product-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(234, 217, 174, 0.8);
}

.product-category-heading h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 26px;
  line-height: 1.2;
}

.product-category-heading > span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-gold);
  font-weight: 900;
  white-space: nowrap;
}

.product-category-footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.product-category-footer .link-button {
  margin: 0;
}

.product-card {
  box-shadow: 0 8px 18px rgba(92, 52, 16, 0.07);
}

.product-card h3 {
  min-height: 48px;
}

.branch-layout {
  display: block;
}

.branch-map-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.google-map {
  min-height: 560px;
  background: var(--color-surface);
}

.google-map iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: 0;
}

.branch-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--color-border);
  background:
    linear-gradient(90deg, rgba(178, 23, 23, 0.06), rgba(201, 147, 25, 0.08)),
    #fff;
}

.branch-map-footer strong,
.branch-map-footer span {
  display: block;
}

.branch-map-footer strong {
  color: var(--color-primary);
  font-size: 20px;
}

.branch-map-footer span {
  color: var(--color-muted);
  font-size: 14px;
}

.site-footer {
  overflow: hidden;
  padding: 0;
  border-color: rgba(201, 147, 25, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
}

.site-footer > .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-bottom: 0;
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand img {
  width: 74px;
  height: 78px;
  flex: 0 0 74px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 147, 25, 0.28);
  background: #fff;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--color-gold);
  font-size: 24px;
  line-height: 1.2;
}

.footer-brand span {
  color: var(--color-muted);
  font-weight: 700;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer > .footer-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.footer-info article {
  min-width: 0;
  padding: 18px 20px;
  border-left: 1px solid var(--color-border);
}

.footer-info article:first-child {
  border-left: 0;
}

.footer-info span,
.footer-info strong {
  display: block;
}

.footer-info span {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer-info strong {
  margin-top: 4px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.site-footer > .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  padding: 14px 20px;
  color: var(--color-muted);
  font-size: 13px;
  background: rgba(255, 246, 230, 0.76);
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .hero {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-visual {
    min-height: 380px;
  }

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

  .feature-strip {
    transform: none;
  }

  .product-category-section {
    padding: 14px;
  }

  .product-category-heading {
    align-items: start;
  }

  .product-category-heading h3 {
    font-size: 22px;
  }

  .google-map,
  .google-map iframe {
    height: 420px;
    min-height: 420px;
  }

  .branch-map-footer {
    display: grid;
  }

  .site-footer > .footer-main {
    display: grid;
  }

  .footer-actions {
    justify-content: stretch;
  }

  .footer-actions .button {
    width: 100%;
  }

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

  .footer-info article:nth-child(odd) {
    border-left: 0;
  }

  .footer-info article:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .site-footer > .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .category-card {
    min-height: 174px;
    grid-template-rows: 92px 1fr;
  }

  .category-card img {
    height: 92px;
  }

  .product-category-heading {
    display: grid;
  }

  .google-map,
  .google-map iframe {
    height: 360px;
    min-height: 360px;
  }

  .video-caption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 10px;
  }

  .video-caption span {
    display: none;
  }

  .footer-main,
  .footer-info article,
  .footer-bottom {
    padding-inline: 14px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 58px;
    height: 62px;
    flex-basis: 58px;
  }

  .footer-brand strong {
    font-size: 18px;
  }

  .footer-brand span {
    font-size: 13px;
  }

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

  .footer-info article {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .footer-info article:first-child {
    border-top: 0;
  }
}

/* Final QA refinements */
.button,
.link-button,
.mobile-contact-bar a {
  text-align: center;
  white-space: normal;
}

.category-card h3,
.product-card h3,
.product-meta,
.price,
.branch-map-footer span,
.site-footer li {
  overflow-wrap: anywhere;
}

.category-card h3,
.product-card h3,
.product-meta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card h3 {
  -webkit-line-clamp: 1;
}

.product-card h3 {
  min-height: 48px;
  -webkit-line-clamp: 2;
}

.product-meta {
  min-height: 42px;
  -webkit-line-clamp: 2;
}

.price {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.product-card-body {
  grid-template-rows: auto auto auto auto 1fr;
}

.product-card .button {
  align-self: end;
}

.image-placeholder {
  line-height: 1.35;
}

.branch-section {
  padding-top: 66px;
}

.branch-map-card {
  border-width: 2px;
  border-color: rgba(201, 147, 25, 0.62);
}

.google-map {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.85), rgba(255, 255, 255, 0.2)),
    #fffaf2;
}

.google-map::before {
  content: "Google Maps";
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 900;
  pointer-events: none;
}

.branch-map-footer .button {
  width: auto;
  min-width: 210px;
}

.contact-section {
  margin-top: 6px;
}

@media (max-width: 780px) {
  body {
    padding-bottom: 96px;
  }

  .hero {
    padding-bottom: 96px;
  }

  .hero-visual {
    margin-bottom: 12px;
  }

  .mobile-contact-bar {
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  body.is-hero-visible .mobile-contact-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-contact-bar a {
    min-width: 0;
    font-size: 15px;
  }

  .product-card .button {
    min-height: 46px;
    padding-inline: 8px;
    font-size: 14px;
  }

  .branch-map-footer .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-bottom: 104px;
  }

  .product-card h3 {
    min-height: 44px;
    font-size: 15px;
  }

  .product-meta {
    min-height: 38px;
  }

  .price {
    min-height: 40px;
  }

  .product-card .button {
    font-size: 13px;
  }
}

/* Full-width hero video banner */
.hero {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  min-height: clamp(560px, calc(100vh - 110px), 720px);
  display: flex;
  align-items: center;
  padding: clamp(42px, 7vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(234, 217, 174, 0.86);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 30px 80px rgba(92, 52, 16, 0.11);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 255, 255, 0.32) 62%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.52), rgba(255, 255, 255, 0.18));
}

.hero .hero-video-card {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(243, 223, 170, 0.82), transparent 280px),
    #fffaf2;
}

.hero .hero-video,
.hero .hero-video-fallback {
  inset: 0;
}

.hero .hero-video-fallback {
  overflow: hidden;
}

.hero .hero-pork {
  width: min(58vw, 690px);
  right: 6%;
  top: 10%;
}

.hero .hero-chicken {
  width: min(24vw, 320px);
  right: 5%;
  top: 8%;
}

.hero .hero-eggs {
  width: min(22vw, 280px);
  left: auto;
  right: 34%;
  bottom: 18%;
}

.hero .hero-sauce {
  width: min(17vw, 210px);
  right: 13%;
  bottom: 10%;
}

.hero .hero-copy {
  position: relative;
  z-index: 5;
  max-width: min(620px, 58%);
}

.hero .fresh-badge {
  right: clamp(28px, 7vw, 96px);
  bottom: clamp(96px, 22vw, 190px);
  z-index: 6;
}

.hero .video-caption {
  left: auto;
  right: clamp(24px, 5vw, 76px);
  bottom: clamp(22px, 4vw, 52px);
  z-index: 6;
}

.hero .video-caption,
.hero .fresh-badge {
  backdrop-filter: blur(8px);
}

.feature-strip {
  transform: none;
  margin-top: 26px;
}

.categories-section {
  scroll-margin-top: 96px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.categories-section .section-heading {
  width: min(720px, 100%);
}

.categories-section .section-heading h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.categories-section .category-grid {
  padding: 18px;
  border: 1px solid rgba(234, 217, 174, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.82), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.categories-section .category-card {
  min-height: 212px;
  grid-template-rows: 136px 1fr;
}

.categories-section .category-card img {
  height: 136px;
}

.categories-section .category-card h3 {
  color: var(--color-primary);
  font-size: 20px;
}

.categories-section .category-status {
  background: var(--color-primary);
  color: #fff;
}

.categories-section .category-card {
  position: relative;
  min-height: 214px;
  display: block;
  border-width: 2px;
}

.categories-section .category-card img {
  width: 100%;
  height: 214px;
  object-fit: cover;
}

.categories-section .category-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 42px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(43, 33, 29, 0.76));
}

.categories-section .category-card h3 {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  -webkit-line-clamp: unset;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 680px;
    display: flex;
    padding: 42px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.2) 100%);
  }

  .hero .hero-copy {
    align-self: flex-start;
    max-width: 720px;
  }

  .hero .hero-pork {
    width: min(82vw, 640px);
    right: 4%;
    top: 42%;
  }

  .hero .hero-chicken {
    width: min(36vw, 290px);
    right: 3%;
    top: 39%;
  }

  .hero .hero-eggs {
    width: min(34vw, 240px);
    left: 8%;
    right: auto;
    bottom: 11%;
  }

  .hero .hero-sauce {
    width: min(26vw, 180px);
    right: 13%;
    bottom: 7%;
  }

  .hero .fresh-badge {
    right: 8%;
    bottom: 20%;
  }
}

@media (max-width: 780px) {
  .hero {
    width: min(100% - 24px, var(--container));
    min-height: 780px;
    padding: 28px 20px 118px;
  }

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

  .hero .hero-video-card {
    margin-bottom: 0;
  }

  .hero .hero-pork {
    width: 90vw;
    right: -8%;
    top: 56%;
  }

  .hero .hero-chicken {
    width: 42vw;
    right: -4%;
    top: 53%;
  }

  .hero .hero-eggs {
    width: 42vw;
    left: 6%;
    bottom: 10%;
  }

  .hero .hero-sauce {
    width: 30vw;
    right: 10%;
    bottom: 7%;
  }

  .hero .fresh-badge {
    right: 8%;
    bottom: 25%;
  }

  .hero .video-caption {
    left: 20px;
    right: auto;
    bottom: 22px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 760px;
    padding: 28px 18px 112px;
  }

  .hero .hero-pork {
    width: 96vw;
    right: -18%;
    top: 58%;
  }

  .hero .hero-chicken {
    width: 48vw;
    right: -8%;
    top: 55%;
  }

  .hero .hero-eggs {
    width: 42vw;
    left: 7%;
    bottom: 11%;
  }

  .hero .hero-sauce {
    width: 32vw;
    right: 8%;
    bottom: 8%;
  }

  .hero .fresh-badge {
    width: 98px;
    height: 98px;
    right: 8%;
    bottom: 26%;
  }
}


/* Hero video focus */
.hero.section-pad {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 82px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}

.hero::before,
.hero::after,
.hero .hero-copy,
.hero .fresh-badge,
.hero .video-caption {
  display: none;
}

.hero .hero-video-card {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}

.hero .hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  background: #000;
}

.hero .hero-video-fallback {
  z-index: 0;
}

.hero-video-card.has-video .hero-video-fallback {
  display: none;
}

@media (max-width: 780px) {
  .hero.section-pad {
    width: 100%;
    min-height: calc(100vh - 74px);
    padding: 0;
  }
}


/* Keep hero video below the menu */
.site-header {
  position: relative;
  top: auto;
}

.hero.section-pad {
  min-height: calc(100vh - 82px);
}

@media (max-width: 780px) {
  .hero.section-pad {
    min-height: calc(100vh - 74px);
  }
}
