:root {
  /* Broodje Delft / Delfts blauw palette */
  --bg: #ffffff;
  --bg-soft: #f3f5fa;
  --bg-dark: #152447;
  --text: #222222;
  --muted: #5a6170;
  --line: rgba(39, 64, 145, 0.12);
  --blue: #274091;
  --blue-dark: #1c3270;
  --blue-deep: #152447;
  --orange: #ff7c46;
  --orange-dark: #e8652a;
  --lime: #81af4e;
  --white: #ffffff;
  --font: "PT Sans", system-ui, sans-serif;
  --font-display: "PT Serif", Georgia, serif;
  --radius: 8px;
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 8px 30px rgba(39, 64, 145, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.section-head__link {
  font-weight: 700;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn--ghost:hover {
  background: var(--text);
  color: var(--white);
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.link {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  border-bottom: 2px solid var(--blue);
}

.link:hover {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__link {
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.nav__link:hover {
  color: var(--blue);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

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

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* Hero: grote full-bleed foto */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(21, 36, 71, 0.25) 0%,
      rgba(21, 36, 71, 0.15) 40%,
      rgba(21, 36, 71, 0.55) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  opacity: 1;
  transform: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 auto 1rem;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero__lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Intro */
.intro {
  padding: 3.5rem 0;
}

.intro__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.intro__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 1.25rem;
}

.intro__inner p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: var(--muted);
}

.intro__inner p:last-child {
  margin-bottom: 0;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}

.hours-list li:last-child {
  border-bottom: none;
}

.allergen-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.services {
  padding: 0 0 4rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service {
  padding: 2rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.service h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.service p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
}

/* Products */
.signatures {
  padding: 4.5rem 0;
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--bg-soft);
  border-radius: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product__img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
}

.product__img img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.product h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.product p {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.product .btn {
  align-self: flex-start;
}

/* Business */
.business {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.business__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.business h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 1rem;
}

.business > div > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.checklist {
  margin: 0 0 1.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.45rem;
}

.business__card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.business__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.business__card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.business__card li {
  margin-bottom: 0.5rem;
}

/* USP */
.usp {
  padding: 2.5rem 0;
  background: var(--blue);
  color: var(--white);
}

.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.usp__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.usp__item span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Locations */
.locations {
  padding: 5rem 0;
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.location {
  padding: 2rem;
  background: var(--bg-soft);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.location__city {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.location__tag,
.location-card__tag {
  display: inline-block;
  width: fit-content;
  margin: 0.15rem 0 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(39, 64, 145, 0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.location__tag--catering,
.location-card__tag--catering {
  background: rgba(255, 124, 70, 0.16);
  color: var(--orange-dark);
}

.location h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.location p {
  margin: 0;
  color: var(--muted);
}

.location__note {
  font-weight: 700;
  color: var(--text);
}

.location a {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
}

.location .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 6rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer h4 {
  color: var(--white);
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.footer__tag {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
}

.footer a,
.footer__link {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer a:hover,
.footer__link:hover {
  color: var(--white);
}

.footer__hours {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__credit {
  margin-top: 0.4rem !important;
  opacity: 0.75;
}

/* Floating Bestellen knop */
.fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  padding: 1rem 1.6rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(39, 64, 145, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.fab:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* Order modal */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

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

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.order-modal__panel {
  position: relative;
  width: min(440px, 100%);
  background: var(--white);
  border-radius: 16px 16px 12px 12px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalUp 0.2s var(--ease);
}

@keyframes modalUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-soft);
  font-size: 1.4rem;
  cursor: pointer;
}

.order-modal__panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.order-modal__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.order-modal__locations {
  display: grid;
  gap: 0.75rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.location-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.location-card--selected {
  position: relative;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 8px 24px rgba(39, 64, 145, 0.12);
}

.location-card--selected::after {
  content: "Aanbevolen";
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.location-card__tag {
  margin: 0 0 0.35rem;
}

.location-card__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.location-card__meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.location-card__cta {
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--blue);
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.hero__trust strong {
  color: #fff;
}

.cta-band {
  padding: 4rem 0;
  background: var(--bg-soft);
}

.catering {
  padding: 5rem 0 1rem;
}

.catering__intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.catering__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 1rem;
}

.catering__intro p {
  margin: 0;
  color: var(--muted);
}

.catering__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.catering-fact {
  padding: 1.15rem 1rem;
  background: var(--bg-soft);
  border-radius: 14px;
  text-align: center;
}

.catering-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.catering-fact span {
  font-size: 0.88rem;
  color: var(--muted);
}

.catering__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.catering__grid h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.85rem;
}

.catering-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.catering-list li {
  margin-bottom: 0.4rem;
}

.catering-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
}

.catering-tags li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(39, 64, 145, 0.08);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
}

.catering__note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.catering__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 0.75rem);
}

.cta-band__inner {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-band__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
}

.cta-band__inner p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.location-card .btn {
  margin-top: 0.85rem;
}

/* Snappy animations */
.anim-fade {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.4s var(--ease) forwards;
}

.anim-delay-1 { animation-delay: 0.08s; }
.anim-delay-2 { animation-delay: 0.14s; }
.anim-delay-3 { animation-delay: 0.2s; }
.anim-delay-4 { animation-delay: 0.26s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.product-grid .reveal.is-visible:nth-child(1) { transition-delay: 0.02s; }
.product-grid .reveal.is-visible:nth-child(2) { transition-delay: 0.05s; }
.product-grid .reveal.is-visible:nth-child(3) { transition-delay: 0.08s; }
.product-grid .reveal.is-visible:nth-child(4) { transition-delay: 0.11s; }
.product-grid .reveal.is-visible:nth-child(5) { transition-delay: 0.14s; }
.product-grid .reveal.is-visible:nth-child(6) { transition-delay: 0.17s; }

.hero__bg {
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

@media (min-width: 640px) {
  .order-modal {
    align-items: center;
  }

  .order-modal__panel {
    border-radius: 16px;
    padding: 2.25rem;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  body {
    font-size: 16px;
  }

  .wrap {
    width: min(1120px, calc(100% - 2rem));
  }

  .nav__toggle {
    display: flex;
    z-index: 2;
  }

  .nav__logo img {
    height: 40px;
  }

  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(21, 36, 71, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav__menu.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav__menu .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .hero {
    min-height: 78vh;
    min-height: 78dvh;
    padding: calc(var(--nav-h) + 1.25rem) 1rem 5.5rem;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.35rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    gap: 0.55rem 1rem;
    font-size: 0.85rem;
    margin-top: 1.35rem;
  }

  .section-head {
    margin-bottom: 1.75rem;
    align-items: stretch;
  }

  .section-head .btn {
    width: 100%;
  }

  .signatures,
  .locations,
  .business,
  .catering {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .catering {
    padding-bottom: 0.5rem;
  }

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

  .catering__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catering__actions {
    flex-direction: column;
  }

  .catering__actions .btn {
    width: 100%;
  }

  .intro {
    padding: 2.75rem 0;
  }

  .services {
    padding-bottom: 2.75rem;
  }

  .services__grid,
  .business__grid,
  .locations__grid,
  .product-grid,
  .footer__grid,
  .usp__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .usp {
    padding: 1.75rem 0;
  }

  .usp__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.75rem;
  }

  .usp__item strong {
    font-size: 1.55rem;
  }

  .service,
  .location,
  .business__card {
    padding: 1.35rem;
  }

  .location .btn,
  .business .btn {
    width: 100%;
    align-self: stretch;
  }

  .allergen-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2.75rem 0 4.5rem;
  }

  .cta-band__inner {
    padding: 1.75rem 1.15rem;
  }

  .cta-band__inner .btn {
    width: 100%;
  }

  .footer {
    padding: 3rem 0 calc(6.5rem + env(safe-area-inset-bottom));
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .order-modal {
    padding: 0;
    align-items: flex-end;
  }

  .order-modal__panel {
    width: 100%;
    max-height: min(92dvh, 100%);
    overflow-y: auto;
    border-radius: 18px 18px 0 0;
    padding: 1.5rem 1.15rem calc(1.25rem + env(safe-area-inset-bottom));
  }

  .order-modal__panel h2 {
    font-size: 1.45rem;
    padding-right: 2rem;
  }

  .location-card {
    padding: 1rem 1rem 1.1rem;
  }

  .location-card--selected {
    padding-top: 2.35rem;
  }

  .location-card--selected::after {
    top: 0.7rem;
    left: 1rem;
    right: auto;
  }

  .location-card__label {
    font-size: 1.1rem;
  }

  .fab {
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    width: auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 72vh;
    min-height: 72dvh;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }

  .product__img {
    min-height: 150px;
  }

  .usp__item span {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .anim-fade,
  .hero__bg {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}
