*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* ── Base ─────────────────────────────────────────────────── */
.lp-root {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #0d0d0d;
  color: #d1d5db;
  min-width: 320px;
}

/* ── HERO LOGO SVG ────────────────────────────────────────── */
.lp-hero-logo-svg {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-hero-logo-svg svg {
  height: 60px;
  width: auto;
}

/* ── HERO ─────────────────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(135deg, #1a0a0c 0%, #0d0d0d 60%, #1a1010 100%);
  padding: 180px 72px 40px 80px;
  text-align: center;
  border-bottom: 3px solid #c8102e;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8102e;
  margin-bottom: 16px;
}

.lp-hero-city {
  font-size: 3.6rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.lp-hero-address {
  font-size: 1.05rem;
  color: #9ca3af;
  margin-bottom: 36px;
}

.lp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.lp-btn-primary {
  background: #c8102e;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lp-btn-primary:hover { background: #a50d26; transform: translateY(-2px); }

.lp-btn-secondary {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: 2px solid #555;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lp-btn-secondary:hover { border-color: #c8102e; transform: translateY(-2px); }

/* ── UNIQUE OFFERING ─────────────────────────────────────────────── */
.lp-unique {
  width: 100%
}


/* ── INFO BAR ─────────────────────────────────────────────── */
.lp-info-bar {
  background: #161616;
  border-bottom: 1px solid #2a2a2a;
  padding: 0 40px;
}

.lp-info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}

.lp-info-tile {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 24px;
  border-right: 1px solid #222;
}

.lp-info-tile:last-child { border-right: none; }

.lp-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-info-icon svg { width: 22px; height: 22px; }

.lp-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.lp-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.lp-info-value a {
  color: #ffffff;
  text-decoration: none;
}

.lp-info-value a:hover { color: #c8102e; }

.lp-hours-row {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.6;
}

.lp-hours-days { color: #d1d5db; min-width: 90px; }

/* ── DEALS ────────────────────────────────────────────────── */
.lp-deals {
  background: #111111;
  padding: 60px 40px;
  border-bottom: 1px solid #1e1e1e;
}

.lp-deals-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8102e;
  margin-bottom: 8px;
}

.lp-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  text-align:center;
}

.lp-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-deal-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.lp-deal-card:hover { border-color: #ef4035; transform: translateY(-3px); }

.lp-deal-header {
  background: #ef4035;
  padding: 20px 24px 16px;
}

.lp-deal-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.lp-deal-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lp-deal-body {
  padding: 20px 24px 24px;
}

.lp-deal-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.lp-deal-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 18px;
}

.lp-deal-code {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8102e;
  background: rgba(200,16,46,0.1);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── MAP PLACEHOLDER ──────────────────────────────────────── */
.lp-map {
  background: #0d0d0d;
  padding: 40px 40px;
  border-bottom: 1px solid #1e1e1e;
}

.lp-map-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.lp-map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.lp-map-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

.lp-map-info-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-align:center;
  margin-bottom:20px;
}

.lp-map-detail {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.lp-map-detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(200,16,46,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-map-detail-icon svg { width: 18px; height: 18px; }

.lp-map-detail-text {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
  padding-top: 6px;
}

.lp-map-detail-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* ── REVIEWS (reused styles scoped via class prefix) ──────── */
.lp-reviews-wrap {
  background: #1a1a1a;
  padding: 56px 0;
  overflow: hidden;
}

.lp-reviews-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

.lp-reviews-pizza-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.lp-reviews-pizza-icon svg { width: 44px; height: 44px; }

.lp-reviews-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.lp-reviews-sub {
  font-size: 1rem;
  color: #9ca3af;
}

.lp-scroller-outer {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

@keyframes lp-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lp-scroller-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0 20px;
  animation: lp-scroll-left 40s linear infinite;
}

.lp-scroller-track:hover { animation-play-state: paused; }

.lp-review-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s, border-color 0.2s;
}

.lp-review-card:hover { transform: translateY(-4px); border-color: #c8102e; }

.lp-review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.lp-review-stars svg { width: 16px; height: 16px; }

.lp-review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #d1d5db;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.lp-review-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #333;
  padding-top: 18px;
}

.lp-review-byline img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c8102e;
  flex-shrink: 0;
}

.lp-review-name { font-weight: 700; font-size: 0.95rem; color: #fff; }
.lp-review-loc  { font-size: 0.78rem; color: #6b7280; margin-top: 2px; }

/* ── SEO SECTION ──────────────────────────────────────────── */
.lp-seo {
  background: #111111;
  padding: 64px 0 72px;
  border-top: 1px solid #2a2a2a;
}

.lp-seo-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.lp-seo-header { text-align: center; margin-bottom: 48px; }

.lp-seo-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 24px;
}

.lp-seo-divider {
  width: 56px;
  height: 4px;
  background: #c8102e;
  border-radius: 2px;
  margin: 0 auto;
}

.lp-seo-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.lp-seo-card {
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  border-radius: 14px;
  padding: 28px 24px;
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.lp-seo-card:hover { border-color: #c8102e; transform: translateY(-3px); }

.lp-seo-card-icon { display: flex; justify-content: center; margin-bottom: 14px; }
.lp-seo-card-icon svg { width: 36px; height: 36px; }
.lp-seo-card-label { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.lp-seo-card-desc { font-size: 0.82rem; color: #6b7280; line-height: 1.5; }

.lp-seo-body { display: flex; gap: 40px; margin-bottom: 52px; }
.lp-seo-col { flex: 1;
  display: block;        /* allow text to flow normally */
  column-count: 2;       /* default: mobile = 1 column */
  column-gap: 20px;
}
.lp-seo-col p { font-size: 0.9rem; line-height: 1.75; color: #9ca3af; }
.lp-seo-col-heading { font-size: 1.1rem; font-weight: 800; color: #ffffff; margin-bottom: 4px; }

.lp-seo-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.lp-seo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 72px;
  transition: border-color 0.2s;
}

.lp-seo-badge:hover { border-color: #ef4035; }
.lp-seo-badge-abbr { font-size: 1rem; font-weight: 800; color: #ef4035; letter-spacing: 0.04em; }
.lp-seo-badge-name { font-size: 0.7rem; color: #6b7280; margin-top: 2px; }

.lp-seo-cta { text-align: center; }

.lp-seo-cta-btn {
  display: inline-block;
  background: #ef4035;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 14px;
}

.lp-seo-cta-btn:hover { background: #fff; transform: translateY(-2px); }
.lp-seo-cta-sub { font-size: 1.8rem; color: #4b5563; }

/* ── PAYMENT OPTIONS ───────────────────────────────────────── */
.lp-payment {
  background: #111111;
  padding: 64px 40px;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.lp-payment-inner { max-width: 800px; margin: 0 auto; }
.lp-payment-heading {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}
.lp-payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.lp-payment-apple-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 20px;
}
.lp-payment-subhead {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  margin-top: 20px;
}
.lp-payment-apple-badge + .lp-payment-subhead { margin-top: 0; }
.lp-payment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-payment-list li {
  font-size: 0.9rem;
  color: #9ca3af;
  padding-left: 16px;
  position: relative;
}
.lp-payment-list li::before {
  content: "•";
  color: #c8102e;
  position: absolute;
  left: 0;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.lp-footer {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 48px 40px 36px;
}

.lp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.lp-footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.lp-footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.lp-footer-links a {
  text-decoration: none;
  color: #6b7280;
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.15s;
}

.lp-footer-links a:hover { color: #c8102e; }

.lp-footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-footer-copy {
  font-size: 0.78rem;
  color: #374151;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* HERO */
  .lp-hero { padding: 200px 48px 24px 56px; }
  .lp-hero-city { font-size: 2.4rem; }
  .lp-hero-address { font-size: 0.9rem; margin-bottom: 0; }

  /* DEALS */
  .lp-deals { padding: 44px 20px; }
  .lp-section-title { font-size: 1.4rem; margin-bottom: 24px; }
  .lp-deals-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-deal-price { font-size: 2rem; }

  /* MAP */
  .lp-map { padding: 44px 20px; }
  .lp-map-inner { grid-template-columns: 1fr; gap: 24px; }
  .lp-map-img { height: 220px; }
  .lp-map-info-title { font-size: 1.2rem; }

  /* PAYMENT OPTIONS */
  .lp-payment { padding: 44px 24px; }
  .lp-payment-heading { font-size: 1.5rem; margin-bottom: 24px; }
  .lp-payment-grid { grid-template-columns: 1fr; gap: 28px; }

  /* SEO SECTION */
  .lp-seo { padding: 44px 0 56px; }
  .lp-seo-inner { padding: 0 24px; }
  .lp-seo-heading { font-size: 1.4rem; }
  .lp-seo-highlights { gap: 12px; }
  .lp-seo-card { flex: 1 1 140px; max-width: 100%; padding: 20px 16px; }
  .lp-seo-body { flex-direction: column; gap: 0; }
  .lp-seo-col { gap: 16px; margin-bottom: 20px; column-count: 1;}
  .lp-seo-col p { font-size: 0.88rem; }
  .lp-seo-badges { gap: 8px; }

  /* FOOTER */
  .lp-footer { padding: 40px 24px 28px; }
  .lp-footer-top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .lp-footer-links { flex-wrap: wrap; gap: 16px; }
  .lp-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
