/* ==========================================================
   La Gloria Pupuseria — high-end minimalistic styles
   ========================================================== */

:root {
  /* palette */
  --ivory: #fbf6ec;
  --cream: #f5ecd8;
  --parchment: #f0e4c8;
  --paper: #ffffff;

  --ink: #1c160f;
  --charcoal: #2b231a;
  --muted: #6b5d49;
  --line: rgba(28, 22, 15, 0.12);

  --red: #b1281d;
  --red-dark: #8a1d14;
  --masa: #e5b34a;
  --masa-deep: #b8861d;
  --brown: #6b4a1d;

  --shadow-sm: 0 1px 2px rgba(28, 22, 15, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(28, 22, 15, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(28, 22, 15, 0.28);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1180px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* base reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red); }
button { font-family: inherit; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============== Typography ============== */
.display, .display-sm, .section-title, h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.display {
  font-size: clamp(2.6rem, 6vw + 1rem, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.display-sm {
  font-size: clamp(2rem, 3.4vw + 1rem, 3.4rem);
  line-height: 1.08;
}
.section-title {
  font-size: clamp(1.85rem, 2.6vw + 1rem, 2.85rem);
}
h3 { font-size: 1.45rem; }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: -0.005em; }
h5 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin: 0 0 .9rem; font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
}

.lede {
  font-size: clamp(1.05rem, 0.6vw + 1rem, 1.25rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
  margin: 1.2rem 0 0;
}

p { color: var(--charcoal); }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--red);
  color: var(--ivory);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(28, 22, 15, 0.04);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: .35rem;
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .25s var(--ease);
}
.link-arrow:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  gap: .8rem;
}

/* ============== Header / Nav ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 236, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 246, 236, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -12px rgba(28, 22, 15, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
}
.logo-img {
  display: block;
  height: 56px;
  width: auto;
  transition: transform .3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.03); }

.primary-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: .25rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--ink); }
.nav-cta .btn { padding: .65rem 1.1rem; font-size: .85rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 90% 10%, rgba(229, 179, 74, 0.18), transparent 60%),
    radial-gradient(700px 500px at 5% 85%, rgba(177, 40, 29, 0.08), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(107, 74, 29, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .4;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-inner.single { grid-template-columns: 1fr; max-width: 880px; }

.hero-content { max-width: 640px; }
.hero-cta {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}
.hero-meta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--muted);
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 90px; height: 90px;
  background: radial-gradient(circle at 30% 30%, var(--masa), var(--masa-deep));
  border-radius: 50%;
  z-index: -1;
  filter: blur(.5px);
  opacity: .9;
}
.hero-card-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.hero-card-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--cream), var(--parchment));
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.hero-card:hover .hero-card-image img { transform: scale(1.04); }
.hero-card-text .tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: .5rem;
}
.hero-card-text h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.hero-card-text p { color: var(--muted); margin: 0; font-size: .95rem; }

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.cue-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--muted), transparent);
  animation: cueSlide 2.4s var(--ease) infinite;
}
@keyframes cueSlide {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============== Sections ============== */
.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head .section-title { margin-bottom: .9rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ============== Menu / Featured ============== */
.menu-section {
  background:
    linear-gradient(180deg, transparent, rgba(229, 179, 74, 0.06)),
    var(--ivory);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}
.dish-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.dish-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(229, 179, 74, 0.18), transparent 70%);
  z-index: 0;
  transition: transform .5s var(--ease);
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 22, 15, 0.18);
}
.dish-card:hover::before { transform: translate(-20px, -20px); }
.dish-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--cream), var(--parchment));
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.dish-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.dish-card:hover .dish-art img { transform: scale(1.06); }
.dish-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.75rem 2rem 2rem;
}
.dish-body h3 { margin-bottom: .55rem; }
.dish-body p { color: var(--muted); margin: 0 0 1.25rem; }

/* ============== About ============== */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-text .eyebrow { margin-bottom: 1rem; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { margin: 0 0 1.05rem; color: var(--charcoal); font-size: 1.02rem; }
.about-text .link-arrow { margin-top: .75rem; }

.about-stack {
  display: grid;
  gap: 1rem;
}
.stack-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.25rem;
  align-items: start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stack-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.stack-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--red);
}
.stack-card h4 { margin: 0 0 .3rem; }
.stack-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ============== Why ============== */
.why-section {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(177, 40, 29, 0.06), transparent 60%),
    var(--ivory);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}
.why-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.why-item:hover { transform: translateY(-4px); border-color: rgba(28, 22, 15, 0.2); }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--red);
  margin-bottom: 1.25rem;
}
.why-item h4 { margin-bottom: .5rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ============== Hours ============== */
.hours-section {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hours-section::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(600px 400px at 90% 100%, rgba(229, 179, 74, 0.12), transparent 60%),
    radial-gradient(500px 350px at 0% 0%, rgba(177, 40, 29, 0.08), transparent 60%);
  pointer-events: none;
}
.hours-section .container { position: relative; z-index: 1; }
.hours-section .section-title { color: var(--ivory); }
.hours-section .eyebrow { color: var(--masa); }
.hours-section .eyebrow::before { background: var(--masa); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hours-note {
  color: rgba(251, 246, 236, 0.6);
  font-size: .9rem;
  margin: 1.25rem 0 0;
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(251, 246, 236, 0.12);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(251, 246, 236, 0.12);
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(251, 246, 236, 0.85);
  transition: padding-left .2s var(--ease), color .2s var(--ease);
}
.hours-list li.today {
  color: var(--masa);
  padding-left: 1rem;
  position: relative;
}
.hours-list li.today::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--masa);
  transform: translateY(-50%);
}
.hours-list li span:first-child { font-weight: 500; }
.hours-list li span:last-child { color: inherit; opacity: .9; }

/* status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.08);
  border: 1px solid rgba(251, 246, 236, 0.15);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ivory);
  margin-top: 1.25rem;
}
.status-pill.compact {
  background: var(--cream);
  border-color: var(--line);
  color: var(--ink);
  margin-top: 1rem;
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--muted);
  position: relative;
  display: inline-block;
}
.status-dot.open {
  background: #2ea14a;
  box-shadow: 0 0 0 4px rgba(46, 161, 74, 0.18);
  animation: pulse 2.2s var(--ease) infinite;
}
.status-dot.closed {
  background: var(--red);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 161, 74, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(46, 161, 74, 0); }
}
.status-text { line-height: 1; }

/* ============== Final CTA ============== */
.final-cta {
  background: linear-gradient(160deg, var(--cream), var(--parchment));
  text-align: center;
}
.final-cta::before { content: ""; }
.cta-inner { max-width: 680px; margin-inline: auto; }
.cta-inner p { color: var(--muted); margin: 1rem 0 2rem; font-size: 1.1rem; }

/* ============== Contact page ============== */
.hero-contact { padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero-contact .hero-inner.single { text-align: left; }

.contact-section { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 22, 15, 0.18);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--red);
  margin-bottom: 1.25rem;
}
.contact-card h3 { margin-bottom: .65rem; }
.contact-card address {
  font-style: normal;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.contact-card p { margin: 0 0 1rem; color: var(--muted); }
.big-line {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--ink) !important;
  margin: 0 0 .8rem !important;
}
.big-line a { color: var(--ink); }
.big-line a:hover { color: var(--red); }

.mini-hours {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.mini-hours li {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  color: var(--charcoal);
}
.mini-hours li:last-child { border-bottom: 0; }
.mini-hours li span:first-child { font-weight: 500; }

/* map */
.map-section { background: var(--cream); }
.map-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  color: var(--ink);
}
.map-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--ink); }
.map-illustration {
  height: clamp(220px, 38vw, 360px);
  width: 100%;
  overflow: hidden;
}
.map-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.map-meta h4 { margin: 0 0 .25rem; }
.map-meta p { margin: 0; color: var(--muted); font-size: .95rem; }
.map-meta .link-arrow span { margin-left: 4px; }

/* ============== Footer ============== */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 236, 0.78);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}
.site-footer a { color: rgba(251, 246, 236, 0.85); }
.site-footer a:hover { color: var(--masa); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 246, 236, 0.12);
}
.footer-brand p {
  color: rgba(251, 246, 236, 0.6);
  font-size: .95rem;
  max-width: 38ch;
  margin: 1rem 0 0;
}
.footer-logo {
  display: block;
  height: 86px;
  width: auto;
  background: var(--ivory);
  border-radius: 16px;
  padding: 10px 14px;
  margin-bottom: .25rem;
}
.footer-col h5 { color: rgba(251, 246, 236, 0.55); }
.footer-col address {
  font-style: normal;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(251, 246, 236, 0.78);
}
.footer-col p { color: rgba(251, 246, 236, 0.78); margin: 0 0 .3rem; font-size: .95rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: rgba(251, 246, 236, 0.5);
}
.footer-bottom p { color: inherit; margin: 0; }

/* ============== Reveal animations ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============== Responsive ============== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { transform: rotate(0); max-width: 460px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu li { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-menu li:last-child { border-bottom: 0; padding-top: 1rem; }
  .nav-cta .btn { width: 100%; padding: .9rem 1.2rem; }
  .nav-link { font-size: 1.05rem; display: inline-block; }

  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .map-meta { padding: 1.25rem 1.25rem; }
  .scroll-cue { display: none; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .logo-img { height: 48px; }
  .hero-card { padding: 1.25rem; }
  .stack-card { padding: 1.25rem; }
  .dish-body { padding: 1.5rem; }
}

/* ============== Menu list ============== */
.menu-list-section {
  background:
    radial-gradient(700px 400px at 10% 100%, rgba(229, 179, 74, 0.10), transparent 65%),
    var(--ivory);
}
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}
.menu-item {
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.menu-item.featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(90deg, rgba(229, 179, 74, 0.12), rgba(229, 179, 74, 0.02) 70%);
  padding: 1.85rem 1.5rem;
  border-radius: 14px;
  margin: .5rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item.featured .menu-item-head h3 {
  font-size: 1.55rem;
}
.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
}
.menu-item-head h3 {
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.menu-item .price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--red);
  background: rgba(177, 40, 29, 0.08);
  padding: .35rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-sub {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .55rem;
  font-weight: 600;
}
.menu-item-desc {
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  max-width: 52ch;
}
.menu-cta {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

@media (max-width: 820px) {
  .menu-list { grid-template-columns: 1fr; }
  .menu-item.featured { margin-inline: 0; padding-inline: 1rem; }
}

/* ============== Delivery Areas ============== */
.areas-section { background: var(--ivory); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.area-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(229, 179, 74, 0.18), transparent 70%);
  z-index: 0;
}
.area-card > * { position: relative; z-index: 1; }
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 22, 15, 0.18);
  color: var(--ink);
}
.area-distance {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.area-card h3 {
  font-size: 1.6rem;
  margin: 0;
}
.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  flex: 1;
}
.area-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: .5rem;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.area-card:hover .area-link { color: var(--red); gap: .8rem; }

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

/* ============== City detail page ============== */
.location-hero .hero-content { max-width: 760px; }
.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin-top: 1.5rem;
}
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: .45rem .85rem;
  border-radius: 999px;
}
.location-tag.red { color: var(--red); border-color: rgba(177, 40, 29, 0.25); background: rgba(177, 40, 29, 0.06); }

.location-intro {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}
.location-intro .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.location-intro .intro-copy p {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 0 0 1rem;
}
.location-intro .intro-copy .eyebrow { margin-bottom: 1rem; }
.location-intro .intro-copy .section-title { margin-bottom: 1.25rem; }

.location-fact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.location-fact-card h4 { font-size: 1.1rem; margin: 0 0 1rem; }
.location-fact-card ul { list-style: none; margin: 0; padding: 0; }
.location-fact-card li {
  padding: .85rem 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.location-fact-card li:last-child { border-bottom: 0; }
.location-fact-card li span:first-child {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
}
.location-fact-card li span:last-child { text-align: right; }

.cross-cities-section {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.cross-cities-section .section-head { text-align: center; margin-inline: auto; }
.cross-cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cross-cities-list a {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.cross-cities-list a:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.cross-cities-list a.current {
  background: var(--red);
  color: var(--ivory);
  border-color: var(--red);
  pointer-events: none;
}

@media (max-width: 820px) {
  .location-intro .container { grid-template-columns: 1fr; }
}

/* ============== FAQ ============== */
.faq-section { background: var(--cream); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-block;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.faq-icon::before { transform: translate(-50%, -50%); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item[open] summary { color: var(--red); }
.faq-body {
  padding: 0 0 1.5rem;
  max-width: 70ch;
}
.faq-body p {
  font-size: 1rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.65;
}
.faq-body a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
}
.faq-item[open] .faq-body {
  animation: faqReveal .4s var(--ease);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}


