/* Indian Crown — redesign 2026-05
   Stack: HTML/CSS/JS vanilla. B22G estática.
   Paleta: carbón #0d0d0d · dorado corona #d4a93c · rojo corona #b91c1c · marfil #f9f6ef
*/

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #f9f6ef;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: .75; }

:root {
  --gold: #d4a93c;
  --gold-2: #b48a26;
  --red: #b91c1c;
  --carbon: #0d0d0d;
  --carbon-2: #1a1a1a;
  --ivory: #f9f6ef;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(13,13,13,.1);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 16px 0;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--carbon);
}
.section-lead {
  max-width: 720px;
  font-size: 1.1rem;
  margin: 0 0 56px;
  color: #444;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 38px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: #f9f6ef;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .04em;
}
.nav__cta {
  background: var(--gold);
  color: var(--carbon) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500 !important;
}
.nav__cta:hover { background: #e9bd47; opacity: 1; }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #f9f6ef;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.open .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.lang {
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: #f9f6ef;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.lang__active { color: var(--gold); font-weight: 600; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('img/tandoori.jpg') center/cover no-repeat;
  filter: brightness(.5) saturate(1.1);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(13,13,13,.55) 0%,
    rgba(13,13,13,.3) 35%,
    rgba(13,13,13,.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
  font-weight: 500;
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: .95;
  margin: 0 0 32px;
  letter-spacing: -.01em;
}
.hero__title-line1, .hero__title-line2 {
  display: block;
}
.hero__title-line2 {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero__tagline {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  margin: 0 0 40px;
  font-weight: 300;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  text-align: center;
}
.btn--gold {
  background: var(--gold);
  color: var(--carbon);
}
.btn--gold:hover {
  background: #e9bd47;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,169,60,.35);
  opacity: 1;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  opacity: 1;
}
.btn--full { width: 100%; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 999px;
  display: block;
}
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  margin: 8px auto 0;
  animation: scrolldown 2s ease infinite;
}
@keyframes scrolldown {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* DISHES */
.dishes { padding: 120px 0; background: var(--ivory); }
.dishes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.dish {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line-dark);
  transition: transform .35s ease, box-shadow .35s ease;
}
.dish:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -16px rgba(13,13,13,.25);
}
.dish img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.dish__body {
  padding: 24px 24px 32px;
}
.dish__body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--carbon);
}
.dish__body p {
  margin: 0;
  color: #555;
  font-size: .95rem;
}
.dish--big {
  grid-column: span 2;
  grid-row: span 2;
}
.dish--big img { aspect-ratio: 16/10; }
.dish--big .dish__body h3 { font-size: 2rem; }
.dish--big .dish__body p { font-size: 1.1rem; }

/* STORY */
.story {
  padding: 120px 0;
  background: var(--carbon);
  color: var(--ivory);
}
.story .section-title { color: var(--ivory); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__img img {
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.story__body p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 0 0 18px; }
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.story__stats > div { display: flex; flex-direction: column; gap: 4px; }
.story__stats strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
}
.story__stats span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* MENU */
.menu { padding: 120px 0; background: var(--ivory); }
.menu__flyer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.menu__card {
  display: block;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line-dark);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.menu__card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -16px rgba(13,13,13,.2); opacity: 1; }
.menu__card img { aspect-ratio: 4/3; object-fit: cover; }
.menu__card span {
  display: block;
  padding: 20px 24px;
  font-size: .95rem;
  color: #555;
  letter-spacing: .02em;
}
.menu__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--line-dark);
}
.menu__highlights h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--carbon);
}
.menu__highlights p {
  margin: 0;
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
}

/* RESERVE */
.reserve {
  padding: 120px 0;
  background: var(--carbon-2);
  color: var(--ivory);
}
.reserve .section-title { color: var(--ivory); }
.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reserve__intro p { color: rgba(255,255,255,.75); margin: 0 0 24px; font-size: 1.05rem; }
.reserve__phone {
  font-size: 1.25rem !important;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold) !important;
}
.reserve__phone a { color: var(--gold); margin-left: 12px; font-weight: 700; }
.reserve__hours { list-style: none; padding: 0; margin: 32px 0 0; }
.reserve__hours li { padding: 8px 0; color: rgba(255,255,255,.85); }
.reserve__hours strong { color: var(--gold); margin-right: 12px; }

.reserve__form {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reserve__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reserve__form label span {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.reserve__form input,
.reserve__form select,
.reserve__form textarea {
  background: rgba(13,13,13,.5);
  border: 1px solid var(--line);
  color: #f9f6ef;
  padding: 14px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s ease;
}
.reserve__form input:focus,
.reserve__form select:focus,
.reserve__form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form__small {
  font-size: .85rem !important;
  color: rgba(255,255,255,.5) !important;
  margin: 0 !important;
  text-align: center;
}

/* FIND */
.find { padding: 120px 0; background: var(--ivory); }
.find__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
}
.find__address {
  font-size: 1.15rem;
  font-family: 'Playfair Display', Georgia, serif;
  margin: 24px 0;
  color: var(--carbon);
  line-height: 1.5;
}
.find__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.find__list li {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.find__list strong {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}
.find__list a { color: var(--carbon); font-weight: 500; }
.find .btn--ghost,
.dish-page .btn--ghost,
.menu-page .btn--ghost,
.dishes .btn--ghost,
.contacto .btn--ghost,
.reservas .btn--ghost {
  color: var(--carbon);
  border-color: var(--carbon);
}
.find .btn--ghost:hover,
.dish-page .btn--ghost:hover,
.menu-page .btn--ghost:hover,
.dishes .btn--ghost:hover,
.contacto .btn--ghost:hover,
.reservas .btn--ghost:hover {
  background: var(--carbon);
  color: var(--ivory);
}
.find__map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  background: #ddd;
}
.find__map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.3);
}

/* FOOTER */
.footer {
  background: var(--carbon);
  color: rgba(255,255,255,.65);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__logo { height: 50px; margin-bottom: 16px; }
.footer__brand p { font-size: .95rem; max-width: 280px; }
.footer__col h5 {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 8px 0 16px;
  font-weight: 500;
}
.footer__col p { margin: 0 0 8px; font-size: .92rem; }
.footer__social { display: flex; flex-direction: column; gap: 8px; }
.footer__social a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.footer__bottom a { color: rgba(255,255,255,.6); }

/* WHATSAPP FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); opacity: 1; }

/* ===== Multipage components ===== */

/* page-head (top section of inner pages) */
.page-head {
  padding: 140px 0 60px;
  background: var(--carbon);
  color: var(--ivory);
  text-align: left;
}
.page-head .eyebrow { color: var(--gold); }
.page-head .eyebrow a { color: var(--gold); }
.page-head__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -.01em;
}
.page-head__title span { display: block; }
.page-head__accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.page-head__lede {
  font-size: 1.15rem;
  max-width: 760px;
  color: rgba(255,255,255,.78);
  margin: 0;
}

/* dishes "more" button at end of home grid */
.dishes__more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* dish link wrappers (clickable cards) */
.dish__link {
  color: inherit;
  display: block;
  transition: opacity .2s ease;
}
.dish__link:hover { opacity: 1; }
.dish__link img,
.dish__link .dish__body { transition: opacity .2s ease; }

/* nav current state */
.nav__links a.is-current { color: var(--gold); }
.nav__links a.is-current::after {
  content: ""; display: block; height: 2px; width: 100%; background: var(--gold);
  margin-top: 2px;
}

/* visit section (compact CTA in home) */
.visit { padding: 100px 0; background: var(--carbon); color: var(--ivory); }
.visit .section-title { color: var(--ivory); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
}
.visit__address {
  font-size: 1.15rem;
  font-family: 'Playfair Display', Georgia, serif;
  margin: 24px 0;
  color: var(--ivory);
  line-height: 1.5;
}
.visit__list { list-style: none; padding: 0; margin: 24px 0 32px; }
.visit__list li {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.visit__list strong {
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px; font-weight: 500;
}
.visit__list a { color: var(--ivory); font-weight: 500; }
.visit__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.visit__map {
  border-radius: 4px; overflow: hidden;
  min-height: 420px; background: #222;
}
.visit__map iframe {
  width: 100%; height: 100%; min-height: 420px;
  border: 0; filter: grayscale(.3);
}

/* quick-channels (reservas page) */
.reservas .container,
.contacto .container { padding: 80px 24px; }

.quick-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 60px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line-dark);
  color: var(--carbon);
  transition: transform .2s ease, box-shadow .2s ease;
}
.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(13,13,13,.25);
  opacity: 1;
}
.quick-card--wa {
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #fff;
  border-color: transparent;
}
.quick-card--phone { background: var(--carbon); color: var(--ivory); border-color: transparent; }
.quick-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.quick-card--phone .quick-card__icon { background: rgba(212,169,60,.15); color: var(--gold); }
.quick-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 4px;
  font-weight: 700;
}
.quick-card p { margin: 0; font-size: .9rem; opacity: .9; }
.quick-card__arrow {
  margin-left: auto;
  font-size: 1.4rem;
  opacity: .7;
}

/* reservas form (multi-page) */
.reservas__form-section {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 48px;
  margin-bottom: 60px;
}
.reservas__form-head { margin-bottom: 32px; }
.reservas__form-head .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.reservas__form-head p { color: #555; margin: 0; }

.reservas-form { display: flex; flex-direction: column; gap: 18px; }
.reservas-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reservas-form .field span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}
.reservas-form input,
.reservas-form select,
.reservas-form textarea {
  background: #faf8f4;
  border: 1px solid #e5e0d4;
  color: var(--carbon);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s ease;
}
.reservas-form input:focus,
.reservas-form select:focus,
.reservas-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.reservas-form input:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}
.field__error {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: .85rem;
  font-weight: 500;
}
.field__error[hidden] { display: none; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form__small {
  font-size: .85rem;
  color: #777;
  margin: 0;
  text-align: center;
}

/* reservas/contacto info cards */
.reservas__info,
.contacto__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 24px;
}
.info-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--carbon);
}
.info-card p { margin: 0 0 10px; font-size: .95rem; color: #555; }
.info-card p:last-child { margin-bottom: 0; }
.info-card a { color: var(--gold-2); font-weight: 500; }
.link-arrow {
  color: var(--gold-2);
  font-weight: 500;
  font-size: .95rem;
}
.muted { color: #888; font-size: .9rem; }

/* contacto page layout */
.contacto__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contacto__info {
  grid-template-columns: 1fr 1fr;
}
.contacto__map {
  border-radius: 6px;
  overflow: hidden;
  min-height: 500px;
  background: #222;
}
.contacto__map iframe {
  width: 100%; height: 100%; min-height: 500px;
  border: 0; filter: grayscale(.2);
}

/* menu-page (multipage menu) */
.menu-page { background: var(--ivory); padding-bottom: 60px; }
.menu-page .container { padding-top: 60px; padding-bottom: 60px; }

.menu__flyer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.menu__card {
  display: block;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line-dark);
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu__card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(13,13,13,.25); opacity: 1; }
.menu__card img { aspect-ratio: 4/3; object-fit: cover; }
.menu__card span {
  display: block;
  padding: 16px 20px;
  font-size: .9rem;
  color: #555;
}

.menu-cats { margin-bottom: 60px; }
.menu-cats .h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 0 0 32px;
  color: var(--carbon);
}
.menu-cat {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.menu-cat h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--carbon);
}
.menu-cat h3 .muted { font-size: .9em; font-weight: 400; }
.menu-cat p { margin: 0 0 8px; color: #444; line-height: 1.7; }
.menu-cat p.muted { color: #777; font-size: .9rem; font-style: italic; }

/* menu CTA block */
.menu-cta {
  background: var(--carbon);
  color: var(--ivory);
  padding: 48px;
  border-radius: 6px;
  text-align: center;
  margin: 40px 0;
}
.menu-cta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--ivory);
  margin: 0 0 8px;
}
.menu-cta p { margin: 0 0 24px; opacity: .8; }

/* dish-page (SEO pages /biryani/, etc) */
.dish-page { padding: 60px 0; background: var(--ivory); }
.dish-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.dish-page__img {
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.dish-page__img img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.dish-page__body p {
  font-size: 1.05rem;
  color: #333;
  margin: 0 0 18px;
  line-height: 1.7;
}
.dish-page__body .h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--carbon);
}
.varieties {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.varieties li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.varieties li strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--carbon);
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

/* ============ TABLET ============ */
@media (max-width: 960px) {
  .dishes__grid { grid-template-columns: 1fr 1fr; }
  .dish--big { grid-column: span 2; }
  .story__grid, .reserve__grid, .find__grid, .visit__grid, .contacto__grid, .dish-page__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .quick-channels { grid-template-columns: 1fr; }
  .reservas__info, .contacto__info { grid-template-columns: 1fr 1fr; }
  .dish-page__img { position: static; }
  .dish-page__img img { aspect-ratio: 16/10; }
}

/* ============ MOBILE ============ */
@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: var(--carbon);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 20px;
    transition: right .3s ease;
    border-left: 1px solid var(--line);
  }
  .nav.open .nav__links { right: 0; }
  .nav__links a { font-size: 18px; }
  .nav__cta { align-self: flex-start; }

  .hero__content { padding: 100px 20px 60px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .dishes, .story, .menu, .reserve, .find { padding: 80px 0; }
  .dishes__grid { grid-template-columns: 1fr; }
  .dish--big { grid-column: span 1; }
  .dish--big img { aspect-ratio: 4/3; }
  .dish--big .dish__body h3 { font-size: 1.4rem; }
  .dish--big .dish__body p { font-size: .95rem; }

  .menu__flyer { grid-template-columns: 1fr; }
  .reservas__info, .contacto__info { grid-template-columns: 1fr; }
  .menu-cta { padding: 32px 20px; }
  .menu-cat { padding: 20px; }
  .form__row, .form__row--3 { grid-template-columns: 1fr; }
  .reservas__form-section { padding: 24px; }
  .page-head { padding: 110px 0 40px; }
  .reserve__form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .story__stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .story__stats strong { font-size: 1.4rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .whatsapp-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
