/* ============================================================
   Mezcla Latina Restaurant — styles.css
   Premium, minimalist Latin restaurant site
   Brand: Blue #0A1F92 · Red #FE000C · White #FFFFFF
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --blue: #0A1F92;
  --blue-deep: #061160;
  --red: #FE000C;
  --red-deep: #d80009;
  --white: #FFFFFF;

  --cream: #FBF8F3;
  --cream-2: #F4EEE4;
  --ink: #14172b;
  --ink-soft: #4a4d63;
  --line: rgba(10, 31, 146, 0.12);

  --font-display: "Iowan Old Style", "Palatino Linotype", "Palatino", "Book Antiqua", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(10, 23, 43, 0.07);
  --shadow-md: 0 18px 50px rgba(10, 23, 43, 0.13);
  --shadow-lg: 0 30px 80px rgba(10, 23, 43, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }

::selection { background: var(--red); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.5rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-body); font-weight: 700; font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; position: relative; isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
  box-shadow: 0 8px 20px rgba(10, 31, 146, 0.18);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(10, 31, 146, 0.28); }
.btn:active { transform: translateY(-1px); }

.btn-order { --btn-bg: var(--red); box-shadow: 0 8px 20px rgba(254, 0, 12, 0.28); }
.btn-order:hover { background: var(--red-deep); box-shadow: 0 14px 32px rgba(254, 0, 12, 0.38); }

.btn-primary { --btn-bg: var(--blue); }
.btn-primary:hover { background: var(--blue-deep); }

.btn-outline {
  background: transparent; color: var(--blue); border-color: rgba(10, 31, 146, 0.35);
  box-shadow: none;
}
.btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 14px 30px rgba(10, 31, 146, 0.25); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px); box-shadow: none;
}
.btn-ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }

/* ---------- Eyebrow labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow-red { color: var(--red); }
.eyebrow-light { color: rgba(255, 255, 255, 0.85); }

/* ---------- Section helpers ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-title { font-size: clamp(2rem, 4.6vw, 3.3rem); color: var(--blue); }
.section-title-light { color: #fff; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; margin-top: 0.8rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 248, 243, 0.95);
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(10, 23, 43, 0.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; transition: padding 0.35s var(--ease); }
.site-header.scrolled .nav-wrap { padding-block: 0.55rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { width: 56px; height: 56px; object-fit: contain; transition: width 0.35s var(--ease), height 0.35s var(--ease); }
.site-header.scrolled .brand-logo { width: 46px; height: 46px; }
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--blue);
  letter-spacing: -0.01em;
}
.brand-name small { font-family: var(--font-body); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--red); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-link {
  font-weight: 600; font-size: 0.97rem; color: var(--ink); padding: 0.5rem 0.85rem;
  border-radius: 999px; position: relative; transition: color 0.25s ease, background 0.25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.32rem; height: 2px;
  background: var(--red); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--blue); }
.nav-cta { margin-left: 0.6rem; padding: 0.7rem 1.3rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
  align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: min(92vh, 820px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/mlr-food2.jpg") center 60% / cover no-repeat;
  transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(110deg, rgba(6, 17, 96, 0.92) 0%, rgba(10, 31, 146, 0.74) 38%, rgba(10, 31, 146, 0.32) 68%, rgba(10, 31, 146, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 17, 96, 0.55), rgba(6, 17, 96, 0));
}
.hero-inner { padding-block: 5rem; max-width: 760px; }
.eyebrow .dot, .dot {
  width: 9px; height: 9px; border-radius: 50%; background: #9aa3c9; display: inline-block; flex: none;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
}
.hero .eyebrow { color: #fff; background: rgba(255, 255, 255, 0.12); padding: 0.45rem 0.95rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.hero-title { font-size: clamp(2.5rem, 6.4vw, 4.7rem); text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,0.92); margin-top: 1.4rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; display: flex; justify-content: center; }
.scroll-cue span { width: 4px; height: 9px; border-radius: 2px; background: #fff; margin-top: 7px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(9px); } 100% { opacity: 0; } }

/* Status pill states (shared) */
[data-status-pill].is-open .dot, .dot.is-open { background: #2ecc71; animation: pulse 2s infinite; }
[data-status-pill].is-closed .dot, .dot.is-closed { background: var(--red); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.55); } 70% { box-shadow: 0 0 0 8px rgba(46,204,113,0); } 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); } }

/* ============================================================
   INTRO
   ============================================================ */
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro-copy p { color: var(--ink-soft); font-size: 1.12rem; margin-top: 1rem; }
.flag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.flag-chip {
  font-size: 0.9rem; font-weight: 600; color: var(--blue);
  background: #fff; border: 1px solid var(--line); padding: 0.5rem 0.95rem; border-radius: 999px;
  box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.flag-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.intro-stats { display: grid; gap: 1rem; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--red);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--blue); line-height: 1; }
.stat span { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   FEATURED DISHES
   ============================================================ */
.featured { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.dish-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dish-img { aspect-ratio: 16 / 10; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.dish-card:hover .dish-img img { transform: scale(1.08); }
.dish-body { padding: 1.4rem 1.5rem 1.7rem; }
.dish-flag { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); }
.dish-body h3 { font-size: 1.45rem; color: var(--blue); margin: 0.45rem 0 0.5rem; }
.dish-body p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   MENU PREVIEW
   ============================================================ */
.menu-section { background: var(--white); }
.menu-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.menu-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.menu-image a { display: block; position: relative; }
.menu-image img { width: 100%; transition: transform 0.7s var(--ease); }
.menu-image:hover img { transform: scale(1.04); }
.menu-zoom {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.4rem 1.1rem; color: #fff; font-weight: 700;
  background: linear-gradient(0deg, rgba(6,17,96,0.85), rgba(6,17,96,0)); opacity: 0; transition: opacity 0.3s ease;
}
.menu-image:hover .menu-zoom { opacity: 1; }

.menu-lists { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; }
.menu-col h3 { font-size: 1.15rem; color: var(--blue); display: flex; align-items: center; gap: 0.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--line); margin-bottom: 0.7rem; }
.menu-col .cc { font-size: 1.1rem; }
.menu-col li { color: var(--ink-soft); font-size: 0.97rem; padding: 0.22rem 0; }
.menu-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-media:hover img { transform: scale(1.05); }
.about-copy p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1rem; }
.about-copy .btn { margin-top: 1.8rem; }

/* ============================================================
   HOURS
   ============================================================ */
.hours-section { position: relative; background: var(--blue); color: #fff; overflow: hidden; text-align: center; }
.hours-section::before, .hours-section::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.4; z-index: 0;
}
.hours-section::before { width: 380px; height: 380px; background: radial-gradient(circle, rgba(254,0,12,0.45), transparent 70%); top: -120px; right: -80px; }
.hours-section::after { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%); bottom: -160px; left: -100px; }
.hours-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.hours-status {
  display: inline-flex; align-items: center; gap: 0.6rem; margin: 1.8rem 0 1.2rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
  padding: 0.6rem 1.3rem; border-radius: 999px; font-weight: 700; letter-spacing: 0.02em; backdrop-filter: blur(4px);
}
.hours-note { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.location-copy p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1rem; }
.location-details { margin: 1.8rem 0; display: grid; gap: 1.1rem; }
.location-details li { display: flex; flex-direction: column; gap: 0.15rem; padding-left: 1rem; border-left: 3px solid var(--red); }
.li-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }
.location-details a:hover { color: var(--red); }
.location-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.location-map iframe, .contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,0.82); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand img { width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 14px; padding: 6px; margin-bottom: 1rem; }
.footer-brand p { max-width: 320px; font-size: 0.97rem; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; letter-spacing: 0.01em; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.78); font-size: 0.96rem; margin-bottom: 0.6rem; transition: color 0.25s ease; }
.footer-col a:hover { color: #fff; }
.footer-status { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 700; background: rgba(255,255,255,0.1); padding: 0.4rem 0.9rem; border-radius: 999px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem; padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,0.14); margin-top: 0.5rem; }
.copyright { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.socials { display: flex; gap: 0.7rem; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.socials a:hover { transform: translateY(-3px); background: var(--red); border-color: var(--red); }
.socials svg { width: 20px; height: 20px; fill: #fff; }
.socials-dark a { background: rgba(10,31,146,0.08); border-color: var(--line); }
.socials-dark svg { fill: var(--blue); }
.socials-dark a:hover { background: var(--red); border-color: var(--red); }
.socials-dark a:hover svg { fill: #fff; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { position: relative; background: var(--blue); color: #fff; overflow: hidden; padding: clamp(5rem, 11vw, 8.5rem) 0 clamp(4rem, 8vw, 6rem); }
.contact-hero::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(254,0,12,0.4), transparent 70%); top: -160px; right: -120px; filter: blur(6px); }
.contact-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(6,17,96,0.4)); }
.contact-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.contact-hero .eyebrow { color: #ffd2d4; }
/* Buttons sit on a blue field here — force high contrast */
.contact-hero .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.contact-hero .btn-primary:hover { background: #fff; color: var(--red); }
.contact-hero .btn-outline { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.contact-hero .btn-outline:hover { background: #fff; color: var(--blue); border-color: #fff; }
.page-title { font-size: clamp(2.3rem, 5.6vw, 4rem); }
.page-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.9); margin-top: 1.2rem; max-width: 600px; }
.contact-hero .hero-actions { margin-top: 2.2rem; }

.contact-cards-section { background: var(--cream); margin-top: 0; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); margin-top: -7rem; position: relative; z-index: 5; }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 2.2rem 1.8rem; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.contact-icon { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), #1a31b8); box-shadow: 0 10px 24px rgba(10,31,146,0.3); }
.contact-card:nth-child(2) .contact-icon { background: linear-gradient(135deg, var(--red), #ff4b53); box-shadow: 0 10px 24px rgba(254,0,12,0.3); }
.contact-icon svg { width: 30px; height: 30px; fill: #fff; }
.contact-card h2 { font-size: 1.35rem; color: var(--blue); margin-bottom: 0.5rem; }
.contact-card p { color: var(--ink-soft); }
.contact-card a:hover { color: var(--red); }
.card-link { display: inline-block; margin-top: 1rem; font-weight: 700; color: var(--blue); font-size: 0.92rem; }
.card-link:hover { color: var(--red); }
.contact-status { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-weight: 700; font-size: 0.9rem; background: var(--cream); border: 1px solid var(--line); padding: 0.45rem 1rem; border-radius: 999px; }

.contact-map-section { background: var(--cream); }
.contact-map-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact-intro p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1rem; }
.contact-intro .socials { margin-top: 1.8rem; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }

.cta-band { position: relative; background: linear-gradient(120deg, var(--red), var(--red-deep)); color: #fff; text-align: center; padding: clamp(3.5rem, 8vw, 6rem) 0; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%); }
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { margin-top: 0.8rem; color: rgba(255,255,255,0.92); font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; margin-top: 2rem; }
.cta-band .btn-order { background: #fff; color: var(--red); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.cta-band .btn-order:hover { background: var(--blue); color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .intro-grid, .menu-grid, .about-grid, .location-grid, .contact-map-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-image { max-width: 560px; margin-inline: auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    height: 100vh; height: 100dvh; width: min(82vw, 340px); overflow-y: auto;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0.3rem;
    background: var(--cream); padding: 6rem 1.6rem 2rem; box-shadow: -20px 0 60px rgba(10,23,43,0.25);
    transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 90;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm); }
  .nav-link::after { display: none; }
  .nav-link:hover { background: rgba(10,31,146,0.06); }
  .nav-cta { margin-left: 0; margin-top: 0.8rem; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(6,17,96,0.45); backdrop-filter: blur(2px); z-index: 80; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }

  .hero { min-height: 88vh; }
  .hero-actions .btn, .location-actions .btn, .menu-cta .btn, .contact-hero .hero-actions .btn { flex: 1 1 auto; }
  .contact-cards { grid-template-columns: 1fr; margin-top: -5rem; }
  .menu-lists { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .dish-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.05rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-media { transform: none; }
}

/* ============================================================
   AREA / DELIVERY PAGES
   ============================================================ */
.area-hero { position: relative; min-height: min(66vh, 600px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.area-hero-media {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 55%;
  transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards;
}
.area-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(6,17,96,0.93) 0%, rgba(10,31,146,0.74) 44%, rgba(10,31,146,0.34) 100%),
    linear-gradient(0deg, rgba(6,17,96,0.5), rgba(6,17,96,0));
}
.area-hero-inner { padding-block: 4.5rem; max-width: 780px; }
.area-hero .eyebrow { color: #fff; background: rgba(255,255,255,0.12); padding: 0.45rem 0.95rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.area-hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.area-hero p { font-size: clamp(1.04rem, 2vw, 1.24rem); color: rgba(255,255,255,0.92); margin-top: 1.2rem; max-width: 640px; }
.area-hero .hero-actions { margin-top: 2rem; }

/* Breadcrumb */
.crumbs { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0.4rem; }
.crumbs a { color: var(--blue); font-weight: 600; }
.crumbs a:hover { color: var(--red); }
.area-hero .crumbs { color: rgba(255,255,255,0.8); margin-top: 1rem; }
.area-hero .crumbs a { color: #fff; }

/* Two-column info */
.area-info { background: var(--cream); }
.area-info-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.area-info-copy .section-title { margin-bottom: 0.6rem; }
.area-info-copy p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; }
.area-info-copy .btn { margin-top: 1.8rem; }

/* Delivery zone / details card */
.zone-card { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red); border-radius: var(--radius); padding: 1.9rem 2rem; box-shadow: var(--shadow-md); }
.zone-card h3 { color: var(--blue); font-size: 1.3rem; margin-bottom: 1rem; }
.zone-list li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.zone-list li:last-child { border-bottom: 0; }
.zone-list .z-dist { color: var(--red); font-size: 0.82rem; font-weight: 700; white-space: nowrap; }
.zone-note { margin-top: 1.1rem; color: var(--ink-soft); font-size: 0.92rem; }
.zone-detail { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.zone-detail:last-of-type { border-bottom: 0; }
.zone-detail .zd-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.zone-detail a:hover { color: var(--red); }
.zone-card .btn { width: 100%; margin-top: 1.3rem; }

/* Blue radius band */
.radius-band { position: relative; background: var(--blue); color: #fff; overflow: hidden; text-align: center; }
.radius-band::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(254,0,12,0.45), transparent 70%); top: -120px; right: -80px; }
.radius-band::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%); bottom: -160px; left: -100px; }
.radius-inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.radius-badge { display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); padding: 0.55rem 1.25rem; border-radius: 999px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 1.4rem; backdrop-filter: blur(4px); }
.radius-badge .pin { width: 16px; height: 16px; fill: #fff; }
.radius-inner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin: 1rem auto 2rem; max-width: 580px; }

/* Area cards grid (hub) */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.area-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; overflow: hidden;
}
.area-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--red)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.area-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.area-card:hover::before { transform: scaleX(1); }
.area-card .area-dist { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.area-card h3 { color: var(--blue); font-size: 1.4rem; margin: 0.4rem 0 0.5rem; }
.area-card p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.area-card .area-link { margin-top: 1.1rem; font-weight: 700; color: var(--blue); }
.area-card:hover .area-link { color: var(--red); }

@media (max-width: 980px) {
  .area-info-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-hero .hero-actions .btn { flex: 1 1 auto; }
}

/* ============================================================
   ORDER DIRECT / DOORDASH PAGE
   ============================================================ */
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); align-items: stretch; }
.compare-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.compare-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.compare-card .cc-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.compare-card .cc-big { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 3.4rem); line-height: 1; margin: 0.6rem 0 0.25rem; }
.compare-card .cc-sub { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.4rem; }
.compare-card ul { display: grid; gap: 0; margin-top: auto; }
.compare-card li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.72rem 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.compare-card li:last-child { border-bottom: 0; }
.compare-card .cc-amt { font-weight: 700; white-space: nowrap; }
.compare-card .cc-foot { margin-top: 1.4rem; padding-top: 1.3rem; border-top: 2px solid var(--line); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }

.compare-card.bad { border-top: 5px solid var(--red); }
.compare-card.bad .cc-label { color: var(--red); }
.compare-card.bad .cc-big { color: var(--red); }
.compare-card.bad .cc-amt { color: var(--red); }

.compare-card.good { border-top: 5px solid var(--blue); background: linear-gradient(180deg, #ffffff, #f4f6ff); box-shadow: var(--shadow-md); }
.compare-card.good .cc-label { color: var(--blue); }
.compare-card.good .cc-big { color: var(--blue); }
.compare-card.good .cc-amt { color: var(--blue); }
.compare-card.good .cc-badge { position: absolute; top: -13px; right: 1.6rem; background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.95rem; border-radius: 999px; box-shadow: 0 8px 20px rgba(10,31,146,0.3); }

/* Commission breakdown bar */
.breakdown { max-width: 780px; margin: clamp(2rem, 5vw, 3.2rem) auto 0; text-align: center; }
.bd-head { font-family: var(--font-display); font-size: 1.3rem; color: var(--blue); margin-bottom: 1.3rem; }
.bd-bar { display: flex; height: 56px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.bd-seg { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.92rem; min-width: 0; }
.bd-seg.s1 { background: var(--red); flex: 30; }
.bd-seg.s2 { background: #ff5a62; flex: 15; }
.bd-seg.s3 { background: var(--blue); flex: 3; font-size: 0.72rem; }
.bd-legend { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; margin-top: 1.2rem; }
.bd-legend span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }
.bd-dot { width: 13px; height: 13px; border-radius: 4px; flex: none; }
.bd-dot.d1 { background: var(--red); }
.bd-dot.d2 { background: #ff5a62; }
.bd-dot.d3 { background: var(--blue); }
.bd-caption { margin-top: 1.5rem; color: var(--ink-soft); font-size: 1rem; max-width: 600px; margin-inline: auto; }
.bd-caption strong { color: var(--red); }

@media (max-width: 680px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card.good { order: -1; }
}

/* ============================================================
   FEEDBACK / REVIEW PAGE
   ============================================================ */
.review-wrap { max-width: 780px; margin: 0 auto; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--red);
  border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-md);
}
.review-card .review-head { text-align: center; margin-bottom: 1.6rem; }
.review-card .review-head h2 { color: var(--blue); font-size: clamp(1.5rem, 3.5vw, 2rem); }
.review-card .review-head p { color: var(--ink-soft); margin-top: 0.5rem; }
.review-stars { font-size: 1.5rem; letter-spacing: 0.18em; color: #f5a623; margin-bottom: 0.8rem; }
/* Give the embedded EMR form room to render cleanly */
.review-card emr-collect-review-form { display: block; width: 100%; }
.review-card emr-collect-review-form:empty { min-height: 220px; }
.review-fallback { text-align: center; margin-top: 1.8rem; color: var(--ink-soft); font-size: 0.95rem; }
.review-fallback a { color: var(--blue); font-weight: 700; }
.review-fallback a:hover { color: var(--red); }

/* Homepage reviews carousel */
.reviews-section { background: var(--white); }
.reviews-embed { max-width: 1100px; margin: 0 auto; }
.reviews-embed emr-simple-carousel { display: block; width: 100%; }
.reviews-embed emr-simple-carousel:empty { min-height: 260px; }

/* FAQ accordion */
.faq-section { background: var(--cream-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 0.9rem; box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow 0.3s var(--ease); }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-item summary::after { content: "+"; font-size: 1.6rem; line-height: 1; color: var(--red); flex: none; transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.4rem 1.3rem; }
.faq-a p { color: var(--ink-soft); }
.faq-a a { color: var(--blue); font-weight: 600; }
.faq-a a:hover { color: var(--red); }

/* ============================================================
   FULL MENU PAGE
   ============================================================ */
.menu-page { background: var(--cream); }
.menu-note {
  max-width: 820px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red);
  border-radius: var(--radius); padding: 1.4rem 1.8rem; box-shadow: var(--shadow-sm);
}
.menu-note strong { color: var(--blue); }
.menu-note p { color: var(--ink-soft); }

.menu-columns { columns: 2; column-gap: clamp(1.6rem, 4vw, 3rem); }
.menu-block {
  break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.7rem; margin-bottom: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-block:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.menu-block-head {
  display: flex; align-items: center; gap: 0.6rem; padding-bottom: 0.7rem; margin-bottom: 0.9rem;
  border-bottom: 2px solid var(--line);
}
.menu-block-head .flag { font-size: 1.3rem; line-height: 1; }
.menu-block-head h2 { font-size: 1.4rem; color: var(--blue); }
.menu-block-head .free-tag {
  margin-left: auto; font-family: var(--font-body); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--red);
  padding: 0.3rem 0.6rem; border-radius: 999px;
}
.menu-items { display: flex; flex-direction: column; gap: 0.85rem; }
.m-item { }
.m-row { display: flex; align-items: baseline; gap: 0.5rem; }
.m-name { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.m-lead { flex: 1; border-bottom: 2px dotted var(--line); position: relative; top: -5px; min-width: 14px; }
.m-price { font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: 1.05rem; white-space: nowrap; }
.m-desc { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.15rem; max-width: 92%; }

.menu-foot { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.menu-foot .menu-cta { margin-top: 0; }
.menu-disclaimer { margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.85rem; }

@media (max-width: 760px) {
  .menu-columns { columns: 1; }
}

/* Hero social-proof avatars (town pages + DoorDash) */
.hero-reviews {
  display: inline-flex; align-items: center; margin-top: 1.7rem; max-width: 100%;
  padding: 0.55rem 1rem; background: rgba(255, 255, 255, 0.95); border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.hero-reviews emr-avatars { display: block; }
.hero-reviews emr-avatars:empty { min-width: 200px; min-height: 38px; }
