/* =========================================================
   Indian Village Berlin — Stylesheet
   Palette: spice red, saffron, gold, teal, parchment
   ========================================================= */

:root {
  --maroon: #7a1913;
  --maroon-deep: #5a120d;
  --red: #a3241a;
  --saffron: #e8a33d;
  --saffron-bright: #f6b93b;
  --gold: #c99a3b;
  --gold-soft: #d8b56a;
  --teal: #1f7a75;
  --teal-deep: #14524e;
  --copper: #b87333;
  --cream: #fbf4e7;
  --cream-2: #f5ead4;
  --parchment: #fcf8ef;
  --ink: #2a1c14;
  --ink-soft: #5b4636;
  --charcoal: #1a1310;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-accent: "Marcellus", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --shadow-sm: 0 4px 16px rgba(40, 20, 8, 0.12);
  --shadow-md: 0 14px 40px rgba(40, 20, 8, 0.18);
  --shadow-lg: 0 30px 70px rgba(30, 12, 4, 0.28);
  --radius: 14px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }

.container { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::before { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--maroon);
  margin: 0.6rem 0 1rem;
}
.section-lead { max-width: 60ch; color: var(--ink-soft); font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.text-center .section-lead { margin-inline: auto; }

section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--maroon);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(122, 25, 19, 0.35); }
.btn:active { transform: translateY(-1px); }
.btn--gold { --btn-bg: linear-gradient(135deg, var(--saffron-bright), var(--copper)); --btn-fg: #37200a; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--maroon); border-color: rgba(122,25,19,0.35); }
.btn--outline:hover { background: var(--maroon); color: var(--cream); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.14); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.15rem 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.site-header.scrolled {
  padding: 0.55rem 0;
  background: rgba(252, 248, 239, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(40, 20, 8, 0.1);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); transition: color 0.4s; }
.scrolled .brand { color: var(--maroon); }
.brand__mark { width: 44px; height: 44px; flex: none; transition: transform 0.6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); }
.brand__text { line-height: 1; }
.brand__name { font-family: var(--font-accent); font-size: 1.35rem; letter-spacing: 0.06em; display: block; white-space: nowrap; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; opacity: 0.8; white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 1.6rem; white-space: nowrap; }
.nav__links a {
  color: var(--cream);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}
.scrolled .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--saffron);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--saffron); }
.scrolled .nav__links a:hover { color: var(--maroon); }

.nav__cta { display: flex; align-items: center; gap: 0.8rem; }
.nav__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; color: var(--cream); transition: color 0.4s; }
.scrolled .nav__phone { color: var(--maroon); }
.nav__phone svg { width: 17px; height: 17px; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px;
}
.nav__toggle span { height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s; }
.scrolled .nav__toggle span { background: var(--maroon); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 20%, rgba(90, 18, 13, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(26,19,16,0.72) 0%, rgba(26,19,16,0.45) 45%, rgba(26,19,16,0.82) 100%);
}
.hero__inner { max-width: 760px; }
.hero .eyebrow { color: var(--saffron-bright); }
.hero .eyebrow::before { background: linear-gradient(90deg, transparent, var(--saffron)); }
.hero__title {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 1.02;
  margin: 1.1rem 0 1.3rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero__title em { color: var(--saffron-bright); font-style: italic; }
.hero__text { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 54ch; color: #f3e6d0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero__rating {
  display: inline-flex; align-items: center; gap: 0.9rem;
  margin-top: 2.6rem; padding: 0.7rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s, background 0.3s;
}
.hero__rating:hover { transform: translateY(-2px); background: rgba(255,255,255,0.16); }
.hero__rating .g { font-weight: 700; font-family: var(--font-body); font-size: 1.05rem; }
.hero__rating .g span:nth-child(1){color:#4285F4}.hero__rating .g span:nth-child(2){color:#EA4335}
.hero__rating .g span:nth-child(3){color:#FBBC05}.hero__rating .g span:nth-child(4){color:#4285F4}
.hero__rating .g span:nth-child(5){color:#34A853}.hero__rating .g span:nth-child(6){color:#EA4335}
.rating__score { font-weight: 700; font-size: 1.15rem; }
.stars { color: var(--saffron-bright); letter-spacing: 2px; font-size: 0.95rem; }
.rating__count { font-size: 0.82rem; opacity: 0.85; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.8rem; translate: -50% 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8;
}
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.6); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; left:50%; top:7px; translate:-50% 0; width:3px; height:7px; background:#fff; border-radius:2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--maroon);
  color: var(--gold-soft);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee { display: flex; gap: 3rem; width: max-content; animation: marquee 32s linear infinite; }
.strip:hover .marquee { animation-play-state: paused; }
.marquee span { font-family: var(--font-accent); letter-spacing: 0.15em; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--saffron); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about { background: var(--parchment); }
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.about__media .img-2 {
  position: absolute; width: 34%; height: auto; aspect-ratio: 1520 / 994; bottom: -2.2rem; right: -1.5rem;
  border: 6px solid var(--parchment); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute; top: -1.6rem; left: -1.6rem;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--maroon); color: var(--cream);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md);
}
.about__badge span { display: block; }
.about__badge .n { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.about__badge .l { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 3px; }
.about__body p { margin-bottom: 1.15rem; color: var(--ink-soft); }
.about__body .signature { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--maroon); margin-top: 0.4rem; }
.about__facts { display: flex; gap: 2.4rem; margin-top: 2rem; flex-wrap: wrap; }
.fact .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--copper); line-height: 1; }
.fact .lab { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.05em; }

/* ---------- Divider ---------- */
.divider { display: flex; align-items: center; justify-content: center; gap: 1.2rem; padding: 0; color: var(--gold); }
.divider .line { height: 1px; width: min(120px, 20vw); background: linear-gradient(90deg, transparent, var(--gold)); }
.divider .line.r { background: linear-gradient(90deg, var(--gold), transparent); }
.divider svg { width: 30px; height: 30px; }

/* ---------- Menu highlights ---------- */
.menu { background: linear-gradient(180deg, var(--cream-2), var(--parchment)); }
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
.dish {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid rgba(201, 154, 59, 0.18);
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.dish__img { aspect-ratio: 4/3; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.08); }
.dish__body { padding: 1.3rem 1.4rem 1.5rem; }
.dish__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__name { font-size: 1.35rem; color: var(--maroon); }
.dish__price { font-family: var(--font-display); font-size: 1.3rem; color: var(--copper); font-weight: 600; white-space: nowrap; }
.dish__desc { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.4rem; }
.dish__tags { display: flex; gap: 0.4rem; margin-top: 0.9rem; flex-wrap: wrap; }
.tag { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 100px; background: rgba(31,122,117,0.12); color: var(--teal-deep); font-weight: 500; }
.tag.spicy { background: rgba(163,36,26,0.12); color: var(--red); }
.tag.veg { background: rgba(34,120,60,0.12); color: #226b2f; }
.menu__cta { text-align: center; margin-top: 3rem; }

/* ---------- Services ---------- */
.services { background: var(--charcoal); color: var(--cream); overflow: hidden; }
.services .section-title { color: var(--cream); }
.services .section-lead { color: rgba(251,244,231,0.72); }
.services .eyebrow { color: var(--saffron-bright); }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.svc {
  padding: 1.9rem 1.6rem;
  border: 1px solid rgba(216, 181, 106, 0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s;
  position: relative;
}
.svc:hover { transform: translateY(-6px); background: rgba(232,163,61,0.08); border-color: rgba(232,163,61,0.5); }
.svc__icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-content: center; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(232,163,61,0.22), rgba(184,115,51,0.22));
  color: var(--saffron-bright);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.35rem; color: var(--cream); margin-bottom: 0.4rem; }
.svc p { font-size: 0.9rem; color: rgba(251,244,231,0.68); }

/* ---------- Gallery ---------- */
.gallery { background: var(--parchment); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery__item { overflow: hidden; border-radius: var(--radius); position: relative; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery__item:hover img { transform: scale(1.09); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(90,18,13,0.5));
  opacity: 0; transition: opacity 0.4s;
}
.gallery__item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Info / Hours / Location ---------- */
.info { background: linear-gradient(180deg, var(--maroon-deep), var(--maroon)); color: var(--cream); position: relative; overflow: hidden; }
.info__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; position: relative; z-index: 1; }
.info .eyebrow { color: var(--saffron-bright); }
.info .section-title { color: var(--cream); }
.hours-list { margin-top: 1.8rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.85rem 0; border-bottom: 1px dashed rgba(255,255,255,0.18); font-size: 1.02rem; }
.hours-list li span:last-child { color: var(--saffron-bright); font-weight: 500; }
.hours-list li.now { color: #fff; }
.contact-lines { margin-top: 2rem; display: grid; gap: 1rem; }
.contact-lines a, .contact-lines div { display: flex; align-items: center; gap: 0.9rem; font-size: 1rem; }
.contact-lines svg { width: 20px; height: 20px; color: var(--saffron-bright); flex: none; }
.info__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 380px; border: 6px solid rgba(255,255,255,0.08); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(0.9); }

/* ---------- Reviews ---------- */
.reviews { background: var(--parchment); text-align: center; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: 1.4rem;
  padding: 1.4rem 2.2rem; border-radius: 20px; margin: 0 auto 3rem;
  background: var(--white); box-shadow: var(--shadow-md); border: 1px solid rgba(201,154,59,0.2);
}
.reviews__badge .score { font-family: var(--font-display); font-size: 3rem; color: var(--maroon); line-height: 1; }
.reviews__badge .stars { font-size: 1.3rem; }
.reviews__badge .meta { text-align: left; font-size: 0.85rem; color: var(--ink-soft); }
.reviews__badge .glogo { font-weight: 700; font-family: var(--font-body); font-size: 1.1rem; }
.reviews__badge .glogo span:nth-child(1){color:#4285F4}.reviews__badge .glogo span:nth-child(2){color:#EA4335}
.reviews__badge .glogo span:nth-child(3){color:#FBBC05}.reviews__badge .glogo span:nth-child(4){color:#4285F4}
.reviews__badge .glogo span:nth-child(5){color:#34A853}.reviews__badge .glogo span:nth-child(6){color:#EA4335}
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; text-align: left; }
.review {
  background: var(--white); border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,154,59,0.15);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.review .stars { font-size: 0.95rem; }
.review p { color: var(--ink-soft); font-size: 0.97rem; font-style: italic; }
.review .who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.review .ava { width: 40px; height: 40px; border-radius: 50%; display: grid; place-content: center; color: #fff; font-weight: 600; font-family: var(--font-body); }
.review .who b { font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.review .who small { display: block; color: var(--ink-soft); font-size: 0.75rem; }

/* ---------- CTA banner ---------- */
.cta {
  background: url("../img/photos/dining-room.jpg") center/cover fixed;
  position: relative; color: var(--cream); text-align: center;
}
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,19,16,0.82), rgba(90,18,13,0.8)); }
.cta__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta .section-title { color: var(--cream); }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(251,244,231,0.72); padding: 4.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer h4 { color: var(--cream); font-family: var(--font-accent); font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 1.1rem; }
.footer a:hover { color: var(--saffron-bright); }
.footer__links li { margin-bottom: 0.6rem; }
.footer__brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer__brand p { font-size: 0.92rem; max-width: 34ch; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(216,181,106,0.3); display: grid; place-content: center; transition: 0.3s; }
.footer__social a:hover { background: var(--saffron); color: var(--charcoal); border-color: var(--saffron); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__contact li { display: flex; gap: 0.7rem; margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--saffron); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Subpage (menu/legal) ---------- */
.page-hero {
  padding: 10rem 0 4rem; text-align: center; color: var(--cream);
  background: linear-gradient(180deg, rgba(26,19,16,0.78), rgba(90,18,13,0.82)), url("../img/photos/spice-pots.jpg") center/cover;
  position: relative;
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.page-hero p { color: #f0e2c9; max-width: 60ch; margin: 1rem auto 0; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.05em; opacity: 0.8; margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--saffron-bright); }

.menu-page { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.menu-cat { margin-bottom: 3.5rem; }
.menu-cat__head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.6rem; }
.menu-cat__head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--maroon); white-space: nowrap; }
.menu-cat__head .rule { height: 1px; flex: 1; background: linear-gradient(90deg, var(--gold), transparent); }
.menu-cat__note { font-size: 0.9rem; color: var(--copper); font-style: italic; margin-bottom: 1.4rem; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 0.4rem 2.8rem; }
.mi { display: flex; gap: 0.8rem; align-items: baseline; padding: 0.75rem 0; border-bottom: 1px dotted rgba(122,25,19,0.18); }
.mi__main { flex: 1; }
.mi__name { font-family: var(--font-display); font-size: 1.28rem; color: var(--ink); font-weight: 600; }
.mi__name .badge { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; vertical-align: middle; padding: 0.12rem 0.45rem; border-radius: 100px; margin-left: 0.4rem; }
.badge.v { background: rgba(34,120,60,0.14); color: #226b2f; }
.badge.s { background: rgba(163,36,26,0.14); color: var(--red); }
.mi__desc { font-size: 0.86rem; color: var(--ink-soft); }
.mi__dots { flex: 1; border-bottom: 1px dotted rgba(122,25,19,0.3); align-self: center; min-width: 12px; }
.mi__price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--copper); white-space: nowrap; }

.legal { padding: clamp(3rem, 6vw, 5rem) 0 5rem; }
.legal .container { max-width: 820px; }
.legal h2 { color: var(--maroon); font-size: 1.7rem; margin: 2.2rem 0 0.8rem; }
.legal h3 { color: var(--ink); font-size: 1.2rem; margin: 1.6rem 0 0.6rem; font-family: var(--font-accent); }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.9rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { color: var(--maroon); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about__grid, .info__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: 1.5rem; left: 1.5rem;
    background: var(--parchment); padding: 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow-md);
    gap: 1.1rem; margin-top: 0.6rem;
  }
  .nav__links.open a { color: var(--ink); }
  .about__badge { width: 88px; height: 88px; top: -1rem; left: -1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
  .menu-items { grid-template-columns: 1fr; }
}
