/* ============================================
   PEARLAND SEWAGE BACKUP CLEANUP
   Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* --- TOKENS --- */
:root {
  --ink: #172420;
  --ink-mid: #1F332C;
  --teal: #0D8577;
  --teal-dark: #0A6459;
  --teal-light: #3FBFAE;
  --white: #FFFFFF;
  --paper: #F8F6F1;
  --paper-dark: #EFEBE2;
  --stone: #4B4843;
  --stone-light: #837E74;
  --border: #E4DFD3;
  --green: #2F8F4E;
  --red: #B3402F;
  --gold: #C08A2E;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-accent: 'Manrope', sans-serif;

  --radius: 10px;
  --radius-lg: 4px 22px 4px 22px;
  --shadow: 0 6px 24px rgba(23,36,32,0.10);
  --shadow-lg: 0 14px 44px rgba(23,36,32,0.16);
  --transition: 0.2s ease;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--stone);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* --- EMERGENCY BAR --- */
.emergency-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.emergency-bar .pulse-dot {
  position: relative;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.emergency-bar .pulse-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.emergency-bar a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

/* --- HEADER / NAV --- */
.site-header {
  background: var(--ink);
  padding: 0 40px;
  position: sticky;
  top: 40px;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.3px;
}
.logo-main span { color: var(--teal-light); }
.logo-sub {
  font-family: var(--font-accent);
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ⌄'; font-size: 12px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
  border-top: 2px solid var(--teal);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  color: var(--stone);
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.dropdown-menu a:hover { color: var(--teal-dark); background: var(--paper); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* --- HERO --- */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 84px 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(63,191,174,0.22) 0%, transparent 45%),
    linear-gradient(125deg, var(--ink) 10%, var(--ink-mid) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mix-blend-mode: overlay;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(63,191,174,0.12);
  border: 1px solid rgba(63,191,174,0.4);
  color: var(--teal-light);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge .dot { position: relative; width: 6px; height: 6px; background: var(--teal-light); border-radius: 50%; }
.hero-badge .dot::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1.5px solid var(--teal-light);
  border-radius: 50%;
  animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 60px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--teal-light); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 34px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding: 16px 30px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(13,133,119,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-family: var(--font-accent);
  font-weight: 500;
}
.trust-item .icon { color: var(--teal-light); font-size: 15px; }

/* Hero form card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.hero-card p {
  font-size: 14px;
  color: var(--stone-light);
  margin-bottom: 22px;
}
.cta-phone {
  display: block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.cta-phone:hover { background: var(--teal-dark); color: var(--white); }
.cta-phone span { display: block; font-size: 11.5px; font-family: var(--font-accent); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; margin-bottom: 5px; }
.divider-text {
  text-align: center;
  color: var(--stone-light);
  font-size: 13px;
  margin: 14px 0;
  position: relative;
}
.divider-text::before, .divider-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--border);
}
.divider-text::before { left: 0; }
.divider-text::after { right: 0; }
.service-checklist {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.service-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--stone);
  padding: 5px 0;
  font-family: var(--font-accent);
  font-weight: 500;
}
.service-checklist li::before {
  content: '';
  width: 15px; height: 15px;
  border-radius: 4px;
  background: var(--teal);
  flex-shrink: 0;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/70% no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/70% no-repeat;
  background-color: var(--teal);
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--paper-dark);
  border-bottom: 1px solid var(--border);
  padding: 22px 40px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-stat-icon {
  width: 42px; height: 42px;
  background: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 17px;
  flex-shrink: 0;
  transform: rotate(-4deg);
}
.trust-stat-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.2px;
}
.trust-stat-text span {
  font-size: 11.5px;
  color: var(--stone-light);
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* --- SECTIONS --- */
.section { padding: 88px 40px; }
.section-smoke { background: var(--paper); }
.section-navy { background: var(--ink); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--teal);
  display: inline-block;
}
.section-navy .section-label { color: var(--teal-light); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.section-navy .section-title { color: var(--white); }
.section-title span { color: var(--teal); }
.section-navy .section-title span { color: var(--teal-light); }
.section-sub {
  font-size: 17px;
  color: var(--stone);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 50px;
}
.section-navy .section-sub { color: rgba(255,255,255,0.65); }

/* --- SERVICE GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--teal-light); }
.service-icon {
  width: 50px; height: 50px;
  background: rgba(13,133,119,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transform: rotate(-6deg);
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: rotate(0deg) scale(1.06); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 9px;
  letter-spacing: -0.2px;
}
.service-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-card a {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card a::after { content: '→'; transition: transform var(--transition); }
.service-card:hover a::after { transform: translateX(4px); }

/* --- PROCESS STEPS --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  background: transparent;
  border: 2px solid var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--teal-light);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transform: rotate(-4deg);
}
.process-step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  right: -50%;
  height: 0;
  border-top: 2px dashed rgba(255,255,255,0.18);
  z-index: 0;
}
.process-step:last-child::after { display: none; }
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* --- WHY US --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why-visual {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(63,191,174,0.28) 0%, transparent 50%),
    var(--ink);
  min-height: 420px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(63,191,174,0.25);
}
.why-visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63,191,174,0.12);
  border: 1px solid rgba(63,191,174,0.4);
  color: var(--teal-light);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
}
.why-visual-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -2px;
}
.why-visual-label {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
}
.why-visual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.why-visual-chips span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 100px;
}
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
}
.why-item-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.why-item p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

/* --- LOCATIONS GRID --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 20px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-card:hover {
  background: rgba(63,191,174,0.12);
  border-color: rgba(63,191,174,0.45);
  transform: translateX(3px);
}
.location-card .loc-icon { color: var(--teal-light); font-size: 13px; flex-shrink: 0; }
.location-card span {
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item.open { border-color: var(--teal-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--paper); }
.faq-question .faq-icon {
  font-size: 19px;
  color: var(--white);
  background: var(--teal);
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(120deg, var(--ink) 0%, var(--teal-dark) 130%);
  padding: 64px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--white);
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 30px;
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 38px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.btn-white:hover { background: var(--ink); color: var(--white); }

/* --- FOOTER --- */
.site-footer {
  background: var(--ink-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  transition: color var(--transition);
  font-family: var(--font-accent);
}
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  font-family: var(--font-accent);
}
.footer-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--teal-light);
}

/* --- INTERNAL PAGE HERO --- */
.page-hero {
  background: var(--ink);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,133,119,0.22) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  font-family: var(--font-accent);
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.48); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb span { color: rgba(255,255,255,0.28); }
.breadcrumb-current { color: var(--teal-light); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--teal-light); }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 640px;
  line-height: 1.7;
}
.page-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.meta-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-family: var(--font-accent);
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
}
.meta-tag span { color: var(--teal-light); }

/* --- CONTENT PROSE --- */
.content-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin: 28px 0 10px;
}
.prose p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 16px;
}
.prose ul {
  margin: 16px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
}
.prose ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
  transform: rotate(45deg);
}
.prose table.service-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px 0;
  font-size: 15px;
  line-height: 1.6;
}
.prose table.service-table tr {
  border-bottom: 1px solid var(--border);
}
.prose table.service-table tr:last-child {
  border-bottom: none;
}
.prose table.service-table th,
.prose table.service-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 8px;
}
.prose table.service-table th {
  width: 30%;
  color: var(--ink);
  font-family: var(--font-accent);
  font-weight: 700;
  white-space: nowrap;
}
.prose table.service-table td {
  color: var(--stone);
  padding-left: 20px;
}
@media (max-width: 640px) {
  .prose table.service-table,
  .prose table.service-table tbody,
  .prose table.service-table tr,
  .prose table.service-table th,
  .prose table.service-table td {
    display: block;
    width: 100%;
  }
  .prose table.service-table tr {
    padding: 12px 0;
  }
  .prose table.service-table th,
  .prose table.service-table td {
    padding: 2px 0;
    white-space: normal;
  }
}
.prose .warning-box {
  background: rgba(179,64,47,0.06);
  border: 1px solid rgba(179,64,47,0.2);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}
.prose .warning-box strong { color: var(--red); display: block; margin-bottom: 4px; font-family: var(--font-accent); text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
.prose .info-box {
  background: rgba(13,133,119,0.06);
  border: 1px solid rgba(13,133,119,0.2);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

/* --- SIDEBAR --- */
.sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-card-header {
  background: var(--ink);
  padding: 16px 20px;
}
.sidebar-card-header h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.sidebar-card-body { padding: 20px; }
.sidebar-phone {
  display: block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background var(--transition);
}
.sidebar-phone:hover { background: var(--teal-dark); color: var(--white); }
.sidebar-list { display: flex; flex-direction: column; gap: 6px; }
.sidebar-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--stone);
  font-family: var(--font-accent);
  font-weight: 500;
  transition: all var(--transition);
}
.sidebar-list a:hover { background: var(--paper); color: var(--teal-dark); }
.sidebar-list a::before { content: '→'; color: var(--teal); font-size: 12px; }

/* --- LOCATION PAGE SPECIFIC --- */
.local-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.local-stat {
  background: var(--paper);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border-top: 3px solid var(--teal);
}
.local-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}
.local-stat span {
  font-size: 11.5px;
  color: var(--stone-light);
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .site-header { padding: 0 20px; top: 36px; }
  .nav-links { display: none; }
  .hero { padding: 40px 20px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero h1 { font-size: 36px; }
  .section { padding: 50px 20px; }
  .trust-bar { padding: 16px 20px; }
  .trust-bar-inner { gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .local-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 40px 20px; }
  .emergency-bar { font-size: 13px; padding: 8px 16px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .local-stats { grid-template-columns: 1fr; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 108px; left: 0; right: 0; background: var(--ink); padding: 20px; z-index: 998; border-top: 1px solid rgba(255,255,255,0.1); }
}
