/* ====================================================================
   SABOR DE LA INDIA — Casa de Especias · 2026 (Tacoronte, Tenerife Norte)
   Crema cálida / Rojo de marca / Terracota / Azafrán / mesón rústico
   Skin B22G distinto del hermano Hindustani (rojo-forward + Fraunces).
   ==================================================================== */

:root {
  /* surface */
  --bg:           #fbf6ee;       /* crema cálida marfil */
  --bg-2:         #f4ead9;       /* crema más cálida */
  --bg-deep:      #2a140c;       /* marrón especia profundo (footer / dark) */
  --bg-deep-2:    #3a1d12;       /* warm dark */

  /* ink */
  --ink:          #241611;       /* tinta marrón carbón */
  --ink-soft:     #5a3a2c;
  --muted:        #8a7261;
  --rule:         rgba(36, 22, 17, 0.16);
  --rule-light:   rgba(36, 22, 17, 0.08);

  /* accents — rojo de marca al frente */
  --saffron:      #e0a83b;       /* azafrán (deco cálida) */
  --saffron-deep: #c21e1e;       /* ROJO DE MARCA — acento primario */
  --vermilion:    #d62828;       /* rojo de marca (logo) */
  --gold:         #c9922e;        /* dorado especia */
  --peacock:      #1f5c4d;       /* verde canario profundo — hover/CTA sec. */
  --terracotta:   #c2571a;       /* terracota (finca rústica) */
  --cream-on-dark:#f3e3c4;

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

  /* type — Fraunces cálida (distinta de la Cormorant de Hindustani) */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --display: "Fraunces", "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;

  /* festive spice-bloom texture (azafrán · rojo · verde · terracota) */
  background-image:
    radial-gradient(at 14% 8%,  rgba(224, 168, 59, 0.16) 0%, transparent 45%),
    radial-gradient(at 86% 10%, rgba(214, 40, 40, 0.09) 0%, transparent 42%),
    radial-gradient(at 80% 86%, rgba(31, 92, 77, 0.09) 0%, transparent 46%),
    radial-gradient(at 22% 92%, rgba(194, 87, 26, 0.10) 0%, transparent 46%);
  background-attachment: fixed;
}
/* subtle jaali lattice over the whole page (festive Indian pattern) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("img/pattern-jaali.svg");
  background-size: 150px 150px;
  opacity: 0.08;
  pointer-events: none;
}
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(251, 246, 238, .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;
}
/* text wordmark (Sabor's logo is a tall stacked lockup — nav uses type) */
.nav__wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.32em;
  white-space: nowrap;
}
.nav__wordmark em {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.42em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vermilion);
  transform: translateY(-0.15em);
}
@media (max-width: 380px) {
  .nav__wordmark { font-size: 18px; }
}
@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); }
}

/* ---- Gallery / El local (fotos reales del restaurante) ---- */
.gallery{ max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,8vw,110px) var(--pad-x); }
.gallery__head{ margin: 0 0 38px; max-width: 46ch; }
.gallery__grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 900px){ .gallery__grid{ grid-template-columns: repeat(4, 1fr); } }
.gallery__item{ position: relative; margin: 0; overflow: hidden; border-radius: 8px; aspect-ratio: 3 / 4; box-shadow: var(--shadow-sm); }
.gallery__item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img{ transform: scale(1.05); }
.gallery__item figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 14px 12px; font-family: var(--sans);
  font-size: 11.5px; letter-spacing: .04em; color: #fbf6ee;
  background: linear-gradient(transparent, rgba(26,10,6,.80));
}

/* ---- Placeholder gallery tiles (fotos nuevas del local/equipo pendientes) ---- */
.gallery__item--ph{ background:#f4ead9; box-shadow:none; border:1.5px dashed rgba(194,87,26,.45); }
.gallery__item--ph img{ object-fit:contain; }
.gallery__item--ph:hover img{ transform:none; }
.gallery__item--ph figcaption{ display:none; }

/* ---- Festive jaali accent on the dark menu-CTA band ---- */
.cta-menu{ position:relative; overflow:hidden; }
.cta-menu::before{
  content:""; position:absolute; inset:0;
  background-image:url("img/pattern-jaali.svg");
  background-size:150px 150px; opacity:.10; pointer-events:none;
}
.cta-menu__inner{ position:relative; z-index:1; }

/* ==========================================================================
   MESON CALIDO — rediseño de formato (Bitter + Nunito Sans, tarjetas, zigzag)
   Apéndice que sobrescribe el look editorial de la plantilla base (no-Hindustani)
   ========================================================================== */
:root{
  --serif:   "Bitter", Georgia, serif;
  --display: "Bitter", Georgia, serif;
  --sans:    "Nunito Sans", system-ui, -apple-system, sans-serif;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-xl: 42px;
  --pill: 999px;
  --shadow-soft: 0 22px 48px -24px rgba(90,45,25,.50);
  --shadow-card: 0 12px 30px -16px rgba(90,45,25,.32);
}
body{ font-family: var(--sans); }

/* tipografía cálida (Bitter serif redondeada) */
.display, .h2{ font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; }
.display{ line-height: 1.05; }
.display__accent, .h2 em{ font-style: italic; font-weight: 700; }
.h2{ line-height: 1.1; }
.lede{ font-family: var(--sans); }
.eyebrow{ letter-spacing: .14em; font-weight: 800; font-size: 12px; color: var(--terracotta); }
.eyebrow::before, .eyebrow::after{ opacity: .5; }

/* botones tipo pastilla, cálidos, sin mayúsculas gritonas */
.btn{ border-radius: var(--pill); text-transform: none; letter-spacing: .005em; font-weight: 800; font-size: 15px; padding: 14px 30px; }
.btn--primary{ background: var(--vermilion); border-color: var(--vermilion); color:#fff; }
.btn--primary:hover{ background: var(--saffron-deep); border-color: var(--saffron-deep); transform: translateY(-2px); }
.btn--ghost{ border-width: 2px; }
.nav__cta{ border-radius: var(--pill); text-transform: none; font-weight: 800; letter-spacing: 0; }
.link-arrow{ text-transform: none; letter-spacing: .01em; font-weight: 800; border-bottom-width: 2px; }
.nav__links a, .foot__nav a{ text-transform: none; letter-spacing: 0; font-weight: 700; font-size: 15px; }
.nav__wordmark em{ font-family: var(--sans); }

/* nav más suave */
.nav{ background: rgba(251,246,238,.92); border-bottom: 1px solid var(--rule-light); }

/* HERO: foto enmarcada y redondeada (no a sangre, no oscuro editorial) */
.hero{ background: var(--bg); min-height: auto; padding: clamp(16px,2.4vw,30px); gap: clamp(16px,2.4vw,30px); align-items: stretch; }
.hero__media{ border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); min-height: 62vh; }
.hero__media img{ filter: saturate(1.05) contrast(1.02); }
.hero__veil{ display: none; }
.hero__content{ background: transparent; background-image: none; padding: clamp(24px,4vw,60px); }
.hero__content::before{ display: none; }
.hero__arch{ display: none; }

/* HISTORIA: foto + texto (zigzag cálido) */
.story::before{ content: ""; }                 /* fuera el símbolo Om */
.story--feature{ padding: clamp(56px,8vw,110px) var(--pad-x); }
.story--feature .story__grid{ grid-template-columns: 1fr 1.05fr; align-items: center; gap: clamp(36px,6vw,84px); }
.story__photo{ margin: 0; position: relative; }
.story__photo img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.story__photo::before{ content:""; position:absolute; top:-14px; left:-14px; right:24px; bottom:24px; border: 2px solid var(--saffron); border-radius: var(--radius-lg); z-index:-1; }
.story__copy .h2{ margin: 6px 0 20px; }
.story__copy p{ color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin: 0 0 16px; max-width: 48ch; }

/* imágenes y tarjetas redondeadas por toda la web */
.gallery__item{ border-radius: var(--radius-lg); }
.menu-section__hero{ border-radius: var(--radius-lg); overflow: hidden; }
.visit__map, .visit__map iframe{ border-radius: var(--radius-lg); }

/* CTA carta: panel flotante redondeado (no banda a sangre) */
.cta-menu{ margin: clamp(40px,6vw,80px) var(--pad-x); border-radius: var(--radius-xl); overflow: hidden; }

/* footer con esquinas superiores suaves */
.foot{ border-radius: var(--radius-xl) var(--radius-xl) 0 0; }

/* carta: encabezado de categoría y filtro con aire cálido */
.dish-row{ border-radius: var(--radius); }

/* ---- Cart icon in the top nav (right side) — replaces floating FAB ---- */
.nav__cart{
  position: relative;
  width: 42px; height: 42px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--pill, 999px);
  border: 1.5px solid var(--rule);
  background: transparent; color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.nav__cart:hover{ background: var(--vermilion); border-color: var(--vermilion); color:#fff; transform: translateY(-1px); }
.nav__cart svg{ width: 21px; height: 21px; }
.nav__cart.is-active{ border-color: var(--vermilion); color: var(--vermilion); }
.nav__cart-count{
  position: absolute; top: -5px; right: -5px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--vermilion); color:#fff;
  font-family: var(--sans); font-size: 11px; font-weight: 800; line-height: 1;
}
.nav__cart-count.is-zero{ display: none; }

/* the cart now lives in the nav — hide the floating FAB */
.cart-fab{ display: none !important; }


/* ---- Floating WhatsApp button (bottom-right) ---- */
.wa-float{
  position: fixed; bottom: 24px; right: 24px; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover{ transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 30px -6px rgba(0,0,0,.45); }
@media (max-width: 560px){ .wa-float{ bottom: 18px; right: 18px; width: 52px; height: 52px; } }

/* ---- Cookie consent banner (Consent Mode v2) ---- */
#cookie-banner{
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 720px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px;
  background: var(--bg-deep); color: var(--cream-on-dark);
  padding: 16px 20px; border-radius: var(--radius, 16px);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,.55);
  font-family: var(--sans); font-size: 14px; line-height: 1.5;
}
.cookie-banner__txt{ margin: 0; flex: 1 1 260px; }
.cookie-banner__btns{ display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-banner__btn{
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  padding: 9px 18px; border-radius: var(--pill, 999px); cursor: pointer;
  border: 1.5px solid transparent; transition: opacity .2s ease, transform .2s ease;
}
.cookie-banner__btn--ok{ background: var(--vermilion); color:#fff; border-color: var(--vermilion); }
.cookie-banner__btn--no{ background: transparent; color: var(--cream-on-dark); border-color: rgba(243,227,196,.4); }
.cookie-banner__btn:hover{ transform: translateY(-1px); }
@media (max-width: 480px){ #cookie-banner{ left:10px; right:10px; bottom:10px; padding:14px; } }
