:root {
  --red: #a72a25;
  --red-dark: #7d1d1a;
  --yellow: #f6b316;
  --ink: #2d201d;
  --muted: #786d68;
  --cream: #fff8ec;
  --paper: #ffffff;
  --green: #4e8c57;
  --line: #ead9c0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid rgba(167, 42, 37, 0.12);
  backdrop-filter: blur(14px);
}

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  min-height: 0;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #111;
  background: transparent;
  cursor: pointer;
  appearance: none;
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: 800;
}

.language-toggle:hover,
.language-toggle:focus,
.language-toggle:active {
  color: #111;
  background: transparent;
}

.language-toggle__icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand img {
  display: block;
  width: min(220px, 44vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 8px;
}

.nav-links a:hover {
  color: var(--red);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100vh - 78px));
  grid-template-columns: minmax(300px, 0.7fr) minmax(540px, 1.3fr);
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: clamp(54px, 7vw, 92px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 87% 74%, rgba(246, 179, 22, 0.16) 0 24%, transparent 24.2%),
    var(--cream);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("assets/dish2.png");
  background-position: right 50%;
  background-repeat: no-repeat;
  background-size: min(860px, 64vw) auto;
  content: "";
  pointer-events: none;
  opacity: 0.98;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding-top: 28px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 380px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title-line {
  display: inline;
  white-space: nowrap;
}

.hero-divider {
  display: block;
  width: 40px;
  height: 1px;
  margin: 0 0 14px;
  background: #e76c54;
}

.hero-text {
  max-width: 260px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

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

.button.primary span {
  margin-left: 8px;
  font-size: 1.05em;
}

.button.primary:hover,
.button.dark:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--red);
  background: #fff;
  border-color: rgba(167, 42, 37, 0.22);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.quick-picks,
.menu-section,
.outlets {
  padding: 64px clamp(20px, 5vw, 72px);
}

.menu-section,
.outlets {
  scroll-margin-top: 104px;
}

.quick-picks {
  display: grid;
  gap: 8px;
  background: var(--red);
}

.quick-picks__heading {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 0;
  color: #fff;
}

.quick-picks__heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-align: center;
}

.quick-picks__heading .eyebrow::before,
.quick-picks__heading .eyebrow::after {
  width: 18px;
  height: 2px;
  background: #f3b21c;
  content: "";
}

.quick-picks__heading .eyebrow::before {
  box-shadow: 0 -6px 0 #f3b21c, 0 6px 0 #f3b21c;
  width: 14px;
}

.quick-picks__heading .eyebrow::after {
  box-shadow: 0 -6px 0 #f3b21c, 0 6px 0 #f3b21c;
  width: 14px;
}

.quick-picks__subhead {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff !important;
  opacity: 1;
}

.quick-picks__list {
  display: grid;
  gap: 6px;
}

.quick-pick-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 148px;
  align-items: center;
  gap: 12px;
  min-height: 98px;
  padding: 10px 12px 10px 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(167, 42, 37, 0.08);
}

.quick-pick-card__rail {
  display: grid;
  place-items: center;
  justify-self: start;
  align-self: stretch;
  min-width: 0;
}

.quick-pick-card__badge {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #fbf4e6;
}

.quick-pick-card__badge span:first-child {
  color: #f29c00;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.quick-pick-card__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-right: 10px;
  border-right: 1px solid rgba(167, 42, 37, 0.14);
}

.quick-pick-card__copy h2 {
  margin: 0;
  font-size: 1.02rem;
}

.quick-pick-card__copy p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.quick-pick-card img {
  justify-self: end;
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  border-radius: 999px;
  background: #f7efe2;
  padding: 0;
}

.quick-pick-card--reversed {
  grid-template-columns: 148px minmax(0, 1fr) 80px;
}

.quick-pick-card--reversed .quick-pick-card__rail {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.quick-pick-card--reversed .quick-pick-card__copy {
  grid-column: 2;
  grid-row: 1;
  padding-right: 0;
  padding-left: 10px;
  border-right: 0;
  border-left: 1px solid rgba(167, 42, 37, 0.14);
}

.quick-pick-card--reversed img {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.quick-picks p,
.menu-item p,
.outlet-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 1120px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

#menu-title {
  white-space: nowrap;
}

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

.menu-item {
  display: grid;
  grid-template-rows: 240px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-item h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.menu-item strong {
  display: none;
}

.food-visual {
  display: block;
  width: 100%;
  height: 240px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.outlet-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outlet-list article {
  padding: 24px;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  background: #fff;
}

.outlet-list h3 {
  margin-bottom: 8px;
}

.outlet-list span {
  color: var(--red);
  font-weight: 800;
}

.legal-page {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.legal-content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1;
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-weight: 700;
}

.legal-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer img {
  width: 180px;
  max-width: 42vw;
}

.footer-content {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-downloads {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-downloads__label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-downloads__links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
}

.footer-socials {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-socials__label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-socials__links {
  display: flex;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #171717;
  color: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--red);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 6px;
  color: #fff;
  background: #171717;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.store-badge__icon {
  position: relative;
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 7px;
}

.store-badge__icon--apple::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 48% 48% 45% 45%;
  background: #fff;
  transform: rotate(-7deg);
}

.store-badge__icon--apple::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 1px;
  width: 5px;
  height: 4px;
  border-radius: 100% 0 100% 0;
  background: #fff;
  transform: rotate(-35deg);
}

.store-badge__icon--play::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.store-badge--image {
  display: block;
  width: 172px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.store-badge--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  max-width: none;
  transform: none;
}

.store-badge:hover {
  color: #fff;
  background: var(--red);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.footer-legal a {
  color: var(--red);
  font-weight: 800;
}

.footer-legal a:hover {
  color: var(--red-dark);
}

.notification {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 20;
  max-width: min(320px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(45, 32, 29, 0.2);
  font-weight: 800;
}

.notification[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .nav-links {
    width: auto;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand {
    margin-right: auto;
  }

  .language-toggle {
    margin-left: 0;
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 680px;
    gap: 18px;
    padding-inline: clamp(20px, 6vw, 56px);
    align-content: start;
    padding-top: 92px;
  }

  .hero::after {
    background-position: right bottom;
    background-size: min(520px, 76vw) auto;
  }

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

  .menu-section,
  .outlets {
    scroll-margin-top: 174px;
  }

  .menu-grid,
  .outlet-list {
    grid-template-columns: 1fr;
  }

  .quick-pick-card {
    grid-template-columns: 64px minmax(0, 1fr) 84px;
  }

  .quick-pick-card--reversed {
    grid-template-columns: 84px minmax(0, 1fr) 64px;
  }

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

  .site-footer p {
    text-align: left;
  }

  #menu-title {
    white-space: normal;
  }

  .footer-content {
    justify-items: start;
  }

  .footer-downloads {
    justify-items: start;
  }

  .footer-downloads__links {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-items: start;
  }

  .footer-socials__links {
    justify-content: flex-start;
  }

  .footer-legal {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .quick-picks {
    padding-inline: 14px;
    padding-top: 28px;
  }

  .outlets {
    padding-top: 28px;
  }

  .quick-pick-card {
    grid-template-columns: 64px minmax(0, 1fr) 108px;
    padding: 12px;
  }

  .quick-pick-card--reversed {
    grid-template-columns: 108px minmax(0, 1fr) 64px;
  }

  .quick-pick-card__rail {
    grid-column: 1;
  }

  .quick-pick-card__copy {
    grid-column: 2;
    padding-right: 8px;
  }

  .quick-pick-card img {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    width: 100%;
    max-width: 108px;
    height: 64px;
    object-fit: contain;
  }

  .quick-pick-card--reversed .quick-pick-card__rail {
    grid-column: 3;
    justify-self: end;
  }

  .quick-pick-card--reversed .quick-pick-card__copy {
    grid-column: 2;
    padding-right: 0;
    padding-left: 8px;
    border-right: 0;
    border-left: 1px solid rgba(167, 42, 37, 0.14);
  }

  .quick-pick-card--reversed img {
    grid-column: 1;
    justify-self: start;
  }

  .hero {
    padding-top: 18px;
    gap: 10px;
    min-height: 0;
    padding-bottom: 54px;
    align-content: start;
    background:
      radial-gradient(circle at 98% 16%, rgba(246, 179, 22, 0.16) 0 14%, transparent 14.2%),
      var(--cream);
  }

  .hero-copy {
    align-self: start;
    margin-top: 0;
    max-width: 280px;
    padding-top: 18px;
  }

  .hero::after {
    background-position: calc(100% + 22px) 62%;
    background-size: 74% auto;
  }

  h1 {
    max-width: 280px;
    font-size: 2.2rem;
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .hero-title-line {
    display: block;
  }

  .hero-text {
    max-width: 162px;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .button {
    width: auto;
  }

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

  .button {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.86rem;
  }

}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    padding-inline: 16px;
  }

  .brand img {
    width: min(128px, 34vw);
  }

  .nav-links {
    gap: 2px;
    font-size: 0.86rem;
  }

  .nav-links a {
    padding: 8px 7px;
  }

  .language-toggle {
    padding-inline: 0;
  }

}
