:root {
  --bg: #f6f1ea;
  --paper: #fffaf4;
  --text: #181512;
  --muted: #665f58;
  --brand: #d61d2c;
  --brand-dark: #98111d;
  --ink: #101010;
  --line: rgba(24, 21, 18, 0.12);
  --shadow: 0 18px 42px rgba(24, 21, 18, 0.16);
  --topbar-h: 72px;
  --reviews-scroll-duration: 34s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.kicker,
.btn,
.mobile-actions a,
.mobile-actions button,
.gallery-card span,
.menu-eyebrow {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0;
}

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

h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(3rem, 16vw, 6.2rem);
  line-height: 0.92;
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 9vw, 3.6rem);
  line-height: 0.96;
}

h3 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: #fff;
  flex: 0 0 auto;
}

.brand span {
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.1;
}

.uber-eats-button {
  margin-left: auto;
  padding: 0.68rem 0.95rem;
  color: #fff;
  background: #101010;
  border: 2px solid #06c167;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(6, 193, 103, 0.2);
}

.uber-eats-button strong {
  color: #06c167;
  font-weight: 900;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 12px;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(214, 29, 44, 0.32);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 99px;
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .uber-eats-button {
    padding-inline: 0.82rem;
  }
}

.site-menu[hidden] {
  display: none;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(16, 16, 16, 0.62);
}

.site-menu-panel {
  width: min(390px, 88vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: max(1rem, env(safe-area-inset-top)) 1rem 1rem;
  background: #fffaf4;
  box-shadow: -18px 0 46px rgba(0, 0, 0, 0.28);
  overflow: auto;
}

.menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.menu-eyebrow {
  margin: 0.5rem 0;
  color: var(--brand);
  font-size: 1.1rem;
}

.site-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.45rem, 7vw, 2.15rem);
  font-family: "Anton", Impact, sans-serif;
}

.wave-section {
  position: relative;
  isolation: isolate;
  padding: 4rem 1rem;
  overflow: hidden;
}

.wave-red {
  --wave-bg: var(--brand);
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.wave-light {
  background: #fffaf4;
}

.wave-dark {
  color: #fff;
  background: #101010;
}

.wave-paper {
  background: #fdf7ef;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.home-hero {
  min-height: calc(100svh - var(--topbar-h));
  display: grid;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
}

.home-hero-copy,
.home-hero .hero-product {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.5rem;
  color: inherit;
  opacity: 0.88;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.hero-subtitle,
.page-hero p,
.product-hero p,
.feature-section p {
  max-width: 64ch;
  font-size: 1rem;
  font-weight: 600;
}

.cta-row,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
}

.btn-light {
  color: var(--brand);
  background: #fff;
}

.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.82);
}

.btn-uber-eats {
  color: #fff;
  background: #06c167;
  border-color: #06c167;
  font-weight: 500;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-outline {
  color: var(--brand);
  border-color: var(--brand);
  background: transparent;
}

.hero-product {
  margin: 0;
}

.hero-product img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-scroll {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  overflow: visible;
  padding-bottom: 0.35rem;
  animation: category-marquee 62s linear infinite;
}

.category-strip {
  overflow: hidden;
}

.category-strip .section-inner {
  overflow: hidden;
}

.category-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.category-viewport.is-dragging {
  cursor: grabbing;
}

.category-scroll:hover {
  animation-play-state: paused;
}

.category-viewport.is-dragging .category-scroll {
  animation-play-state: paused;
}

.category-viewport::-webkit-scrollbar {
  display: none;
}

.category-scroll a {
  flex: 0 0 min(190px, 42vw);
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 0.55rem;
  color: #fff;
  background: #151515;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
}

.category-scroll img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 6px;
}

.feature-grid {
  display: grid;
  gap: 1.6rem;
}

.stacked-images {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 0.7rem;
}

.stacked-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stacked-images img + img {
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  gap: 0.8rem;
}

.info-grid article,
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.35rem;
  box-shadow: 0 12px 28px rgba(24, 21, 18, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 21, 18, 0.14);
  outline: none;
}

.info-grid a {
  color: var(--brand);
  font-weight: 800;
}

.info-map {
  width: 100%;
  height: 150px;
  display: block;
  border: 0;
  border-radius: 6px;
  margin-bottom: 0.55rem;
  background: #f2ece4;
}

.review-carousel {
  overflow: hidden;
  margin-top: 1rem;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  animation: reviews-ltr var(--reviews-scroll-duration) linear infinite;
}

.review {
  width: min(300px, 78vw);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 1rem;
  color: var(--text);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review p {
  font-size: 0.9rem;
  font-weight: 600;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--brand);
  font-weight: 800;
}

.page-main {
  width: min(1120px, 100% - 1.2rem);
  margin: 1rem auto 6rem;
}

.page-hero,
.product-hero {
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-hero {
  display: grid;
  gap: 0.85rem;
  align-items: center;
  padding-block: 1.45rem;
}

.product-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 12vw, 4.2rem);
}

.menu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-card {
  grid-column: span 12;
  position: relative;
  min-height: 240px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #171717;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card span {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 1.4rem);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  font-size: 1.05rem;
}

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

.product-card h2 {
  margin: 0.42rem 0 0.18rem;
  color: var(--brand);
  font-size: clamp(0.95rem, 5vw, 1.25rem);
  line-height: 1;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  background: #f2ece4;
}

.product-card p {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
}

.product-card .menu-price {
  margin-top: 0.12rem;
  color: var(--brand);
}

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

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.68);
  backdrop-filter: blur(3px);
}

.product-modal-card {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 1.2rem));
  max-height: calc(100svh - 2rem);
  overflow: auto;
  padding: 0.75rem;
  background: #fffaf4;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.product-modal-close {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 16, 16, 0.82);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.product-modal-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.product-modal-card h2 {
  margin: 0.8rem 0 0.35rem;
  color: var(--brand);
  font-size: clamp(1.8rem, 10vw, 2.7rem);
}

.product-modal-price {
  color: var(--muted);
  font-weight: 800;
}

.product-modal-detail {
  margin-top: 0.65rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: pre-line;
}

.cta-band {
  margin: 1rem 0 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  background: rgba(255, 250, 244, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.mobile-actions a,
.mobile-actions button {
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.82rem 0.15rem max(0.85rem, env(safe-area-inset-bottom));
  color: var(--brand);
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  cursor: pointer;
}

.site-footer {
  padding: 1.2rem 1rem 5.6rem;
  text-align: center;
  color: var(--muted);
}

.site-footer a {
  color: var(--brand);
  font-weight: 800;
}

@keyframes reviews-ltr {
  from {
    transform: translateX(calc(-50% - 0.425rem));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes category-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

@media (min-width: 700px) {
  .topbar {
    padding-inline: 1.6rem;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    padding-inline: max(1.5rem, calc((100vw - 1120px) / 2));
  }

  .home-hero-copy,
  .home-hero .hero-product {
    width: 100%;
  }

  .category-scroll {
    gap: 0.9rem;
  }

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

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

  .gallery-card.span-6 {
    grid-column: span 6;
  }

  .gallery-card.span-12 {
    grid-column: span 12;
  }

  .mobile-actions {
    max-width: 760px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    border-inline: 1px solid var(--line);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}

@media (min-width: 980px) {
  .wave-section {
    padding-block: 5.5rem;
  }

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