@font-face {
  font-family: "GrillMontserrat";
  src: url("public/assets/904be59b21bd51cb-s.p.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f7941d;
  --orange-dark: #e78206;
  --black: #050505;
  --ink: #111111;
  --muted: #666666;
  --soft: #f3f4f6;
  --line: #e6e7eb;
  --paper: #ffffff;
  --max: 1220px;
  --nav-h: 114px;
  --shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "GrillMontserrat", Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open,
body.order-modal-open,
body.site-loading {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  background: #fff;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 247, 231, 0.78);
  backdrop-filter: blur(1px);
}

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

.site-loader-inner {
  display: grid;
  place-items: center;
  gap: 16px;
  color: #273142;
  text-align: center;
}

.loader-logo-ring {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 5px solid rgba(247, 148, 29, 0.28);
  border-top-color: var(--orange);
  border-right-color: #3cad45;
  border-bottom-color: #3cad45;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  animation: loader-spin 900ms linear infinite;
}

.loader-logo-ring img {
  width: 50px;
  height: 48px;
  object-fit: contain;
  animation: loader-logo-stay 900ms linear infinite;
}

.loader-copy {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-logo-stay {
  to {
    transform: rotate(-360deg);
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--nav-h);
  background: #000;
  color: #fff;
}

.header-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: var(--nav-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

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

.logo {
  width: 90px;
  height: 86px;
  object-fit: contain;
}

.cert {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.header-cert-divider {
  width: 1px;
  height: 42px;
  background: #9a9a9a;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link,
.dropdown-trigger {
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 12px 0;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: var(--orange);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  transform: translateY(8px) scaleY(0.96);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #000;
  color: #fff;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  text-transform: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.open .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
}

.dropdown-menu a,
.dropdown-menu span {
  display: block;
  padding: 12px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 24px;
}

.dropdown-menu > * + * {
  border-top: 1px dashed #555;
  margin: 0 16px;
}

.dropdown-menu > * + * a,
.dropdown-menu > * + * span {
  margin: 0 -16px;
}

.dropdown-menu a:hover {
  background: #111;
  color: var(--orange);
}

.dropdown-muted {
  color: #a0a0a0;
}

.order-btn,
.primary-btn,
.secondary-btn,
.dark-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
}

.order-btn,
.primary-btn {
  background: var(--orange);
  color: #111;
}

.desktop-order {
  display: inline-flex;
  flex: 0 0 142px;
  flex-wrap: nowrap;
  width: 142px;
  min-width: 142px;
  height: 48px;
  min-height: 48px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.order-btn:hover,
.primary-btn:hover {
  background: var(--orange-dark);
}

.dark-btn {
  background: #000;
  color: #fff;
}

.outline-btn {
  background: transparent;
  color: #111;
  border-color: #111;
}

.secondary-btn {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  background: #fff;
  content: "";
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.mobile-drawer {
  display: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}

.hero-stage {
  position: relative;
  height: min(41.6vw, 640px);
  min-height: 520px;
}

.hero-stage picture,
.hero-stage img {
  width: 100%;
  height: 100%;
}

.hero-stage img {
  object-fit: cover;
}

.hero-order {
  position: absolute;
  left: max(7vw, calc((100vw - var(--max)) / 2));
  bottom: 15%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 58px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  border: 0;
  font-size: 22px;
  font-weight: 900;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #bfc3c9;
}

.slider-dot.active {
  background: #1598df;
}

.promo-strip {
  padding: 26px 0 44px;
  background: #fff;
}

.mobile-promos {
  display: none;
}

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

.promo-grid img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.about-section {
  padding: 54px 0 78px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.about-title-img {
  width: 360px;
  margin: 0 auto;
}

.about-copy {
  color: #202020;
  font-size: 18px;
  line-height: 1.65;
}

.about-copy p {
  margin: 0 0 26px;
}

.signature-section,
.orange-band {
  background-color: var(--orange);
  background-image: url("public/assets/doodles.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.signature-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 530px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 36px;
}

.stamp-heading {
  margin: 0;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 1000;
  color: #090909;
}

.signature-section .outline-btn {
  margin-top: 52px;
  min-width: 220px;
}

.signature-food {
  width: 100%;
  max-width: 770px;
  margin-left: auto;
}

.paper-section {
  padding: 76px 0 86px;
  background-image: url("public/assets/whats-on-background.webp");
  background-size: 620px;
}

.white-section {
  padding: 78px 0;
  background: #fff;
}

.soft-section {
  padding: 78px 0;
  background: #f2f3f5;
}

.section-title {
  margin: 0 0 54px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  color: #0a0a0a;
}

.section-title.orange {
  color: var(--orange);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  overflow: hidden;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.09);
  text-align: center;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
}

.article-card-body {
  padding: 30px 34px 34px;
}

.article-card h3 {
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.article-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 38px;
  color: #d89a43;
  font-weight: 500;
}

.text-link[data-order-popup] {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.order-modal.open {
  display: flex;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
}

.order-modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border: 3px solid var(--orange);
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.order-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.order-modal-header {
  max-width: 480px;
  margin-bottom: 24px;
}

.order-modal-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.order-modal-header h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 0.95;
  font-weight: 900;
}

.order-modal-header p {
  margin: 14px 0 0;
  color: #555;
  font-size: 15px;
}

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

.order-location-card {
  display: flex;
  min-height: 96px;
  padding: 18px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 2px solid #111;
  border-radius: 6px;
  background: #050505;
  color: #fff;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.order-location-card span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.order-location-card small {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.order-location-card:hover,
.order-location-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: var(--orange);
  color: #111;
  outline: none;
}

.order-location-card:hover small,
.order-location-card:focus-visible small {
  color: #111;
}

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

.delivery-modal.open {
  display: flex;
}

.delivery-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
}

.delivery-modal-panel {
  position: relative;
  width: min(100%, 450px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 44px 0 0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.delivery-modal-close {
  position: absolute;
  top: 13px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 25px;
  line-height: 1;
}

.delivery-modal-logo {
  max-width: min(72%, 260px);
  max-height: 82px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.delivery-location-list {
  border-top: 1px dashed #d5d5d5;
}

.delivery-location-row {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-bottom: 1px dashed #d5d5d5;
  color: #111;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease;
}

.delivery-location-row:hover,
.delivery-location-row:focus-visible {
  background: var(--orange);
  color: #111;
  outline: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-tile {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 5px;
  color: #fff;
  background: #111;
}

.feature-tile.wide {
  grid-column: 1 / -1;
  min-height: 350px;
}

.feature-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.feature-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.18));
  content: "";
}

.feature-content {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
}

.black-label {
  display: inline-block;
  padding: 4px 14px 6px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 44px);
  line-height: 1;
  font-weight: 1000;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}

.partners-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 96px;
  min-height: 190px;
  background: #fff;
}

.delivery-logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  transition: transform 160ms ease;
}

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

.delivery-logo-button:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--orange);
  outline-offset: 10px;
}

.partners-delivery img {
  max-width: 320px;
  max-height: 82px;
  object-fit: contain;
}

.faq-section {
  padding: 86px 0 96px;
  background: #f2f3f5;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -22px 0 20px;
}

.tab-btn {
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 3px 3px 0 0;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
}

.tab-btn.active {
  background: var(--orange);
}

.faq-list {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 16px;
  background: #e8e9ed;
}

.faq-item {
  margin-bottom: 10px;
  background: #fff;
}

.faq-question {
  width: 100%;
  min-height: 66px;
  padding: 0 28px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: #111;
  font-weight: 500;
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  color: #555;
  font-size: 15px;
}

.faq-item.open .faq-answer {
  display: block;
}

.chev {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.faq-item.open .chev {
  transform: rotate(180deg);
}

.partners {
  padding: 70px 0 86px;
  background: #fff;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 70px;
}

.partner-logos img {
  max-height: 150px;
  width: 100%;
  object-fit: contain;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 66px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.footer-logo {
  width: 180px;
}

.footer-title {
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
}

.footer-links,
.footer-copy {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b8b8b8;
  font-size: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a::before {
  color: var(--orange);
  content: "• ";
}

.footer-links a:hover,
.accent-link {
  color: var(--orange);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.social-row img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-certs {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-certs img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.footer-certs .divider {
  width: 1px;
  height: 86px;
  background: #777;
}

.copyright {
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  color: #a8a8a8;
  font-size: 14px;
}

.page-hero {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(rgba(247, 148, 29, 0.82), rgba(247, 148, 29, 0.82)), url("public/assets/find-us-near.png");
  background-size: cover;
  background-position: center;
}

.page-hero.tall {
  min-height: 660px;
  place-items: center start;
  text-align: left;
}

.page-hero.careers {
  background-image: linear-gradient(rgba(247, 148, 29, 0.74), rgba(247, 148, 29, 0.74)), url("public/assets/team.jpeg");
}

.page-hero h1 {
  width: min(780px, 100%);
  margin: 0 auto;
  font-size: clamp(42px, 4.3vw, 64px);
  line-height: 1.12;
  font-weight: 900;
}

.page-hero.story-page-hero h1 {
  width: min(1100px, 100%);
}

.page-hero.tall h1 {
  margin: 0;
  max-width: 640px;
}

.page-hero p {
  margin: 18px auto 0;
  max-width: 780px;
  font-size: 19px;
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  align-items: center;
}

.story-hero-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  align-items: center;
}

.story-hero-content > img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.content-grid img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.content-block h2,
.form-title,
.page-section-title {
  margin: 0 0 24px;
  text-transform: uppercase;
  color: var(--orange);
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1.15;
  font-weight: 900;
}

.content-block p,
.content-block li {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 1.75;
}

.content-block ul {
  margin: 0;
  padding-left: 20px;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.info-card {
  text-align: center;
}

.info-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.info-card h3 {
  margin: 24px 0 12px;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 900;
}

.info-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.story-values-intro {
  margin: -28px auto 70px;
  color: #555;
  text-align: center;
  font-size: 18px;
}

.impact-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 92px;
}

.impact-row.reverse {
  grid-template-columns: 1fr 2fr;
}

.impact-row.last {
  margin-bottom: 0;
}

.impact-copy h3 {
  margin: 0 0 24px;
  color: #111;
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: 1.18;
  font-weight: 900;
}

.impact-copy p {
  margin: 0 0 16px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.impact-media {
  width: 100%;
  max-height: 346px;
  object-fit: cover;
  border-radius: 4px;
}

.halal-media {
  min-height: 320px;
  object-fit: contain;
  background: #fff;
}

.metrics {
  color: #fff;
  text-align: center;
}

.metrics .section-title {
  color: #fff;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.metric h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 16px;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: 40px;
  color: #fff;
}

/* Franchise page: matches the archived source page without changing shared sections. */
.franchise-page-hero {
  min-height: 455px;
}

.franchise-page-hero h1 {
  width: min(980px, 100%);
  max-width: none;
  font-size: clamp(48px, 4.7vw, 66px);
}

.franchise-intro,
.franchise-success {
  padding: 86px 0;
}

.franchise-intro .content-grid,
.franchise-success .content-grid {
  gap: 84px;
}

.franchise-intro .content-block h2,
.franchise-success .content-block h2 {
  margin-bottom: 28px;
}

.franchise-intro .primary-btn {
  margin-top: 8px;
}

.franchise-benefits {
  padding: 84px 0 92px;
}

.franchise-benefits .section-title {
  margin-bottom: 58px;
}

.franchise-benefits .info-card img {
  aspect-ratio: 2.08 / 1;
}

.franchise-benefits .info-card h3 {
  margin: 26px 0 14px;
  font-size: 20px;
}

.franchise-benefits .info-card p {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.65;
}

.franchise-metrics {
  padding: 88px 0 82px;
  background-color: var(--orange);
  background-image: url("public/assets/doodles.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.franchise-metrics .section-title,
.franchise-next-step .section-title {
  margin-bottom: 58px;
  font-weight: 700;
}

.franchise-metrics .metric-grid {
  gap: 58px;
}

.franchise-metrics .metric h3 {
  margin-bottom: 20px;
  color: #111;
  font-size: 20px;
}

.franchise-metrics .metric strong {
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 500;
}

.franchise-metrics .metric p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.franchise-next-step {
  padding: 82px 0 88px;
  border-top: 1px dashed rgba(255, 255, 255, 0.65);
  background-color: var(--orange);
  background-image: url("public/assets/doodles.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.franchise-next-step .section-title {
  margin-bottom: 28px;
  color: #fff;
}

.franchise-next-step .max-copy {
  width: min(1160px, 100%);
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

.franchise-next-step .secondary-btn {
  min-width: 210px;
  margin-top: 24px;
  color: var(--orange);
}

.franchise-faq {
  padding: 86px 0 92px;
  background: #fff;
}

.franchise-faq .section-title {
  margin-bottom: 54px;
}

.franchise-faq .faq-list {
  width: min(1240px, 100%);
  padding: 0;
  background: transparent;
}

.franchise-faq .faq-item {
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid #e0e3e7;
  border-radius: 6px;
  background: #f8f9fa;
}

.franchise-faq .faq-question {
  min-height: 70px;
  background: transparent;
  font-size: 18px;
}

.franchise-faq .faq-answer {
  padding-bottom: 26px;
  background: #fff;
}

.franchise-enquire {
  padding: 90px 0 96px;
}

.franchise-enquire .page-section-title {
  margin-bottom: 28px;
}

.franchise-enquire .max-copy {
  font-size: 18px;
  line-height: 1.55;
}

.franchise-enquire .contact-info-card {
  width: min(560px, 100%);
  margin-top: 52px;
  padding: 48px 42px 40px;
}

.franchise-enquire .contact-info-card::before,
.franchise-enquire .contact-info-card::after {
  display: none;
}

.franchise-enquire .contact-info-card h3 {
  margin: 0 0 30px;
  font-size: 24px;
}

.franchise-enquire .contact-info-card p {
  margin: 0 0 34px;
  color: #5d6269;
  font-size: 18px;
  line-height: 1.55;
}

.franchise-enquire .contact-info-card .primary-btn {
  width: 100%;
}

.testimonial-band {
  position: relative;
  padding: 86px 0;
  background-color: var(--orange);
  background-image: url("public/assets/doodles.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  align-items: center;
}

.testimonial {
  padding: 34px 34px 38px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  color: #555;
}

.testimonial.active {
  background: #fff;
}

.testimonial h3 {
  margin: 0 0 2px;
  color: #111;
}

.stars {
  margin: 16px 0;
  color: var(--orange);
  font-weight: 900;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  font-size: 28px;
  transform: translateY(-50%);
}

.carousel-arrow.prev {
  left: max(18px, calc((100vw - var(--max)) / 2 - 62px));
}

.carousel-arrow.next {
  right: max(18px, calc((100vw - var(--max)) / 2 - 62px));
}

.location-title-card {
  width: min(780px, calc(100% - 48px));
  margin: -48px auto 52px;
  padding: 18px 28px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(28px, 2.7vw, 42px);
  letter-spacing: 0;
}

.location-title-card .orange-text {
  color: var(--orange);
}

.service-row {
  display: flex;
  justify-content: center;
  gap: 130px;
  margin: 0 0 70px;
  text-align: center;
}

.service-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

.service-option:hover {
  color: var(--orange);
}

.service-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 9px;
  object-fit: contain;
  transition: filter 160ms ease;
}

.service-option:hover .service-icon {
  filter: invert(63%) sepia(77%) saturate(1078%) hue-rotate(344deg) brightness(100%) contrast(95%);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
}

.location-details h3,
.contact-card h3 {
  margin: 0 0 12px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 18px;
}

.detail-block {
  margin-bottom: 28px;
}

.mini-accordion {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid #d8d9de;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #555;
  text-transform: uppercase;
  font-size: 13px;
}

.location-panel {
  display: none;
  padding: 12px 14px;
  border: 1px solid #d8d9de;
  border-top: 0;
  background: #fff;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.6;
}

.location-panel.open {
  display: block;
}

.location-panel p,
.location-panel ul {
  margin: 0;
}

.location-panel ul {
  padding-left: 20px;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 16px;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.map-card {
  min-height: 360px;
  width: 100%;
  background: #f3f3f3;
  border: 2px solid #fff;
  box-shadow: var(--shadow);
}

.button-row {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.location-story {
  margin-top: 80px;
}

.location-story img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.contact-card {
  min-height: 210px;
  padding: 42px 28px;
  background: #fff;
  text-align: center;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.round-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.round-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.gm-form {
  display: grid;
  gap: 18px;
}

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

.gm-form label,
.field-label {
  display: grid;
  gap: 7px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.gm-form input,
.gm-form select,
.gm-form textarea {
  width: 100%;
  border: 1px solid #d7d8dd;
  background: #fff;
  min-height: 44px;
  padding: 10px 14px;
  color: #111;
}

.gm-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-panel {
  padding: 28px;
  background: #fafafa;
  margin-bottom: 34px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rating-stars {
  display: flex;
  gap: 6px;
  align-items: center;
}

.rating-stars button {
  border: 0;
  background: transparent;
  color: #cfd2d7;
  font-size: 30px;
  line-height: 1;
  padding: 0;
}

.rating-stars button.active,
.rating-stars button:hover {
  color: var(--orange);
}

.form-status {
  display: none;
  padding: 13px 16px;
  border: 1px solid rgba(247, 148, 29, 0.5);
  background: rgba(247, 148, 29, 0.1);
  color: #3a260b;
  font-weight: 700;
}

.form-status.show {
  display: block;
}

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mini-location-card {
  padding: 24px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.07);
}

.mini-location-card h3 {
  margin: 0 0 8px;
}

.mini-location-card p {
  min-height: 46px;
  margin: 0 0 18px;
  color: #6a6a6a;
  font-size: 14px;
}

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

.contact-info-card {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
  padding: 36px 36px 32px;
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.contact-info-card::before,
.contact-info-card::after {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  z-index: -1;
}

.contact-info-card::before {
  top: -32px;
  left: -34px;
}

.contact-info-card::after {
  right: -34px;
  bottom: -34px;
}

.contact-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-line .round-icon {
  width: 36px;
  height: 36px;
  margin: 0;
  font-size: 18px;
}

.contact-line .round-icon img {
  width: 18px;
  height: 18px;
}

.center {
  text-align: center;
}

.max-copy {
  width: min(820px, 100%);
  margin-inline: auto;
  color: #666;
}

.not-found {
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 980px) {
  :root {
    --nav-h: 86px;
  }

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

  .header-inner {
    width: calc(100% - 18px);
    min-height: var(--nav-h);
    gap: 10px;
  }

  .brand-strip {
    min-width: 0;
    gap: 6px;
  }

  .logo {
    width: 54px;
    height: 52px;
  }

  .cert {
    width: 40px;
    height: 40px;
  }

  .header-cert-divider {
    height: 28px;
  }

  .header-nav,
  .desktop-order {
    display: none;
  }

  .mobile-actions {
    display: flex;
    margin-left: auto;
  }

  .mobile-actions .order-btn {
    min-height: 34px;
    padding: 0 13px;
    font-size: 12px;
  }

  .mobile-drawer {
    position: fixed;
    inset: var(--nav-h) 0 0;
    z-index: 29;
    display: block;
    padding: 20px 0 40px;
    background: #000;
    color: #fff;
    transform: translateX(100%);
    transition: transform 180ms ease;
    overflow-y: auto;
  }

  .mobile-drawer.open {
    transform: translateX(0);
  }

  .drawer-group,
  .mobile-drawer > a {
    display: block;
    border-bottom: 1px dashed #4b4b4b;
  }

  .drawer-group-toggle,
  .mobile-drawer > a {
    width: 100%;
    min-height: 72px;
    padding: 12px 16px;
    border: 0;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .drawer-group-toggle:hover,
  .mobile-drawer > a:hover {
    color: var(--orange);
  }

  .drawer-chevron {
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    filter: invert(1);
    transition: transform 160ms ease;
  }

  .drawer-group.open .drawer-chevron {
    transform: rotate(180deg);
    filter: invert(63%) sepia(84%) saturate(1388%) hue-rotate(348deg) brightness(101%) contrast(94%);
  }

  .drawer-group.open .drawer-group-toggle {
    color: var(--orange);
  }

  .drawer-group-links {
    display: grid;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 180ms ease, opacity 160ms ease;
  }

  .drawer-group.open .drawer-group-links {
    max-height: 360px;
    padding-bottom: 14px;
    opacity: 1;
  }

  .drawer-group-links a,
  .drawer-group-links span {
    display: block;
    padding: 9px 16px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
  }

  .drawer-group-links a:hover {
    color: var(--orange);
  }

  .order-modal {
    padding: 16px;
  }

  .order-modal-panel {
    width: 100%;
    padding: 28px 18px 20px;
    border-radius: 6px;
  }

  .order-modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 25px;
  }

  .order-modal-header {
    margin-bottom: 18px;
    padding-right: 42px;
  }

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

  .order-modal-header p {
    font-size: 13px;
    line-height: 1.5;
  }

  .order-location-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .order-location-card {
    min-height: 72px;
    padding: 15px 16px;
  }

  .order-location-card span {
    font-size: 17px;
  }

  .delivery-modal {
    padding: 16px;
  }

  .delivery-modal-panel {
    width: 100%;
    max-width: 448px;
    padding-top: 40px;
    border-radius: 6px;
  }

  .delivery-modal-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .delivery-modal-logo {
    max-width: min(76%, 240px);
    max-height: 70px;
    margin-bottom: 22px;
  }

  .delivery-location-row {
    min-height: 58px;
    padding: 13px 18px;
    font-size: 17px;
  }

  .hero-stage {
    height: min(155vw, 604px);
    min-height: 0;
  }

  .hero-stage picture,
  .hero-stage img {
    height: 100%;
  }

  .hero-order {
    display: none;
  }

  .promo-strip {
    padding: 52px 0 0;
  }

  .desktop-promos {
    display: none;
  }

  .mobile-promos {
    display: block;
    padding: 0 0 28px;
  }

  .promo-grid,
  .cards-3,
  .feature-grid,
  .content-grid,
  .story-hero-content,
  .info-card-grid,
  .testimonial-grid,
  .footer-grid,
  .contact-cards,
  .form-map-grid,
  .location-card-grid,
  .location-layout,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    gap: 14px;
  }

  .promo-grid img {
    border-radius: 8px;
    aspect-ratio: auto;
  }

  .about-section {
    padding: 54px 0 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-title-img {
    width: min(100%, 270px);
    margin: 0;
  }

  .about-copy {
    font-size: 11px;
    line-height: 1.55;
  }

  .about-copy p {
    margin-bottom: 16px;
  }

  .signature-inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 23px 28px;
  }

  .stamp-heading {
    font-size: 39px;
  }

  .signature-section .outline-btn {
    min-height: 31px;
    min-width: 150px;
    margin-top: 30px;
    padding: 0 16px;
    font-size: 11px;
  }

  .paper-section,
  .white-section,
  .soft-section,
  .faq-section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: 25px;
  }

  .article-card-body {
    padding: 24px 18px 28px;
  }

  .article-card h3 {
    font-size: 13px;
  }

  .article-card p {
    font-size: 11px;
    line-height: 1.55;
  }

  .feature-tile,
  .feature-tile.wide {
    min-height: 185px;
  }

  .feature-content {
    left: 15px;
    bottom: 14px;
  }

  .black-label {
    font-size: 22px;
  }

  .pill {
    min-height: 28px;
    padding: 0 11px;
    font-size: 10px;
  }

  .partners-delivery {
    min-height: 180px;
    gap: 24px;
    flex-direction: column;
  }

  .partners-delivery img {
    max-width: 210px;
  }

  .faq-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    margin: 0 0 18px;
    padding-bottom: 4px;
  }

  .tab-btn {
    min-height: 44px;
    padding: 0 15px;
    white-space: nowrap;
    font-size: 12px;
  }

  .faq-list {
    padding: 16px;
  }

  .faq-question {
    min-height: 70px;
    padding: 16px 28px;
    font-size: 16px;
    line-height: 1.45;
  }

  .faq-answer {
    padding: 0 28px 20px;
    font-size: 14px;
  }

  .faq-section:not(.franchise-faq) {
    padding: 62px 0;
  }

  .faq-section:not(.franchise-faq) .section-title {
    margin-bottom: 36px;
    font-size: 30px;
  }

  .faq-section:not(.franchise-faq) .chev {
    width: 18px;
    height: 18px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-logos img {
    max-height: 88px;
  }

  .site-footer {
    padding: 38px 0 26px;
    text-align: center;
  }

  .footer-logo {
    width: 125px;
    margin: 0 auto;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-links a::before {
    content: "";
  }

  .social-row,
  .footer-certs {
    justify-content: center;
  }

  .page-hero {
    min-height: 190px;
    padding: 22px 0;
  }

  .page-hero.tall {
    min-height: 520px;
    text-align: left;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 13px;
  }

  .content-grid {
    gap: 28px;
  }

  .story-hero-content {
    gap: 28px;
  }

  .content-block h2,
  .form-title,
  .page-section-title {
    font-size: 24px;
  }

  .content-block p,
  .content-block li {
    font-size: 13px;
  }

  .story-values-intro {
    margin: -12px auto 42px;
    font-size: 13px;
  }

  .impact-row,
  .impact-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 52px;
  }

  .impact-row.reverse .impact-copy {
    order: -1;
  }

  .impact-copy h3 {
    margin-bottom: 14px;
    font-size: 23px;
  }

  .impact-copy p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .impact-media {
    max-height: none;
  }

  .service-row {
    gap: 38px;
    margin-bottom: 36px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
  }

  .button-row,
  .card-actions,
  .form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button-row .primary-btn,
  .button-row .dark-btn,
  .card-actions .primary-btn,
  .card-actions .dark-btn {
    width: 100%;
  }

  .map-card {
    min-height: 270px;
  }

  .location-title-card {
    margin-top: -28px;
    font-size: 22px;
  }

  .form-panel {
    padding: 18px;
  }

  .franchise-page-hero {
    min-height: 270px;
  }

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

  .franchise-intro,
  .franchise-success,
  .franchise-benefits,
  .franchise-metrics,
  .franchise-next-step,
  .franchise-faq,
  .franchise-enquire {
    padding: 52px 0;
  }

  .franchise-intro .content-grid,
  .franchise-success .content-grid {
    gap: 30px;
  }

  .franchise-benefits .section-title,
  .franchise-faq .section-title,
  .franchise-metrics .section-title {
    margin-bottom: 32px;
  }

  .franchise-benefits .info-card h3 {
    margin-top: 18px;
    font-size: 17px;
  }

  .franchise-benefits .info-card p,
  .franchise-metrics .metric p,
  .franchise-next-step .max-copy,
  .franchise-enquire .max-copy,
  .franchise-enquire .contact-info-card p {
    font-size: 13px;
  }

  .franchise-metrics .metric-grid {
    gap: 40px;
  }

  .franchise-metrics .metric h3 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .franchise-metrics .metric strong {
    margin-bottom: 12px;
    font-size: 36px;
  }

  .franchise-next-step .section-title {
    margin-bottom: 18px;
  }

  .franchise-next-step .secondary-btn {
    min-width: 160px;
    margin-top: 18px;
  }

  .franchise-faq .faq-list {
    width: 100%;
  }

  .franchise-faq .faq-item {
    margin-bottom: 12px;
  }

  .franchise-faq .faq-question {
    min-height: 58px;
    padding: 0 16px;
    font-size: 13px;
  }

  .franchise-enquire .contact-info-card {
    margin-top: 32px;
    padding: 32px 24px 28px;
  }

  .franchise-enquire .contact-info-card h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .franchise-enquire .contact-info-card p {
    margin-bottom: 24px;
  }
}

@media (max-width: 430px) {
  :root {
    --nav-h: 86px;
  }

  .loader-logo-ring {
    width: 82px;
    height: 82px;
    border-width: 4px;
  }

  .loader-logo-ring img {
    width: 44px;
    height: 42px;
  }

  .loader-copy {
    font-size: 18px;
  }

  .site-header {
    min-height: var(--nav-h);
  }

  .header-inner {
    min-height: var(--nav-h);
  }

  .logo {
    width: 54px;
    height: 52px;
  }

  .cert {
    width: 40px;
    height: 40px;
  }

  .header-cert-divider {
    height: 28px;
  }

  .mobile-actions .order-btn {
    min-height: 34px;
    padding: 0 13px;
    font-size: 12px;
  }

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

  .mobile-drawer {
    inset: var(--nav-h) 0 0;
  }
}
