/* ════════════════════════════════════════════════════════════
   DECKROI — pulled from edweidman.com
   Lime #c8f135 on black/dark · Bebas Neue + Barlow + Barlow Condensed
   ════════════════════════════════════════════════════════════ */

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

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --dark: #1a1a1a;
  --dark-2: #242424;
  --dark-3: #2e2e2e;
  --red: #E63946;
  --red-bright: #F04757;
  --red-dim: #C62828;
  --red-dark: #8B1E27;
  --white: #f5f5f0;
  --off-white: #e8e8e0;
  --muted: #888880;
  --muted-2: #666660;
  --border: rgba(255,255,255,0.08);
  --border-red: rgba(230,57,70,0.28);

  /* Light/cream surfaces for breathing room */
  --cream: #f7f3e8;
  --cream-2: #efe8d5;
  --paper: #fbf8ee;
  --ink: #181816;
  --ink-soft: #3a3a36;
  --ink-muted: #6b6b64;
  --border-cream: rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 2px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }

.display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 0.92; }
.condensed { font-family: 'Barlow Condensed', sans-serif; }
.kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

/* ── TOP BAR (hidden) ── */
.top-bar {
  display: none;
}
.top-bar-hidden-style {
  background: var(--red);
  padding: 10px 48px;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--black);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.top-bar-right {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-right a {
  color: var(--black);
  font-weight: 700;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--near-black);
  border-bottom: 2px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}
.nav-logo span {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 2px;
}
.nav-links a:hover { color: var(--white); border-bottom-color: var(--red); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--black) !important;
  padding: 9px 22px !important;
  border-radius: 3px;
  height: auto !important;
  border-bottom: none !important;
  margin-left: 12px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--off-white) !important; color: var(--black) !important; border-bottom: none !important; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--white); }
@media(max-width:900px) { .mobile-toggle { display: flex; } }
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--near-black);
  border-top: 2px solid var(--red);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  background: var(--near-black);
  padding: 80px 48px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.1);
  border: 1px solid var(--border-red);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: 0.02em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.h-stat {
  display: flex;
  flex-direction: column;
}
.h-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 1;
}
.h-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
}
.h-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  align-self: center;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* HERO SPEC CARD */
.hero-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px 28px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 0 0 2px 2px;
}
.hc-flag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--red);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 2px;
}
.hc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.hc-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  font-style: italic;
}
.hc-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.hc-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 0.9;
}
.hc-price-period {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hc-list {
  list-style: none;
  margin-bottom: 22px;
}
.hc-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  line-height: 1.5;
}
.hc-list li:last-child { border-bottom: none; }
.hc-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
}
.hc-cta {
  display: block;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--black) !important;
  padding: 14px;
  border-radius: 4px;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.hc-cta:hover { background: var(--off-white); }
.hc-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
}
.pb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.pb-icon {
  width: 32px; height: 32px;
  background: rgba(230,57,70,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.pb-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.pb-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.pb-quote {
  flex: 1;
  min-width: 280px;
}
.pb-quote-text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.pb-quote-attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}

/* ── TRUTH STRIP ── */
.truth-strip {
  background: var(--red);
  padding: 28px 48px;
  text-align: center;
}
.truth-strip p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1.2;
}
.truth-strip p span { opacity: 0.5; }

/* ── SECTIONS ── */
.section { padding: 130px 48px; }
.section-dark { background: var(--near-black); }
.section-darker { background: var(--dark); }
.section-alt { background: var(--dark-2); }
.section-light { background: var(--cream); color: var(--ink); }
.section-paper { background: var(--paper); color: var(--ink); }

.section-header { margin-bottom: 56px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-header .kicker { margin-bottom: 12px; display: inline-block; }
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 14px;
}
.section-header h2 em { color: var(--red); font-style: normal; }
.section-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.7;
}
.section-header p strong { color: var(--white); }

/* Light section overrides */
.section-light .section-header h2,
.section-paper .section-header h2 { color: var(--ink); }
.section-light .section-header p,
.section-paper .section-header p { color: var(--ink-muted); }
.section-light .section-header p strong,
.section-paper .section-header p strong { color: var(--ink); }
.section-light .kicker,
.section-paper .kicker { color: var(--red); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}
.svc-card {
  background: var(--dark);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.svc-card:hover { background: var(--dark-2); }
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}
.svc-card:hover::after { opacity: 1; }
.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  letter-spacing: 0.02em;
  color: rgba(198, 40, 40, 0.30);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
}
.svc-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-desc strong { color: var(--white); }
.svc-outcome {
  background: rgba(230,57,70,0.07);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.svc-outcome-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.svc-outcome p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.svc-bullets {
  list-style: none;
  margin-top: 12px;
}
.svc-bullets li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.5;
}
.svc-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.6;
}

/* ── PHILOSOPHY ── */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}
.philo-card {
  background: var(--near-black);
  padding: 32px;
  position: relative;
}
.philo-card:hover { background: var(--dark-2); }
.philo-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: rgba(198, 40, 40, 0.85);
  line-height: 1;
  margin-bottom: 12px;
}
.philo-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.philo-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.philo-summary {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: rgba(230,57,70,0.06);
  border: 1px solid var(--border-red);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}
.philo-summary p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}
.philo-summary strong { color: var(--white); font-weight: 600; }
.philo-summary em { color: var(--red); font-style: italic; font-weight: 600; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
}
.price-card.price-featured {
  background: var(--dark-2);
  border: 1.5px solid var(--red);
}
.price-flag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--red);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 2px;
}
.price-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid var(--border-red);
  border-radius: 999px;
  display: inline-block;
}
.price-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}
.price-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 22px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 76px;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 0.9;
}
.price-per {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  color: var(--muted);
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-best-for {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  line-height: 1.6;
  font-style: italic;
}
.price-best-for strong { color: var(--white); font-style: normal; }
.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.price-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li strong { color: var(--white); font-weight: 600; }
.price-cta {
  display: block;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--white) !important;
  padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  transition: all 0.2s;
}
.price-cta:hover { border-color: var(--red); color: var(--red) !important; }
.price-cta-red {
  background: var(--red);
  color: var(--black) !important;
  border-color: var(--red);
}
.price-cta-red:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--black) !important;
}
.price-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.price-footnote a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── LOCATION PAGES ── */
.loc-headline {
  text-align: center;
  margin: 0 auto 56px;
}
.loc-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 128px);
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 0.9;
  display: inline-block;
}
.loc-price-unit {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 10px;
}
.loc-price-sub {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}
.loc-packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto 56px;
}
.loc-pack {
  background: var(--near-black);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: 6px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.loc-pack:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.loc-pack-mid {
  background: rgba(230,57,70,0.07);
  border-color: var(--border-red);
}
.loc-pack-size {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 0.9;
}
.loc-pack-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 22px;
}
.loc-pack-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--white);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.loc-pack-price small {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.loc-pack-desc {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  line-height: 1.5;
}
.loc-explainer {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.loc-ex-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.loc-ex-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.loc-ex-col p em {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.proc-step {
  background: var(--dark-2);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.proc-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--red);
  z-index: 2;
  font-weight: bold;
}
.proc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}
.proc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.proc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:first-child, .faq-item:nth-child(2) { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.faq-a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.faq-a strong { color: var(--white); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  line-height: 1.65;
  max-width: 560px;
}
.cta-banner p strong { color: var(--black); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1;
}
.cta-phone-note {
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: right;
  margin-top: 2px;
}
.btn-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--red);
  padding: 14px 28px;
  border-radius: 3px;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--near-black); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.contact-left .kicker { margin-bottom: 14px; display: inline-block; }
.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 0.95;
}
.contact-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-direct {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.contact-direct-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.contact-direct-row:last-child { border-bottom: none; }
.contact-direct-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 110px;
}
.contact-direct-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--red) !important;
}
.contact-direct-value:hover { color: var(--white) !important; }

.contact-form {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 0 0 2px 2px;
}
.cf-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.cf-sub {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cf-field {
  width: 100%;
  background: var(--dark-2);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.cf-field:focus { outline: none; border-color: var(--red); }
.cf-field::placeholder { color: var(--muted-2); }
.cf-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.cf-select {
  appearance: none;
  cursor: pointer;
}
.cf-select option { background: var(--dark-2); color: var(--white); }
.cf-btn {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}
.cf-btn:hover { background: var(--off-white); }
.cf-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: var(--near-black);
  border-top: 2px solid var(--border);
  padding: 52px 48px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 40px;
}
.fg-brand .footer-logo { margin-bottom: 14px; display: inline-flex; font-size: 32px; }
.fg-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.fg-nap {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
}
.fg-nap strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.fg-nap a { color: var(--red); }
.fg-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.fg-col ul { list-style: none; }
.fg-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fg-col ul li:last-child { border-bottom: none; }
.fg-col ul li a { color: rgba(255,255,255,0.65); }
.fg-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-copy a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--white); }
.footer-schema {
  font-size: 11px;
  color: rgba(230,57,70,0.3);
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── MOBILE STICKY (hidden) ── */
.mobile-sticky {
  display: none !important;
}
.mobile-sticky-hidden-style {
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  font-style: italic;
}
.ms-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--black);
  letter-spacing: 0.05em;
}
.ms-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--red);
  padding: 9px 18px;
  border-radius: 3px;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 520px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .loc-packs { grid-template-columns: 1fr; max-width: 480px; }
  .loc-explainer { grid-template-columns: 1fr; gap: 28px; }
  .philo-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-step:nth-child(2)::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media(max-width:900px) {
  .top-bar, nav, .section, .cta-banner, footer { padding-left: 32px; padding-right: 32px; }
  .hero { padding: 60px 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(2) { border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
}
@media(max-width:768px) {
  .top-bar { flex-direction: column; gap: 6px; padding: 10px 20px; text-align: center; }
  nav { padding: 0 20px; }
  .hero { padding: 48px 20px; }
  .section { padding: 56px 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 2px; }
  .proc-step::after { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px; }
  .cta-actions { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .proof-bar { padding: 14px 20px; }
  footer { padding: 40px 20px 24px; }
  .truth-strip { padding: 24px 20px; }
  .hero-card { padding: 28px 24px; }
  .price-card { padding: 32px 24px; }
}
@media(max-width:480px) {
  .hero h1 { font-size: 48px; }
  .hero-stats { gap: 16px; }
  .h-stat-divider { display: none; }
  .h-stat-num { font-size: 32px; }
}

/* ── LOCATION PAGES INLINE (folded into pricing) ── */
.loc-inline {
  max-width: 1100px;
  margin: 64px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.loc-inline-header {
  text-align: center;
  margin-bottom: 36px;
}
.loc-inline-header .kicker {
  margin-bottom: 12px;
  display: inline-block;
}
.loc-inline-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.loc-inline-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.loc-inline-header p strong { color: var(--red); font-weight: 600; }
.loc-inline .loc-packs {
  margin-bottom: 0;
}

/* ── TESTIMONIALS / REVIEWS ── */
.reviews-link {
  color: var(--red) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s;
}
.reviews-link:hover { color: var(--red-bright) !important; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.rev-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 26px 22px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.rev-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
}
.rev-mark {
  font-family: 'Barlow', sans-serif;
  font-size: 72px;
  color: rgba(230,57,70,0.1);
  position: absolute;
  top: 0; left: 14px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  pointer-events: none;
}
.rev-stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.rev-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.rev-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.rev-ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(230,57,70,0.12);
  border: 1.5px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--red);
  flex-shrink: 0;
}
.rev-meta { flex: 1; min-width: 0; }
.rev-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.rev-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.rev-src {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
}

@media(max-width:1100px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── LIGHT SECTION OVERRIDES ── */
.section-light .reviews-link { color: var(--red) !important; }
.section-light .reviews-link:hover { color: var(--red-dim) !important; }

.section-light .rev-card {
  background: #ffffff;
  border: 1px solid var(--border-cream);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.section-light .rev-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.section-light .rev-mark { color: rgba(230,57,70,0.13); }
.section-light .rev-text { color: var(--ink-soft); }
.section-light .rev-bottom { border-top: 1px solid var(--border-cream); }
.section-light .rev-name { color: var(--ink); }
.section-light .rev-sub { color: var(--ink-muted); }
.section-light .rev-ava {
  background: rgba(230,57,70,0.08);
  border-color: var(--border-red);
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 6px;
  display: block;
  filter: contrast(1.02);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 70%; height: 70%;
  border: 3px solid var(--red);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.35;
}
.about-content .kicker { margin-bottom: 14px; display: inline-block; color: var(--red); }
.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.8vw, 58px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 22px;
}
.about-content h2 em { color: var(--red); font-style: normal; display: block; }
.about-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-content p strong { color: var(--ink); font-weight: 700; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}
.about-stats .a-stat {
  background: #ffffff;
  border: 1px solid var(--border-cream);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 18px 14px;
  text-align: center;
}
.about-stats .a-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
}
.about-stats .a-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  line-height: 1.3;
  font-weight: 600;
}

/* About CTA button on light bg */
.section-light .about-content .btn-primary {
  background: var(--red);
  color: var(--white);
}
.section-light .about-content .btn-primary:hover {
  background: var(--red-dim);
  color: var(--white);
}

@media(max-width:900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; max-width: 640px; }
  .about-img-wrap::after { bottom: -10px; right: -10px; }
}
@media(max-width:480px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* ── LEAD FORM (Apps Script wired) ── */
/* Honeypot — offscreen NOT display:none */
._gotcha {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Wizard step visibility */
.form-step { display: none; }
.form-step-active { display: block; }
.form-step[hidden] { display: none !important; }

/* Step 2 button row */
.cf-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  align-items: stretch;
}
.cf-actions .cf-btn {
  margin-top: 0;
  width: auto;
  white-space: nowrap;
}
.cf-actions .submit-btn { flex: 1 1 auto; }
.cf-btn-ghost {
  background: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  flex: 0 0 auto;
  min-width: 90px;
  max-width: 110px;
  padding-left: 14px;
  padding-right: 14px;
}
.cf-btn-ghost:hover {
  border-color: var(--red) !important;
  color: var(--red) !important;
  background: transparent !important;
}

/* Error message */
.hc-error {
  background: rgba(220,60,60,0.12);
  border: 1px solid rgba(220,60,60,0.35);
  color: #f4b8b8;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 10px;
}

/* ─────────────────────────────────────────────────────────────
   PRICING — LIGHT SECTION OVERRIDES
   ───────────────────────────────────────────────────────────── */
.section-light#pricing .price-card {
  background: #ffffff;
  border: 1px solid var(--border-cream);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.section-light#pricing .price-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.section-light#pricing .price-card.price-featured {
  border: 2px solid var(--red);
  box-shadow: 0 8px 24px rgba(230,57,70,0.12);
}
.section-light#pricing .price-tier {
  color: var(--red);
  background: rgba(230,57,70,0.08);
  border-color: var(--border-red);
}
.section-light#pricing .price-name { color: var(--ink); }
.section-light#pricing .price-tagline { color: var(--ink-muted); }
.section-light#pricing .price-num { color: var(--red); }
.section-light#pricing .price-per { color: var(--ink-muted); }
.section-light#pricing .price-amount { border-bottom-color: var(--border-cream); }
.section-light#pricing .price-best-for { color: var(--ink-soft); }
.section-light#pricing .price-best-for strong { color: var(--ink); }
.section-light#pricing .price-features li { color: var(--ink-soft); }
.section-light#pricing .price-features li strong { color: var(--ink); }
.section-light#pricing .price-features li::before {
  /* checkmark already red, stays the same */
}
.section-light#pricing .price-cta {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink-muted);
}
.section-light#pricing .price-cta:hover {
  border-color: var(--red);
  color: var(--red) !important;
  background: rgba(230,57,70,0.04);
}
.section-light#pricing .price-cta-red {
  background: var(--red);
  color: #ffffff !important;
  border: 1.5px solid var(--red);
}
.section-light#pricing .price-cta-red:hover {
  background: var(--red-dim);
  color: #ffffff !important;
}

/* Location packs (inline section inside pricing) */
.section-light#pricing .loc-inline { border-top: 1px solid var(--border-cream); }
.section-light#pricing .loc-inline-header h3 { color: var(--ink); }
.section-light#pricing .loc-inline-header p { color: var(--ink-muted); }
.section-light#pricing .loc-inline-header p strong { color: var(--red); }
.section-light#pricing .loc-pack {
  background: #ffffff;
  border: 1px solid var(--border-cream);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.section-light#pricing .loc-pack:hover {
  border-color: var(--border-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.section-light#pricing .loc-pack-mid {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,0.1);
}
.section-light#pricing .loc-pack-size { color: var(--red); }
.section-light#pricing .loc-pack-label { color: var(--ink-muted); }
.section-light#pricing .loc-pack-price { color: var(--ink); }
.section-light#pricing .loc-pack-price small { color: var(--ink-muted); }
.section-light#pricing .loc-pack-desc { color: var(--ink-muted); }

/* Pricing CTA bottom note (the "Both tiers can be expanded..." line) */
.section-light#pricing .section-header .kicker,
.section-light#pricing .loc-inline-header .kicker { color: var(--red); }


/* ─────────────────────────────────────────────────────────────
   SERVICES — LIGHT SECTION OVERRIDES
   ───────────────────────────────────────────────────────────── */
.section-light#services .svc-card {
  background: #ffffff;
  border: 1px solid var(--border-cream);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  /* gap between cards is created by grid gap; need a visible boundary on cream */
}
.section-light#services .svc-card:hover {
  background: #ffffff;
  border-color: var(--border-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.section-light#services .svc-num {
  color: rgba(198, 40, 40, 0.45) !important;
}
.section-light#services .svc-title { color: var(--ink); }
.section-light#services .svc-desc { color: var(--ink-soft); }
.section-light#services .svc-desc strong { color: var(--ink); }
.section-light#services .svc-desc a { color: var(--ink); }
.section-light#services .svc-desc a:hover { color: var(--red); }

.section-light#services .svc-outcome {
  background: rgba(230,57,70,0.06);
  border: 1px solid var(--border-red);
}
.section-light#services .svc-outcome-label { color: var(--red); }
.section-light#services .svc-outcome p { color: var(--ink); }

/* Service cards on cream: change gap separator since 2px gap on cream needs to be readable */
.section-light#services .services-grid {
  gap: 16px;
}

/* ─────────────────────────────────────────────────────────────
   DEFENSIVE: any white text inside a cream section must be dark.
   !important here intentionally — defense against future cascade
   regressions and CDN-cached stale CSS. Contrast on cream is critical.
   ───────────────────────────────────────────────────────────── */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--ink) !important;
}
.section-light h2 em,
.section-light h3 em {
  color: var(--red) !important;
}
.section-light p:not([class]),
.section-light li:not([class]) {
  color: var(--ink-soft) !important;
}
.section-light strong:not([class]) {
  color: var(--ink) !important;
}

/* Specifically target the location pages sub-section header — this is
   the one that washed out for users with stale CSS caches */
.section-light .loc-inline-header h3 { color: var(--ink) !important; }
.section-light .loc-inline-header p  { color: var(--ink-muted) !important; }
.section-light .loc-inline-header p strong { color: var(--red) !important; }
.section-light .section-header h2    { color: var(--ink) !important; }
.section-light .section-header h2 em { color: var(--red) !important; }
.section-light .section-header p     { color: var(--ink-muted) !important; }
.section-light .section-header p strong { color: var(--ink) !important; }

