/* ============================================================
   FAMOUS UNCLE AL'S — SHARED STYLESHEET
   Brand: #CC1722 (red) · #F5C518 (yellow) · #1A1A1A (charcoal)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #CC1722;
  --red-dark: #A8111B;
  --yellow:   #F5C518;
  --yel-dark: #D4A800;
  --dark:     #1A1A1A;
  --dark2:    #111111;
  --white:    #FFFFFF;
  --cream:    #FAFAF8;
  --gray:     #666666;
  --light:    #F0F0EC;
  --border:   #E0E0DC;
  --radius:   4px;
  --shadow:   0 4px 20px rgba(0,0,0,0.08);
  --nav-h:    68px;
  --font-body:'Inter', sans-serif;
  --font-disp:'Bebas Neue', sans-serif;
  --transition:0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  /* Room for mobile CTA bar */
  padding-bottom: 64px;
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1 { font-family: var(--font-disp); font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 400; line-height: 1.05; letter-spacing: 0.02em; }
h2 { font-family: var(--font-disp); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; line-height: 1.1; letter-spacing: 0.02em; }
h3 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--gray); line-height: 1.7; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; }
.section-sm{ padding: 52px 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-red    { background: var(--red);    color: var(--white); box-shadow: 4px 4px 0 var(--red-dark); }
.btn-red:hover  { background: var(--red-dark); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 #7a0d14; }
.btn-yellow { background: var(--yellow); color: var(--dark);  box-shadow: 4px 4px 0 var(--yel-dark); }
.btn-yellow:hover { background: var(--yel-dark); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 #a07800; }
.btn-outline{ background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-dark   { background: var(--dark); color: var(--white); box-shadow: 4px 4px 0 #000; }
.btn-dark:hover { background: #2a2a2a; transform: translate(-1px,-1px); }
.btn-lg { padding: 17px 36px; font-size: 0.92rem; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo span { color: var(--yellow); }
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  padding: 4px;
  flex-shrink: 0;
}

/* Hero logo */
.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo-img {
  height: 140px;
  width: auto;
  border-radius: var(--radius);
  padding: 10px;
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

/* SVG social icons */
.social-link svg { width: 18px; height: 18px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 0.8rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark2);
  padding: 16px 24px 24px;
  z-index: 99;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 2px; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; font-size: 0.88rem; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/interior.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.6) 60%, rgba(204,23,34,0.15) 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero h1   { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero p    { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 540px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* Page hero (shorter) */
.page-hero {
  background: var(--dark);
  padding: 68px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(204,23,34,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1  { color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p   { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 520px; }

/* ── TRUST / AWARDS STRIP ─────────────────────────────────── */
.awards-strip {
  background: var(--red);
  padding: 56px 0;
}
.awards-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.award-headline {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.15;
}
.award-headline span { color: var(--yellow); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 640px;
}
.stat-item { text-align: center; }
.stat-num  { font-family: var(--font-disp); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); letter-spacing: 0.03em; line-height: 1; }
.stat-lbl  { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; font-weight: 600; }

/* ── FEATURED ITEMS ───────────────────────────────────────── */
.featured-section { background: var(--cream); }
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.item-card {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}
.item-card:hover {
  border-color: var(--red);
  box-shadow: 4px 4px 0 var(--red-dark);
  transform: translate(-2px, -2px);
}
.item-img {
  height: 180px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.item-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: var(--radius);
}
.item-body { padding: 20px; }
.item-body h3 {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.1;
}
.item-body p { font-size: 0.88rem; margin: 0; }

/* ── ABOUT / STORY SECTION ────────────────────────────────── */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text .eyebrow { color: var(--yellow); }
.about-text h2 { color: var(--white); margin-bottom: 20px; }
.about-text h2 span { color: var(--red); }
.about-text p  { color: rgba(255,255,255,0.62); font-size: 0.96rem; margin-bottom: 16px; }
.about-features { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.about-features li::before {
  content: '▶';
  color: var(--yellow);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 4px 4px 0 var(--red-dark);
}
.about-badge .yr { font-family: var(--font-disp); font-size: 2rem; color: var(--white); line-height: 1; }
.about-badge .est { font-size: 0.6rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: var(--cream);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text  {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}
.review-cite  { font-size: 0.78rem; }
.review-cite strong { color: var(--dark); display: block; font-weight: 700; }
.review-cite span   { color: var(--gray); }
.reviews-note {
  background: var(--light);
  border-left: 3px solid var(--yellow);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 32px;
}
.reviews-note a { color: var(--red); font-weight: 600; }

/* ── HOURS & LOCATION ─────────────────────────────────────── */
.hours-section { background: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hours-card-head {
  background: var(--dark);
  padding: 14px 20px;
}
.hours-card-head h3 {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 400;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 13px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.hours-table td:last-child { text-align: right; color: var(--gray); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-note {
  background: rgba(204,23,34,0.04);
  border-top: 1px solid rgba(204,23,34,0.1);
  padding: 11px 20px;
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 6px; }
.contact-row  { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
}
.contact-label { font-size: 0.7rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-val   { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.contact-val a { color: var(--red); }
.contact-val a:hover { text-decoration: underline; }
.contact-sub   { font-size: 0.78rem; color: var(--gray); margin-top: 2px; font-weight: 400; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}
.map-placeholder:hover { border-color: var(--red); background: rgba(204,23,34,0.03); }
.map-placeholder .map-pin { font-size: 2.8rem; }
.map-placeholder h4 {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}
.map-placeholder p { font-size: 0.82rem; color: var(--gray); text-align: center; margin: 0; }
/* If a real iframe is placed inside, it fills the container */
.map-placeholder iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(204,23,34,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2   { color: var(--white); margin-bottom: 12px; }
.cta-banner h2 span { color: var(--red); }
.cta-banner p    { color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 40px;
  margin-top: 28px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.5);
  padding: 56px 0 28px;
  border-top: 4px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo span { color: var(--yellow); }
.footer-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  padding: 4px;
  flex-shrink: 0;
}
.footer p.tagline { font-size: 0.85rem; line-height: 1.65; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
  color: var(--white);
}
.social-link:hover { background: var(--red); }
.footer h4 {
  color: var(--white);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--yellow); }
.footer address { font-style: normal; }
.footer address a { color: var(--yellow); }
.footer address a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── MOBILE CTA BAR ───────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--dark);
  border-top: 3px solid var(--red);
  z-index: 200;
  grid-template-columns: repeat(3, 1fr);
}
.cta-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255,255,255,0.75);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), color var(--transition);
}
.cta-bar-btn:last-child { border-right: none; }
.cta-bar-btn:hover { background: var(--red); color: var(--white); }
.cta-bar-btn .bar-icon { font-size: 1.3rem; }
.cta-bar-call { color: var(--yellow); }

/* ── MENU PAGE ────────────────────────────────────────────── */
.menu-notice {
  background: var(--yellow);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 0 12px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav-btn {
  flex-shrink: 0;
  padding: 9px 20px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
  text-decoration: none;
}
.menu-nav-btn:hover { border-color: var(--red); color: var(--red); }
.menu-section { margin-bottom: 56px; scroll-margin-top: 90px; }
.menu-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.menu-section-title {
  font-family: var(--font-disp);
  font-size: 2rem;
  color: var(--dark);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.menu-section-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.menu-items-list { display: flex; flex-direction: column; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.menu-item-name  { font-weight: 600; font-size: 0.94rem; color: var(--dark); }
.menu-item-desc  { font-size: 0.8rem; color: var(--gray); display: block; font-weight: 400; margin-top: 2px; }
.menu-item-price { font-weight: 700; color: var(--red); white-space: nowrap; font-size: 0.88rem; font-family: var(--font-body); }
.menu-cta-strip {
  background: var(--red);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.menu-cta-strip p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }
.menu-cta-strip a { flex-shrink: 0; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.story-img-block {
  position: relative;
}
.story-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.story-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-yr-badge {
  position: absolute;
  bottom: -16px; right: 20px;
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-disp);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  box-shadow: 3px 3px 0 var(--red-dark);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--red); }
.value-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.value-card h3 {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-bottom: 6px;
}
.value-card p { font-size: 0.85rem; margin: 0; }

/* Catering section */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.catering-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.catering-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.catering-list li::before { content: '▶'; color: var(--yellow); font-size: 0.55rem; }

/* ── REVIEWS PAGE ─────────────────────────────────────────── */
.rating-strip {
  background: var(--red);
  padding: 48px 0;
}
.rating-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.rating-num { font-family: var(--font-disp); font-size: 4rem; color: var(--white); letter-spacing: 0.02em; line-height: 1; }
.rating-sub { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; font-weight: 600; }
.rating-stars { color: var(--yellow); font-size: 1.6rem; letter-spacing: 3px; margin-bottom: 4px; }
.all-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.leave-review-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 2px solid var(--border);
}
.leave-review-cta h3 { font-family: var(--font-disp); font-size: 2rem; letter-spacing: 0.04em; font-weight: 400; margin-bottom: 8px; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border-left: 4px solid var(--red);
}
.info-card h3 {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.info-card p, .info-card address { font-size: 0.9rem; color: var(--gray); font-style: normal; }
.info-card a { color: var(--red); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
.info-card .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.info-card .hours-row:last-child { border-bottom: none; }
.info-card .hours-row span { color: var(--gray); }
.order-steps { list-style: none; counter-reset: steps; display: flex; flex-direction: column; gap: 0; }
.order-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--gray);
}
.order-steps li:last-child { border-bottom: none; }
.order-steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  font-family: var(--font-body);
}

/* ── CONTACT PAGE (contact.html) ──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 4px solid var(--red);
}
.contact-card-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.contact-card h3 {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 6px; }
.contact-link { font-size: 0.88rem; color: var(--red); font-weight: 600; text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.contact-phone { font-size: 1.2rem; }
.contact-card .hours-table td { padding: 8px 0; font-size: 0.88rem; }
.contact-card .hours-table td:first-child { color: var(--dark); font-weight: 500; padding-right: 16px; }
.contact-card .hours-table td:last-child { text-align: left; color: var(--gray); }
.map-col {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.map-col .map-placeholder {
  aspect-ratio: unset;
  height: 360px;
}

/* How to Order steps */
.order-steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }
.order-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.order-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.6rem;
  letter-spacing: 0;
  font-weight: 400;
  box-shadow: 3px 3px 0 var(--red-dark);
}
.step-body h3 {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 6px;
}
.step-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 8px; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1023px) {
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .items-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-badge   { bottom: -16px; right: 12px; }
  .story-grid    { grid-template-columns: 1fr; gap: 40px; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .catering-grid { grid-template-columns: 1fr; }
  .all-reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .map-col { position: static; }
  .map-col .map-placeholder { height: 280px; }
  .hours-grid    { grid-template-columns: 1fr; }
  .rating-inner  { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 767px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section  { padding: 52px 0; }
  .hero     { min-height: 70vh; padding: 64px 0 52px; }
  .items-grid   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .all-reviews-grid { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom{ flex-direction: column; text-align: center; }
  .hero-btns    { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .btn-group    { flex-direction: column; align-items: center; }
  .btn-group .btn { width: 100%; max-width: 320px; justify-content: center; }
  .about-badge  { width: 80px; height: 80px; right: 0; }
  .about-badge .yr { font-size: 1.5rem; }
  .mobile-cta-bar { display: grid; }
  .menu-cta-strip { flex-direction: column; text-align: center; }
}
