/* =================================================================
   Pizza Plaza of Warminster — styles.css
   A high-end, minimalist pizzeria site.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --cream:        #faf6f0;
  --cream-2:      #f3ece2;
  --white:        #ffffff;
  --ink:          #1c1714;   /* near-black, warm */
  --charcoal:     #3a322e;
  --muted:        #7c726a;
  --line:         #e8ddce;

  --red:          #c4282a;   /* tomato red */
  --red-deep:     #9e1f24;
  --red-soft:     #e85d4a;
  --gold:         #c79a4b;
  --gold-soft:    #e7c885;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing & shape */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 10px rgba(28, 23, 20, 0.06);
  --shadow:    0 18px 50px -20px rgba(28, 23, 20, 0.22);
  --shadow-lg: 0 40px 90px -40px rgba(28, 23, 20, 0.40);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

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

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--red); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-lead {
  color: var(--muted);
  font-size: 1.075rem;
  max-width: 52ch;
  margin-top: 1.1rem;
}

.section-head { max-width: 640px; margin: 0 auto 3.2rem; text-align: center; }
.section-head .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(196, 40, 42, 0.7);
}
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 18px 36px -14px rgba(196, 40, 42, 0.8); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(28,23,20,0.03); }

.btn--light {
  background: #fff;
  color: var(--red-deep);
}
.btn--light:hover { background: var(--cream); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-name--light { color: var(--cream); }

.nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-link {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--charcoal);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--ink); }
.nav-link--phone { color: var(--red); font-weight: 600; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  padding: 10px;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(231, 200, 133, 0.22), transparent 60%),
    radial-gradient(900px 480px at 8% 105%, rgba(196, 40, 42, 0.08), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.7rem, 6.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.hero-title .accent {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-meta {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 1.2em;
}

.hero-visual { position: relative; }
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.2;
  transform: rotate(1.4deg);
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .hero-image-frame { transform: rotate(0deg); }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  width: 116px; height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold-soft);
}
.hero-badge-top { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-soft); }
.hero-badge-bottom { font-size: 0.78rem; letter-spacing: 0.08em; font-weight: 600; }

/* ---------- About ---------- */
.about { padding: clamp(4rem, 9vw, 7rem) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--charcoal); font-size: 1.1rem; margin-top: 0.4rem; }
.about-points { margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.about-points li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; color: var(--ink); }
.about-points .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(196,40,42,0.12);
}

/* ---------- Featured Favorites ---------- */
.featured {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.5rem 1.7rem; }
.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.card-text { color: var(--muted); font-size: 0.96rem; line-height: 1.55; }

/* ---------- Reviews ---------- */
.reviews { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--cream); }
.reviews-widget { margin-top: clamp(2rem, 4vw, 3rem); min-height: 120px; }
.hero-reviews { margin-top: clamp(1.5rem, 3vw, 2.1rem); display: flex; justify-content: center; }

/* ---------- Feedback / Collect review ---------- */
.feedback { padding: 0 0 clamp(4rem, 9vw, 7rem); }
.feedback-card {
  max-width: 680px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  min-height: 200px;
}
.feedback-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.feedback-points .area-chip { cursor: default; }

.footer-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: rgba(250, 246, 240, 0.72);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}
.footer-review-link svg { width: 16px; height: 16px; fill: var(--gold-soft); }
.footer-review-link:hover { color: var(--gold-soft); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(4rem, 9vw, 7rem) 0; background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.faq-list { max-width: 760px; margin: clamp(2rem, 4vw, 3rem) auto 0; display: grid; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--red); }
.faq-answer { padding: 0 1.5rem 1.4rem; color: var(--charcoal); line-height: 1.6; }
.faq-answer a { color: var(--red); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(800px 400px at 85% 120%, rgba(231,200,133,0.18), transparent 60%),
    linear-gradient(135deg, var(--red-deep), var(--red));
  color: #fff;
  text-align: center;
}
.cta-inner { max-width: 720px; margin-inline: auto; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-sub { margin-top: 1rem; font-size: 1.1rem; color: rgba(255,255,255,0.86); }
.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* ---------- Hours ---------- */
.hours { padding: clamp(4rem, 9vw, 7rem) 0; }
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.95rem;
}
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.status-pill.is-open .status-dot { background: #2f9e5e; box-shadow: 0 0 0 4px rgba(47,158,94,0.18); animation: pulse 2.4s var(--ease) infinite; }
.status-pill.is-open { color: #1f7a47; }
.status-pill.is-closed .status-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(196,40,42,0.16); }
.status-pill.is-closed { color: var(--red-deep); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47,158,94,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(47,158,94,0.05); }
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.6rem 1.8rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { font-weight: 600; color: var(--ink); }
.hours-list li span:last-child { color: var(--muted); }
.hours-list li.is-today {
  font-weight: 600;
}
.hours-list li.is-today { background: linear-gradient(90deg, rgba(196,40,42,0.06), transparent); border-radius: 10px; padding-inline: 0.8rem; margin-inline: -0.8rem; }
.hours-list li.is-today span:first-child { color: var(--red); }
.hours-list li.is-today span:first-child::after {
  content: "Today";
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.6rem;
  vertical-align: middle;
}
.hours-list li.is-today span:last-child { color: var(--ink); }

/* ---------- Contact hero ---------- */
.contact-hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(231,200,133,0.24), transparent 65%),
    var(--cream);
}
.contact-hero-inner { max-width: 720px; margin-inline: auto; }
.contact-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.contact-hero-sub {
  margin-top: 1.1rem;
  font-size: 1.2rem;
  color: var(--muted);
}
.contact-hero .hero-actions { justify-content: center; margin-top: 2rem; }

/* ---------- Contact info cards ---------- */
.info { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  display: block;
}
a.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196,40,42,0.1), rgba(231,200,133,0.18));
  color: var(--red);
  margin-bottom: 1.2rem;
}
.info-icon svg { width: 26px; height: 26px; fill: currentColor; }
.info-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.info-text { color: var(--charcoal); font-size: 1.05rem; line-height: 1.5; }
.info-cta {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.3s var(--ease);
}
.info-cta--static { color: var(--muted); }

/* ---------- Map section ---------- */
.map-section { padding: clamp(3rem, 7vw, 6rem) 0; }
.map-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
  display: block;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.map-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.map-card-media { position: absolute; inset: 0; }
.map-card-media img { width: 100%; height: 100%; object-fit: cover; }
.map-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,23,20,0) 35%, rgba(28,23,20,0.78) 100%);
}
.map-card-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -8px rgba(196,40,42,0.7);
  z-index: 2;
  animation: drop 2.6s var(--ease) infinite;
}
.map-card-pin svg { width: 26px; height: 26px; fill: #fff; rotate: 45deg; }
@keyframes drop {
  0%, 100% { transform: translate(-50%, -60%); }
  50%      { transform: translate(-50%, -72%); }
}
.map-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.8rem;
  color: #fff;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
}
.map-card-label strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.map-card-label span { font-size: 0.95rem; color: rgba(255,255,255,0.82); }
.map-card-open { color: var(--gold-soft) !important; font-weight: 600; margin-top: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-tag { color: rgba(250,246,240,0.6); max-width: 34ch; margin-bottom: 1.4rem; font-size: 0.98rem; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.footer-link {
  display: block;
  color: rgba(250,246,240,0.72);
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  transition: color 0.25s var(--ease);
}
a.footer-link:hover { color: #fff; }
.footer-link--static { cursor: default; }

.social { display: flex; gap: 0.7rem; }
.social-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social-icon svg { width: 19px; height: 19px; fill: var(--cream); transition: fill 0.3s var(--ease); }
.social-icon:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.social-icon:hover svg { fill: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.8rem;
  font-size: 0.86rem;
  color: rgba(250,246,240,0.5);
}
.footer-credit a {
  color: rgba(250,246,240,0.72);
  font-weight: 600;
  transition: color 0.25s var(--ease);
}
.footer-credit a:hover { color: var(--gold-soft); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Stagger children within a grid */
.card-grid .card:nth-child(2) { transition-delay: 0.08s; }
.card-grid .card:nth-child(3) { transition-delay: 0.16s; }
.card-grid .card:nth-child(4) { transition-delay: 0.24s; }
.info-grid .info-card:nth-child(2) { transition-delay: 0.08s; }
.info-grid .info-card:nth-child(3) { transition-delay: 0.16s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 540px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 560px; }
  .hours-inner { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1100px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.45s var(--ease);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-link::after { display: none; }
  .nav-menu .btn { width: 100%; margin-top: 1rem; }

  .info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { flex: 1; min-width: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badge { width: 96px; height: 96px; left: -10px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Keep the longer brand name clear of the hamburger on small phones */
@media (max-width: 420px) {
  .brand-name { font-size: 1.05rem; }
}
@media (max-width: 360px) {
  .brand-name { font-size: 0.92rem; }
  .brand-logo { width: 36px; height: 36px; }
  .brand { gap: 0.5rem; }
}

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

/* ---------- Delivery Areas ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--red); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 0.45rem; opacity: 0.45; }

.delivery-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  text-align: left;
}
.delivery-note svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; }

/* Area cards (hub) */
.card-grid--areas { grid-template-columns: repeat(3, 1fr); }
a.area-card { display: flex; flex-direction: column; color: inherit; }
a.area-card .card-body { display: flex; flex-direction: column; flex: 1; }
.area-card .card-link {
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Delivery radius banner */
.delivery-banner { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.delivery-banner-inner {
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(231,200,133,0.18), transparent 65%),
    linear-gradient(135deg, rgba(196,40,42,0.05), rgba(243,236,226,0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.delivery-banner-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.delivery-banner-icon svg { width: 30px; height: 30px; fill: var(--red); }
.delivery-banner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}
.delivery-banner p { color: var(--charcoal); max-width: 56ch; font-size: 1.05rem; }
.delivery-banner .btn { margin-top: 0.4rem; }

/* Other-areas chips */
.area-chips-section { padding: 0 0 clamp(3.5rem, 7vw, 6rem); }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }
.area-chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.area-chip:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

@media (max-width: 960px) {
  .card-grid--areas { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid--areas { grid-template-columns: 1fr; }
}

/* ---------- Order Direct & Save ---------- */
.compare { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  max-width: 940px;
  margin-inline: auto;
  align-items: stretch;
}
.compare-card {
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.compare-card.is-app { background: var(--cream-2); }
.compare-card.is-direct {
  border: 1.5px solid var(--red);
  box-shadow: var(--shadow);
  position: relative;
}
.compare-eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.compare-card.is-direct .compare-eyebrow { color: var(--red); }
.compare-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.compare-list { display: grid; gap: 0.85rem; }
.compare-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.45;
}
.compare-list .ic {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.compare-list .ic svg { width: 13px; height: 13px; }
.compare-list .ic--no { background: rgba(196, 40, 42, 0.1); }
.compare-list .ic--no svg { fill: var(--red); }
.compare-list .ic--yes { background: rgba(47, 158, 94, 0.14); }
.compare-list .ic--yes svg { fill: #2f9e5e; }
.compare-badge {
  position: absolute;
  top: -13px; left: 1.9rem;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(196, 40, 42, 0.7);
}
.compare-card .btn { margin-top: 1.7rem; }
.compare-note {
  margin-top: 1.5rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-style: italic;
}

/* App cards (hub) */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.app-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
a.app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.app-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}
.app-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.app-card .card-link {
  margin-top: 1.1rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 900px) { .app-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .compare-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .app-grid { grid-template-columns: 1fr; } }
