/* Sub-Zero / brand LP variants — sticky bars, facts, city chips, book-minimal */

.lpv-page {
  --lpv-accent: var(--copper);
}

.lpv-page.has-sticky {
  padding-bottom: 72px;
}

/* --- Sticky mobile CTA --- */
.lpv-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  gap: 0;
  background: var(--ink);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 28px rgb(0 0 0 / 0.28);
}

.lpv-sticky a {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 12px;
  border-radius: 12px;
  letter-spacing: 0.01em;
}

.lpv-sticky-call {
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  margin-right: 8px;
}

.lpv-sticky-book {
  background: var(--copper);
  color: #fff;
}

@media (max-width: 720px) {
  .lpv-sticky {
    display: flex;
  }
}

/* --- Symptom chips --- */
.lpv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.lpv-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgb(255 255 255 / 0.12);
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.28);
  transition: background 0.15s ease;
}

.lpv-chip:hover {
  background: rgb(255 255 255 / 0.22);
  color: #fff;
}

.lpv-chip-dark {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.lpv-chip-dark:hover {
  background: var(--paper);
  color: var(--ink);
}

/* --- Compact trust --- */
.lpv-trust-compact .lp-trust-inner {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .lpv-trust-compact .lp-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- City chips --- */
.lpv-city-chips {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lpv-city-chips li,
.lpv-city-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 1px 0 rgb(18 17 15 / 0.04);
}

/* --- Facts box (AI variant) --- */
.lpv-facts {
  background: #111;
  color: #e8e6e1;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 22px 24px;
  font-family: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 720px;
  box-shadow: var(--shadow);
}

.lpv-facts h2 {
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0c9b0;
  font-weight: 600;
}

.lpv-facts dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.lpv-facts dt {
  margin: 0;
  color: #9a958c;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lpv-facts dd {
  margin: 2px 0 0;
  color: #f5f2eb;
  font-weight: 500;
}

.lpv-facts a {
  color: #f0c9b0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lpv-speakable p {
  max-width: 62ch;
  font-size: 1.05rem;
}

/* --- Giant phone (maps) --- */
.lpv-giant-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 18px 28px;
  border-radius: 16px;
  background: var(--copper);
  color: #fff;
  margin: 8px 0 12px;
  box-shadow: 0 12px 32px rgb(196 92 38 / 0.35);
}

.lpv-giant-phone:hover {
  background: var(--copper-2);
  color: #fff;
}

.lpv-maps-note {
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 56ch;
  margin-top: 20px;
}

.lpv-maps-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
}

/* --- Book minimal --- */
.lpv-book-shell {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 48px 20px 80px;
}

.lpv-book-card {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.lpv-book-card h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.lpv-book-bullets {
  text-align: left;
  margin: 0 0 18px;
  padding: 0 0 0 1.15rem;
  color: var(--ink-soft);
}

.lpv-book-bullets li {
  margin: 0 0 8px;
}

.lpv-book-fee {
  margin: 0 0 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.lpv-book-actions {
  display: grid;
  gap: 10px;
}

.lpv-book-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
  font-size: 17px;
}

.lpv-book-micro-faq {
  margin-top: 28px;
  text-align: left;
}

/* --- Variant hero accents --- */
.lpv-urgent .lp-hero {
  background:
    linear-gradient(145deg, #1a0a06 0%, #3b1510 45%, #8b2e18 100%),
    var(--ink);
}

.lpv-urgent .lp-trust {
  background: #140806;
  border-top-color: rgb(255 120 60 / 0.25);
}

.lpv-urgent .lp-trust span {
  color: #ffc4a0;
}

.lpv-brand .lp-hero {
  background:
    linear-gradient(135deg, rgb(18 17 15 / 0.92) 0%, rgb(42 39 35 / 0.85) 50%, rgb(196 92 38 / 0.42) 100%),
    var(--ink);
}

.lpv-maps .lp-hero {
  background:
    linear-gradient(160deg, #0f1a1c 0%, #1a2e32 55%, #2a4a3a 100%),
    var(--ink);
}

.lpv-maps .lp-trust span {
  color: #b8e0c8;
}

.lpv-ai .lp-hero {
  background:
    linear-gradient(135deg, #0d0d0f 0%, #1a1a22 60%, #2a2430 100%),
    var(--ink);
}

.lpv-ai .lp-hero h1 {
  max-width: 22ch;
}

.lpv-hub .lp-hero {
  background:
    linear-gradient(135deg, rgb(18 17 15 / 0.94) 0%, rgb(42 39 35 / 0.9) 100%),
    var(--ink);
}

.lpv-hub-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.lpv-hub-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: grid;
  gap: 6px;
}

.lpv-hub-card a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lpv-hub-card .lpv-use {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.lpv-hub-card .lpv-meta {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;
}

.lpv-hours {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  max-width: 520px;
}

.lpv-hours p {
  margin: 0;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

@media (max-width: 640px) {
  .lpv-trust-compact .lp-trust-inner {
    grid-template-columns: 1fr;
  }

  .lpv-book-card {
    padding: 28px 18px 24px;
  }
}
