:root {
  --cream: #f7f0e6;
  --paper: #fffaf2;
  --ink: #211814;
  --muted: #756b61;
  --gold: #c89b5c;
  --gold-dark: #93642f;
  --jade: #355c4a;
  --rose: #9b4f50;
  --line: rgba(33, 24, 20, 0.12);
  --shadow: 0 24px 70px rgba(70, 50, 28, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #211814;
  color: #f7ead8;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#loader span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 8vw, 92px);
  letter-spacing: 0.08em;
}

#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #f4d7a3);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 10px 5%;
  background: #221915;
  color: #f7ead8;
  font-size: 13px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 6%;
  background: rgba(247, 240, 230, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 250, 242, 0.95);
  box-shadow: 0 14px 36px rgba(70, 50, 28, 0.1);
}

.brand {
  display: grid;
  line-height: 1;
  justify-items: start;
  padding: 1px 0;
}

.brand strong {
  font-family: "Montserrat", sans-serif;
  color: #ef1d2d;
  font-size: clamp(27px, 3.1vw, 40px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.86;
}

.brand span {
  margin-top: 8px;
  color: #ef1d2d;
  font-size: clamp(11px, 1.1vw, 17px);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.24s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta {
  padding: 12px 20px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}

.btn {
  padding: 15px 24px;
}

.nav-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
  transform: translateX(-125%);
  transition: transform 0.55s ease;
}

.nav-cta:hover::after,
.btn:hover::after {
  transform: translateX(125%);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 15px 32px rgba(31, 26, 23, 0.2);
}

.btn-light {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

section {
  padding: 92px 6%;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}

.hero-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(200,155,92,0.22), transparent 34%), linear-gradient(90deg, rgba(247,240,230,0.96), rgba(247,240,230,0.74));
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

h1,
.section-head h2,
.about-content h2,
.chef-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(60px, 8vw, 112px);
}

.hero p,
.section-head p,
.about-content p,
.chef-content p,
.contact-card p {
  color: var(--muted);
  line-height: 1.85;
}

.hero p {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 18px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.hero-photo {
  overflow: hidden;
  border: 9px solid var(--paper);
  box-shadow: var(--shadow);
}

.hero-photo-main {
  height: 590px;
  border-radius: 999px 999px 30px 30px;
}

.hero-photo-side {
  height: 390px;
  border-radius: 999px 999px 26px 26px;
}

.hero-photo img,
.about-image img,
.chef-image img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.hero-photo:hover img,
.about-image:hover img,
.chef-image:hover img,
.gallery-grid img:hover {
  transform: scale(1.055);
  filter: brightness(1.04) contrast(1.04);
}

.floating-card {
  position: absolute;
  left: -22px;
  bottom: 44px;
  max-width: 250px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,242,0.93);
  box-shadow: var(--shadow);
  animation: floatSlow 4.6s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.floating-card span {
  color: var(--muted);
  line-height: 1.55;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--paper);
}

.stat-card,
.info-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 42px rgba(70, 50, 28, 0.08);
}

.stat-card {
  padding: 34px;
  text-align: center;
}

.stat-card h3 {
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
}

.about-section,
.chef-section,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.about-image,
.chef-image {
  height: 540px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-content h2,
.chef-content h2,
.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.5vw, 74px);
}

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

.signature-row {
  margin-top: 28px;
}

.signature-row div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.signature-row strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.signature-row span {
  color: var(--muted);
  line-height: 1.5;
}

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

.service-section {
  background: #fffaf2;
}

.info-card {
  min-height: 270px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(70,50,28,0.15);
}

.info-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
}

.info-card h3,
.contact-card h3 {
  margin: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}

.service-section .info-card p {
  margin: 0 0 10px;
  line-height: 1.45;
}

.service-section .info-card p:last-child {
  margin-bottom: 0;
}

.food-marquee {
  padding: 32px 0;
  overflow: hidden;
  background: #211814;
}

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

.marquee-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0.86;
}

.menu-section {
  --menu-card-width: clamp(264px, 19vw, 310px);
  --menu-card-gap: clamp(14px, 1.35vw, 22px);
  --menu-image-height: clamp(160px, 12vw, 188px);
  --menu-simple-image-height: clamp(176px, 13vw, 204px);
  --menu-card-padding: 16px 18px 18px;
  --menu-title-size: clamp(23px, 1.8vw, 28px);
  --menu-body-size: 12.5px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, rgba(200,155,92,0.18), transparent 30%), linear-gradient(180deg, #f8f3ea 0%, #fffaf2 44%, #efe5d6 100%);
}

.menu-section::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 250px;
  height: 220px;
  border-radius: 48% 52% 46% 54% / 36% 42% 58% 64%;
  background: rgba(255,255,255,0.62);
  animation: waveMove 9s ease-in-out infinite;
}

.menu-section > * {
  position: relative;
  z-index: 1;
}

.menu-toolbar {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.menu-tab {
  border: 1px solid rgba(200,155,92,0.36);
  border-radius: 999px;
  padding: 12px 17px;
  background: rgba(255,250,242,0.82);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}

.menu-search-wrap {
  max-width: 660px;
  margin: 0 auto 18px;
}

.menu-search {
  width: 100%;
  border: 1px solid rgba(200,155,92,0.34);
  border-radius: 999px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 34px rgba(70,50,28,0.08);
  font: inherit;
  outline: none;
}

.menu-search:focus {
  border-color: var(--gold);
  box-shadow: 0 16px 42px rgba(200,155,92,0.2);
}

.menu-rows-showcase {
  display: grid;
  gap: clamp(36px, 5vw, 70px);
  width: min(1420px, 94vw);
  max-width: none;
  margin: 0 auto;
}

.row-title {
  max-width: 1320px;
  margin: 0 auto 18px;
  padding: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.row-title h3 {
  color: #573624;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
}

.row-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wave-stage {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}

.wave-menu-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  align-items: stretch;
  gap: var(--menu-card-gap);
  overflow: visible;
  padding: 0;
}

.menu-row-block.is-compact .wave-menu-track {
  grid-template-columns: repeat(auto-fit, minmax(270px, 360px));
  justify-content: start;
}

.food-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(200,155,92,0.25);
  border-radius: clamp(22px, 2vw, 30px);
  background: linear-gradient(180deg, #fffdf8, #f4eadc);
  box-shadow: 0 20px 55px rgba(70,50,28,0.14);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  animation: cardIn 0.66s ease forwards;
  transition: transform 0.38s ease, box-shadow 0.38s ease, filter 0.38s ease;
}

.food-card:hover,
.food-card.is-active {
  transform: translateY(-12px) scale(1.02);
  filter: saturate(1.08);
  box-shadow: 0 34px 86px rgba(70,50,28,0.22);
}

.food-card.is-active {
  animation: cardIn 0.66s ease forwards, slideGlow 2.8s ease-in-out infinite;
}

.food-img-wrap {
  position: relative;
  height: var(--menu-image-height);
  overflow: hidden;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.96), rgba(244,234,220,0.72) 62%, rgba(232,217,195,0.72)),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(200,155,92,0.14));
}

.food-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 22px;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.food-card:hover .food-img,
.food-card.is-active .food-img {
  transform: scale(1.035);
  filter: brightness(1.05) contrast(1.04);
}

.food-img-wrap::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.48) 50%, transparent 70%);
  transform: translateX(-120%) rotate(12deg);
}

.food-card.is-active .food-img-wrap::after {
  animation: shineSweep 2.9s ease-in-out infinite;
}

.food-content {
  display: flex;
  flex-direction: column;
  padding: var(--menu-card-padding);
}

.food-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.food-code {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 10px;
  background: #211814;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,24,20,0.18);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.food-title {
  min-width: 0;
  display: block;
}

.food-name {
  color: #573624;
  font-family: "Cormorant Garamond", serif;
  font-size: var(--menu-title-size);
  line-height: 1.08;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.food-allergens {
  color: #211814;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  margin-left: 3px;
  vertical-align: super;
}

.food-desc {
  color: var(--muted);
  line-height: 1.55;
  font-size: var(--menu-body-size);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.option-list,
.bullet-list,
.size-list {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.option-row,
.size-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
  padding: 6px 0;
  border-top: 1px dashed rgba(33,24,20,0.14);
  color: #40352e;
  font-size: var(--menu-body-size);
  line-height: 1.4;
}

.option-row span:first-child,
.size-row span:first-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.option-row strong {
  color: var(--ink);
  font-weight: 900;
}

.option-price,
.food-price,
.size-price {
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.food-price {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(33,24,20,0.1);
  text-align: right;
}

.bullet-list {
  padding-left: 18px;
  color: #40352e;
  font-size: var(--menu-body-size);
  line-height: 1.5;
}

.food-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}

.food-tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(200,155,92,0.16);
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.food-card.is-simple .food-img-wrap {
  height: var(--menu-simple-image-height);
}

.slide-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200,155,92,0.35);
  border-radius: 50%;
  background: rgba(255,250,242,0.95);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(70,50,28,0.13);
  cursor: pointer;
  font-size: 30px;
  transform: translateY(-50%);
  transition: 0.24s ease;
}

.slide-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.slide-left {
  left: 0;
}

.slide-right {
  right: 0;
}

.menu-note {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
}

.chef-section {
  background: var(--paper);
}

.contact-section {
  background: var(--cream);
}

.gallery-grid {
  max-width: 1160px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 260px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.contact-card {
  padding: 34px;
}

.contact-card p {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.map iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 32px;
  box-shadow: 0 18px 42px rgba(70, 50, 28, 0.08);
}

footer {
  padding: 28px 6%;
  background: #211814;
  color: #e9dccd;
  text-align: center;
  font-size: 13px;
}

.mobile-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 15px 32px rgba(31, 26, 23, 0.24);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(20,14,10,0.72);
  backdrop-filter: blur(8px);
}

.image-lightbox.active {
  display: flex;
}

.lightbox-card {
  width: min(760px, 100%);
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0,0,0,0.35);
}

.lightbox-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
}

.lightbox-caption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.lightbox-caption button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes waveMove {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(18px); }
}

@keyframes slideGlow {
  0%, 100% { box-shadow: 0 24px 62px rgba(70,50,28,0.16); }
  50% { box-shadow: 0 34px 90px rgba(154,106,50,0.26); }
}

@keyframes shineSweep {
  0% { transform: translateX(-120%) rotate(12deg); opacity: 0; }
  20% { opacity: 0.55; }
  100% { transform: translateX(140%) rotate(12deg); opacity: 0; }
}

@media (max-width: 1050px) {
  .hero,
  .about-section,
  .chef-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

  .info-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-section {
    --menu-card-gap: 14px;
    --menu-image-height: 100%;
    --menu-simple-image-height: 100%;
    --menu-card-padding: 14px 14px 14px 0;
    --menu-title-size: clamp(23px, 4.5vw, 30px);
    --menu-body-size: 13px;
    padding-top: 64px;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .navbar.menu-open .nav-links {
    position: absolute;
    left: 5%;
    right: 5%;
    top: calc(100% + 10px);
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,250,242,0.97);
    box-shadow: var(--shadow);
  }

  section {
    padding: 72px 5%;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-photo-main,
  .hero-photo-side,
  .about-image,
  .chef-image {
    height: 380px;
  }

  .floating-card {
    position: static;
    margin-top: -34px;
  }

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

  .menu-toolbar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: none;
    margin-left: -5%;
    margin-right: -5%;
    padding: 0 5% 8px;
    scrollbar-width: none;
  }

  .menu-toolbar::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    flex: 0 0 auto;
    padding: 11px 15px;
    font-size: 11px;
  }

  .row-title {
    padding: 0;
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .wave-stage {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .wave-menu-track {
    grid-template-columns: 1fr;
    gap: var(--menu-card-gap);
    padding: 0;
  }

  .menu-row-block.is-compact .wave-menu-track {
    grid-template-columns: 1fr;
  }

  .slide-btn {
    display: none;
  }

  .food-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    max-width: none;
    min-width: 0;
    border-radius: 24px;
  }

  .food-content {
    padding: var(--menu-card-padding);
    min-width: 0;
  }

  .food-img-wrap {
    height: 100%;
    min-height: 190px;
    padding: 8px;
  }

  .food-heading {
    gap: 8px;
    margin-bottom: 8px;
  }

  .food-code {
    padding: 6px 7px;
    border-radius: 8px;
    font-size: 13px;
  }

  .food-name {
    font-size: var(--menu-title-size);
  }

  .food-desc,
  .option-row,
  .size-row,
  .bullet-list {
    font-size: var(--menu-body-size);
  }

  .option-list,
  .bullet-list,
  .size-list {
    margin-top: 8px;
  }

  .food-desc {
    -webkit-line-clamp: 2;
  }

  .option-row span:first-child,
  .size-row span:first-child {
    -webkit-line-clamp: 2;
  }

  .option-row,
  .size-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 5px 0;
  }

  .option-price,
  .food-price,
  .size-price {
    font-size: 17px;
  }

  .food-price {
    text-align: right;
  }

  .food-tag {
    padding: 5px 7px;
    font-size: 9px;
  }

  .mobile-call {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .menu-section {
    --menu-card-gap: 12px;
    --menu-title-size: clamp(20px, 5.2vw, 24px);
    --menu-body-size: 12px;
  }

  .wave-menu-track {
    gap: var(--menu-card-gap);
    padding: 0;
  }

  .food-card {
    grid-template-columns: 96px minmax(0, 1fr);
    border-radius: 22px;
  }

  .food-img-wrap {
    min-height: 160px;
    padding: 7px;
  }

  .food-heading {
    align-items: flex-start;
    gap: 7px;
  }

  .food-code {
    font-size: 12px;
  }

  .food-meta {
    margin-top: 8px;
  }

  .option-row,
  .size-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .option-price,
  .size-price {
    text-align: left;
  }

  .food-price {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
