/* ── Scope reset ──────────────────────────────────── */
.st-page *, .st-page *::before, .st-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.st-page {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  --red:    #ed1c23;
  --dark-red: #c8151c;
  --black:  #1b1b1b;
  --offblack: #222222;
  --dark:   #2a2a2a;
  --light:  #f7f7f7;
  --mid:    #555555;
  --white:  #ffffff;
  --border: #e2e2e2;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  /* Break out of WordPress content container */
  width: calc(100vw + 2px);
  position: relative;
  left: calc(50% - 1px);
  transform: translateX(-50%);
  overflow-x: hidden;
}

/* ── Utility ─────────────────────────────────────── */
.st-inner  { max-width: 1060px; margin: 0 auto; padding: 0 22px; }
.st-inner--narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }
.st-red    { color: var(--red); }
.st-white  { color: var(--white); }

.st-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.st-tag--dark {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
}

.st-divider {
  width: 48px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 10px auto 26px;
}
.st-divider--center { margin: 10px auto 26px; }
.st-divider--white  { background: rgba(255,255,255,.5); }

/* ── Buttons ─────────────────────────────────────── */
.st-btn {
  display: inline-block;
  padding: 16px 34px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: all .22s ease;
  border: 2px solid transparent;
  letter-spacing: .5px;
  text-align: center;
  line-height: 1.2;
}
.st-btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.st-btn-red:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237,28,35,.45);
  color: var(--white);
  text-decoration: none;
}
.st-btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.st-btn-white:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  transform: translateY(-2px);
  color: var(--black);
  text-decoration: none;
}
.st-btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.st-btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}
.st-btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.st-btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}
.st-btn--full { display: block; width: 100%; }
.st-btn--lg { padding: 20px 40px; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; }
.st-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════
   1. TOP ALERT BAR
   ══════════════════════════════════════════════════ */
.st-alert {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
}
.st-alert strong { font-weight: 900; }
.st-alert a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════
   2. HERO
   ══════════════════════════════════════════════════ */
.st-hero {
  background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.82)), url('https://farnsworthgarage.com/wp-content/uploads/2026/03/fg-springrepair.webp') center/cover no-repeat;
  padding: 48px 22px 52px;
}
.st-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .st-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .st-hero-card { max-width: 420px; margin: 0 auto; width: 100%; }
}
.st-hero-left { text-align: left; }
.st-hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(237,28,35,.15);
  border: 1px solid rgba(237,28,35,.35);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.st-hero-urgency-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: st-pulse 1.5s ease-in-out infinite;
}
@keyframes st-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.st-hero h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: .3px;
}
.st-hero h1 em { font-style: normal; color: var(--red); }
.st-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}
.st-hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.st-hero-stars-rating {
  font-size: 18px;
  color: #f5a623;
  letter-spacing: 2px;
  line-height: 1;
}
.st-hero-stars-text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 10px;
}
.st-hero-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.st-hero-phone a.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: .3px;
  transition: all .2s;
  border: 2px solid var(--red);
}
.st-hero-phone a.primary:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237,28,35,.4);
}
.st-hero-phone a.secondary {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.st-hero-phone a.secondary:hover { color: var(--white); }

/* Price card */
.st-hero-card {
  background: #0d0d0d;
  border: 2px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.7);
}
.st-hero-card-header {
  background: var(--red);
  text-align: center;
  padding: 12px 20px;
}
.st-hero-card-header p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 1px;
}
.st-hero-card-header strong {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.st-hero-card-body {
  padding: 24px 24px 20px;
  text-align: center;
}
.st-price-was {
  font-size: 15px;
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.st-price-now {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.st-price-now .st-price-dollar { font-size: 34px; padding-top: 11px; letter-spacing: 0; }
.st-price-now .st-price-cents  { font-size: 26px; align-self: flex-end; padding-bottom: 8px; letter-spacing: 0; }
.st-price-save {
  display: inline-block;
  background: rgba(237,28,35,.2);
  color: var(--red);
  border: 1px solid rgba(237,28,35,.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.st-card-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  border-top: 1px solid #1e1e1e;
  padding-top: 16px;
}
.st-card-includes li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  padding: 5px 0;
  border-bottom: 1px solid #1a1a1a;
  font-weight: 500;
}
.st-card-includes li:last-child { border-bottom: none; }
.st-card-includes li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.st-card-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-card-trust {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
  font-weight: 500;
}
.st-card-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 10px;
}
.st-card-urgency-dot {
  width: 6px; height: 6px;
  background: #f5a623;
  border-radius: 50%;
  animation: st-pulse 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════
   3. SOCIAL PROOF BAR
   ══════════════════════════════════════════════════ */
.st-proof-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 22px;
}
.st-proof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.st-proof-item {
  text-align: center;
  padding: 10px 28px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 160px;
}
.st-proof-item:last-child { border-right: none; }
.st-proof-num {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.st-proof-stars {
  font-size: 22px;
  letter-spacing: 2px;
}
.st-proof-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid);
}
@media (max-width: 600px) {
  .st-proof-item { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 20px; }
  .st-proof-item:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════════
   4. PROBLEM SECTION
   ══════════════════════════════════════════════════ */
.st-problem {
  background: var(--white);
  padding: 70px 22px;
}
.st-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  text-align: center;
}
.st-problem h2, .st-checklist h2, .st-value h2, .st-reviews h2, .st-senior h2, .st-faq h2, .st-bottom-cta h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
}

.st-problem { text-align: center; }
.st-problem h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}
.st-problem-intro {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.st-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 760px) { .st-problems-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .st-problems-grid { grid-template-columns: 1fr; } }

.st-problem-card {
  background: var(--light);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 20px;
}
.st-problem-card-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.st-problem-card h3 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.st-problem-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   5. CHECKLIST SECTION
   ══════════════════════════════════════════════════ */
.st-checklist {
  background: var(--light);
  padding: 70px 22px;
  text-align: center;
}
.st-checklist h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}
.st-checklist-intro {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.st-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 600px) { .st-checklist-grid { grid-template-columns: 1fr; max-width: 360px; } }
.st-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.st-check-item:last-child { border-bottom: none; }
.st-check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
}
.st-checklist-cta {
  margin-top: 44px;
  text-align: center;
}

/* ══════════════════════════════════════════════════
   6. VALUE COMPARISON
   ══════════════════════════════════════════════════ */
.st-value {
  background: var(--white);
  padding: 70px 22px;
}
.st-value { text-align: center; }
.st-value h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}
.st-value-intro {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.st-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto 44px;
  max-width: 860px;
  text-align: left;
}
@media (max-width: 580px) { .st-compare { grid-template-columns: 1fr; } }
.st-compare-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.st-compare-card-header {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.st-compare-card--bad  .st-compare-card-header { background: #1a1a1a; color: rgba(255,255,255,.7); }
.st-compare-card--good .st-compare-card-header { background: var(--red); color: var(--white); }
.st-compare-card-body { background: var(--light); padding: 24px; }
.st-compare-price {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.st-compare-card--bad  .st-compare-price { color: #cc0000; }
.st-compare-card--good .st-compare-price { color: var(--red); }
.st-compare-list { list-style: none; }
.st-compare-list li {
  font-size: 14px;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-compare-list li:last-child { border-bottom: none; }
.st-compare-list li::before {
  content: '✕';
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.st-compare-card--bad  .st-compare-list li::before { color: #cc0000; }
.st-compare-card--good .st-compare-list li::before { content: '✓'; color: var(--red); }

/* ══════════════════════════════════════════════════
   7. REVIEWS
   ══════════════════════════════════════════════════ */
.st-reviews {
  background: var(--light);
  padding: 70px 22px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.st-reviews h2 {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}
.st-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 40px auto 0;
  max-width: 1060px;
}
@media (max-width: 760px) { .st-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .st-reviews-grid { grid-template-columns: 1fr; } }
.st-review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--red);
}
.st-review-stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.st-review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.st-review-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.st-review-city {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════
   8. SENIOR SECTION
   ══════════════════════════════════════════════════ */
.st-senior {
  background: var(--white);
  padding: 60px 22px;
  text-align: center;
}
.st-senior h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}
.st-senior-body {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 28px;
}
.st-senior-fine {
  font-size: 12px;
  color: #999;
  margin-top: 18px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════
   9. FAQ SECTION
   ══════════════════════════════════════════════════ */
.st-faq {
  background: var(--white);
  padding: 70px 22px;
  text-align: center;
}
.st-faq h2 {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}
.st-faq-list { margin-top: 36px; text-align: left; }
.st-faq-item {
  border-bottom: 1px solid var(--border);
}
.st-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  transition: color .18s;
}
.st-page .st-faq-q:hover,
.st-page .st-faq-q:focus,
.st-page .st-faq-q:active {
  color: #ed1c23 !important;
  background: none !important;
  background-color: transparent !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.st-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--mid);
  transition: all .18s;
  line-height: 1;
}
.st-faq-item.open .st-faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.st-faq-a {
  display: none;
  padding: 0 4px 20px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
}
.st-faq-item.open .st-faq-a { display: block; }

/* ══════════════════════════════════════════════════
   10. BOTTOM CTA
   ══════════════════════════════════════════════════ */
.st-bottom-cta {
  background: var(--red);
  padding: 72px 22px;
  text-align: center;
}
.st-bottom-cta h2 {
  font-size: clamp(26px, 4vw, 46px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.st-bottom-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.st-bottom-cta-fine {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  margin-top: 16px;
  font-weight: 500;
}


/* ══════════════════════════════════════════════════
   SERVICE AREA STRIP
   ══════════════════════════════════════════════════ */
.st-area-strip {
  background: var(--light);
  padding: 52px 22px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 4px solid var(--red);
}
.st-area-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.st-area-eyebrow-line {
  width: 32px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.st-area-heading {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.st-area-sub {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 36px;
  font-weight: 400;
}
.st-area-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.st-area-city {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  transition: all .2s;
}
.st-area-city::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.st-area-city:hover {
  background: rgba(237,28,35,.08);
  border-color: rgba(237,28,35,.35);
  color: var(--black);
}

/* ── Misc tweaks ─────────────────────────────────── */
.st-page a { text-decoration: none; }
.st-center { text-align: center; }
.st-mt-lg { margin-top: 44px; }