/* ==========================================================================
   BAD MICKEY BURGER — Design System
   Their actual brand: deep teal + mustard + red, bold outlined display,
   playful photo-heavy retro-diner feel.
   ========================================================================== */

:root {
  /* Brand colors pulled from their actual marketing materials */
  --teal: #4E8B89;           /* Primary brand teal (marketing background) */
  --teal-deep: #3D7270;      /* Darker teal for depth */
  --teal-light: #6FAEAD;     /* Mint/light teal accents */
  --mustard: #F5B945;        /* Mustard yellow brushstroke ribbons */
  --mustard-deep: #E6A536;   /* Deeper mustard */
  --red: #D62828;            /* BM red logo */
  --red-deep: #A11F1F;
  --pink: #E8A8B5;           /* Soft pink ribbon (Sabor que conquista) */
  --sage: #9DBAA6;           /* Wraps section sage */
  --coral: #E07856;          /* Orange/coral accent */
  --cream: #F5EFE3;          /* Cream/off-white body backgrounds */
  --cream-warm: #ECDFC9;     /* Warmer cream for depth */
  --paper: #FBF7EE;          /* Lightest paper */
  --ink: #1A1614;            /* Near-black */
  --ink-2: #3A332E;
  --ink-mute: #7A6F66;
  --line: rgba(26,22,20,0.12);
  --line-strong: rgba(26,22,20,0.22);
  --line-cream: rgba(245,239,227,0.18);

  --shadow-sm: 0 1px 2px rgba(26,22,20,0.06);
  --shadow: 0 4px 14px rgba(26,22,20,0.10);
  --shadow-lg: 0 10px 36px rgba(26,22,20,0.18);
  --shadow-card: 0 12px 40px rgba(26,22,20,0.14);

  /* Type families */
  --display: "Anton", "Impact", "Arial Black", sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --hand: "Caveat", "Bradley Hand", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--red); color: white; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Display text utilities */
.display-xl, .display-lg, .display-md {
  font-family: var(--display);
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}
.display-xl { font-size: clamp(56px, 11vw, 144px); }
.display-lg { font-size: clamp(44px, 8vw, 96px); }
.display-md { font-size: clamp(36px, 6vw, 72px); }

.display-outlined {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
  text-stroke: 2px var(--cream);
}
.display-outlined-ink {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

.hand { font-family: var(--hand); font-weight: 700; line-height: 1.0; }

/* Bilingual */
[data-lang-es], [data-lang-es-block] { display: none; }
html[data-lang="es"] [data-lang-en], html[data-lang="es"] [data-lang-en-block] { display: none; }
html[data-lang="es"] [data-lang-es] { display: inline; }
html[data-lang="es"] [data-lang-es-block] { display: block; }

/* ==========================================================================
   DEMO BANNER — fades down after a moment
   ========================================================================== */
.demo-banner {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
  position: relative;
  z-index: 70;
}
.demo-banner a {
  color: var(--mustard);
  border-bottom: 1px solid rgba(245,185,69,0.4);
  padding-bottom: 1px;
  margin-left: 8px;
}
.demo-banner a:hover { color: white; border-color: white; }

/* ==========================================================================
   NAV
   ========================================================================== */
nav.topnav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: rgba(78,139,137,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(245,185,69,0.4);
}
nav.topnav .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
nav.topnav .brand-logo-img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}
nav.topnav .brand-text {
  font-family: var(--display);
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 600px) {
  nav.topnav .brand-text { display: block; }
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--mustard); }
.nav-call {
  background: var(--red);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.nav-call:hover { background: white; color: var(--red) !important; transform: translateY(-1px); }
.lang-toggle {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cream);
  padding: 5px 10px;
  border: 1px solid rgba(245,239,227,0.4);
  border-radius: 999px;
  transition: all 0.2s;
  background: transparent;
}
.lang-toggle:hover { background: var(--cream); color: var(--teal); border-color: var(--cream); }

@media (max-width: 760px) {
  nav.topnav { padding: 10px 16px; }
  .nav-links { gap: 10px; }
  .nav-links a:not(.nav-call):not(.lang-toggle) { display: none; }
}

/* ==========================================================================
   HERO — bold display, photo-led, mustard ribbon
   ========================================================================== */
.hero {
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 60px 24px 40px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
}
.hero::before {
  top: 5%;
  left: -50px;
  background-image: radial-gradient(circle, var(--mustard) 0%, transparent 60%);
  filter: blur(60px);
}
.hero::after {
  bottom: 10%;
  right: -50px;
  background-image: radial-gradient(circle, var(--coral) 0%, transparent 60%);
  filter: blur(60px);
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 24px; } }

.hero-text { padding: 20px 0; }
.hero-ribbon {
  display: inline-block;
  background: var(--pink);
  color: var(--ink);
  padding: 6px 18px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 20px;
  transform: rotate(-1deg);
}
.hero-h {
  font-family: var(--display);
  font-size: clamp(60px, 10vw, 132px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-h .stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}
.hero-h .red { color: var(--red); }
.hero-h .mustard { color: var(--mustard); }
.hero-tag {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(245,239,227,0.88);
  max-width: 50ch;
  line-height: 1.55;
  margin-bottom: 28px;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--line-cream);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--cream);
}
.hero-meta .item { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.hero-meta .dot {
  width: 8px; height: 8px; background: #4ADE80; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.hero-meta .sep { width: 4px; height: 4px; background: rgba(245,239,227,0.45); border-radius: 50%; }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary, .btn-wa {
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-primary { background: var(--red); color: white !important; }
.btn-primary:hover { background: var(--cream); color: var(--red) !important; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--cream) !important;
  border: 1.5px solid var(--cream);
}
.btn-secondary:hover { background: var(--cream); color: var(--teal) !important; }
.btn-wa { background: #25D366; color: white !important; }
.btn-wa:hover { background: #1FB856; transform: translateY(-2px); }
.btn-wa svg { width: 14px; height: 14px; fill: white; }

.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--teal-deep);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-stamp {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--hand);
  font-size: 24px;
  font-weight: 700;
  padding: 8px 22px;
  transform: rotate(3deg);
  box-shadow: var(--shadow);
  z-index: 3;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { padding: 80px 24px; }
@media (max-width: 760px) { section { padding: 56px 18px; } }

.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 920px; margin: 0 auto; }
.container-narrowest { max-width: 720px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--red);
  margin-bottom: 6px;
  display: inline-block;
  transform: rotate(-1deg);
}
.section-eyebrow.cream { color: var(--mustard); }
.section-eyebrow::before, .section-eyebrow::after {
  content: "~";
  margin: 0 6px;
  opacity: 0.7;
}
h2.section-h {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 20px;
}
h2.section-h .red { color: var(--red); }
h2.section-h .mustard { color: var(--mustard); }
h2.section-h .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.section-tag {
  font-family: var(--body);
  font-size: 17px;
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.55;
}

/* ==========================================================================
   FEATURED DISHES (home)
   ========================================================================== */
.featured-wrap { background: var(--cream); }
.featured-header { text-align: center; margin-bottom: 50px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .featured-grid { grid-template-columns: 1fr; gap: 20px; } }

.dish-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.dish-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
}
.dish-card-body { padding: 22px 24px 26px; }
.dish-card-name {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.005em;
  margin-bottom: 6px;
}
.dish-card-name .red { color: var(--red); }
.dish-card-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-bottom: 14px;
}
.dish-card-bottom { display: flex; justify-content: space-between; align-items: baseline; }
.dish-card-price {
  font-family: var(--display);
  font-size: 26px;
  color: var(--red);
}
.dish-card-tag {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.dish-card-stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--hand);
  font-size: 18px;
  padding: 4px 14px;
  transform: rotate(-3deg);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   STORY (home + story page)
   ========================================================================== */
.story-wrap { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 30px; } }
.story-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.story-prose .section-tag {
  margin-bottom: 18px;
}

/* ==========================================================================
   LOCATIONS PREVIEW (home) and detail (locations page)
   ========================================================================== */
.locations-wrap {
  background: var(--ink);
  color: var(--cream);
}
.locations-wrap h2.section-h {
  color: var(--cream);
}
.locations-wrap h2.section-h .stroke { -webkit-text-stroke: 1.5px var(--cream); }
.locations-wrap .section-tag { color: rgba(245,239,227,0.78); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}
@media (max-width: 880px) { .locations-grid { grid-template-columns: 1fr; gap: 24px; } }

.location-card {
  background: rgba(245,239,227,0.04);
  border: 1px solid rgba(245,239,227,0.14);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  background: rgba(245,239,227,0.08);
  border-color: var(--mustard);
  transform: translateY(-3px);
}
.location-card .city-label {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--mustard);
  transform: rotate(-1deg);
  display: inline-block;
  margin-bottom: 4px;
}
.location-card h3 {
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin-bottom: 16px;
}
.location-card .addr {
  font-size: 14.5px;
  color: rgba(245,239,227,0.78);
  line-height: 1.5;
  margin-bottom: 16px;
}
.location-card .hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
}
.location-card .hours .dot {
  width: 8px; height: 8px; background: #4ADE80; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
}
.location-card .phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--cream);
}
.location-card .phones a {
  color: var(--mustard);
  font-weight: 600;
}
.location-card .phones a:hover { color: white; }
.location-card .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.loc-btn {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.loc-btn-call { background: var(--red); color: white !important; }
.loc-btn-call:hover { background: white; color: var(--red) !important; }
.loc-btn-map {
  background: transparent;
  color: var(--cream) !important;
  border: 1px solid rgba(245,239,227,0.34);
}
.loc-btn-map:hover { background: var(--cream); color: var(--ink) !important; }

/* ==========================================================================
   REVIEWS (home)
   ========================================================================== */
.reviews-wrap { background: var(--cream); }
.reviews-header { text-align: center; margin-bottom: 50px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; gap: 18px; } }

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.review-stars {
  color: var(--mustard);
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.review-text {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
}
.review-author .avatar {
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  color: var(--cream);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-author .name {
  font-weight: 600;
  color: var(--ink);
}
.review-google {
  font-size: 11px;
  color: var(--ink-mute);
  margin-left: 6px;
}

/* ==========================================================================
   CTA BAND (home / standalone)
   ========================================================================== */
.cta-band {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 100px 24px;
}
.cta-band .section-eyebrow { color: var(--mustard); }
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.005em;
  margin: 0 auto 20px;
  max-width: 16ch;
}
.cta-band h2 .stroke { -webkit-text-stroke: 2px white; color: transparent; }
.cta-band p {
  font-size: 17px;
  max-width: 50ch;
  margin: 0 auto 28px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}
.cta-band .number {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 96px);
  color: white;
  margin: 12px 0 24px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta-band-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn-primary { background: white; color: var(--red) !important; }
.cta-band .btn-primary:hover { background: var(--mustard); color: var(--ink) !important; }
.cta-band .btn-secondary { border-color: white; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-page-hero {
  background: var(--teal);
  color: var(--cream);
  padding: 60px 24px 40px;
  text-align: center;
}
.menu-page-hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.005em;
  margin-bottom: 18px;
}
.menu-page-hero h1 .stroke { -webkit-text-stroke: 2px var(--cream); color: transparent; }
.menu-page-hero p {
  color: rgba(245,239,227,0.85);
  max-width: 56ch;
  margin: 0 auto 24px;
  font-size: 17px;
}

.menu-disclaimer {
  background: var(--mustard);
  color: var(--ink);
  text-align: center;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Menu category sections — each one a different color background, like their physical menu */
.menu-section {
  padding: 70px 24px;
}
.menu-section.burgers { background: #1A1614; color: var(--cream); }
.menu-section.wraps { background: var(--sage); }
.menu-section.delicias { background: var(--mustard); }
.menu-section.box { background: var(--coral); color: var(--cream); }
.menu-section.sides { background: var(--cream-warm); }

.menu-section .container { max-width: 1180px; }

.menu-section-header {
  margin-bottom: 44px;
}
.menu-section-header .label {
  font-family: var(--hand);
  font-size: 32px;
  color: var(--mustard);
  margin-bottom: 4px;
  display: inline-block;
  transform: rotate(-1deg);
}
.menu-section.wraps .label { color: var(--ink); }
.menu-section.delicias .label { color: var(--red); }
.menu-section.box .label { color: var(--mustard); }
.menu-section.sides .label { color: var(--red); }

.menu-section-header h2 {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: inherit;
}
.menu-section-header p {
  margin-top: 12px;
  font-size: 16px;
  max-width: 56ch;
  opacity: 0.85;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .menu-items-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .menu-items-grid { grid-template-columns: 1fr; } }

.menu-item-card {
  background: rgba(245,239,227,0.95);
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.menu-item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.menu-item-card .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
}
.menu-item-card .body {
  padding: 18px 20px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.menu-item-card .name {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 4px;
}
.menu-item-card .desc {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-bottom: 10px;
  flex-grow: 1;
}
.menu-item-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}
.menu-item-card .price {
  font-family: var(--display);
  font-size: 22px;
  color: var(--red);
}
.menu-item-card .tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.menu-item-card .tag {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream-warm);
  color: var(--ink-mute);
  padding: 3px 8px;
  border-radius: 999px;
}
.menu-item-card .tag.spicy { background: var(--red); color: white; }
.menu-item-card .tag.veg { background: #4D8A4F; color: white; }
.menu-item-card .tag.signature { background: var(--mustard); color: var(--ink); }
.menu-item-card .tag.new { background: var(--coral); color: white; }

.menu-legend {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  opacity: 0.7;
  font-size: 12px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.menu-legend span strong { font-weight: 700; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-hero, .article-hero, .page-hero {
  background: var(--teal);
  color: var(--cream);
  padding: 70px 24px 40px;
  text-align: center;
}
.blog-hero h1, .article-hero h1, .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.005em;
  max-width: 22ch;
  margin: 0 auto 18px;
}
.blog-hero p, .article-hero p, .page-hero p {
  color: rgba(245,239,227,0.85);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; gap: 24px; } }

.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
}
.blog-card .body { padding: 28px 32px 32px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card .meta {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 12px;
}
.blog-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
}
.blog-card-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 3px;
  align-self: flex-start;
  margin-top: auto;
}

/* Article body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-body .back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  display: inline-block;
}
.article-body .featured-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
  border-radius: 8px;
  margin-bottom: 36px;
}
.article-body h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 40px 0 18px;
}
.article-body h3 {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 28px 0 14px;
}
.article-body p {
  font-size: 17.5px;
  color: var(--ink-2);
  line-height: 1.68;
  margin-bottom: 18px;
}
.article-body p strong { color: var(--ink); font-weight: 700; }
.article-body p a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}
.article-body ul, .article-body ol {
  margin: 12px 0 22px 24px;
}
.article-body li {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.1;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section { background: var(--cream); padding: 80px 24px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
}
.contact-info-card h3 {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-info-card .row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: baseline;
}
.contact-info-card .row:last-child { border-bottom: none; }
.contact-info-card .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-info-card .value {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.contact-info-card .value a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.contact-info-card .value a:hover { color: var(--red); border-color: var(--red); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  align-self: flex-start;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.contact-form button:hover { background: var(--ink); transform: translateY(-1px); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer {
  background: var(--ink);
  color: rgba(245,239,227,0.55);
  padding: 60px 24px 28px;
  font-size: 13px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand img { height: 48px; width: auto; border-radius: 4px; }
.footer-brand-text {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.footer-tag {
  font-family: var(--hand);
  font-size: 18px;
  color: var(--mustard);
  margin-bottom: 14px;
  transform: rotate(-1deg);
  display: inline-block;
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(245,239,227,0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--mustard); }
.footer-socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(245,239,227,0.06);
  border: 1px solid rgba(245,239,227,0.14);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--mustard); border-color: var(--mustard); }
.footer-socials a:hover svg { fill: var(--ink); }
.footer-socials svg { width: 16px; height: 16px; fill: rgba(245,239,227,0.7); }
.footer-bottom {
  max-width: 1280px;
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(245,239,227,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245,239,227,0.4);
  align-items: center;
}
.footer-credit {
  font-size: 11px;
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: var(--mustard);
  border-bottom: 1px solid rgba(245,185,69,0.4);
  padding-bottom: 1px;
}
.footer-credit a:hover { color: var(--cream); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
