/* ====================================================================
   HINDUSTANI — Bombay Editorial · 2026
   Saffron / Marfil / Granate / Devanagari decorativo / Arches jali
   ==================================================================== */

:root {
  /* surface */
  --bg:           #f5e8d3;       /* marfil cálido (papel viejo) */
  --bg-2:         #ecdcbf;       /* paper warmer */
  --bg-deep:      #2a0f0a;       /* granate profundo (Bombay night) */
  --bg-deep-2:    #3d1812;       /* warm dark */

  /* ink */
  --ink:          #1a0a06;       /* tinta granate-marrón */
  --ink-soft:     #4d2a1f;
  --muted:        #8b6f5a;
  --rule:         rgba(26, 10, 6, 0.16);
  --rule-light:   rgba(26, 10, 6, 0.08);

  /* accents */
  --saffron:      #d4753c;       /* azafrán / kesari */
  --saffron-deep: #b15a26;
  --vermilion:    #c0392b;       /* sindoor / bermellón */
  --gold:         #c8a25b;       /* dorado patinado */
  --peacock:      #1c5959;       /* peacock teal — hover/CTA secundario */
  --cream-on-dark:#f0deb8;

  --shadow-sm: 0 2px 10px rgba(42, 15, 10, .08);
  --shadow-lg: 0 30px 60px -20px rgba(42, 15, 10, .35);

  /* type */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --display: "Tenor Sans", "Cormorant Garamond", Georgia, serif;
  --sans:  "Albert Sans", "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* clip prevents horizontal scroll without breaking position:sticky */
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;

  /* subtle paper texture using CSS gradients */
  background-image:
    radial-gradient(at 20% 10%, rgba(212, 117, 60, 0.06) 0%, transparent 50%),
    radial-gradient(at 80% 90%, rgba(192, 57, 43, 0.04) 0%, transparent 50%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- typography ---------------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin: 0 0 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .4;
}
.eyebrow.eyebrow--solo::before,
.eyebrow.eyebrow--solo::after { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
}
.display span { display: block; }
.display__accent {
  font-style: italic;
  color: var(--saffron-deep);
  font-weight: 300;
  position: relative;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.h2 em {
  font-style: italic;
  color: var(--saffron-deep);
  font-weight: 400;
}

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 36px;
  line-height: 1.55;
}
.muted { color: var(--muted); }

/* devanagari decorative element */
.devanagari-deco {
  font-family: serif;
  font-weight: 400;
  color: var(--saffron);
  opacity: .15;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* ornamental divider — jali arch motif */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--saffron);
  margin: 24px 0;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: currentColor;
  opacity: .4;
}
.ornament-mark {
  font-size: 16px;
  letter-spacing: 8px;
}

/* ---- buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--saffron-deep);
  border-color: var(--saffron-deep);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saffron-deep);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { gap: 14px; color: var(--vermilion); }

/* ---- top nav ------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 232, 211, .94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav__logo {
  display: block;
  width: auto;
  height: 44px;
  max-height: 44px;
  object-fit: contain;
}
@media (max-width: 720px) {
  .nav__logo { height: 38px; max-height: 38px; }
}
@media (max-width: 380px) {
  .nav__logo { height: 34px; max-height: 34px; }
}
.nav__brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--saffron);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  position: relative;
  border: 1px solid var(--saffron);
}
.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--saffron-deep);
  letter-spacing: -0.02em;
}
.brand-word {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: var(--ink);
  font-style: italic;
}
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--saffron-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after { transform: scaleX(1); }
.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__cta {
  background: var(--vermilion);
  color: var(--bg);
  padding: 11px 22px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.nav__cta:hover { background: var(--saffron-deep); transform: translateY(-1px); }
.nav__cta--icon {
  padding: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__cta--icon svg { width: 18px; height: 18px; display: block; }

/* hamburger toggle (mobile only) ------------------------------------ */
.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--ink-soft);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, border-color .2s ease;
}
.nav__toggle:hover { border-color: var(--ink); }
.nav__toggle svg { width: 20px; height: 20px; display: block; }
.nav__toggle .nav__toggle-close { display: none; }
body.nav-open .nav__toggle .nav__toggle-open { display: none; }
body.nav-open .nav__toggle .nav__toggle-close { display: block; }

/* language picker --------------------------------------------------- */
.lang-pick {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.lang-pick a {
  position: relative;
  color: var(--muted);
  padding: 6px 8px;
  transition: color .2s ease;
  text-transform: uppercase;
}
.lang-pick a + a::before {
  content: "·";
  margin-right: 8px;
  color: var(--rule);
}
.lang-pick a:hover { color: var(--ink); }
.lang-pick a.is-active {
  color: var(--saffron-deep);
}
.lang-pick a.is-active::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 0;
  height: 1px;
  background: var(--saffron-deep);
}
@media (max-width: 720px) {
  .lang-pick { font-size: 10px; }
  .lang-pick a { padding: 4px 4px; letter-spacing: 0.1em; }
  .lang-pick a + a::before { margin-right: 4px; }
}
/* Tight mobile nav layout — fits lang-pick + cta + brand on a 360px screen */
@media (max-width: 720px) {
  .nav__inner {
    padding: 14px 18px;
    gap: 10px;
    grid-template-columns: auto 1fr auto;
  }
  .nav__brand { gap: 8px; }
  .nav__brand-mark { width: 30px; height: 30px; font-size: 18px; }
  .brand-word { font-size: 17px; }
  .nav__right { gap: 10px; }
  .nav__cta {
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .nav__cta--icon { padding: 0; width: 34px; height: 34px; }
  .nav__cta--icon svg { width: 16px; height: 16px;
  }
}
/* Even tighter on very small phones (<= 380px) */
@media (max-width: 380px) {
  .nav__inner { padding: 12px 14px; gap: 6px; }
  .brand-word { font-size: 15px; }
  .nav__brand-mark { width: 26px; height: 26px; font-size: 16px; }
  /* Hide the inline CTA on narrow phones — the hamburger drawer holds it instead */
  .nav__right > .nav__cta:not(.nav__cta--icon) { display: none; }
  .nav__cta--icon { padding: 0; width: 30px; height: 30px; }
  .nav__cta--icon svg { width: 14px; height: 14px; }
  .lang-pick { font-size: 9px; }
  .lang-pick a { padding: 3px 3px; }
}

/* ---- HERO ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  background: var(--bg-deep);
  overflow: hidden;
}
.hero__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.1) contrast(1.05) brightness(.92);
  mix-blend-mode: normal;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, transparent 30%, rgba(42, 15, 10, .35) 90%),
    linear-gradient(180deg, rgba(42, 15, 10, .15) 0%, rgba(42, 15, 10, .35) 100%);
}
.hero__media::after {
  content: "हिन्दुस्तानी";
  position: absolute;
  bottom: 8%;
  left: 6%;
  font-family: serif;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--cream-on-dark);
  opacity: .14;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.hero__content {
  padding: clamp(40px, 6vw, 96px) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  position: relative;
  background-image:
    radial-gradient(at 100% 0%, rgba(212, 117, 60, .12) 0%, transparent 50%),
    radial-gradient(at 0% 100%, rgba(192, 57, 43, .08) 0%, transparent 50%);
}
.hero__content::before {
  content: "";
  position: absolute;
  top: 0; left: -1px; bottom: 0;
  width: 1px;
  background: var(--rule);
}
/* Decorative arch SVG behind hero text */
.hero__arch {
  position: absolute;
  top: 8%;
  right: -60px;
  width: 280px;
  height: auto;
  opacity: .08;
  pointer-events: none;
  color: var(--saffron-deep);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__order-hint {
  margin: 0 0 40px;
  font-size: 14px;
}
.link-arrow--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #128c4a;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.link-arrow--wa:hover { border-bottom-color: #128c4a; }
.link-arrow--wa svg { flex: 0 0 auto; }

/* ---- ORDER STRIP (between hero and marquee) ----------------------- */
.order-strip {
  background: linear-gradient(90deg, #128c4a 0%, #1aa85a 100%);
  color: #fff;
  border-block: 1px solid rgba(0,0,0,.15);
}
.order-strip__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
  padding: 18px var(--pad-x, 24px);
  color: inherit;
  text-decoration: none;
}
.order-strip__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.order-strip__copy strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.order-strip__copy em {
  display: block;
  font-style: normal;
  font-size: 13px;
  opacity: .88;
  margin-top: 2px;
  line-height: 1.4;
}
.order-strip__arrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  transition: background-color .2s ease, border-color .2s ease;
}
.order-strip__link:hover .order-strip__arrow {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.85);
}
@media (max-width: 640px) {
  .order-strip__link {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px var(--pad-x, 20px);
  }
  .order-strip__arrow {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }
  .order-strip__copy em { font-size: 12px; }
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
}
.hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.hero__meta span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
}

/* ---- MARQUEE ------------------------------------------------------- */
.marquee {
  background: var(--bg-deep);
  color: var(--cream-on-dark);
  overflow: hidden;
  border-block: 1px solid var(--saffron-deep);
  padding: 28px 0;
  position: relative;
}
.marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212, 117, 60, .03) 0 2px, transparent 2px 20px);
  pointer-events: none;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 52px);
  font-style: italic;
  font-weight: 300;
  animation: marquee 42s linear infinite;
  letter-spacing: -0.01em;
}
.marquee__track span:nth-child(odd) { color: var(--saffron); }
.marquee__track span:nth-child(even) { color: var(--cream-on-dark); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- STORY --------------------------------------------------------- */
.story {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  background: var(--bg);
  position: relative;
}
.story::before {
  content: "ॐ";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: serif;
  font-size: 60px;
  color: var(--saffron);
  opacity: .25;
}
.story__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story__copy p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 18px;
  max-width: 50ch;
  line-height: 1.65;
}
.story__photo {
  margin: 0;
  position: relative;
}
.story__photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  filter: contrast(1.05) saturate(.95);
}
.story__photo::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px;
  right: 32px; bottom: 32px;
  border: 1px solid var(--saffron);
  z-index: -1;
  pointer-events: none;
}
.story__photo figcaption {
  position: absolute;
  bottom: -28px;
  right: 24px;
  background: var(--ink);
  color: var(--saffron);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--saffron);
  font-weight: 500;
}

/* ---- STORY · text-only variant ------------------------------------- */
.story--text {
  text-align: center;
  padding: clamp(96px, 13vw, 160px) var(--pad-x);
}
.story--text::before {
  /* Om symbol stays centered */
  top: 70px;
}
.story__text {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.story__text .eyebrow {
  justify-content: center;
}
.h2--big {
  font-size: clamp(40px, 6.5vw, 88px);
  margin-bottom: 48px;
}
.story__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: left;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.story__cols p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
  font-family: var(--serif);
  font-weight: 400;
}
@media (max-width: 720px) {
  .story__cols {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ---- SECTION HEAD -------------------------------------------------- */
.section-head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head__sub {
  color: var(--muted);
  margin: 16px auto 0;
  font-size: 16px;
  font-style: italic;
  font-family: var(--serif);
  font-size: 19px;
}

/* ---- SIGNATURES (DARK SECTION) ------------------------------------- */
.signatures {
  background: var(--bg-deep);
  color: var(--cream-on-dark);
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.signatures::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--saffron) 20%,
    var(--saffron) 80%,
    transparent);
  opacity: .5;
}
.signatures::after {
  content: "हिन्दुस्तानी";
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-family: serif;
  font-size: clamp(120px, 18vw, 260px);
  color: var(--saffron);
  opacity: .04;
  font-weight: 300;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.signatures .eyebrow { color: var(--saffron); }
.signatures .h2 { color: var(--cream-on-dark); }
.signatures .h2 em { color: var(--saffron); }
.signatures .section-head__sub { color: rgba(240, 222, 184, .65); }

.dishes {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.dish {
  grid-column: span 3;
  background: var(--bg-deep-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 117, 60, .15);
  transition: transform .35s ease, border-color .35s ease;
  position: relative;
}
.dish::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  right: 12px; bottom: 12px;
  border: 1px solid rgba(212, 117, 60, 0);
  pointer-events: none;
  transition: border-color .35s ease;
}
.dish:hover { transform: translateY(-6px); border-color: rgba(212, 117, 60, .4); }
.dish:hover::before { border-color: rgba(212, 117, 60, .25); }
.dish--lg { grid-column: span 6; flex-direction: row; align-items: stretch; }

.dish__photo {
  overflow: hidden;
  background: #000;
}
.dish__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  transition: transform .8s ease;
  filter: saturate(1.1) contrast(1.05);
}
.dish--lg .dish__photo {
  flex: 0 0 55%;
}
.dish--lg .dish__photo img {
  height: 100%;
  aspect-ratio: auto;
}
.dish:hover .dish__photo img { transform: scale(1.06); }

.dish__body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.dish--lg .dish__body { padding: 56px 64px; justify-content: center; }
.dish__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.dish__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--cream-on-dark);
}
.dot {
  color: var(--saffron);
  font-size: 22px;
  opacity: .6;
}
.price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--saffron);
  font-size: 20px;
  font-weight: 300;
}
.dish__body p {
  color: rgba(240, 222, 184, .68);
  font-size: 15px;
  margin: 0;
  max-width: 48ch;
  line-height: 1.6;
}
.tag {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid rgba(212, 117, 60, .35);
  padding: 6px 14px;
  align-self: flex-start;
  font-weight: 600;
}

.signatures__cta {
  max-width: var(--maxw);
  margin: 80px auto 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.signatures .btn--primary {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--saffron);
}
.signatures .btn--primary:hover {
  background: var(--cream-on-dark);
  border-color: var(--cream-on-dark);
}
.signatures .btn--ghost {
  color: var(--cream-on-dark);
  border-color: rgba(240, 222, 184, .4);
}
.signatures .btn--ghost:hover {
  background: var(--cream-on-dark);
  color: var(--ink);
  border-color: var(--cream-on-dark);
}

/* ---- BIG MENU CTA -------------------------------------------------- */
.cta-menu {
  background: var(--bg-deep);
  color: var(--cream-on-dark);
  padding: clamp(96px, 13vw, 180px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-menu::before {
  content: "हिन्दुस्तानी";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: serif;
  font-size: clamp(160px, 22vw, 380px);
  color: var(--saffron);
  opacity: .05;
  pointer-events: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
  font-weight: 300;
}
.cta-menu::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--saffron);
  opacity: .5;
}
.cta-menu__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-menu .eyebrow {
  color: var(--saffron);
  justify-content: center;
}
.display--cta {
  font-size: clamp(48px, 8vw, 110px);
  color: var(--cream-on-dark);
  margin-bottom: 28px;
}
.display--cta .display__accent {
  color: var(--saffron);
}
.cta-menu__lede {
  margin: 0 auto 44px;
  color: rgba(240, 222, 184, .75);
  max-width: 56ch;
}
.cta-menu__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-menu__actions .btn--primary {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--saffron);
}
.cta-menu__actions .btn--primary:hover {
  background: var(--cream-on-dark);
  border-color: var(--cream-on-dark);
}
.cta-menu__actions .btn--ghost {
  color: var(--cream-on-dark);
  border-color: rgba(240, 222, 184, .4);
}
.cta-menu__actions .btn--ghost:hover {
  background: var(--cream-on-dark);
  color: var(--ink);
  border-color: var(--cream-on-dark);
}

/* ---- PULL QUOTE ---------------------------------------------------- */
.pull {
  background: var(--bg-2);
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  text-align: center;
  position: relative;
}
.pull::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--saffron) 50%,
    transparent);
  opacity: .5;
}
.pull blockquote {
  margin: 0 auto;
  max-width: 920px;
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 140px;
  line-height: 0.5;
  color: var(--saffron);
  display: block;
  margin-bottom: 32px;
  font-weight: 300;
}
.pull p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  color: var(--ink);
}
.pull cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
}

/* ---- VISIT --------------------------------------------------------- */
.visit {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  background: var(--bg);
}
.visit__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.visit__map {
  border-radius: 0;
  overflow: hidden;
  min-height: 540px;
  background: var(--bg-2);
  filter: saturate(.6) contrast(1.05) sepia(.1);
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--rule);
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  display: block;
}
.visit__info { padding: 16px 0; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin: 32px 0 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.info-block h4 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
}
.info-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.info-block a:hover { color: var(--saffron-deep); }
.visit__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- SOCIAL BLOCKS ------------------------------------------------- */
.visit__social {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.visit__social .eyebrow {
  margin-bottom: 16px;
  color: var(--saffron-deep);
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-icons__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-icons__link svg { color: var(--saffron-deep); transition: color .2s ease; }
.social-icons__link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}
.social-icons__link:hover svg { color: var(--saffron); }

.foot__social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.foot__social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 117, 60, .12);
  color: var(--saffron);
  border: 1px solid rgba(212, 117, 60, .25);
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.foot__social a:hover {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--saffron);
  transform: translateY(-2px);
}

/* ---- FOOTER -------------------------------------------------------- */
.foot {
  background: var(--bg-deep);
  color: var(--cream-on-dark);
  padding: 80px var(--pad-x) 36px;
  position: relative;
}
.foot::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--saffron);
  opacity: .6;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot__brand p { margin: 0; }
.foot__logo {
  display: block;
  width: auto;
  height: 88px;
  max-height: 88px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 12px;
}
@media (max-width: 720px) {
  .foot__logo { height: 72px; max-height: 72px; }
}
.brand-word--big {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--cream-on-dark);
  margin-bottom: 4px !important;
}
.brand-word--big::after {
  content: " ✦";
  color: var(--saffron);
  font-style: normal;
}
.foot .muted { color: rgba(240, 222, 184, .45); font-size: 13px; }
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.foot__nav a {
  color: rgba(240, 222, 184, .7);
  transition: color .2s ease;
}
.foot__nav a:hover { color: var(--saffron); }
.foot__legal {
  text-align: right;
  font-size: 12px;
  color: rgba(240, 222, 184, .45);
  letter-spacing: 0.04em;
}
.foot__legal p { margin: 0 0 4px; }
.foot__legal a { color: var(--saffron); }

/* ---- RESPONSIVE ---------------------------------------------------- */
@media (max-width: 960px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 84vw);
    height: 100vh;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    box-shadow: -10px 0 40px rgba(0,0,0,.18);
    padding: 88px 32px 32px;
    font-size: 16px;
    letter-spacing: 0.12em;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 60;
    overflow-y: auto;
  }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  body.nav-open .nav__links { transform: translateX(0); }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(20,15,10,.35);
    z-index: 50;
  }
  body.nav-open { overflow: hidden; }
  .nav { z-index: 70; position: relative; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__media { aspect-ratio: 4/3; }
  .hero__content::before { display: none; }
  .hero__arch { display: none; }
  .story__grid,
  .visit__grid {
    grid-template-columns: 1fr;
  }
  .story__photo { order: -1; }
  .story__photo img { aspect-ratio: 16 / 11; }
  .story__photo::before { display: none; }
  .dishes { grid-template-columns: 1fr 1fr; gap: 24px; }
  .dish, .dish--lg { grid-column: span 1; flex-direction: column; }
  .dish--lg .dish__photo { flex: none; }
  .dish--lg .dish__photo img { aspect-ratio: 4/3; }
  .dish--lg .dish__body { padding: 32px 36px 36px; }
  .visit__map { min-height: 380px; }
  .visit__map iframe { min-height: 380px; }
  .foot__inner { grid-template-columns: 1fr; }
  .foot__legal { text-align: left; }
}
@media (max-width: 560px) {
  .dishes { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr; }
  .hero__content { padding-top: 56px; padding-bottom: 64px; }
  .display { font-size: clamp(40px, 11vw, 72px); }
}
