/* ============================================================
   Mrs A's Empanadas — Shared Stylesheet
   Dominican Republic colours: Royal Blue · Vibrant Red · White
   ============================================================ */

/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  /* Brand Colours */
  --blue:        #002D62;
  --blue-dark:   #001533;
  --blue-mid:    #003A7A;
  --blue-tint:   rgba(0, 45, 98, 0.07);
  --red:         #CE1126;
  --red-dark:    #A50D1E;
  --white:       #FFFFFF;

  /* Warm Background Tones */
  --cream:       #FAF6F1;
  --cream-dark:  #F4EDE3;
  --beige:       #EDE0D0;
  --beige-dark:  #DDD0BC;

  /* Text */
  --text-dark:   #1C1C1E;
  --text-mid:    #3A3A3C;
  --text-muted:  #6C6C70;
  --text-light:  #AEAEB2;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.16);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.22);

  /* Radii */
  --r-sm:   8px;
  --r:      16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:  .15s ease;
  --t:       .3s  ease;
  --t-slow:  .55s ease;

  /* Spacing */
  --sp-xs:  .5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;
  --sp-4xl: 8rem;

  /* Layout */
  --max-w:     1200px;
  --pad-x:     1.5rem;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6.5vw, 4.75rem); }
h2 { font-size: clamp(2rem,   4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);    }
h4 { font-size: 1.2rem; }

p { line-height: 1.75; color: var(--text-mid); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -.01em;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.0625rem; }
.btn--sm { padding: .6rem 1.5rem;  font-size: .9375rem;  }

/* Primary — Red */
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(206,17,38,.35);
}

/* Secondary — Blue */
.btn--secondary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--secondary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,45,98,.35);
}

/* Outline White (on dark backgrounds) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* Outline Blue (on light backgrounds) */
.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============================================================
   Section Tags
   ============================================================ */
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .875rem;
}
.section-tag--blue  { color: var(--blue); }
.section-tag--white { color: rgba(255,255,255,.65); }

/* ============================================================
   Status Badge
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.status-badge--open {
  background: rgba(52,199,89,.12);
  color: #1A7A36;
  border-color: rgba(52,199,89,.3);
}
.status-badge--closed {
  background: rgba(206,17,38,.10);
  color: var(--red-dark);
  border-color: rgba(206,17,38,.25);
}
.status-badge--closed-today {
  background: rgba(255,149,0,.12);
  color: #8A4500;
  border-color: rgba(255,149,0,.28);
}

/* Badge on hero (frosted glass) */
.status-badge--hero {
  background: rgba(255,255,255,.14) !important;
  color: var(--white) !important;
  border-color: rgba(255,255,255,.28) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge--open .status-dot        { background: #34C759; animation: pulse-green 2s infinite; }
.status-badge--closed .status-dot      { background: var(--red); }
.status-badge--closed-today .status-dot{ background: #FF9500; }
.status-badge--hero .status-dot        { background: var(--white); }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0   rgba(52,199,89,.45); }
  50%      { box-shadow: 0 0 0 7px rgba(52,199,89,0);   }
}

/* 24/7 Ordering pill */
.ordering-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: rgba(52,199,89,.13);
  border: 1px solid rgba(52,199,89,.28);
  color: #1A7A36;
  padding: .3rem .85rem;
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 600;
}
.ordering-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #34C759;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity .75s ease, transform .75s ease;
}
[data-animate="fade-up"]    { transform: translateY(28px); }
[data-animate="fade-left"]  { transform: translateX(-28px); }
[data-animate="fade-right"] { transform: translateX(28px); }
[data-animate].is-visible   { opacity: 1; transform: translate(0); }

[data-delay="1"] { transition-delay: .10s; }
[data-delay="2"] { transition-delay: .20s; }
[data-delay="3"] { transition-delay: .30s; }
[data-delay="4"] { transition-delay: .40s; }

/* ============================================================
   Dominican Flag Accent Bar (top of page)
   ============================================================ */
.flag-bar {
  height: 4px;
  background: linear-gradient(to right, var(--blue) 50%, var(--red) 50%);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 4px; /* below flag bar */
  left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
}

.site-header--transparent { background: transparent; }

.site-header--solid {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: box-shadow var(--t);
}
.site-header--solid .nav-logo img {
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--t-fast);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.site-header--solid .nav-links a { color: var(--text-dark); }
.site-header--solid .nav-links a:hover { color: var(--red); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.site-header--solid .mobile-menu-btn span { background: var(--text-dark); }

/* Hamburger → X */
.mobile-menu-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem var(--pad-x) 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 1px solid rgba(0,0,0,.06);
}
.mobile-menu.is-open { display: block; }

.mobile-menu .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1rem;
}
.mobile-menu .nav-links a {
  color: var(--text-dark);
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1.0625rem;
  width: 100%;
}
.mobile-menu .nav-links a::after { display: none; }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 19, 50, .82) 0%,
    rgba(0, 19, 50, .60) 55%,
    rgba(0, 19, 50, .35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: var(--sp-4xl);
  max-width: 780px;
}

/* Pre-tag above headline */
.hero-pretag {
  display: inline-block;
  background: rgba(206,17,38,.85);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}

/* Status row */
.hero-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: var(--sp-md);
}
.hero-status-hours {
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  font-weight: 400;
}
.hero-status-hours strong {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  margin-bottom: var(--sp-md);
}

.hero-subhead {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
}

.hero-note {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-note svg {
  width: 15px; height: 15px;
  stroke: rgba(255,255,255,.6);
  fill: none;
  flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: cue-bounce 2.5s ease-in-out infinite;
}
.scroll-cue svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,.4);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
@keyframes cue-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   Featured Dishes Section
   ============================================================ */
.featured-section {
  background: var(--cream);
  padding: var(--sp-4xl) 0;
}

.featured-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--sp-3xl);
}
.featured-header h2 { margin-bottom: var(--sp-md); }
.featured-header p  { font-size: 1.0625rem; color: var(--text-muted); }

/* Grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

/* Card */
.dish-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t);
}
.dish-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.dish-card-img-wrap { overflow: hidden; height: 240px; }
.dish-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.dish-card:hover .dish-card-img { transform: scale(1.05); }

.dish-card-body { padding: 1.5rem; }
.dish-card-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .4rem;
}
.dish-card-body h3 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--text-dark); }
.dish-card-body p  { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   Story Section
   ============================================================ */
.story-section {
  background: var(--white);
  padding: var(--sp-4xl) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-content h2 { margin-bottom: var(--sp-lg); }
.story-content p  { font-size: 1.0625rem; margin-bottom: var(--sp-md); }

.story-signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-style: italic;
  color: var(--red);
  margin-top: var(--sp-lg);
}

/* Image with decorative border */
.story-image-wrap {
  position: relative;
  padding: 0 1.5rem 1.5rem 0;
}
.story-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 85%; height: 85%;
  border: 4px solid var(--beige);
  border-radius: var(--r-xl);
  z-index: 0;
}
.story-image-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   Tradition Section (Blue BG)
   ============================================================ */
.tradition-section {
  background: var(--blue);
  padding: var(--sp-4xl) 0;
  position: relative;
  overflow: hidden;
}
/* Subtle radial light */
.tradition-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 65%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}

.tradition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tradition-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.tradition-content h2 {
  color: var(--white);
  margin-bottom: var(--sp-lg);
}
.tradition-content p {
  color: rgba(255,255,255,.78);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-xl);
}

/* Stats row */
.tradition-stats {
  display: flex;
  gap: 0;
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,.12);
}

.tradition-stat {
  flex: 1;
  padding: var(--sp-md) var(--sp-xl) var(--sp-md) 0;
}

.tradition-stat + .tradition-stat {
  padding-left: var(--sp-xl);
  border-left: 1px solid rgba(255,255,255,.12);
}

.tradition-stat p { margin: 0; }

/* Large italic red value — the visual anchor */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: -.02em;
}

/* Quiet, elegant label beneath */
.stat-label {
  font-size: .875rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
  letter-spacing: .01em;
}

/* ============================================================
   Order CTA Section (Red BG)
   ============================================================ */
.order-cta-section {
  background: var(--red);
  padding: var(--sp-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.order-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.09) 0%, transparent 65%);
  pointer-events: none;
}
.order-cta-section h2  { color: var(--white); margin-bottom: var(--sp-md); }
.order-cta-section > .container > p {
  color: rgba(255,255,255,.85);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto var(--sp-xl);
}
.order-cta-note {
  margin-top: var(--sp-md);
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: var(--sp-4xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

/* Brand column */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--r);
  padding: 12px 20px;
  margin-bottom: var(--sp-md);
}
.footer-logo-wrap img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand > p {
  color: rgba(255,255,255,.55);
  font-size: .9375rem;
  max-width: 260px;
  margin-bottom: var(--sp-md);
  line-height: 1.7;
}

/* Social icons */
.footer-social { display: flex; gap: .75rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  transition: background var(--t);
  color: var(--white);
}
.social-link:hover { background: rgba(255,255,255,.18); }
.social-link svg   { width: 18px; height: 18px; fill: currentColor; }

/* Column headings */
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-md);
}

.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.72);
  font-size: .9375rem;
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,.72);
  font-size: .9375rem;
  line-height: 1.85;
}
.footer-col address a { color: rgba(255,255,255,.72); transition: color var(--t-fast); }
.footer-col address a:hover { color: var(--white); }

/* Hours list */
.footer-hours-list { color: rgba(255,255,255,.72); font-size: .9375rem; }
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .275rem 0;
}
.footer-hours-list .day { color: rgba(255,255,255,.42); }
.footer-hours-note {
  margin-top: .875rem;
  font-size: .8rem;
  color: rgba(206,17,38,.85);
  font-weight: 500;
}

/* Footer bottom bar */
.footer-bottom {
  padding-top: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .875rem; }

/* ============================================================
   Contact Page — Hero
   ============================================================ */
.contact-hero {
  background: var(--blue);
  padding: 150px 0 var(--sp-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(206,17,38,.18) 0%, transparent 60%);
  pointer-events: none;
}
.contact-hero > .container { position: relative; z-index: 1; }
.contact-hero h1 { color: var(--white); margin-bottom: var(--sp-md); }
.contact-hero > .container > p {
  color: rgba(255,255,255,.75);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   Contact Page — Info Cards
   ============================================================ */
.contact-section {
  background: var(--cream);
  padding: var(--sp-4xl) 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--sp-3xl);
}

.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  width: 56px; height: 56px;
  background: var(--blue-tint);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
}
.contact-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 { font-size: 1.125rem; margin-bottom: .75rem; }
.contact-card p, .contact-card address {
  font-style: normal;
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.75;
}
.contact-card a { color: var(--red); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-card .closed-note {
  color: var(--red);
  font-size: .8rem;
  font-weight: 500;
  margin-top: .5rem;
}
.contact-card .order-btn { margin-top: 1rem; }

/* ============================================================
   Contact Page — Status Card
   ============================================================ */
.status-section {
  background: var(--white);
  padding: var(--sp-3xl) 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

.status-card {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.status-card .status-badge {
  font-size: 1rem;
  padding: .75rem 1.5rem;
  margin-bottom: var(--sp-md);
}
.status-card .status-badge .status-dot {
  width: 10px; height: 10px;
}
.status-card h3 { margin-bottom: .4rem; }
.status-today-hours {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: .4rem;
}
.status-detail {
  font-size: .9375rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}
.status-24-7 {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--text-muted);
}

/* ============================================================
   Map Section
   ============================================================ */
.map-section { line-height: 0; }
.map-container { width: 100%; height: 480px; }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
  .footer-brand { grid-column: 1 / -1; }

  .story-grid,
  .tradition-grid { gap: var(--sp-2xl); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links               { display: none; }
  .nav-actions .btn        { display: none; }
  .mobile-menu-btn         { display: flex; }

  /* Hero */
  .hero-content            { max-width: 100%; }
  .hero-actions            { flex-direction: column; }
  .hero-actions .btn       { width: 100%; justify-content: center; }

  /* Grids → single col */
  .story-grid,
  .tradition-grid          { grid-template-columns: 1fr; }

  /* Story: reverse so image comes first on mobile */
  .story-grid              { direction: ltr; }
  .story-image-wrap        { order: -1; padding: 0; }
  .story-image-wrap::after { display: none; }
  .story-image-wrap img    { height: 380px; }

  .tradition-image img     { height: 300px; }

  /* Footer */
  .footer-grid             { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .footer-brand img        { display: none; }
  .footer-bottom           { flex-direction: column; text-align: center; }

  /* Contact cards */
  .contact-cards           { grid-template-columns: 1fr; }

  /* Map */
  .map-container           { height: 320px; }

  /* Tradition stats */
  .tradition-stats                    { flex-wrap: wrap; }
  .tradition-stat                     { flex: 1 1 40%; padding: var(--sp-md) var(--sp-md) var(--sp-md) 0; }
  .tradition-stat + .tradition-stat   { padding-left: var(--sp-md); }
}

@media (max-width: 480px) {
  :root {
    --pad-x:  1.125rem;
    --sp-4xl: 4.5rem;
    --sp-3xl: 3rem;
  }
  .hero-content {
    padding-top: 90px;
    padding-bottom: var(--sp-3xl);
  }
  .dishes-grid             { grid-template-columns: 1fr; }
  .contact-hero            { padding: 120px 0 var(--sp-3xl); }
}
