/* =========================================================
   GOLDBERG'S DELICATESSEN & BAGEL — FT. LAUDERDALE
   Sister-restaurant aesthetic to A&S Deli
   Floating pill nav · Stadium image masks · Cream palette
   ========================================================= */

:root {
  --navy: #1B3E92;
  --navy-deep: #142E6D;
  --cream: #f5ecd7;
  --cream-warm: #faf3e0;
  --red: #E32213;
  --red-dark: #B01810;
  --mustard: #d4a72c;
  --mustard-dark: #b88c1c;
  --ink: #1a1a1a;
  --char: #3a3a3a;
  --gray: #6b6b6b;
  --gray-light: #e3dec8;
  --off-white: #fdfbf6;
  --shadow-sm: 0 2px 8px rgba(15, 29, 40, 0.06);
  --shadow-md: 0 6px 24px rgba(15, 29, 40, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 29, 40, 0.18);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max-w: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.15;
  color: var(--red);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); color: var(--red); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 0.5em; }
h4 { font-size: 1.15rem; margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ FLOATING PILL NAV ============ */
.site-header {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 100;
  padding: 0 18px;
  pointer-events: none;
  transition: top 0.28s ease;
}
.site-header.scrolled { top: 12px; }
.site-header .nav-pill {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 100px;
  padding: 14px 22px 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  box-shadow: 0 12px 36px rgba(15, 29, 40, 0.22);
  border: 1px solid rgba(245, 236, 215, 0.08);
  transition: padding 0.28s ease;
}
.site-header.scrolled .nav-pill { padding: 10px 22px 10px 24px; }
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}
.site-logo img {
  width: 65px; height: 65px;
  border-radius: 50%;
  background: white;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 0 0 2px white;
  transition: width 0.28s ease, height 0.28s ease;
}
.site-header.scrolled .site-logo img {
  width: 50px; height: 50px;
}
.site-logo .brand-text {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: font-size 0.28s ease;
}
.site-header.scrolled .site-logo .brand-text { font-size: 1.15rem; }
.site-logo .brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--mustard);
  margin-top: 5px;
  text-transform: uppercase;
}
.site-header.scrolled .site-logo .brand-text small {
  font-size: 0.6rem;
  margin-top: 4px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.main-nav a:hover { background: rgba(245, 236, 215, 0.12); color: white; }
.main-nav a.nav-cta {
  background: var(--red);
  color: white;
  padding: 12px 26px;
  font-weight: 700;
  border-radius: 50px;
  margin-left: 6px;
  border: 2px solid var(--red);
}
.main-nav a.nav-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(181, 52, 31, 0.35);
}
.menu-toggle {
  display: none;
  background: rgba(245, 236, 215, 0.1);
  border: 0;
  font-size: 1.4rem;
  color: white;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50px;
}

/* ============ BUTTONS ============ */
.btn, .cta-btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 2px solid var(--red);
  background: var(--red);
  color: white !important;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn:hover, .cta-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181, 52, 31, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--red) !important;
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: white !important;
}
.btn-cream {
  background: var(--cream);
  color: var(--navy) !important;
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--mustard);
  border-color: var(--mustard);
}
.btn-mustard {
  background: var(--mustard);
  color: var(--navy) !important;
  border-color: var(--mustard);
}
.btn-mustard:hover {
  background: var(--mustard-dark);
  border-color: var(--mustard-dark);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 22px 42px; font-size: 1.05rem; }
.btn-xl { padding: 28px 56px; font-size: 1.2rem; }

/* ============ HERO — A&S STYLE (full-bleed image) ============ */
.hero {
  background: var(--cream);
  padding-top: 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  min-height: 78vh;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px 60px max(24px, calc((100vw - 1320px) / 2));
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  background: rgba(181, 52, 31, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
}
.hero h1 {
  color: var(--red);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero h1 em {
  color: var(--navy);
  font-style: italic;
  font-weight: 400;
  display: block;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: var(--char);
  max-width: 540px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Bleed image: full-height, flat outside edge, rounded inside edge */
.hero-image-wrap {
  position: relative;
  min-height: 540px;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Curved on LEFT (toward text), flat on RIGHT (off-screen) */
  border-radius: 50% 0 0 50% / 50% 0 0 50%;
  box-shadow: var(--shadow-lg);
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  background: var(--cream);
  padding: 130px 0 36px;
  text-align: center;
}
.page-hero h1 { color: var(--red); margin-bottom: 14px; }
.page-hero p { color: var(--char); max-width: 720px; margin: 0 auto; font-size: 1.12rem; }
/* When a section directly follows the page-hero, tighten the top padding too */
.page-hero + .section,
.page-hero + .section-cream,
.page-hero + .section-cream-warm,
.page-hero + .section-white,
.page-hero + section[class*="section"] { padding-top: 50px; }
.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.breadcrumbs a { color: var(--red); }
.breadcrumbs a:hover { color: var(--red-dark); }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-cream-warm { background: var(--cream-warm); }
.section-white { background: var(--off-white); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: white; }
.section-navy a { color: var(--mustard); }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-navy .section-eyebrow { color: var(--mustard); }
.section-header p {
  color: var(--char);
  font-size: 1.1rem;
}
.section-navy .section-header p { color: rgba(245,236,215,0.9); }
.section-navy h2 { color: white; }

/* ============ TWO-COL WITH MASKED IMAGE (legacy, used in some pages) ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.masked-image {
  height: 520px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.masked-left {
  border-radius: 0 400px 400px 0 / 0 260px 260px 0;
}
.masked-right {
  border-radius: 400px 0 0 400px / 260px 0 0 260px;
}
.masked-full { border-radius: 50% / 30%; }
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p { color: var(--char); font-size: 1.05rem; }

/* ============ BLEED ROW (full-width image, off-screen bleed) ============ */
.bleed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  min-height: 560px;
}
.bleed-row .bleed-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  max-width: 660px;
}
.bleed-row.image-right .bleed-text {
  padding-left: max(24px, calc((100vw - 1320px) / 2));
  margin-left: auto;
  margin-right: 0;
}
.bleed-row.image-left .bleed-text {
  padding-right: max(24px, calc((100vw - 1320px) / 2));
}
.bleed-row.image-left .bleed-text { order: 2; }
.bleed-row.image-left .bleed-image-wrap { order: 1; }

.bleed-image-wrap {
  position: relative;
  min-height: 560px;
}
.bleed-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.bleed-row.image-right .bleed-image {
  /* Curved on LEFT (toward text), flat on RIGHT (off-screen) */
  border-radius: 50% 0 0 50% / 50% 0 0 50%;
}
.bleed-row.image-left .bleed-image {
  /* Curved on RIGHT (toward text), flat on LEFT (off-screen) */
  border-radius: 0 50% 50% 0 / 0 50% 50% 0;
}
.bleed-row .bleed-text h2 { margin-bottom: 20px; }
.bleed-row .bleed-text p { color: var(--char); font-size: 1.05rem; }

/* ============ 4×2 PRODUCT GRID — WHAT WE SERVE ============ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.serve-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.serve-card .image {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.serve-card .body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.serve-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--red);
}
.serve-card p {
  color: var(--char);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 12px;
  line-height: 1.45;
}
.serve-card .link {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.serve-card .review-quote {
  font-size: 0.78rem;
  color: var(--char);
  font-style: italic;
  margin: 8px 0 14px;
  line-height: 1.45;
  padding: 12px 0 0;
  border-top: 1px dashed var(--gray-light);
  text-align: left;
}
.serve-card .review-quote .stars {
  color: var(--mustard);
  font-size: 0.78rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.serve-card .review-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ GIFT CARD PROMO SECTION ============ */
.gift-card-section {
  background: linear-gradient(135deg, var(--mustard) 0%, #c89324 100%);
  padding: 90px 0;
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.gift-card-section::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 360px; height: 360px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.12;
}
.gift-card-section::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 280px; height: 280px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.08;
}
.gift-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.gift-card-text h2 { color: var(--navy); }
.gift-card-text .hero-eyebrow {
  background: rgba(26, 46, 59, 0.12);
  color: var(--navy);
}
.gift-card-text p {
  color: var(--char);
  font-size: 1.08rem;
}
.gift-card-visual {
  position: relative;
  height: 380px;
}
.gift-card-mock {
  position: absolute;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: var(--shadow-lg);
  width: 280px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(245,236,215,0.1);
}
.gift-card-mock .gc-brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
}
.gift-card-mock .gc-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--mustard);
  margin-top: 3px;
  text-transform: uppercase;
}
.gift-card-mock .gc-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
}
.gift-card-mock .gc-label {
  font-size: 0.7rem;
  color: rgba(245,236,215,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
}
.gift-card-mock.gc-1 { top: 0; left: 20px; transform: rotate(-6deg); }
.gift-card-mock.gc-2 { top: 80px; left: 140px; transform: rotate(3deg); z-index: 2; }
.gift-card-mock.gc-3 { top: 180px; left: 60px; transform: rotate(-2deg); z-index: 3; }
.gift-card-mock.gc-2 { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
.gift-card-mock.gc-2 .gc-brand small { color: var(--mustard); }
.gift-card-mock.gc-2 .gc-amount { color: white; }
.gift-card-mock.gc-3 { background: linear-gradient(135deg, var(--cream) 0%, #e8dcb8 100%); color: var(--navy); }
.gift-card-mock.gc-3 .gc-brand { color: var(--navy); }
.gift-card-mock.gc-3 .gc-brand small { color: var(--red); }
.gift-card-mock.gc-3 .gc-amount { color: var(--red); }
.gift-card-mock.gc-3 .gc-label { color: var(--gray); }

/* ============ FEATURE CARDS ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 36px 28px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.section-navy .feature-card {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
}
.section-navy .feature-card h3 { color: white; }
.feature-card .icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  color: var(--red);
  display: block;
}
.section-navy .feature-card .icon { color: var(--mustard); }
.feature-card h3 { font-size: 1.15rem; color: var(--red); }
.feature-card p { color: var(--char); font-size: 0.95rem; }
.section-navy .feature-card p { color: rgba(245,236,215,0.9); }

/* ============ REWARDS PROGRAM SECTION ============ */
.rewards-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.rewards-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.08;
}
.rewards-section::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: var(--mustard);
  border-radius: 50%;
  opacity: 0.06;
}
.rewards-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.rewards-text h2 { color: white; }
.rewards-text .hero-eyebrow {
  background: rgba(212, 167, 44, 0.15);
  color: var(--mustard);
  margin-bottom: 22px;
}
.rewards-text > p { color: rgba(245,236,215,0.92); font-size: 1.08rem; max-width: 480px; }
.rewards-perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.rewards-perks li {
  padding: 12px 0 12px 38px;
  position: relative;
  color: var(--cream);
  font-size: 1rem;
  border-bottom: 1px solid rgba(245,236,215,0.1);
}
.rewards-perks li:last-child { border-bottom: 0; }
.rewards-perks li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--mustard);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}
.rewards-card {
  background: white;
  color: var(--ink);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  position: relative;
}
.rewards-card::before {
  content: "VIP";
  position: absolute;
  top: -16px; left: 30px;
  background: var(--red);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.rewards-card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--serif);
}
.rewards-card .member-name {
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.rewards-card .points {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.rewards-card .points-label {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.rewards-card .reward-next {
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--char);
}
.rewards-card .reward-next strong { color: var(--navy); }

/* ============ SIMPLE ORDER PAGE ============ */
.order-hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 140px 24px 60px;
}
.order-hero-inner { max-width: 720px; }
.order-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: var(--red);
  margin-bottom: 18px;
  line-height: 1;
}
.order-hero p {
  font-size: 1.2rem;
  color: var(--char);
  margin-bottom: 36px;
}
.order-mega-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  color: white !important;
  padding: 32px 60px;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 38px rgba(181, 52, 31, 0.32);
  transition: all 0.25s ease;
}
.order-mega-btn:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(181, 52, 31, 0.45);
  color: white !important;
}
.order-mega-btn .arrow {
  font-size: 1.8rem;
  transition: transform 0.2s ease;
}
.order-mega-btn:hover .arrow { transform: translateX(6px); }

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 60px auto 0;
}
.order-step {
  text-align: center;
}
.order-step .num {
  width: 56px; height: 56px;
  background: var(--mustard);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 14px;
}
.order-step h3 {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.order-step p {
  color: var(--char);
  font-size: 0.95rem;
}

/* ============ CATERING BANNER ============ */
.cater-banner {
  background: linear-gradient(135deg, rgba(26, 46, 59, 0.92), rgba(26, 46, 59, 0.85)),
              url('https://www.goldbergsbagelsfl.com/wp-content/uploads/2023/09/Untitled-1.jpg') center / cover no-repeat;
  color: white;
  padding: 90px 0;
  text-align: center;
}
.cater-banner h2 { color: white; margin-bottom: 14px; }
.cater-banner p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.92);
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: white;
  padding: 30px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial .stars {
  color: var(--mustard);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--char);
  margin-bottom: 14px;
  line-height: 1.6;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial .source {
  font-size: 0.74rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ MENU PAGE ============ */
.menu-section { margin-bottom: 60px; }
.menu-section h2 {
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 28px;
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px 40px;
}
.menu-item { border-bottom: 1px dotted var(--gray-light); padding-bottom: 16px; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}
.menu-item h4 {
  font-family: var(--serif);
  color: var(--red);
  font-size: 1.15rem;
  margin: 0;
}
.menu-item .price {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  white-space: nowrap;
}
.menu-item p {
  font-size: 0.92rem;
  color: var(--char);
  margin: 0;
  line-height: 1.5;
}

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: white;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 22px 28px;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 1.02rem;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq summary::-webkit-details-marker { display: none; }
.faq .answer { padding: 0 28px 24px; color: var(--char); font-size: 0.98rem; }
.faq .answer a { color: var(--red); }

/* ============ CATERING CARDS ============ */
.cater-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cater-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
}
.cater-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cater-card .image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.cater-card .body { padding: 24px 26px 28px; }
.cater-card h3 { color: var(--red); font-size: 1.25rem; margin-bottom: 10px; }
.cater-card p { color: var(--char); font-size: 0.95rem; margin-bottom: 16px; }
.cater-card .link {
  font-weight: 700;
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ INFO BLOCKS ============ */
.info-block {
  background: white;
  padding: 30px 34px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin: 30px 0;
}
.info-block h3 { font-size: 1.2rem; margin-bottom: 14px; color: var(--red); }
.info-block ul { list-style: none; padding: 0; }
.info-block li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--char);
}
.info-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}

/* ============ FORMS ============ */
.cater-form {
  background: white;
  padding: 44px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 0 auto;
}
.cater-form h3 { text-align: center; margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream-warm);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  background: white;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.cater-form button { width: 100%; margin-top: 8px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 30px;
}
.contact-card {
  text-align: center;
  padding: 32px 26px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.section-navy .contact-card {
  background: rgba(255,255,255,0.04);
  color: var(--cream);
}
.section-navy .contact-card h4 { color: white; }
.contact-card .icon {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-navy .contact-card .icon { color: var(--mustard); }
.contact-card h4 {
  color: var(--red);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: var(--serif);
}
.contact-card p, .contact-card a {
  font-size: 0.95rem;
  color: var(--char);
}
.section-navy .contact-card p,
.section-navy .contact-card a { color: rgba(245,236,215,0.9); }
.contact-card a:hover { color: var(--red); }

/* ============ MAP ============ */
.map-wrap {
  height: 420px;
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ VIP / EMAIL CAPTURE ============ */
.vip-band {
  background: var(--navy);
  color: var(--cream);
  padding: 70px 24px;
  text-align: center;
}
.vip-band h2 { color: white; margin-bottom: 12px; }
.vip-band p {
  max-width: 580px;
  margin: 0 auto 26px;
  color: rgba(245,236,215,0.92);
  font-size: 1.05rem;
}
.vip-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vip-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 20px;
  border: 0;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 1rem;
  background: white;
  color: var(--ink);
}
.vip-form button {
  padding: 16px 32px;
  background: var(--mustard);
  color: var(--navy);
  border: 0;
  border-radius: 50px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.vip-form button:hover { background: var(--mustard-dark); }
.vip-band small {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(245,236,215,0.6);
  letter-spacing: 0.04em;
}

/* ============ REVIEW WALL ============ */
.review-summary {
  background: var(--cream);
  padding: 60px 24px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 40px;
}
.review-summary .big-rating {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.review-summary .stars-big {
  color: var(--mustard);
  font-size: 1.6rem;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.review-summary .count { font-size: 0.95rem; color: var(--gray); letter-spacing: 0.05em; }
.review-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.review-card {
  background: white;
  padding: 26px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { color: var(--mustard); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p {
  font-size: 0.98rem;
  color: var(--char);
  margin-bottom: 14px;
  line-height: 1.55;
}
.review-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.review-card .source {
  font-size: 0.74rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .image { height: 200px; background-size: cover; background-position: center; }
.blog-card .body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-card h3 { color: var(--red); font-size: 1.15rem; margin-bottom: 8px; line-height: 1.3; }
.blog-card p { color: var(--char); font-size: 0.93rem; flex: 1; margin-bottom: 14px; line-height: 1.5; }
.blog-card .meta { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.04em; }

.article-body { max-width: 760px; margin: 0 auto; font-size: 1.07rem; line-height: 1.75; color: var(--ink); }
.article-body h2 { margin-top: 40px; margin-bottom: 16px; }
.article-body h3 { margin-top: 30px; margin-bottom: 12px; }
.article-body p { margin-bottom: 1.2em; }
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.6em; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 4px solid var(--mustard);
  padding: 16px 24px;
  background: var(--cream);
  margin: 24px 0;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--char);
  border-radius: 6px;
}
.article-meta {
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.06em;
}

/* ============ PROMO POPUP MODAL ============ */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 40, 0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 24px;
}
.promo-overlay.show { opacity: 1; visibility: visible; }
.promo-modal {
  background: var(--cream-warm);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.promo-overlay.show .promo-modal { transform: scale(1) translateY(0); }
.promo-modal .promo-image {
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  min-height: 280px;
}
.promo-modal .promo-body {
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-modal .promo-discount {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.promo-modal .promo-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.promo-modal .promo-sub {
  font-size: 0.92rem;
  color: var(--char);
  margin-bottom: 20px;
  line-height: 1.45;
}
.promo-modal .promo-code {
  display: inline-block;
  background: white;
  border: 2px dashed var(--mustard);
  padding: 8px 18px;
  border-radius: 8px;
  font-family: monospace;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.promo-modal .promo-cta {
  display: inline-block;
  background: var(--red);
  color: white !important;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.promo-modal .promo-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(181, 52, 31, 0.35);
}
.promo-modal .promo-close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(255,255,255,0.9);
  border: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--navy);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s ease;
}
.promo-modal .promo-close:hover { background: white; }
.promo-modal .promo-tiny {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  .promo-modal { grid-template-columns: 1fr; max-width: 380px; }
  .promo-modal .promo-image { min-height: 180px; }
  .promo-modal .promo-body { padding: 24px 22px; }
  .promo-modal .promo-discount { font-size: 2.6rem; }
}

/* ============ LOCATION PICKER MODAL ============ */
.loc-picker {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 40, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}
.loc-picker.show { opacity: 1; visibility: visible; }
.loc-picker-inner {
  background: var(--cream-warm);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  padding: 42px 36px 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.loc-picker.show .loc-picker-inner { transform: scale(1) translateY(0); }
.loc-picker .lp-close {
  position: absolute;
  top: 14px; right: 16px;
  background: white;
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s ease;
}
.loc-picker .lp-close:hover { background: var(--gray-light); }
.loc-picker h2 {
  text-align: center;
  font-size: 1.85rem;
  margin-bottom: 8px;
  color: var(--red);
}
.loc-picker .lp-sub {
  text-align: center;
  color: var(--char);
  font-size: 1rem;
  margin-bottom: 30px;
}
.loc-picker .lp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.loc-picker .lp-card {
  background: white;
  border-radius: 18px;
  padding: 28px 26px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15,29,40,0.08);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.loc-picker .lp-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(181, 24, 16, 0.18);
}
.loc-picker .lp-card .lp-badge {
  display: inline-block;
  background: var(--navy);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  margin: 0 auto 14px;
}
.loc-picker .lp-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--red);
  margin-bottom: 8px;
}
.loc-picker .lp-card .lp-addr {
  font-size: 0.92rem;
  color: var(--char);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.loc-picker .lp-card .lp-phone {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 18px;
}
.loc-picker .lp-card .lp-go {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.loc-picker .lp-card:hover .lp-go { background: var(--red-dark); }
.loc-picker .lp-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--gray);
}
.loc-picker .lp-foot a { color: var(--red); font-weight: 700; }
@media (max-width: 600px) {
  .loc-picker-inner { padding: 32px 22px 26px; }
  .loc-picker .lp-grid { grid-template-columns: 1fr; gap: 14px; }
  .loc-picker h2 { font-size: 1.5rem; }
}

/* ============ STICKY MOBILE CTA ============ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  background: var(--navy-deep);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  color: white !important;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-cta-bar a:first-child { background: var(--mustard); color: var(--navy) !important; }
.mobile-cta-bar a:last-child { background: var(--red); }
.mobile-cta-bar a:hover { opacity: 0.92; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 70px 0 30px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: white;
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mustard);
  display: inline-block;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(245,236,215,0.85); font-size: 0.92rem; }
.footer-col a:hover { color: var(--mustard); }
.footer-col p { color: rgba(245,236,215,0.85); font-size: 0.9rem; margin-bottom: 8px; }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}
.footer-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--mustard);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(245,236,215,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245,236,215,0.6);
}
.footer-bottom a { color: rgba(245,236,215,0.8); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-text { padding: 30px 24px; max-width: 100%; }
  .hero-image-wrap { min-height: 380px; height: 380px; }
  .hero-image { border-radius: 0 0 50% 50% / 0 0 25% 25% !important; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .masked-image { height: 360px; }
  .masked-left, .masked-right { border-radius: 50% / 30%; }
  .bleed-row { grid-template-columns: 1fr; min-height: 0; }
  .bleed-row .bleed-text { padding: 30px 24px !important; max-width: 100%; }
  .bleed-row .bleed-image-wrap { min-height: 320px; height: 320px; }
  .bleed-row.image-right .bleed-image,
  .bleed-row.image-left .bleed-image { border-radius: 0 0 50% 50% / 0 0 25% 25% !important; }
  .bleed-row.image-left .bleed-text { order: 2; }
  .bleed-row.image-left .bleed-image-wrap { order: 1; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-grid { grid-template-columns: 1fr; gap: 40px; }
  .gift-card-grid { grid-template-columns: 1fr; gap: 60px; }
  .gift-card-visual { height: 300px; }
  .order-steps { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 880px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }

  .site-header { top: 12px; padding: 0 12px; }
  .site-header .nav-pill { padding: 10px 12px 10px 18px; }
  .site-logo img { width: 40px; height: 40px; }
  .site-logo .brand-text { font-size: 1rem; }
  .site-logo .brand-text small { font-size: 0.55rem; }

  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 12px; right: 12px;
    background: var(--navy);
    border-radius: 24px;
    display: none;
    box-shadow: var(--shadow-lg);
    padding: 14px 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; align-items: stretch; }
  .main-nav a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
  }
  .main-nav a.nav-cta {
    margin: 8px 18px;
    text-align: center;
    border-radius: 50px;
  }

  .hero { padding: 110px 0 60px; }
  .page-hero { padding: 110px 0 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 520px) {
  .serve-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  body { font-size: 16px; }
  .container, .container-narrow { padding: 0 16px; }
  .order-mega-btn { padding: 24px 40px; font-size: 1.1rem; }
  .rewards-card { padding: 30px 24px; transform: rotate(0); }
  .cater-form { padding: 28px 20px; }
}
