/* =========================================================
   Madrass Express — Modern premium South Indian styling
   Palette: cream base, deep maroon, gold accents
   ========================================================= */

:root {
  --cream:        #f7f1e6;
  --cream-2:      #efe6d3;
  --cream-3:      #e7dcc4;
  --ink:          #2a1a1a;
  --ink-soft:     #5a4a44;
  --maroon:       #6a1414;
  --maroon-deep:  #4a0d0d;
  --maroon-soft:  #8a2a2a;
  --gold:         #c9a24a;
  --gold-2:       #b48631;
  --gold-soft:    #e6c98a;
  --line:         rgba(106, 20, 20, 0.15);
  --shadow-sm:    0 4px 14px rgba(74, 13, 13, 0.08);
  --shadow-md:    0 18px 40px rgba(74, 13, 13, 0.14);
  --radius:       14px;
  --radius-lg:    22px;

  --f-serif:  "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --f-display:"Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-sans:   "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* Shared type ---------------------------------------------- */
.eyebrow {
  font-family: var(--f-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-2);
  margin: 0 0 0.9rem;
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--maroon-deep);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}
.accent { color: var(--gold-2); font-style: italic; }

/* Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1px solid transparent;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #2a1a1a;
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: var(--maroon);
  color: var(--maroon);
  background: transparent;
}
.btn-outline:hover { background: var(--maroon); color: var(--cream); }

/* Section ------------------------------------------------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { text-align: center; margin-bottom: 3rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.navbar.scrolled { box-shadow: 0 8px 24px rgba(74,13,13,.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--maroon-deep);
  padding: 6px;
  box-shadow: 0 0 0 1px var(--gold) inset, var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--maroon-deep);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: var(--cream-2);
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--maroon-deep);
  transition: transform .3s ease, opacity .3s ease;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 10vw, 7rem);
  color: var(--cream);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201, 162, 74, 0.35), transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(201, 162, 74, 0.18), transparent 60%),
    linear-gradient(135deg, #4a0d0d 0%, #6a1414 60%, #3a0a0a 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(230, 201, 138, 0.14) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}
.hero-inner { position: relative; text-align: center; }
.hero .eyebrow { color: var(--gold-soft); }
.hero-title {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.2rem;
  color: #fbf3e0;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: rgba(251, 243, 224, 0.85);
}
.hero-cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-cta .btn-outline {
  color: var(--gold-soft);
  border-color: rgba(230, 201, 138, 0.5);
}
.hero-cta .btn-outline:hover {
  background: var(--gold-soft);
  color: var(--maroon-deep);
  border-color: var(--gold-soft);
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 0 auto;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(230, 201, 138, 0.2);
}
.hero-badges > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.hero-badges strong {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--gold-soft);
  font-weight: 700;
}
.hero-badges span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 243, 224, 0.65);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 1 / 1;
}
.about-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.photo-1 {
  inset: 0 30% 25% 0;
  background-image: url("assets/paneer_masala_dosa.jpeg");
}
.photo-2 {
  inset: 30% 0 0 30%;
  background-image: url("assets/filter_coffee.jpeg");
  border: 6px solid var(--cream);
}
.about-badge {
  position: absolute;
  top: 45%;
  left: -8px;
  transform: translateY(-50%);
  background: var(--maroon-deep);
  color: var(--gold-soft);
  padding: 1rem 1.1rem;
  border-radius: 999px;
  text-align: center;
  box-shadow: var(--shadow-md), inset 0 0 0 1px var(--gold);
  min-width: 88px;
}
.badge-kicker {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.badge-year {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.about-copy .section-title { text-align: left; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.about-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--ink-soft);
}
.tick { color: var(--gold-2); }

/* =========================================================
   MENU
   ========================================================= */
.menu {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.menu-tab {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  transition: all .25s ease;
}
.menu-tab:hover { color: var(--maroon-deep); border-color: var(--maroon); }
.menu-tab.active {
  background: var(--maroon-deep);
  color: var(--gold-soft);
  border-color: var(--maroon-deep);
  box-shadow: var(--shadow-sm);
}

.menu-panels { position: relative; }
.menu-card {
  display: none;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 3rem);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.menu-card.active { display: block; animation: fadeUp .4s ease; }
.menu-card::before,
.menu-card::after {
  content: "";
  position: absolute;
  width: 90px; height: 90px;
  border: 1px solid var(--gold);
  opacity: 0.6;
}
.menu-card::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; border-top-left-radius: 12px; }
.menu-card::after  { bottom: 12px; right: 12px; border-left: 0; border-top: 0; border-bottom-right-radius: 12px; }

.menu-card-header { text-align: center; margin-bottom: 2rem; }
.menu-card-header h3 {
  font-family: var(--f-serif);
  color: var(--maroon-deep);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0 0 0.5rem;
}
.divider {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--gold);
  position: relative;
  margin: 0.5rem 0 0.75rem;
}
.divider::before, .divider::after {
  content: "";
  position: absolute; top: 50%;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.divider::before { left: -8px; }
.divider::after  { right: -8px; }
.menu-card-header p { color: var(--ink-soft); margin: 0; }

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
}
.menu-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px dotted var(--line);
}
.menu-thumb {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 162, 74, 0.35);
  transition: transform .4s ease, box-shadow .3s ease, filter .3s ease;
  filter: saturate(0.95);
}
.menu-item:hover .menu-thumb {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: var(--shadow-md);
  filter: saturate(1.1);
}
.menu-text {
  flex: 1;
  min-width: 0;
}
.menu-item h4 {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin: 0 0 0.25rem;
}
.menu-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.price {
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--gold-2);
  white-space: nowrap;
  font-size: 1.05rem;
  padding-left: 0.5rem;
}

.menu-full-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.menu-full-note {
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.inline-link {
  color: var(--maroon-deep);
  border-bottom: 1px solid var(--gold);
  transition: color .2s ease;
}
.inline-link:hover { color: var(--maroon); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.g-item {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform .5s ease, box-shadow .3s ease, filter .3s ease;
  filter: saturate(0.95);
}
.g-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); filter: saturate(1.05); }

.g1 { grid-column: span 3; grid-row: span 2;
  background-image: url("assets/masala_dosa2.jpeg"); }
.g2 { grid-column: span 3; grid-row: span 3;
  background-image: url("assets/butter_chicken.jpeg"); }
.g3 { grid-column: span 2; grid-row: span 1;
  background-image: url("assets/malabar_shrimp_curry.jpeg"); }
.g4 { grid-column: span 1; grid-row: span 1;
  background-image: url("assets/gobi_65.jpeg"); }
.g5 { grid-column: span 2; grid-row: span 2;
  background-image: url("assets/mutton_kurma.jpeg"); }
.g6 { grid-column: span 4; grid-row: span 2;
  background-image: url("assets/chilli_paneer.jpeg"); }

/* =========================================================
   HOURS
   ========================================================= */
.hours {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 74, 0.15), transparent 55%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hours-copy .section-title { text-align: left; }
.hours-copy p { color: var(--ink-soft); margin: 0 0 1.75rem; }

.hours-card {
  background: #fffaf0;
  border-radius: var(--radius-lg);
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
}
.hours-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 3px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.hours-row:last-of-type { border-bottom: 0; }
.hours-row span:first-child {
  color: var(--maroon-deep);
  font-weight: 500;
}
.hours-row span:last-child {
  font-family: var(--f-serif);
  color: var(--ink-soft);
}
.hours-note {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: var(--cream-2);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.25);
}

/* =========================================================
   LOCATION
   ========================================================= */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.location-copy .section-title { text-align: left; }
.location-copy > p { color: var(--ink-soft); margin: 0 0 1.75rem; }

.contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.ci {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--maroon-deep);
  color: var(--gold-soft);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px var(--gold);
}
.contact-list strong {
  display: block;
  color: var(--maroon-deep);
  font-family: var(--f-serif);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.contact-list p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.contact-list a:hover { color: var(--gold-2); }

.socials { display: flex; gap: 0.5rem; color: var(--ink-soft); font-size: 0.9rem; }
.socials a { color: var(--maroon-deep); }
.socials a:hover { color: var(--gold-2); }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 420px;
  background: var(--cream-2);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.95);
  position: absolute; inset: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--maroon-deep);
  color: rgba(251, 243, 224, 0.75);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.footer-brand img {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 0 1px var(--gold);
}
.footer-brand .brand-name { color: var(--gold-soft); }
.footer-brand .brand-tag  { color: rgba(251,243,224,.55); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold-soft); }
.footer-copy {
  margin: 0;
  text-align: right;
  font-size: 0.82rem;
  color: rgba(251, 243, 224, 0.55);
}

/* =========================================================
   Animations
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .about-grid,
  .hours-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .about-media { max-width: 480px; margin: 0 auto; }
  .menu-items { grid-template-columns: 1fr; gap: 1rem; }
  .menu-thumb { width: 68px; height: 68px; border-radius: 12px; }
  .gallery-grid { grid-auto-rows: 150px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 5%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    box-shadow: 0 12px 20px rgba(74,13,13,.08);
  }
  .nav-links.open { max-height: 480px; padding-block: 1rem; }
  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px dashed var(--line);
    width: 100%;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a.btn { margin-top: 0.5rem; align-self: flex-start; }

  .hero-badges { grid-template-columns: 1fr; }
  .hero-badges > div { flex-direction: row; justify-content: center; gap: 0.75rem; }
  .hero-badges strong { font-size: 1.3rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
  .g1, .g5 { grid-column: span 2; grid-row: span 1; }

  .map-wrap { min-height: 320px; }
}

@media (max-width: 480px) {
  .brand-tag { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

/* =========================================================
   FULL MENU PAGE (menu.html)
   ========================================================= */
.nav-links a.active {
  color: var(--maroon-deep);
  font-weight: 600;
}
.nav-links a.active:not(.btn)::after {
  transform: scaleX(1);
  transform-origin: left;
  background: var(--maroon);
}

.menu-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.menu-hero-inner { max-width: 780px; }
.menu-hero .section-title { margin-bottom: 1rem; }
.menu-hero .section-sub { margin: 0 auto; }

.full-menu { background: var(--cream); padding-top: clamp(2.5rem, 5vw, 4rem); }
.menu-search-wrap {
  max-width: 760px;
  margin: 0 auto 1.5rem;
}
.menu-search-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.5rem;
}
.menu-search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.menu-search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--ink);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.menu-search-input:focus {
  border-color: var(--maroon-soft);
  box-shadow: 0 0 0 3px rgba(106, 20, 20, 0.12);
}
.menu-search-clear {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: #fffaf0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: 0.85rem;
  transition: all .2s ease;
}
.menu-search-clear:hover {
  color: var(--maroon-deep);
  border-color: var(--maroon-soft);
}
.menu-search-help {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.menu-search-empty {
  text-align: center;
  margin: 1.2rem auto 0;
  color: var(--maroon);
  font-size: 0.92rem;
}
.menu-tabs-full { margin-bottom: 3rem; position: sticky; top: 72px; z-index: 20; padding: 0.75rem 0; background: rgba(247, 241, 230, 0.92); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); }
.full-menu.search-active .menu-card { display: none; }
.full-menu.search-active .menu-card.search-visible {
  display: block;
  margin-bottom: 1rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  row-gap: 1.25rem;
}
.menu-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dotted var(--line);
}
.menu-list li > div { flex: 1; min-width: 0; }
.menu-list h4 {
  font-family: var(--f-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.25;
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}
.menu-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 34rem;
}
.menu-list .price {
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--gold-2);
  white-space: nowrap;
  flex: 0 0 3.5rem;
  font-size: 1rem;
  padding-top: 0.05rem;
  text-align: right;
}
.menu-list li[hidden] { display: none !important; }

.menu-note {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
.menu-note .tick { color: var(--gold-2); margin-right: 0.35rem; }

.menu-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .menu-list { grid-template-columns: 1fr; column-gap: 0; row-gap: 1.1rem; }
  .menu-tabs-full { top: 64px; }
}
@media (max-width: 720px) {
  .menu-search-field { flex-direction: column; align-items: stretch; }
  .menu-search-clear { width: 100%; }
  .menu-tabs-full { position: static; padding: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; margin-bottom: 2rem; }
  .menu-list li { gap: 0.9rem; }
  .menu-list p { font-size: 0.8rem; }
}
