/* ============================================================
   Mizrachi's Pizza Kitchen — Build 02
   Design: Warm Family Pizzeria / Kosher Trust
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --red:        #C62828;
  --red-deep:   #8F1D1D;
  --cream:      #FFF6E8;
  --white:      #FFFFFF;
  --ink:        #171717;
  --green:      #132E19;
  --gold:       #D9A441;
  --parchment:  #F7E7C8;
  --wood:       #3A2418;
  --gray-light: #F0E8DC;
  --gray-mid:   #C8B89A;
  --gray-text:  #524840;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --radius:    10px;
  --radius-lg: 16px;
  --shell:     1200px;
  --gap:       clamp(2rem, 5vw, 4rem);
  --transition: 0.2s ease;
}

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* --- Accessibility ---------------------------------------- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--red); color: var(--white);
  padding: 0.5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* --- Shell ------------------------------------------------ */
.section-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* --- Eyebrow / Section Header ----------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.eyebrow.green { color: var(--green); }
.script-accent {
  font-family: var(--font-script);
  font-size: 1.3rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--gap);
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--gray-text); font-size: 1.05rem; }
.section-footer { text-align: center; margin-top: calc(var(--gap) * 0.75); }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p  { line-height: 1.7; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--red        { background: var(--red); color: var(--white); }
.btn--red:hover  { background: var(--red-deep); }
.btn--green      { background: var(--green); color: var(--white); }
.btn--green:hover { filter: brightness(1.1); }
.btn--cream      { background: var(--white); color: var(--red); font-weight: 700; }
.btn--cream:hover { background: var(--cream); }
.btn--outline    { border: 2px solid var(--red); color: var(--red); }
.btn--outline:hover { background: var(--red); color: var(--white); }
.btn--outline-dark { border: 2px solid var(--ink); color: var(--ink); }
.btn--outline-dark:hover { background: var(--ink); color: var(--white); }
.btn--ghost-light { border: 2px solid rgba(255,255,255,0.6); color: var(--white); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.15); }
.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--green);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}
.util-bar__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0.5rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.util-bar__orb-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.util-bar__orb-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.util-bar__cert { color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }
.util-bar__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.util-bar__actions a { color: rgba(255,246,232,0.85); }
.util-bar__actions a:hover { color: var(--white); }
.util-bar__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  font-weight: 700;
}

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--parchment);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  z-index: 500;
  padding: 0;
}
.mobile-bar__inner {
  display: flex;
  align-items: stretch;
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.6rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: none;
  border-right: 1px solid var(--parchment);
  transition: background var(--transition);
}
.mobile-bar__btn:last-child { border-right: none; }
.mobile-bar__btn--red { background: var(--red); color: var(--white); }
.mobile-bar__btn:not(.mobile-bar__btn--red):hover { background: var(--cream); }
.mobile-bar__btn svg { width: 20px; height: 20px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--cream) url('Images/Background%20Pattern.png') repeat;
  background-size: 320px auto;
  border-bottom: 1px solid #EDE0CC;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.nav {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.01em;
}
.logo small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 auto;
}
.nav__links a {
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.nav__links a:hover { background: var(--cream); color: var(--red); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav__orb {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(500px, 70vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__food-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 30%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.00) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 2.5rem);
}
.hero__content__inner {
  max-width: 480px;
  text-align: left;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero__sub {
  color: rgba(255,246,232,0.88);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero__badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,246,232,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   ORDER CARDS
   ============================================================ */
.order-cards {
  background: var(--cream) url('Images/Background%20Pattern.png') repeat;
  background-size: 320px auto;
  border-bottom: 1px solid var(--parchment);
  padding-top: 2.5rem;
}
.order-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: calc(var(--gap) * 0.75);
  padding-bottom: calc(var(--gap) * 0.75);
  transform: translateY(-2.5rem);
  position: relative;
  z-index: 5;
}
.order-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(58,36,24,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.order-card:hover { box-shadow: 0 8px 32px rgba(58,36,24,0.14); transform: translateY(-2px); }
.order-card--highlight {
  background: var(--red);
  border-color: var(--red-deep);
  color: var(--white);
}
.order-card--highlight h3 { color: var(--white); }
.order-card--highlight p  { color: rgba(255,246,232,0.88); }
.order-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.order-card--highlight .order-card__icon { background: rgba(255,255,255,0.2); }
.order-card h3 { font-size: 1.25rem; }
.order-card p  { font-size: 0.9rem; color: var(--gray-text); flex: 1; }

/* ============================================================
   POPULAR ITEMS
   ============================================================ */
.popular {
  background: var(--white);
  padding: var(--gap) 0 calc(var(--gap) * 1.5);
}
.category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.tab {
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-text);
  background: var(--cream);
  border: 1px solid var(--parchment);
  transition: all var(--transition);
}
.tab:hover { border-color: var(--red); color: var(--red); }
.tab--active { background: var(--red); color: var(--white); border-color: var(--red); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--parchment);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.menu-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.12); transform: translateY(-2px); }
.menu-card__photo {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.menu-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-card__photo-placeholder {
  width: 100%;
  height: 100%;
}
.photo--pizza       { background: linear-gradient(135deg, #c85a2a 0%, #e07a40 50%, #d9a441 100%); }
.photo--pasta       { background: linear-gradient(135deg, #c62828 0%, #e05840 50%, #d9a441 100%); }
.photo--appetizers  { background: linear-gradient(135deg, #8F6A2A 0%, #D9A441 60%, #c8903a 100%); }
.photo--salads      { background: linear-gradient(135deg, #2F6B3F 0%, #4a8f5a 50%, #6aad6a 100%); }
.photo--subs        { background: linear-gradient(135deg, #7A4520 0%, #c47040 60%, #e09050 100%); }
.photo--catering    { background: linear-gradient(135deg, #8F1D1D 0%, #C62828 60%, #e05840 100%); }
.menu-card__badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.menu-card__body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.menu-card__desc {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
  flex: 1;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.menu-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-display);
}

/* ============================================================
   KOSHER TRUST
   ============================================================ */
.kosher-trust {
  background: var(--parchment) url('Images/Background%20Pattern.png') repeat;
  background-size: 320px auto;
  padding: var(--gap) 0;
  position: relative;
}
/* Section divider strip — red with green accent */
.order-cards::before,
.popular::before,
.kosher-trust::before,
.catering-feature::before,
.about-feature::before,
.locations::before,
.reviews::before,
.final-cta::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--red) 20%,
    var(--red) 40%,
    #132E19 50%,
    var(--red) 60%,
    var(--red) 80%,
    transparent 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.kosher-trust::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--red) 20%,
    var(--red) 40%,
    #132E19 50%,
    var(--red) 60%,
    var(--red) 80%,
    transparent 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.trust-badge {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(58,36,24,0.08);
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.trust-badge__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.trust-badge__icon--red   { background: #FDE8E8; }
.trust-badge__icon--green { background: #E6F4EA; }
.trust-badge__icon--gold  { background: #FDF3DC; }
.trust-badge__icon--img   { background: transparent; width: 88px; height: 88px; }
.trust-badge__icon--img img { width: 100%; height: 100%; object-fit: contain; }
.trust-badge h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-badge p { font-size: 0.82rem; color: var(--gray-text); }

/* ============================================================
   CATERING FEATURE
   ============================================================ */
.catering-feature {
  background: var(--wood);
  color: var(--white);
  padding: var(--gap) 0;
}
.catering-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.catering-feature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(198,40,40,0.6), rgba(143,29,29,0.8)),
              linear-gradient(45deg, #8F1D1D, #C62828, #D9A441);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.catering-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.catering-feature .eyebrow { color: var(--gold); }
.catering-feature h2 { color: var(--white); margin-bottom: 1rem; }
.catering-feature p  { color: rgba(255,246,232,0.82); margin-bottom: 1.5rem; line-height: 1.7; }
.catering-uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin-bottom: 2rem;
}
.catering-uses li {
  font-size: 0.88rem;
  color: rgba(255,246,232,0.8);
  padding-left: 1.1rem;
  position: relative;
}
.catering-uses li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.catering-feature__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   ABOUT FEATURE
   ============================================================ */
.about-feature {
  background: var(--cream) url('Images/Background%20Pattern.png') repeat;
  background-size: 320px auto;
  padding: var(--gap) 0;
}
.about-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-feature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(to bottom right, rgba(58,36,24,0.15), rgba(198,40,40,0.1)),
    linear-gradient(135deg, #D9A441, #c47030, #8F1D1D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}
.about-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-feature__copy .eyebrow { margin-bottom: 0.3rem; }
.about-feature__copy h2 { color: var(--ink); margin-bottom: 1rem; }
.about-feature__copy p  { color: var(--gray-text); margin-bottom: 1.5rem; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  background: var(--white);
  padding: var(--gap) 0;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.location-card {
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.location-card__header {
  background: var(--red);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.location-card__header h3 { color: var(--white); font-size: 1.2rem; }
.location-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.location-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.location-card__info p {
  font-size: 0.88rem;
  color: var(--gray-text);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.location-card__info a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
}
.location-card__actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}
.location-card__actions .btn { flex: 1; text-align: center; justify-content: center; font-size: 0.8rem; padding: 0.55rem 0.75rem; }
.location-card__hours {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--parchment) url('Images/Background%20Pattern.png') repeat;
  background-size: 320px auto;
  padding: var(--gap) 0;
}
.google-rating {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-text);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(58,36,24,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-card__stars { font-size: 1rem; letter-spacing: 0.1em; }
.review-card__text {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}
.review-card__text::before { content: '"'; }
.review-card__text::after  { content: '"'; }
.review-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.review-card__date { font-size: 0.75rem; color: var(--gray-mid); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 60%, #D9443A 100%);
  padding: calc(var(--gap) * 1.5) 0;
}
.final-cta__inner {
  text-align: center;
}
.final-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.final-cta p {
  color: rgba(255,246,232,0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.final-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,246,232,0.7);
  padding: calc(var(--gap) * 1.25) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.footer .logo strong { color: var(--white); }
.footer .logo small  { color: var(--gray-mid); }
.footer__about {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,246,232,0.6);
  max-width: 280px;
}
.footer__cert {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,246,232,0.4);
  margin-bottom: 0.85rem;
}
.footer__col a,
.footer__col p {
  font-size: 0.88rem;
  color: rgba(255,246,232,0.7);
  display: block;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--white); }
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,246,232,0.6);
  text-decoration: none;
}
.footer__social a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,246,232,0.4);
}
.footer__bottom a { color: rgba(255,246,232,0.4); }
.footer__bottom a:hover { color: rgba(255,246,232,0.7); }

/* ============================================================
   DIVIDER
   ============================================================ */
.red-rule {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--red) 20%, var(--red) 80%, transparent);
  border: none;
}

/* ============================================================
   RESPONSIVE — 1080px
   ============================================================ */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .catering-feature__inner,
  .about-feature__inner { grid-template-columns: 1fr; }
  .catering-feature__image,
  .about-feature__image  { min-height: 280px; order: -1; }
  .menu-grid             { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid          { grid-template-columns: repeat(2, 1fr); }
  .locations-grid        { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ============================================================
   RESPONSIVE — 760px (Tablet / Mobile)
   ============================================================ */
@media (max-width: 760px) {
  .util-bar__cert { display: none; }
  .util-bar__actions span { display: none; }

  .nav-toggle  { display: flex; }
  .nav__links  {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--parchment);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.75rem 1rem; border-radius: 6px; }
  .nav__actions { display: none; }
  .nav { position: relative; }

  .mobile-bar        { display: block; }
  body               { padding-bottom: 64px; }

  .order-cards__grid { grid-template-columns: 1fr; transform: none; padding-top: 2rem; }
  .order-cards       { background: var(--cream); }

  .menu-grid         { grid-template-columns: 1fr; }
  .trust-badges      { grid-template-columns: 1fr 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__actions     { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .final-cta__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .catering-feature__actions { flex-direction: column; }
  .catering-feature__actions .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
}
