:root {
  --ink: #211a16;
  --muted: #756a61;
  --cream: #fbf7ee;
  --paper: #fffdf8;
  --line: #e8ded0;
  --accent: #b88b5d;
  --accent-dark: #8a613d;
  --rose: #c06f63;
  --charcoal: #151312;
  --shadow: 0 20px 70px rgba(33, 26, 22, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.reveal-on-scroll {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(34px);
  transition:
    opacity 0.78s ease,
    filter 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 0.78, 0.28, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-on-scroll.reveal-left {
  transform: translateX(-38px);
}

.reveal-on-scroll.reveal-right {
  transform: translateX(38px);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: rgba(21, 19, 18, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.brand__logo {
  display: block;
  width: 198px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: #ff6b00;
  background: rgba(255, 107, 0, 0.18);
  transform: rotate(4deg) scale(1.04);
}

.nav-toggle:hover span:first-child,
.nav-toggle:focus-visible span:first-child {
  transform: translateY(-1px);
}

.nav-toggle:hover span:last-child,
.nav-toggle:focus-visible span:last-child {
  transform: translateY(1px);
}

.site-header.is-open .nav-toggle {
  border-color: #ff6b00;
  background: #ff6b00;
  transform: rotate(0deg) scale(1);
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  contain: paint;
  touch-action: pan-y;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 11, 10, 0.84), rgba(13, 11, 10, 0.46), rgba(13, 11, 10, 0.64));
  content: "";
}

.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.15s ease-in-out, transform 6s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
  pointer-events: none;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero__slide img {
  opacity: 0.96;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 122px 6vw 86px;
}

.hero__content > * {
  will-change: opacity, transform, filter;
}

.hero__content.is-animating .eyebrow {
  animation: heroReveal 0.78s ease both;
}

.hero__content.is-animating h1 {
  animation: heroReveal 0.9s 0.14s ease both;
}

.hero__content.is-animating p:not(.eyebrow) {
  animation: heroReveal 0.82s 0.28s ease both;
}

.hero__content.is-animating .hero__actions {
  animation: heroReveal 0.74s 0.43s ease both;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(34px);
  }

  65% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.parallax h2,
.reservation h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  line-height: 0.95;
}

.hero h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(3.42rem, 7.7vw, 6.45rem);
  line-height: 0.92;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.72);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.66);
}

.hero .eyebrow {
  color: #ffc07a;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

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

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button--ghost:hover {
  border-color: var(--accent);
  background: rgba(184, 139, 93, 0.18);
}

.hero__controls {
  position: absolute;
  right: 6vw;
  bottom: 42px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.hero__controls button {
  width: 34px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero__controls button.is-active {
  background: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .hero__slide,
  .hero__content.is-animating .eyebrow,
  .hero__content.is-animating h1,
  .hero__content.is-animating p:not(.eyebrow),
  .hero__content.is-animating .hero__actions {
    animation: none;
    transition: none;
  }
}

.specialties {
  overflow: hidden;
  padding: 86px 6vw 72px;
  background: #fff;
}

.specialties__heading {
  margin: 0 auto 54px;
  text-align: center;
}

.specialties__heading p {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  color: #ff6b00;
  font-size: 1rem;
  font-weight: 700;
}

.specialties__heading p::after {
  position: absolute;
  right: 5px;
  bottom: -8px;
  left: 5px;
  height: 1px;
  background: #211a16;
  content: "";
}

.specialties__heading h2 {
  margin: 0;
  color: #1d1d1f;
  font-family: var(--sans);
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
}

.specialties__viewport {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  contain: paint;
  touch-action: pan-y;
}

.specialties__track {
  display: flex;
  gap: 30px;
  transition: transform 0.35s ease;
  user-select: none;
  will-change: transform;
}

.specialty-card {
  flex: 0 0 calc((100% - 90px) / 4);
  min-height: 360px;
  border: 1px solid #dedede;
  background: #fff;
  padding: 56px 30px 34px;
}

.specialty-card > img {
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.08);
}

.specialty-card h3 {
  margin: 0 0 20px;
  color: #1f2024;
  font-size: 1.45rem;
  line-height: 1.15;
}

.specialty-card p {
  margin: 0;
  color: #7c7c7c;
  font-size: 1rem;
  line-height: 1.55;
}

.specialties__footer {
  display: grid;
  max-width: 1180px;
  margin: 42px auto 0;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
}

.specialties__dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  grid-column: 2;
}

.specialties__dots button {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d7d7d7;
  cursor: pointer;
}

.specialties__dots button.is-active {
  width: 12px;
  height: 12px;
  background: #ff6b00;
}

.specialties__arrows {
  display: flex;
  justify-self: end;
  grid-column: 3;
}

.specialties__arrows button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  background: #f1f1f1;
  color: #565158;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease;
}

.specialties__arrows button:last-child {
  background: #ddd7d7;
}

.specialties__arrows button:hover {
  background: #ff6b00;
  color: #fff;
}

.intro,
.menu-section,
.gallery-section,
.reservation {
  padding: 96px 6vw;
}

.intro__grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
}

.intro h2,
.section-heading h2,
.reservation h2 {
  font-size: clamp(2.25rem, 3.9vw, 3.65rem);
}

.intro p,
.reservation p,
.menu-item p {
  color: var(--muted);
}

.intro p {
  max-width: 590px;
  margin: 24px 0;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-food {
  overflow: hidden;
  padding: 88px 6vw 78px;
  background: #fff;
}

.featured-food__heading {
  margin: 0 auto 52px;
  text-align: center;
}

.featured-food__heading p {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  color: #ff6b00;
  font-size: 1rem;
  font-weight: 800;
}

.featured-food__heading p::after {
  position: absolute;
  right: 5px;
  bottom: -8px;
  left: 5px;
  height: 1px;
  background: #211a16;
  content: "";
}

.featured-food__heading h2 {
  margin: 0;
  color: #1f2024;
  font-family: var(--sans);
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
}

.featured-food__viewport {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  contain: paint;
  touch-action: pan-y;
}

.featured-food__track {
  display: flex;
  gap: 30px;
  transition: transform 0.35s ease;
  user-select: none;
  will-change: transform;
}

.featured-card {
  flex: 0 0 calc((100% - 90px) / 4);
  background: #f7f3ef;
  box-shadow: 0 18px 45px rgba(33, 26, 22, 0.08);
}

.featured-card img {
  aspect-ratio: 1 / 1.14;
  height: auto;
  object-fit: cover;
}

.featured-card__info {
  display: grid;
  min-height: 184px;
  background: #fbf7f3;
}

.featured-card__info > div {
  display: grid;
  min-width: 0;
  min-height: 184px;
  align-content: start;
  background: #fbf7f3;
  padding: 20px 22px;
}

.featured-card__info a {
  display: none;
}

.featured-card h3 {
  margin: 0 0 10px;
  color: #24201e;
  font-size: 1rem;
  line-height: 1.2;
  min-height: 38px;
}

.featured-card p {
  margin: 0 0 12px;
  color: #746d68;
  font-size: 0.84rem;
  line-height: 1.45;
  min-height: 62px;
}

.featured-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-card__rating span {
  color: #ff6b00;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.featured-card__rating b {
  color: #7b7774;
  font-size: 0.92rem;
}

.featured-food__arrows {
  display: flex;
  max-width: 1180px;
  margin: 34px auto 0;
  justify-content: flex-end;
}

.featured-food__arrows button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  background: #f1f1f1;
  color: #565158;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.featured-food__arrows button:last-child {
  background: #ddd7d7;
}

.featured-food__arrows button:hover {
  background: #ff6b00;
  color: #fff;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
  color: #fff;
}

.feature-band div {
  min-height: 170px;
  padding: 44px 6vw;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.feature-band span {
  color: rgba(255, 255, 255, 0.72);
}

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

.menu-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(251, 247, 238, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(184, 139, 93, 0.055) 34px 35px);
}

.menu-section::before {
  position: absolute;
  inset: 42px 6vw auto;
  height: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(184, 139, 93, 0.34), transparent);
  content: "";
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  border: 1px solid rgba(184, 139, 93, 0.26);
  border-radius: 999px;
  margin: 0 auto 24px;
  background: rgba(255, 253, 248, 0.78);
  padding: 6px;
  box-shadow: 0 14px 44px rgba(33, 26, 22, 0.07);
}

.menu-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.menu-tabs button.is-active,
.menu-tabs button:hover {
  background: #ff6b00;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.18);
}

.menu-section .section-kicker {
  margin-bottom: 10px;
  color: #ff6b00;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.menu-section .section-heading h2 {
  color: #1f2024;
  font-family: var(--sans);
  font-weight: 800;
}

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  gap: 10px 22px;
  border: 1px solid rgba(184, 139, 93, 0.2);
  border-radius: 999px;
  margin: 0 auto 42px;
  background: rgba(255, 255, 255, 0.56);
  padding: 9px 18px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-temp {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  vertical-align: -0.16em;
  background-color: currentColor;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.menu-temp--cold {
  color: #8fd7ff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M21 11h-4.17l3.24-3.24-1.42-1.42L13 12l5.65 5.66 1.42-1.42L16.83 13H21v-2Zm-8-8h-2v4.17L7.76 3.93 6.34 5.35 12 11l5.66-5.65-1.42-1.42L13 7.17V3Zm-2 18h2v-4.17l3.24 3.24 1.42-1.42L12 13l-5.66 5.65 1.42 1.42L11 16.83V21ZM3 13h4.17l-3.24 3.24 1.42 1.42L11 12 5.35 6.34 3.93 7.76 7.17 11H3v2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M21 11h-4.17l3.24-3.24-1.42-1.42L13 12l5.65 5.66 1.42-1.42L16.83 13H21v-2Zm-8-8h-2v4.17L7.76 3.93 6.34 5.35 12 11l5.66-5.65-1.42-1.42L13 7.17V3Zm-2 18h2v-4.17l3.24 3.24 1.42-1.42L12 13l-5.66 5.65 1.42 1.42L11 16.83V21ZM3 13h4.17l-3.24 3.24 1.42 1.42L11 12 5.35 6.34 3.93 7.76 7.17 11H3v2Z'/%3E%3C/svg%3E");
}

.menu-temp--hot {
  color: #ff6b00;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13.5 2.5c.8 3.4-.4 5.4-1.8 7.1-.8 1-1.5 1.9-1.5 3.1 0 1.5 1.2 2.8 2.8 2.8s2.8-1.2 2.8-2.8c0-.9-.4-1.7-1-2.5 3.2 1.3 5.2 4 5.2 7.1 0 4-3.3 7.2-7.5 7.2S5 21.3 5 17.3c0-2.9 1.8-5.2 3.6-7.4C10.5 7.6 12.4 5.4 13.5 2.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13.5 2.5c.8 3.4-.4 5.4-1.8 7.1-.8 1-1.5 1.9-1.5 3.1 0 1.5 1.2 2.8 2.8 2.8s2.8-1.2 2.8-2.8c0-.9-.4-1.7-1-2.5 3.2 1.3 5.2 4 5.2 7.1 0 4-3.3 7.2-7.5 7.2S5 21.3 5 17.3c0-2.9 1.8-5.2 3.6-7.4C10.5 7.6 12.4 5.4 13.5 2.5Z'/%3E%3C/svg%3E");
}

.menu-board {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-board__column {
  display: grid;
  align-content: start;
  gap: 22px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 139, 93, 0.22);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.86);
  padding: 24px 24px 22px;
  box-shadow: 0 18px 48px rgba(33, 26, 22, 0.07);
  text-align: left;
}

.menu-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, rgba(184, 139, 93, 0.2));
  content: "";
}

.menu-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.menu-card h3 {
  margin: 0;
  color: #ff6b00;
  font-family: var(--sans);
  font-size: 1.82rem;
  font-weight: 800;
  line-height: 1;
}

.menu-card__price {
  display: inline-flex;
  min-width: 76px;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--accent-dark);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.menu-card__note {
  border-bottom: 1px solid rgba(184, 139, 93, 0.18);
  margin: -8px 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding-bottom: 13px;
  text-transform: uppercase;
}

.menu-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 62px;
  padding: 10px 0;
}

.menu-card li + li {
  border-top: 1px dashed rgba(184, 139, 93, 0.18);
}

.menu-card strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #151312;
  font-size: 0.94rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-card small {
  display: block;
  margin-top: 4px;
  color: #8a8581;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.menu-card li > span {
  color: #c98746;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.menu-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item {
  display: grid;
  min-height: 138px;
  align-items: center;
  gap: 18px;
  grid-template-columns: 112px 1fr auto;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-item.is-hidden {
  display: none;
}

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

.menu-item img {
  aspect-ratio: 1;
}

.menu-item h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.menu-item p {
  margin: 0;
  font-size: 0.95rem;
}

.menu-item span {
  color: var(--rose);
  font-family: var(--sans);
  font-size: 1.65rem;
  font-weight: 800;
}

.parallax {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 80px 6vw;
  background:
    linear-gradient(rgba(15, 13, 12, 0.66), rgba(15, 13, 12, 0.66)),
    url("assets/thecream-food-background.jpg") center / cover fixed;
  color: #fff;
  text-align: center;
}

.parallax h2 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.gallery-section {
  background: #fff;
  text-align: center;
}

.gallery-heading {
  margin: 0 auto 38px;
}

.gallery-heading p {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  color: #ff6b00;
  font-size: 1rem;
  font-weight: 800;
}

.gallery-heading p::after {
  position: absolute;
  right: 4px;
  bottom: -7px;
  left: 4px;
  height: 1px;
  background: #2f2c2b;
  content: "";
}

.gallery-heading h2 {
  margin: 0;
  color: #1f2024;
  font-family: var(--sans);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 42px;
  margin: 0 auto 44px;
}

.gallery-filters button {
  position: relative;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #6f6970;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gallery-filters button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ff6b00;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.gallery-filters button.is-active,
.gallery-filters button:hover {
  color: #ff6b00;
}

.gallery-filters button.is-active::after,
.gallery-filters button:hover::after {
  transform: scaleX(1);
}

.gallery-grid {
  display: grid;
  width: min(100%, 980px);
  margin: 0 auto;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  aspect-ratio: 1.16 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #171412;
  cursor: zoom-in;
}

.gallery-item--large {
  grid-row: auto;
  min-height: 0;
}

.gallery-item--wide {
  grid-column: auto;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: filter 0.35s ease, transform 0.45s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62));
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  text-align: left;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.08);
}

.gallery-item:focus-visible {
  outline: 3px solid #ff6b00;
  outline-offset: 4px;
}

.gallery-item:hover::after,
.gallery-item:hover figcaption {
  opacity: 1;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-more {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  margin-top: 58px;
  background: #ff6b00;
  color: #fff;
  cursor: pointer;
  padding: 0 34px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-more:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.gallery-more.is-hidden {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.92);
  opacity: 0;
  padding: 30px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__figure {
  display: grid;
  width: min(100%, 1120px);
  max-height: calc(100vh - 72px);
  margin: 0;
  gap: 14px;
  justify-items: center;
}

.gallery-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox__figure figcaption {
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
}

.gallery-lightbox__close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.gallery-lightbox__close:hover {
  border-color: #ff6b00;
  background: #ff6b00;
}

body.is-preview-open {
  overflow: hidden;
}

.reviews-section {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #151817;
  color: #fff;
  touch-action: pan-y;
}

.reviews-section__media {
  min-height: 520px;
  overflow: hidden;
}

.reviews-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.reviews-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 8vw 72px 6vw;
}

.reviews-section h2 {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: clamp(2.2rem, 3.6vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
}

.review-slide {
  max-width: 650px;
}

.review-slide.is-changing {
  animation: reviewReveal 0.5s ease both;
}

@keyframes reviewReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-slide p {
  min-height: 112px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.8;
}

.review-slide h3 {
  margin: 28px 0 0;
  color: #ff6b00;
  font-size: 1.35rem;
  line-height: 1;
}

.review-arrows {
  display: flex;
  margin-top: 34px;
}

.review-arrows button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  background: #252b29;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.review-arrows button:last-child {
  background: #202423;
}

.review-arrows button:hover {
  background: #ff6b00;
}

.reservation {
  display: grid;
  align-items: start;
  gap: 54px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  background: var(--paper);
}

.hours {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--accent-dark);
  font-weight: 700;
}

.reservation__form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 28px;
  box-shadow: var(--shadow);
}

.reservation__form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation__form input,
.reservation__form select,
.reservation__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.reservation__form input:focus,
.reservation__form select:focus,
.reservation__form textarea:focus {
  border-color: var(--accent);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #050505;
  color: #fff;
  padding: 54px 6vw 0;
}

.footer__inner {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
  gap: 70px;
  grid-template-columns: 1fr 1.35fr 1.2fr;
}

.footer__brand img {
  width: 118px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.92;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer h3::after {
  display: none;
}

.site-footer p,
.site-footer a {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer a {
  display: block;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #ff6b00;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.footer__socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1;
  margin: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer__socials a:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-2px);
}

.footer__socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__socials a[aria-label="Facebook"] svg,
.footer__socials a[aria-label="Google"] svg {
  fill: currentColor;
  stroke: none;
}

.footer__hours {
  margin-top: 14px;
}

.footer__form {
  display: grid;
  width: min(100%, 280px);
  grid-template-columns: minmax(0, 1fr) 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.footer__form label {
  display: block;
}

.footer__form span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer__form input {
  width: 100%;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer__form button {
  display: grid;
  border: 0;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ff6b00;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.footer__form button:hover {
  background: #ff6b00;
  color: #fff;
}

.footer__bottom {
  display: flex;
  max-width: 1160px;
  margin: 36px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 0;
}

.footer__bottom p,
.footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__links a:not(.footer__top) {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 38px;
  white-space: nowrap;
}

.footer__links a:not(.footer__top):hover {
  background: transparent;
  color: #ff6b00;
}

.site-footer .footer__top {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 107, 0, 0.7);
  border-radius: 50%;
  color: #ff6b00;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

.site-footer .footer__top img {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0;
  object-fit: contain;
  opacity: 1;
}

.footer__top:hover {
  background: #ff6b00;
  color: #fff;
}

.privacy-main {
  background: var(--cream);
  padding: 150px 6vw 80px;
}

.privacy-hero {
  max-width: 920px;
  margin: 0 auto 42px;
}

.privacy-hero p {
  margin: 0 0 8px;
  color: #ff6b00;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(2.35rem, 7vw, 4.6rem);
  line-height: 0.98;
}

.privacy-content {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
  padding-top: 34px;
}

.privacy-content section {
  margin-bottom: 32px;
}

.privacy-content h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1.3;
}

.privacy-content p,
.privacy-content li {
  color: rgba(21, 19, 18, 0.72);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.75;
}

.privacy-content p {
  margin: 0 0 12px;
}

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

.privacy-content a {
  color: #ff6b00;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(21, 19, 18, 0.98);
    padding: 12px 6vw 22px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav.is-static {
    position: static;
    display: flex;
    width: 100%;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 20px;
    overflow: visible;
    background: transparent;
    padding: 0;
  }

  .site-nav a {
    opacity: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.22s ease;
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-static a {
    opacity: 1;
    padding: 6px 0;
    border-bottom: 0;
    transform: none;
  }

  .site-nav.is-open a:nth-child(2) {
    transition-delay: 0.04s;
  }

  .site-nav.is-open a:nth-child(3) {
    transition-delay: 0.08s;
  }

  .site-nav.is-open a:nth-child(4) {
    transition-delay: 0.12s;
  }

  .site-nav.is-open a:nth-child(5) {
    transition-delay: 0.16s;
  }

  .intro__grid,
  .reservation {
    grid-template-columns: 1fr;
  }

  .specialty-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .featured-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .feature-band,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .reviews-section {
    grid-template-columns: 1fr;
  }

  .reviews-section__media {
    min-height: 360px;
  }

  .reviews-section__content {
    padding: 58px 6vw;
  }

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

  .feature-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .gallery-item,
  .gallery-item--large,
  .gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .brand__logo {
    width: 154px;
    max-height: 44px;
  }

  .hero__content {
    min-height: 100svh;
    padding: 104px 26px 82px;
  }

  .hero__slide {
    transform: scale(1.015);
    transition: opacity 1.25s ease-in-out, transform 5.2s ease;
  }

  .hero__slide.is-active {
    transform: scale(1);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(13, 11, 10, 0.9), rgba(13, 11, 10, 0.62), rgba(13, 11, 10, 0.74)),
      linear-gradient(180deg, rgba(13, 11, 10, 0.2), rgba(13, 11, 10, 0.54));
  }

  .hero .eyebrow {
    color: #ffc07a;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  }

  .hero h1 {
    max-width: 360px;
    color: #fff;
    font-size: clamp(2.75rem, 13.5vw, 3.22rem);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.82);
  }

  .hero p:not(.eyebrow) {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.95rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.78);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__controls {
    right: auto;
    left: 22px;
  }

  .intro,
  .specialties,
  .featured-food,
  .menu-section,
  .gallery-section,
  .reservation {
    padding: 64px 22px;
  }

  .specialties__heading {
    margin-bottom: 34px;
  }

  .specialties__heading h2 {
    font-size: 2.25rem;
  }

  .specialties__track {
    gap: 0;
  }

  .featured-food__heading {
    margin-bottom: 34px;
  }

  .featured-food__heading h2 {
    font-size: 2.25rem;
  }

  .featured-food__track {
    gap: 0;
  }

  .featured-card {
    flex-basis: 100%;
  }

  .featured-food__arrows {
    margin-top: 24px;
  }

  .featured-food__arrows button {
    width: 48px;
    height: 48px;
  }

  .specialty-card {
    flex-basis: 100%;
    min-height: 330px;
    padding: 42px 28px 30px;
  }

  .specialties__footer {
    display: flex;
    margin-top: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .specialties__dots {
    justify-content: flex-start;
  }

  .specialties__arrows button {
    width: 48px;
    height: 48px;
  }

  .intro h2,
  .section-heading h2,
  .reservation h2 {
    font-size: 2.2rem;
  }

  .intro__grid {
    gap: 34px;
  }

  .intro p {
    margin: 18px 0;
    font-size: 0.95rem;
  }

  .intro__media {
    aspect-ratio: 4 / 3.15;
  }

  .menu-item {
    grid-template-columns: 82px 1fr;
  }

  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 5px;
  }

  .menu-tabs button {
    flex: 1 1 auto;
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .menu-board {
    grid-template-columns: 1fr;
  }

  .menu-tabs,
  .menu-legend {
    width: 100%;
    border-radius: 12px;
  }

  .menu-card h3 {
    font-size: 1.45rem;
  }

  .menu-card {
    padding: 22px 18px 18px;
  }

  .menu-card li {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 54px;
  }

  .menu-card strong {
    font-size: 0.87rem;
  }

  .menu-legend {
    justify-content: flex-start;
    border-radius: 12px;
    padding: 10px 14px;
  }

  .menu-item span {
    grid-column: 2;
  }

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

  .gallery-filters {
    justify-content: flex-start;
    gap: 8px 16px;
    margin-bottom: 30px;
  }

  .gallery-filters button {
    min-height: 34px;
    font-size: 0.72rem;
  }

  .gallery-item,
  .gallery-item--large,
  .gallery-item--wide {
    min-height: 0;
  }

  .gallery-item figcaption {
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-item::after {
    opacity: 1;
  }

  .gallery-more {
    width: 100%;
    margin-top: 34px;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox__close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .reviews-section__media {
    min-height: 280px;
  }

  .reviews-section__content {
    padding: 52px 22px;
  }

  .review-slide p {
    min-height: 170px;
    font-size: 1rem;
  }

  .reservation__form {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__brand img {
    width: 104px;
  }

  .site-footer {
    padding: 46px 22px 0;
  }

  .site-footer h3 {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .footer__form {
    width: 100%;
  }

  .footer__bottom {
    margin-top: 36px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }

  .footer__links {
    width: auto;
    align-self: flex-end;
    justify-content: flex-end;
    gap: 18px;
  }

  .footer__top {
    align-self: flex-end;
  }

  .privacy-main {
    padding: 126px 22px 62px;
  }

  .form-wide {
    grid-column: auto;
  }

  .parallax {
    background-attachment: scroll;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding: 0 14px;
  }

  .brand__logo {
    width: 134px;
  }

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

  .hero__content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 2.75rem;
  }

  .intro,
  .specialties,
  .featured-food,
  .menu-section,
  .gallery-section,
  .reservation {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .menu-tabs button {
    width: 100%;
  }

  .footer__socials a {
    width: 40px;
    height: 40px;
  }
}
