/* ============================================================
   Curry 'N' Grill House — warm authentic
   Stack: HTML/CSS/JS vanilla. No frameworks.
   ============================================================ */

:root {
  /* Warm palette: cream paper + spice tones */
  --cream:        #FAF6EE;
  --cream-2:      #F0E5D2;
  --cream-3:      #E8D9BD;
  --ink:          #1A1410;
  --ink-2:        #3B2E22;
  --muted:        #6B5A4A;
  --line:         #D9C9AC;

  --saffron:      #D67738;   /* curry orange */
  --saffron-dark: #B05A22;
  --vermillion:   #B8331E;   /* indian red */
  --gold:         #B8923C;
  --green-cardamom:#5C7649;
  --whatsapp:     #25D366;
  --whatsapp-dark:#128C7E;

  --max:          1240px;
  --pad:          clamp(1.25rem, 4vw, 3rem);
  --radius:       4px;
  --radius-lg:    18px;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow-sm:    0 1px 2px rgba(26,20,16,.06), 0 4px 12px rgba(26,20,16,.04);
  --shadow-md:    0 6px 24px rgba(26,20,16,.08), 0 16px 48px rgba(26,20,16,.08);
  --shadow-lg:    0 24px 80px rgba(26,20,16,.18);

  --ease:         cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw + 0.5rem, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============================================================
   Typography
============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin: 0 0 1rem;
}
.eyebrow.light { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2.section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 1.5vw, 1.4rem); font-weight: 500; }

.section-title.light { color: var(--cream); }
.section-lead { font-size: 1.1rem; color: var(--muted); max-width: 56ch; }
.section-lead.light { color: rgba(250,246,238,.78); }

.lead { font-size: 1.1rem; color: var(--ink-2); }

/* ============================================================
   Header
============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,246,238,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(26,20,16,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .9rem; padding-bottom: .9rem;
  gap: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  color: var(--cream);
  transition: color .3s var(--ease);
}
.site-header.scrolled .brand { color: var(--ink); }
.brand-mark { width: 44px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
.site-header.scrolled .brand-mark { filter: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; letter-spacing: .02em; }
.brand-sub { font-family: var(--font-body); font-size: .68rem; letter-spacing: .35em; text-transform: uppercase; opacity: .85; margin-top: 2px; }

.nav { display: flex; align-items: center; }
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2rem; align-items: center;
}
.nav-list a, .nav-list button {
  font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); background: transparent; border: 0;
  padding: .5rem 0; position: relative;
  transition: color .25s var(--ease);
}
.site-header.scrolled .nav-list a, .site-header.scrolled .nav-list button { color: var(--ink); }
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-list a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-lang button {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: .45rem .85rem;
  letter-spacing: .12em;
  display: inline-flex; gap: .35rem; align-items: center;
}
.lang-divider { opacity: .4; }
[data-lang="en"] .lang-en { font-weight: 700; }
[data-lang="en"] .lang-es { opacity: .55; }
[data-lang="es"] .lang-es { font-weight: 700; }
[data-lang="es"] .lang-en { opacity: .55; }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--cream);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 4rem 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav-list a, .nav-list button { color: var(--ink) !important; font-size: 1.5rem; }
  body.nav-open .nav-list { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open .nav-toggle span { background: var(--ink) !important; }
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-size: .92rem; font-weight: 500;
  letter-spacing: .04em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-primary:hover { background: var(--whatsapp-dark); box-shadow: 0 10px 30px rgba(37,211,102,.45); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border-color: rgba(250,246,238,.5);
}
.btn-ghost:hover { background: rgba(250,246,238,.1); border-color: var(--cream); }
.btn-outline {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-full { width: 100%; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5rem);
  padding-top: 8rem;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(184,51,30,.35) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26,20,16,.55) 0%, rgba(26,20,16,.4) 40%, rgba(26,20,16,.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero .eyebrow { color: var(--gold); }
.hero-title {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.hero-title-1 { font-style: italic; font-weight: 300; }
.hero-title-2 { font-weight: 500; }
.hero-sub {
  font-size: clamp(1rem, 1.2vw + .5rem, 1.25rem);
  max-width: 56ch;
  color: rgba(250,246,238,.88);
  margin: 0 0 2rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: .8rem;
  font-size: .9rem; color: rgba(250,246,238,.78);
  margin: 0;
}
.hero-meta a { border-bottom: 1px solid currentColor; }
.hero-meta .dot { opacity: .5; }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: var(--cream); opacity: .65;
  z-index: 2;
  animation: bounce 2.6s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   Sections base
============================================================ */
.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head .eyebrow { display: block; }

/* Two-column generic */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.two-col.reverse .col-image { order: 0; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-image { order: -1; }
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.image-frame.frame-tall { aspect-ratio: 3/4; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }

.section-story { background: var(--cream); }
.section-story .badges {
  list-style: none; padding: 0; margin: 1.8rem 0 0;
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.section-story .badges li {
  font-size: .8rem; letter-spacing: .08em;
  padding: .45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--cream);
}

/* ============================================================
   MENU
============================================================ */
.section-menu { background: var(--cream-2); position: relative; }
.section-menu::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(214,119,56,.05), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(184,51,30,.06), transparent 35%);
  pointer-events: none;
}
.section-menu .container { position: relative; }

/* Filter chips above tabs */
.menu-filters {
  display: flex; flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
  align-items: center;
}
.menu-filters-label {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: .5rem;
}
.filter-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.filter-chip:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.filter-chip[aria-pressed="true"] {
  background: var(--green-cardamom);
  color: #fff;
  border-color: var(--green-cardamom);
}
.filter-chip.f-spicy[aria-pressed="true"] {
  background: var(--vermillion);
  border-color: var(--vermillion);
}
.filter-chip svg { flex-shrink: 0; }
.filter-count {
  margin-left: auto;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

/* Item badges */
.item-badges {
  display: inline-flex;
  gap: .4rem;
  margin-left: .5rem;
  vertical-align: middle;
}
.item-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-body);
  letter-spacing: 0;
  flex-shrink: 0;
}
.item-badge.veg {
  background: var(--green-cardamom);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: 0;
  border: 0;
}
.item-badge.spicy {
  background: var(--vermillion);
  color: #fff;
  border: 0;
  padding: 0;
}
.item-badge.spicy svg {
  width: 12px; height: 12px;
  display: block;
}

.menu-tabs {
  display: flex; flex-wrap: nowrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: .75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { height: 6px; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

.menu-tab {
  flex: 0 0 auto;
  padding: .7rem 1.2rem;
  font-size: .85rem; font-weight: 500;
  letter-spacing: .06em;
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transition: all .25s var(--ease);
}
.menu-tab:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.menu-tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.menu-panel {
  display: none;
  animation: fadeIn .4s var(--ease) both;
}
.menu-panel.is-active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: .25rem 2.5rem;
}

/* Empty state when filters hide everything */
.menu-empty-filter {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-size: .95rem;
  grid-column: 1 / -1;
}

/* Skeleton */
.menu-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: .25rem 2.5rem;
}
.skeleton-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: .75rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line);
}
.skeleton-bar {
  height: 14px;
  background: linear-gradient(90deg, var(--cream-2) 0%, var(--cream-3) 50%, var(--cream-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 4px;
}
.skeleton-bar.short { width: 50%; }
.skeleton-bar.tiny { width: 60px; height: 14px; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: .75rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
  background: transparent;
  border-left: 0; border-right: 0; border-top: 0;
  text-align: left;
  width: 100%;
  transition: padding .25s var(--ease);
}
.menu-item:hover { padding-left: .5rem; }
.menu-item:hover .item-name { color: var(--saffron-dark); }
.menu-item:hover .item-arrow { opacity: 1; transform: translateX(4px); }

.item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
  display: flex; align-items: center; gap: .5rem;
}
.item-arrow {
  display: inline-flex;
  font-size: .9rem;
  opacity: 0;
  color: var(--saffron-dark);
  transition: all .3s var(--ease);
}
.item-desc {
  font-size: .85rem; color: var(--muted);
  margin-top: .2rem;
  font-style: italic;
}
.item-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vermillion);
  white-space: nowrap;
}

.menu-footnote {
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1.2rem; align-items: center;
}
.menu-footnote p { color: var(--muted); font-size: .92rem; max-width: 56ch; margin: 0; }
.menu-footnote-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
@media (max-width: 520px) {
  .menu-footnote-actions { width: 100%; flex-direction: column; }
  .menu-footnote-actions .btn { width: 100%; }
}

/* ============================================================
   CURRY GUIDE
============================================================ */
.section-curry-guide {
  background: var(--cream-2);
  position: relative;
}
.section-curry-guide::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(214,119,56,.06), transparent 35%),
    radial-gradient(circle at 88% 78%, rgba(184,51,30,.07), transparent 38%);
  pointer-events: none;
}
.section-curry-guide .container { position: relative; }

.curry-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.curry-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.4rem;
  display: flex; flex-direction: column; gap: .55rem;
  text-align: left;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.curry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.curry-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
}
.curry-tier {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron-dark);
}
.curry-card[data-heat="3"] .curry-tier { color: var(--saffron-dark); }
.curry-card[data-heat="4"] .curry-tier,
.curry-card[data-heat="5"] .curry-tier { color: var(--vermillion); }
.curry-desc {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}
.curry-heat {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  margin-bottom: .25rem;
}
.curry-heat .chili {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--vermillion);
  font-size: 0;
  color: transparent;
  line-height: 0;
}
.curry-heat .chili.off {
  background: transparent;
  border: 1px solid var(--line);
}
.curry-heat .chili.extra {
  background: #6B0F0F;
  box-shadow: 0 0 0 2px rgba(107,15,15,.2);
}
.curry-card.heat-extreme {
  background: linear-gradient(180deg, #fff 0%, #fdf2ee 100%);
  border-color: var(--vermillion);
}

.curry-note {
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
  max-width: 56ch;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

@media (max-width: 980px) {
  .curry-scale { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .curry-scale { grid-template-columns: 1fr; }
}

/* ============================================================
   PLACE
============================================================ */
.section-place { background: var(--cream); }
.place-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.place-stats > div {
  display: flex; flex-direction: column; gap: .25rem;
}
.place-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--vermillion);
  line-height: 1;
}
.place-stats span {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TRADITION (dark)
============================================================ */
.section-tradition {
  position: relative;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.tradition-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,20,16,.96) 0%, rgba(59,46,34,.96) 50%, rgba(26,20,16,.98) 100%),
    url("../img/bg-curry-1.jpg") center/cover;
  z-index: 0;
}
.section-tradition .container { position: relative; z-index: 1; }
.section-tradition .section-title { max-width: 22ch; margin-left: auto; margin-right: auto; }
.section-tradition .section-lead { margin: 1.5rem auto 3rem; }

.six-tastes {
  list-style: none; padding: 0;
  margin: 0 auto; max-width: 920px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.six-tastes li {
  display: flex; flex-direction: column; gap: .4rem;
  padding: 1.5rem .5rem;
  border-top: 1px solid rgba(184,146,60,.4);
}
.taste-num {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--gold);
}
.taste-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
}
@media (max-width: 720px) {
  .six-tastes { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
  .six-tastes { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   VISIT
============================================================ */
.section-visit { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.visit-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column; gap: .5rem;
  border: 1px solid transparent;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.visit-card:hover { border-color: var(--line); transform: translateY(-2px); }
.visit-card h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin: 0 0 .5rem;
}
.visit-card p { margin: .15rem 0; color: var(--ink-2); }
.visit-card a { color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color .25s var(--ease); }
.visit-card a:hover { border-color: var(--saffron); }
.visit-big {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}
.visit-time {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--vermillion);
  margin-top: .4rem !important;
}
.visit-card-cta {
  background: var(--ink);
  color: var(--cream);
}
.visit-card-cta h3 { color: var(--gold); }
.visit-card-cta p { color: rgba(250,246,238,.78); }
.visit-card-cta .btn { margin-top: auto; }
@media (max-width: 980px) { .visit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .visit-grid { grid-template-columns: 1fr; } }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 21/9;
  background: var(--cream-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,238,.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
}
.footer-brand img { width: 40px; height: auto; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-meta { grid-column: 1 / -1; text-align: center; font-size: .82rem; margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(250,246,238,.1); }
.footer-meta a { color: var(--cream); border-bottom: 1px solid rgba(250,246,238,.3); }
.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,246,238,.45);
  margin: .75rem 0 0;
  font-family: var(--font-body);
}
.footer-credit a {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .14em;
  margin-left: .35rem;
  border-bottom: 1px dotted rgba(184,146,60,.5);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer-credit a:hover { color: var(--cream); border-bottom-color: var(--cream); }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ============================================================
   Add-to-cart button on menu items
============================================================ */
.item-add {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--saffron-dark);
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: all .25s var(--ease);
  margin-left: .25rem;
}
.menu-item:hover .item-add {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  transform: rotate(90deg);
}
.menu-item.just-added .item-add {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
  animation: addPop .4s var(--ease);
}
.menu-item.is-customizing .item-add {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: rotate(45deg);
}
.menu-item.is-customizing { background: var(--cream); }

/* Customizer panel */
.customizer-wrap {
  grid-column: 1 / -1;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.1rem 1.1rem;
  margin: -.25rem 0 .9rem;
  display: grid;
  gap: .75rem;
  animation: custIn .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
@keyframes custIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cust-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .6rem;
  align-items: center;
}
.cust-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron-dark);
}
.cust-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: .92rem;
  padding: .6rem .75rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--saffron-dark) 50%),
    linear-gradient(135deg, var(--saffron-dark) 50%, transparent 50%);
  background-position: calc(100% - 16px) center, calc(100% - 11px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
  cursor: pointer;
}
.cust-select:focus {
  outline: 0;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(214,119,56,.15);
}
.cust-actions {
  display: flex;
  gap: .55rem;
  justify-content: flex-end;
  margin-top: .25rem;
}
.btn-cust-cancel {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.btn-cust-cancel:hover { color: var(--ink); border-color: var(--ink); }
.btn-cust-add {
  background: var(--whatsapp);
  border: 0;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s var(--ease);
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
.btn-cust-add:hover { background: var(--whatsapp-dark); }
@media (max-width: 480px) {
  .cust-row { grid-template-columns: 1fr; gap: .25rem; }
  .cust-actions { flex-direction: column-reverse; }
  .cust-actions button { width: 100%; }
}
@keyframes addPop {
  0% { transform: scale(.8); }
  60% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ============================================================
   Cart floating button (FAB)
============================================================ */
.cart-fab {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(26,20,16,.35), 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.cart-fab:hover { background: var(--saffron-dark); transform: scale(1.06); }
.cart-fab.has-items { background: var(--whatsapp); }
.cart-fab.has-items:hover { background: var(--whatsapp-dark); }
.cart-fab-icon { transition: transform .3s var(--ease); }
.cart-fab.bump .cart-fab-icon { animation: cartBump .5s var(--ease); }
@keyframes cartBump {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-8px) scale(1.1); }
  60% { transform: translateY(2px) scale(.95); }
  100% { transform: translateY(0) scale(1); }
}
.cart-fab-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--vermillion);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream);
  font-family: var(--font-body);
  letter-spacing: 0;
}

/* ============================================================
   Cart drawer
============================================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,20,16,.55);
  backdrop-filter: blur(2px);
  z-index: 200;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cart-overlay.is-open { opacity: 1; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--cream);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: -16px 0 48px rgba(0,0,0,.18);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.cart-close {
  background: transparent; border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: background .2s var(--ease);
}
.cart-close:hover { background: var(--cream-2); color: var(--ink); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.cart-empty svg { color: var(--line); margin-bottom: 1rem; }
.cart-empty p { margin: 0; font-size: 1rem; }
.cart-empty p + p { font-size: .85rem; margin-top: .5rem; }

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem .75rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
}
.cart-line:last-child { border-bottom: 0; }
.cart-line-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.cart-line-options {
  font-size: .8rem;
  color: var(--saffron-dark);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: .02em;
}
.cart-line-unit {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 2px;
}
.cart-line-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vermillion);
  white-space: nowrap;
  align-self: start;
  text-align: right;
}
.cart-line-controls {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .5rem;
}
.qty-control {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  background: transparent;
  border: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.qty-btn:hover { background: var(--cream-2); }
.qty-btn:disabled { opacity: .35; cursor: not-allowed; }
.qty-value {
  min-width: 28px; text-align: center;
  font-weight: 600;
  font-size: .92rem;
}
.cart-remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: color .2s var(--ease);
}
.cart-remove:hover { color: var(--vermillion); }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--cream);
}
.cart-totals {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: .25rem 0 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.cart-totals span {
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-totals strong {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--vermillion);
}
.cart-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .6rem;
}
.cart-actions .btn { padding: .85rem 1.2rem; }
.btn-ghost-dark {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
  font-size: .85rem;
}
.btn-ghost-dark:hover { color: var(--ink); border-color: var(--ink); }
.cart-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin: .9rem 0 0;
  line-height: 1.5;
}

body.cart-open { overflow: hidden; }

/* ============================================================
   Toast
============================================================ */
.toast {
  position: fixed;
  bottom: 6rem; right: 1.25rem;
  z-index: 95;
  background: var(--ink);
  color: var(--cream);
  padding: .8rem 1.2rem;
  border-radius: 999px;
  font-size: .88rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
  max-width: calc(100vw - 2.5rem);
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Reveal on scroll
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Selection
============================================================ */
::selection {
  background: var(--saffron);
  color: var(--cream);
}

/* ============================================================
   Mobile polish
============================================================ */
@media (max-width: 640px) {
  .hero { padding-top: 6rem; padding-bottom: 3rem; min-height: 90svh; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: .65rem; }
  .hero-cta .btn { width: 100%; padding: 1rem 1.4rem; }
  .hero-meta { flex-direction: column; gap: .25rem; }
  .hero-meta .dot { display: none; }
  .hero-scroll { display: none; }

  .section { padding: 4rem 0; }
  .section-head { margin-bottom: 2rem; }

  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .menu-skeleton { grid-template-columns: 1fr; }
  .menu-tabs { margin-bottom: 1.25rem; }
  .menu-filters { gap: .35rem; }
  .menu-filters-label { width: 100%; margin-bottom: .25rem; }
  .filter-count { width: 100%; text-align: left; margin: .25rem 0 0; }

  .menu-item { padding: .9rem 0; gap: .5rem; }
  .menu-item:hover { padding-left: 0; }
  .item-name { font-size: 1rem; }

  .place-stats { grid-template-columns: 1fr; gap: 1rem; padding: 1rem 0; }
  .place-stats > div { flex-direction: row; align-items: baseline; gap: .75rem; }
  .place-stats strong { font-size: 1.4rem; }

  .cart-fab {
    right: 1rem; bottom: 1rem;
    width: 56px; height: 56px;
  }
  .cart-drawer { width: 100vw; max-width: none; }
  .cart-head { padding: 1.1rem 1rem .8rem; }
  .cart-head h2 { font-size: 1.25rem; }
  .cart-body { padding: .75rem 1rem; }
  .cart-foot { padding: 1rem 1rem 1.2rem; padding-bottom: max(1.2rem, env(safe-area-inset-bottom)); }
  .cart-totals strong { font-size: 1.35rem; }
  .cart-actions { grid-template-columns: 1fr; gap: .5rem; }
  .cart-actions .btn-ghost-dark { order: 2; }
  .cart-actions .btn-primary { order: 1; padding: 1rem 1.4rem; }

  .toast { right: .75rem; left: .75rem; bottom: 5.5rem; text-align: center; max-width: none; }

  .visit-time { font-size: 1.4rem; }

  .footer-inner { gap: 1.25rem; padding-top: .5rem; }

  /* Mobile call sticky bar */
  .mobile-call-bar {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 88;
    display: flex;
    background: var(--ink);
    color: var(--cream);
    padding: .75rem;
    padding-bottom: max(.75rem, env(safe-area-inset-bottom));
    gap: .5rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,.18);
  }
  body { padding-bottom: 4.5rem; } /* leave room for mobile bar */
  .mobile-call-bar a {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .85rem .5rem;
    border-radius: 999px;
    font-size: .85rem; font-weight: 500;
    background: rgba(250,246,238,.08);
    border: 1px solid rgba(250,246,238,.18);
  }
  .mobile-call-bar a:hover { background: rgba(250,246,238,.14); }
  .mobile-call-bar svg { width: 16px; height: 16px; }
  /* Push FAB above mobile call bar */
  .cart-fab { bottom: 5.25rem; }
  /* Push toast above too */
  .toast { bottom: 9rem; }
}

@media (min-width: 641px) {
  .mobile-call-bar { display: none; }
}

/* ============================================================
   Print stylesheet (printable menu)
============================================================ */
@media print {
  body { background: #fff; color: #000; padding: 0; font-size: 11pt; }
  .site-header, .hero, .section-story, .section-place, .section-tradition, .section-visit,
  .site-footer, .cart-fab, .cart-overlay, .cart-drawer, .toast, .mobile-call-bar,
  .menu-filters, .menu-footnote .btn, .hero-scroll { display: none !important; }
  .section-menu { padding: 0 !important; background: #fff !important; }
  .section-menu::before { display: none !important; }
  .section-head { text-align: left; margin-bottom: 1rem; max-width: none; }
  .section-head .eyebrow { display: none; }
  .section-title { font-size: 22pt; margin: 0 0 .25rem; color: #000 !important; }
  .section-lead { font-size: 10pt; color: #444; max-width: none; }
  .menu-tabs { display: none; }
  .menu-panel { display: block !important; page-break-inside: avoid; margin-bottom: 1rem; }
  .menu-panel::before {
    content: attr(data-cat-label);
    display: block;
    font-family: var(--font-display);
    font-size: 14pt;
    font-weight: 600;
    margin: .8rem 0 .3rem;
    border-bottom: 1px solid #000;
    padding-bottom: .15rem;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .menu-grid { display: block; }
  .menu-item {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: .25rem 0; border-bottom: 1px dotted #ccc; gap: 1rem;
  }
  .item-name { font-family: serif; font-size: 11pt; color: #000; }
  .item-add, .item-arrow { display: none !important; }
  .item-price { font-family: serif; font-size: 11pt; color: #000; }
  .item-desc { font-size: 9pt; color: #555; font-style: italic; }
  .menu-footnote p { font-size: 9pt; color: #666; }
  .item-badge { display: inline-flex !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  a { color: #000; text-decoration: none; }
}
