:root {
  --bg: #f7f1e8;
  --surface: #fffaf3;
  --text: #000000;
  --muted: #6d6258;
  --dark: #15110f;
  --accent: #8c5a2b;
  --white: #ffffff; 
  --container: 1200px;
  --header-height: 82px;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1300;
  background: rgba(21, 17, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover {
  color: #f3d2a8;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(243, 210, 168, 0.35);
  border-radius: 999px;
}

.header-actions {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.lang-current {
  width: auto;
  min-width: 64px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-current:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lang-current[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.arrow {
  font-size: 10px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.lang-current[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: rgba(21, 17, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}

.lang-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu li {
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.lang-menu li:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-height);
  background:
    linear-gradient(rgba(13, 10, 9, 0.45), rgba(13, 10, 9, 0.58)),
    url("/shares/images/res/background.png") center center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(183, 138, 85, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  padding: 56px 0;
}

.eyebrow,
.section-kicker,
.intro-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 18px;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f1d7b4;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

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

.btn-primary:hover {
  background: #74461d;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Intro strip */
.intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

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

.intro-strip-grid > div {
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(140, 90, 43, 0.10);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.intro-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
}

.intro-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Sections */
.section {
  padding: 24px 0;
}

.section-heading {
  max-width: 70vw;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
}

.section h2 {
  margin-top: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.12;
}

.section-heading p,
.section-copy p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 600;
}

/* About */
.two-col {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-card {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card.tall {
  width: 78%;
  height: 620px;
}

.image-card.small {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 46%;
  height: 280px;
  border: 8px solid var(--surface);
}

/* Specialties */
.specialties {
  background: #f4ebdf;
}

.food-slider-wrap,
.gallery-carousel-wrap {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.food-slider,
.gallery-grid {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.food-arrow,
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 30;
  padding: 0;
  border: 1px solid rgba(140, 90, 43, 0.18);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent);
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.food-arrow {
  width: 46px;
  height: 46px;
  font-size: 28px;
}

.food-arrow-left,
.gallery-arrow-left {
  left: 12px;
}

.food-arrow-right,
.gallery-arrow-right {
  right: 12px;
}

.food-arrow:hover,
.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: var(--accent);
  color: var(--white);
}

.food-card,
.gallery-item {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72) translateZ(-360px);
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.7s ease,
    filter 0.7s ease,
    box-shadow 0.7s ease;
  will-change: transform, opacity;
}

.food-card {
  width: min(340px, 74vw);
  height: 500px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(140, 90, 43, 0.10);
  display: flex;
  flex-direction: column;
}

.food-card.center,
.food-card.left-1,
.food-card.left-2,
.food-card.right-1,
.food-card.right-2,
.gallery-item.center,
.gallery-item.left-1,
.gallery-item.left-2,
.gallery-item.right-1,
.gallery-item.right-2 {
  pointer-events: auto;
}

.food-card.center,
.gallery-item.center {
  z-index: 20;
  opacity: 1;
  box-shadow: 0 24px 60px rgba(70, 43, 20, 0.22);
}

.food-card.center {
  transform: translate(-50%, -50%) scale(1.06) translateZ(80px);
}

.food-card.left-1,
.food-card.right-1,
.gallery-item.left-1,
.gallery-item.right-1 {
  z-index: 12;
  opacity: 0.9;
}

.food-card.left-1 {
  transform: translate(calc(-50% - 245px), -50%) scale(0.88) translateZ(-120px);
}

.food-card.right-1 {
  transform: translate(calc(-50% + 245px), -50%) scale(0.88) translateZ(-120px);
}

.food-card.left-2 {
  z-index: 6;
  opacity: 0.58;
  transform: translate(calc(-50% - 455px), -50%) scale(0.76) translateZ(-280px);
}

.food-card.right-2 {
  z-index: 6;
  opacity: 0.58;
  transform: translate(calc(-50% + 455px), -50%) scale(0.76) translateZ(-280px);
}

.food-card.left-1 .food-image,
.food-card.left-2 .food-image,
.food-card.right-1 .food-image,
.food-card.right-2 .food-image {
  filter: grayscale(85%) saturate(0.85);
}

.food-card.left-1 .food-body h3,
.food-card.left-2 .food-body h3,
.food-card.right-1 .food-body h3,
.food-card.right-2 .food-body h3 {
  color: rgb(from var(--text) r g b / 25%);
}

.food-card.left-1 .food-body p,
.food-card.left-2 .food-body p,
.food-card.right-1 .food-body p,
.food-card.right-2 .food-body p {
  color: rgb(from var(--muted) r g b / 25%);
}

.food-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  flex: 0 0 260px;
  transition: filter 0.7s ease;
}

.food-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.food-body h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.3;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.food-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  flex: 1 1 auto;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.food-dots,
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.food-dots {
  margin-top: 24px;
}

.food-dot,
.gallery-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(140, 90, 43, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.food-dot.active,
.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.22);
}

.section-action {
  margin-top: 24px;
}

.center {
  text-align: center;
}

/* Gallery */
.gallery-item {
  height: min(520px, 76vw);
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center;
}

.gallery-item.center {
  transform: translate(-50%, -50%) scale(1.04) translateZ(80px);
}

.gallery-item.left-1 {
  filter: grayscale(72%) saturate(0.88);
  transform: translate(calc(-50% - 310px), -50%) scale(0.84) translateZ(-120px);
}

.gallery-item.right-1 {
  filter: grayscale(72%) saturate(0.88);
  transform: translate(calc(-50% + 310px), -50%) scale(0.84) translateZ(-120px);
}

.gallery-item.left-2 {
  z-index: 6;
  opacity: 0.56;
  filter: grayscale(88%) saturate(0.78);
  transform: translate(calc(-50% - 560px), -50%) scale(0.7) translateZ(-280px);
}

.gallery-item.right-2 {
  z-index: 6;
  opacity: 0.56;
  filter: grayscale(88%) saturate(0.78);
  transform: translate(calc(-50% + 560px), -50%) scale(0.7) translateZ(-280px);
}

.gallery-arrow {
  width: 40px;
  height: 40px;
  font-size: 30px;
}

.gallery-dots {
  margin-top: 32px;
}

/* Reviews */
.reviews {
  background: var(--dark);
  color: var(--white);
}

.reviews .section-kicker {
  color: #f3d2a8;
}

.reviews .section-heading p {
  color: rgba(255, 255, 255, 0.70);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
}

.quote {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.review-card h3 {
  margin: 0;
  font-size: 18px;
}

.review-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

/* Reservation CTA */
.reservation-cta {
  background: linear-gradient(to bottom, #f4ebdf, #f7f1e8);
}

.reservation-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid rgba(140, 90, 43, 0.10);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.reservation-box h2 {
  margin-bottom: 14px;
}

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

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reservation-actions .btn-secondary {
  color: var(--text);
  border-color: rgba(31, 26, 23, 0.18);
  background: transparent;
}

.reservation-actions .btn-secondary:hover {
  background: rgba(31, 26, 23, 0.05);
}

/* Footer */
.site-footer {
  background: #120f0d;
  color: rgba(255, 255, 255, 0.82);
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-contact {
  justify-self: end;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  color: var(--white);
}

.site-footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

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

.footer-contact-list li + li {
  margin-top: 10px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact-list a:hover {
  color: #f3d2a8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}

/* Footer contact links */
.contact-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
}

.icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-list a:hover .icon-img {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px orangered);
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-list {
    gap: 12px;
  }

  .review-grid,
  .intro-strip-grid,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-spacer {
    display: none;
  }

  .footer-contact {
    justify-self: start;
  }

  .gallery-carousel-wrap,
  .gallery-grid {
    min-height: 500px;
  }

  .gallery-item {
    height: min(420px, 72vw);
  }

  .gallery-item.left-1 {
    transform: translate(calc(-50% - 225px), -50%) scale(0.84) translateZ(-120px);
  }

  .gallery-item.right-1 {
    transform: translate(calc(-50% + 225px), -50%) scale(0.84) translateZ(-120px);
  }

  .gallery-item.left-2 {
    transform: translate(calc(-50% - 390px), -50%) scale(0.7) translateZ(-280px);
  }

  .gallery-item.right-2 {
    transform: translate(calc(-50% + 390px), -50%) scale(0.7) translateZ(-280px);
  }

  .image-stack {
    min-height: auto;
  }

  .image-card.tall,
  .image-card.small {
    position: static;
    width: 100%;
    height: 320px;
  }

  .image-card.small {
    margin-top: 18px;
    border-width: 0;
  }

  .reservation-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .food-slider-wrap,
  .food-slider {
    min-height: 520px;
  }

  .food-card {
    width: min(310px, 70vw);
    height: 470px;
  }

  .food-image {
    height: 235px;
    flex-basis: 235px;
  }

  .food-card.left-1 {
    transform: translate(calc(-50% - 175px), -50%) scale(0.86) translateZ(-120px);
  }

  .food-card.right-1 {
    transform: translate(calc(-50% + 175px), -50%) scale(0.86) translateZ(-120px);
  }

  .food-card.left-2 {
    transform: translate(calc(-50% - 310px), -50%) scale(0.74) translateZ(-280px);
  }

  .food-card.right-2 {
    transform: translate(calc(-50% + 310px), -50%) scale(0.74) translateZ(-280px);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    font-size: 24px;
    gap: 8px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(21, 17, 15, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(243, 210, 168, 0.35);
    background: rgba(243, 210, 168, 0.08);
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .lang-current {
    min-width: 58px;
    height: 34px;
    font-size: 12px;
    padding: 0 10px;
  }

  .lang-menu {
    min-width: 132px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero-text {
    font-size: 16px;
  }

  .intro-strip {
    margin-top: 0;
    padding-top: 24px;
  }

  .section {
    padding: 84px 0;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 8px;
  }

  .lang-current {
    min-width: 56px;
  }

  .lang-menu {
    min-width: 128px;
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 64px);
  }

  .gallery-carousel-wrap,
  .gallery-grid {
    min-height: 390px;
  }

  .gallery-item {
    height: min(280px, 78vw);
    border-radius: 18px;
  }

  .gallery-item.center {
    transform: translate(-50%, -50%) scale(1.02) translateZ(40px);
  }

  .gallery-item.left-1 {
    opacity: 0.82;
    transform: translate(calc(-50% - 120px), -50%) scale(0.82) translateZ(-110px);
  }

  .gallery-item.right-1 {
    opacity: 0.82;
    transform: translate(calc(-50% + 120px), -50%) scale(0.82) translateZ(-110px);
  }

  .gallery-item.left-2,
  .gallery-item.right-2 {
    opacity: 0;
    pointer-events: none;
  }

  .gallery-arrow,
  .food-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .gallery-arrow-left,
  .food-arrow-left {
    left: 0;
  }

  .gallery-arrow-right,
  .food-arrow-right {
    right: 0;
  }

  .food-slider-wrap,
  .food-slider {
    min-height: 470px;
  }

  .food-card {
    width: min(250px, 76vw);
    height: 420px;
    border-radius: 18px;
  }

  .food-card.center {
    transform: translate(-50%, -50%) scale(1.02) translateZ(40px);
  }

  .food-card.left-1 {
    opacity: 0.82;
    transform: translate(calc(-50% - 110px), -50%) scale(0.82) translateZ(-110px);
  }

  .food-card.right-1 {
    opacity: 0.82;
    transform: translate(calc(-50% + 110px), -50%) scale(0.82) translateZ(-110px);
  }

  .food-card.left-2,
  .food-card.right-2 {
    opacity: 0;
    pointer-events: none;
  }

  .food-image {
    height: 220px;
    flex-basis: 220px;
  }

  .food-body {
    min-height: 0;
  }

  .food-body h3 {
    min-height: 0;
  }

  .food-body p {
    -webkit-line-clamp: 4;
  }

  .contact-list {
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
  }

  .icon-img {
    width: 28px;
    height: 28px;
  }

  .reservation-actions,
  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .reservation-actions .btn {
    width: 100%;
  }
}
