/* ================================================================
   FLORIDA RESTORATION PROS — GLOBAL STYLESHEET
   Loaded on every page of the site.
   Site: restorationhubfl.com
   Last updated: 2025-05-23
================================================================ */


/* ================================================================
   1. DESIGN TOKENS
================================================================ */
:root {
  /* Brand colours */
  --teal:           #0F6E56;
  --teal-mid:       #1D9E75;
  --teal-light:     #E1F5EE;
  --teal-pale:      #F2FBF7;
  --blue-link:      #185FA5;
  --blue-light:     #E6F1FB;
  --amber:          #BA7517;
  --amber-light:    #FAEEDA;

  /* Neutrals */
  --text:           #1A1A1A;
  --text-mid:       #4A4A4A;
  --text-muted:     #737373;
  --border:         rgba(0, 0, 0, 0.10);
  --border-mid:     rgba(0, 0, 0, 0.16);

  /* Surfaces */
  --bg:             #FFFFFF;
  --bg-surface:     #F7F8F6;
  --bg-dark:        #0D1F1A;

  /* Typography */
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max-w:          1100px;
  --nav-h:          64px;
  --section-gap:    72px;
  --section-gap-sm: 48px;

  /* Radii */
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;
}


/* ================================================================
   2. RESET + BASE
================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Remove default focus outline — replaced with custom below */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--teal-mid);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ================================================================
   3. ACCESSIBILITY
================================================================ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--teal);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: top 0.2s;
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ================================================================
   4. LAYOUT UTILITIES
================================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section-sm {
  padding: var(--section-gap-sm) 0;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 640px;
}

/* Teal accent bar used above section headings */
.divider {
  width: 48px;
  height: 3px;
  background: var(--teal-mid);
  border-radius: 2px;
  margin: 0 0 24px;
}

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.text-center .divider { margin-left: auto; margin-right: auto; }

/* Simple two-column grid used in several sections */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


/* ================================================================
   5. TYPOGRAPHY SCALE
================================================================ */
h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}

h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Contextual link style — used within body copy */
.body-link {
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.body-link:hover { color: var(--teal); }

/* Applied to inline links in copy blocks across the site */
article a,
.faq-a a,
.about-copy a,
.florida-copy a,
.service-desc a {
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ================================================================
   6. BUTTONS
================================================================ */

/* Primary — teal filled, used for all primary CTAs */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-mid);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  text-decoration: none;
}

.btn-primary:hover { background: var(--teal); }

.btn-primary svg { flex-shrink: 0; }

/* Large variant — bottom CTA section */
.btn-primary-lg {
  font-size: 16px;
  padding: 16px 32px;
}

/* Secondary — bordered, used alongside primary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1;
  cursor: pointer;
  border: 0.5px solid var(--border-mid);
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--teal-mid);
}

/* Ghost — used on dark backgrounds */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  transition: background 0.15s;
  text-decoration: none;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

/* Text link with arrow — used for "read more" style links */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.15s;
}

.link-arrow:hover { gap: 8px; }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 3px; }


/* ================================================================
   7. TRUST PILLS
   Used in hero and can appear in city pages and hub pages
================================================================ */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  border: 0.5px solid var(--border-mid);
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 1;
}

.trust-pill svg { color: var(--teal-mid); flex-shrink: 0; }

/* Dark variant — trust pills on dark backgrounds */
.trust-pills-dark .trust-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}


/* ================================================================
   8. CITY GRID
   Used on homepage and service area pages
================================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.city-btn {
  display: block;
  text-align: center;
  padding: 12px 8px;
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-mid);
  background: var(--bg);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  text-decoration: none;
}

.city-btn:hover {
  border-color: var(--teal-mid);
  color: var(--teal);
  background: var(--teal-pale);
}

.city-btn.more {
  background: var(--bg-surface);
  color: var(--teal-mid);
  font-weight: 500;
  border-color: var(--teal-mid);
}


/* ================================================================
   9. SERVICE CARDS
   Used on homepage and hub pages
================================================================ */
.service-card {
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Left accent bar via pseudo-element */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.service-card.wd::before  { background: var(--teal-mid); }
.service-card.mold::before { background: #378ADD; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card.wd .service-icon   { background: var(--teal-light); color: var(--teal); }
.service-card.mold .service-icon { background: var(--blue-light); color: #185FA5; }

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-link {
  font-size: 13px;
  color: var(--blue-link);
  border: 0.5px solid var(--border-mid);
  border-radius: 20px;
  padding: 5px 12px;
  transition: background 0.15s;
  text-decoration: none;
}

.service-link:hover { background: var(--blue-light); }


/* ================================================================
   10. PROCESS / HOW IT WORKS
================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-card {
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg);
}

.process-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}

.process-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}


/* ================================================================
   11. TRUST CARDS
   Used in About this site section
================================================================ */
.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-card-item {
  background: var(--bg);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.trust-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.trust-card-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.trust-card-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.trust-card-link {
  font-size: 13px;
  color: var(--blue-link);
  text-decoration: none;
}

.trust-card-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ================================================================
   12. SOURCE / STANDARDS STRIP
================================================================ */
.sources-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  border: 0.5px solid var(--border-mid);
  padding: 5px 11px;
  border-radius: 20px;
}

.source-dot {
  width: 6px;
  height: 6px;
  background: var(--teal-mid);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ================================================================
   13. FAQ
================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 0.5px solid var(--border);
  padding: 20px 0;
}

.faq-item:first-child { border-top: 0.5px solid var(--border); }

.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.45;
}

.faq-a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ================================================================
   14. STAT CARDS
================================================================ */
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--teal-mid);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Light variant — used on white backgrounds */
.stat-card-light {
  background: var(--bg-surface);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
}

.stat-card-light .stat-val { color: var(--teal-mid); }
.stat-card-light .stat-label { color: var(--text-muted); }


/* ================================================================
   15. BLOG CARDS
================================================================ */
.blog-card {
  background: var(--bg);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-top {
  height: 4px;
  background: var(--teal-mid);
  flex-shrink: 0;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-link {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  margin-top: auto;
}

.blog-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ================================================================
   16. DISCLOSURE BOX
   Used in bottom CTA and affiliate notice areas
================================================================ */
.disclosure {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

.disclosure strong { color: var(--text-mid); }

/* Inline disclosure block — used within page copy sections */
.disclosure-block {
  background: var(--bg-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-left: 3px solid var(--border-mid);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

.disclosure-block strong { color: var(--text-mid); }


/* ================================================================
   17. NAVIGATION
================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--teal-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover {
  background: var(--bg-surface);
  color: var(--text);
}

/* Active state — applied via WordPress body class or JS */
.nav-link.active {
  color: var(--teal);
  font-weight: 500;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-mid);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--teal); }
.nav-cta svg { flex-shrink: 0; }

.nav-mobile-btn {
  display: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  transition: background 0.15s;
}

.nav-mobile-btn:hover { background: var(--bg-surface); }

/* Mobile nav expanded state */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 12px 24px 20px;
  border-bottom: 0.5px solid var(--border);
  z-index: 99;
  gap: 2px;
}

.nav-links.is-open .nav-link {
  width: 100%;
  padding: 10px 12px;
}


/* ================================================================
   18. FOOTER
================================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand { color: #fff; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.footer-logo span { color: var(--teal-mid); }

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-mid);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-phone:hover { color: #fff; }

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  display: block;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  padding: 3px 0;
  line-height: 1.5;
  transition: color 0.15s;
  text-decoration: none;
}

.footer-link:hover { color: #fff; }

.footer-link-more {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 600px;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.footer-legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-legal-link:hover { color: rgba(255, 255, 255, 0.7); }


/* ================================================================
   19. MOBILE STICKY CALL BAR
   Shows at bottom of screen on mobile — always visible
================================================================ */
.mobile-call-bar {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 90;
  background: var(--teal);
  padding: 12px 16px;
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}


/* ================================================================
   20. BREADCRUMB
   Used on all inner pages
================================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--blue-link);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }

.breadcrumb-sep {
  color: var(--border-mid);
  font-size: 12px;
}

.breadcrumb-current {
  color: var(--text-mid);
}


/* ================================================================
   21. BADGES + LABELS
================================================================ */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.badge-teal   { background: var(--teal-light); color: var(--teal); }
.badge-blue   { background: var(--blue-light); color: #185FA5; }
.badge-amber  { background: var(--amber-light); color: var(--amber); }
.badge-surface{ background: var(--bg-surface); color: var(--text-muted); border: 0.5px solid var(--border-mid); }


/* ================================================================
   22. RESPONSIVE BREAKPOINTS
================================================================ */

/* Tablet — 900px */
@media (max-width: 900px) {
  :root {
    --section-gap:    56px;
    --section-gap-sm: 40px;
  }

  .nav-links        { display: none; }
  .nav-mobile-btn   { display: flex; }

  .cities-grid      { grid-template-columns: repeat(3, 1fr); }
  .grid-2           { grid-template-columns: 1fr; }
  .grid-3           { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }

  .mobile-call-bar { display: block; }
}

/* Mobile — 560px */
@media (max-width: 560px) {
  :root {
    --section-gap:    48px;
    --section-gap-sm: 32px;
  }

  .cities-grid { grid-template-columns: repeat(2, 1fr); }

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

  .trust-pills { gap: 6px; }
  .trust-pill  { font-size: 11px; padding: 5px 10px; }

  .breadcrumb { font-size: 12px; }
}
