:root {
  --cream: #fbe8d8;
  --cream-2: #fff7ef;
  --pink: #fecac1;
  --red: #fc5438;
  --red-dark: #d93d27;
  --ink: #17191c;
  --muted: #565d69;
  --brown: #5f312a;
  --white: #fff;
  --radius: 8px;
  --display: "Bebas Neue", Impact, sans-serif;
  --body: Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

img, svg { display: block; }

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

button, input, select {
  font: inherit;
}

.section-pad {
  padding: 96px clamp(20px, 4vw, 64px);
}

.site-header {
  position: sticky;
  top: 24px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: calc(100% - 40px);
  margin: 24px auto 0;
  padding: 10px 16px;
  background: var(--pink);
  border-radius: 999px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, .54);
  border-radius: 999px;
}

.lang-button {
  width: 42px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
}

.lang-button.is-active {
  color: var(--white);
  background: var(--red);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--red);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
  font-family: var(--display);
  font-size: 1.05rem;
  color: #2a2c31;
  text-transform: uppercase;
}

.site-nav a {
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.button svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary,
.button-phone {
  color: var(--white);
  background: var(--red);
  border: 5px solid var(--white);
  box-shadow: 0 0 0 3px rgba(252, 84, 56, .2);
}

.button-outline {
  color: var(--red);
  background: var(--white);
  border: 2px solid var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  padding-top: 110px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-transform: uppercase;
}

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

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .88;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(6rem, 18vw, 15rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 8.3rem);
}

h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-bottom: 44px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
  color: #33363c;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.button-phone svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  color: var(--red);
  fill: none;
  background: var(--white);
  border-radius: 50%;
}

.rating {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 44px;
  height: 44px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: linear-gradient(135deg, #e7a98d, #2e4052);
}

.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #9ab4cb, #6b3440); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #e1c16e, #2f5c49); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #8e5d57, #1b1d22); }

.rating strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 1.65rem;
}

.stars {
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
}

.float-food {
  position: absolute;
  z-index: 1;
  width: clamp(110px, 16vw, 210px);
  filter: drop-shadow(0 22px 24px rgba(23,25,28,.18));
}

.float-left {
  left: 2vw;
  top: 44%;
}

.float-right {
  right: 2vw;
  top: 25%;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  width: 116vw;
  margin: 70px 0 -170px -8vw;
  transform: rotate(-8deg);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track img {
  width: clamp(230px, 28vw, 430px);
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(23,25,28,.18);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.tab {
  min-height: 74px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid rgba(23,25,28,.12);
  border-radius: var(--radius);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  text-transform: uppercase;
  cursor: pointer;
}

.tab.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.menu-layout {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-feature,
.menu-panel,
.dish-grid article,
.about-media,
.score-card,
.drink-grid article,
.testimonial-track article,
.reservation,
.booking-form label {
  border-radius: var(--radius);
}

.menu-feature {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--brown);
}

.menu-feature img,
.dish-grid img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(23,25,28,.78);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  text-transform: uppercase;
}

.feature-label span {
  font-family: var(--display);
  font-size: 1.6rem;
}

.menu-panel {
  display: none;
  padding: clamp(20px, 3vw, 38px);
  background: var(--white);
}

.menu-panel.is-active {
  display: block;
}

.menu-panel-head,
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.menu-panel-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(23,25,28,.12);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
}

.menu-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(23,25,28,.12);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h3 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.menu-item strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
  white-space: nowrap;
}

.dishes {
  background: var(--cream-2);
}

.dishes h2 {
  max-width: 1050px;
  margin-inline: auto;
  text-align: center;
}

.dish-grid {
  display: grid;
  grid-template-columns: .8fr 1.3fr .8fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.dish-grid article {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.dish-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(23,25,28,.78));
}

.dish-grid span,
.dish-grid h3 {
  position: absolute;
  z-index: 1;
  left: 22px;
}

.dish-grid span {
  top: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--red);
  background: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.dish-grid h3 {
  bottom: 20px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.about {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-media {
  min-height: 580px;
  overflow: hidden;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.about-copy h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.score-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  background: var(--white);
}

.score-card strong {
  font-family: var(--display);
  font-size: 2rem;
}

.score-card span {
  color: var(--red);
}

.hours {
  color: var(--white);
  background: var(--brown);
}

.hours h2 {
  max-width: 1180px;
  margin-inline: auto;
}

.hours-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.28);
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  text-transform: uppercase;
}

.hours-list span,
.hours-list strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 400;
}

.drinks {
  background: var(--cream-2);
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.drink-grid article {
  display: flex;
  min-height: 126px;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(23,25,28,.08);
}

.drink-grid span,
.drink-grid strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-transform: uppercase;
}

.drink-grid strong {
  color: var(--red);
}

.testimonials {
  text-align: center;
}

.testimonials h2 {
  max-width: 900px;
  margin-inline: auto;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-track article {
  padding: 30px;
  text-align: left;
  background: var(--white);
}

.testimonial-track h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.testimonial-track p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reservation {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto 96px;
  color: var(--white);
  background: var(--ink);
}

.reservation h2 {
  margin-bottom: 0;
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
}

.booking-form span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 800;
}

.booking-form .button {
  grid-column: 1 / -1;
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 38px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: var(--brown);
}

.site-footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--display);
  text-transform: uppercase;
}

.socials {
  justify-content: end;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .language-switcher {
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 12px;
    padding: 12px;
    text-align: center;
  }

  .section-heading,
  .menu-layout,
  .about,
  .reservation,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading .button {
    justify-self: start;
  }

  .dish-grid,
  .drink-grid,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .menu-feature,
  .about-media,
  .dish-grid article {
    min-height: 360px;
  }

  .float-food {
    opacity: .45;
  }

  .site-footer,
  .socials {
    justify-items: start;
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 70px 18px;
  }

  .site-header {
    gap: 8px;
    top: 12px;
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .language-switcher {
    padding: 3px;
  }

  .lang-button {
    width: 34px;
    height: 34px;
    font-size: .9rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 86px;
  }

  .float-food {
    display: none;
  }

  .hero-actions,
  .rating,
  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-tabs,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .button-phone {
    width: auto;
  }

  .hero-marquee {
    margin-bottom: -90px;
  }
}
