/* ==========================================================================
   Mission Viejo Portable Comfort Co. — Design System
   Palette derived from the product itself: deep sanitation teal (the actual
   unit color seen across our fleet photography) + hi-vis safety amber
   (jobsite/construction accent). Utility "spec plate" motif throughout.
   ========================================================================== */

:root {
  /* Color */
  --ink:        #10201D;
  --teal-950:   #0E1B19;
  --teal-900:   #123B34;
  --teal-700:   #146B5C;
  --teal-600:   #1B8371;
  --teal-100:   #E3F0EC;
  --teal-50:    #F4F7F5;
  --amber-600:  #E8890C;
  --amber-500:  #FFA733;
  --amber-100:  #FFEDD2;
  --paper:      #FBFBF9;
  --line:       #DDE6E2;
  --line-soft:  #EAEFEC;
  --white:      #FFFFFF;
  --success:    #146B5C;

  /* Type */
  --font-display: 'Archivo Expanded', 'Archivo', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  /* Layout */
  --maxw: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(14,27,25,0.08), 0 1px 1px rgba(14,27,25,0.04);
  --shadow-md: 0 8px 24px rgba(14,27,25,0.12);
  --shadow-lg: 0 20px 48px rgba(14,27,25,0.18);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--amber-600);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--amber-600);
  display: inline-block;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: var(--teal-950);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--teal-950);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--teal-950);
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: #3B534D;
}
p, li { line-height: 1.7; color: #33463F; }
.mono { font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15.5px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-call {
  background: var(--amber-600);
  color: var(--teal-950);
  box-shadow: var(--shadow-sm);
}
.btn-call:hover { background: var(--amber-500); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--teal-700);
  color: var(--teal-700);
}
.btn-outline-dark:hover { background: var(--teal-700); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 17px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--teal-950);
  color: #C9DAD5;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  flex-wrap: wrap;
  gap: 4px 0;
  padding-top: 4px;
  padding-bottom: 4px;
}
.topbar a { color: #C9DAD5; }
.topbar a:hover { color: var(--amber-500); }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left svg { width: 13px; height: 13px; }
.topbar-right a { font-weight: 600; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,251,249,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--teal-950);
  font-weight: 700;
}
.brand-text span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--teal-700);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--teal-950);
}
.main-nav a.nav-link:hover { background: var(--teal-100); color: var(--teal-700); }
.main-nav .current > a.nav-link { color: var(--teal-700); }

.has-dropdown { position: relative; }
.has-dropdown .chevron { transition: transform 0.2s ease; }
.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 620px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--teal-50); }
.dropdown .dd-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal-700);
}
.dropdown .dd-text strong { display: block; font-size: 13.8px; color: var(--teal-950); font-weight: 600; }
.dropdown .dd-text small { font-size: 12px; color: #5C7871; line-height: 1.4; }
.dropdown-footer {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown-footer a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
}

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
}
.nav-call .call-ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--amber-100);
  color: var(--amber-600);
  display: flex; align-items: center; justify-content: center;
}
.nav-call-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-call-text small { font-size: 10.5px; color: #5C7871; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-call-text strong { font-size: 15px; color: var(--teal-950); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14,27,25,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(88vw, 380px);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 18px 20px 100px;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-100); display: flex; align-items: center; justify-content: center;
  border: none;
}
.mobile-nav a.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--teal-950);
}
.mobile-services-toggle {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-weight: 600; font-size: 16px; color: var(--teal-950);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-services-toggle svg { transition: transform 0.2s ease; }
.mobile-services-toggle.open svg { transform: rotate(180deg); }
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
}
.mobile-submenu.open { max-height: 900px; }
.mobile-submenu a {
  display: block;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--teal-900);
  border-bottom: 1px solid rgba(20,107,92,0.08);
}
.mobile-nav-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Sticky mobile call bar ---------- */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--teal-950);
  padding: 10px 14px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
}
.sticky-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
}
.sticky-call-bar .sc-call { background: var(--amber-600); color: var(--teal-950); }
.sticky-call-bar .sc-quote { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }

/* ---------- Hero (split layout) ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--teal-950) 0%, var(--teal-900) 100%);
  overflow: hidden;
  padding: 56px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,137,12,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero-copy { padding-bottom: 60px; color: var(--white); position: relative; z-index: 2; }
.hero-copy .eyebrow { color: var(--amber-500); margin-bottom: 18px; }
.hero-copy .eyebrow::before { background: var(--amber-500); }
.hero-copy h1 { color: var(--white); margin-bottom: 20px; }
.hero-copy .lede { color: #C9DAD5; max-width: 540px; margin-bottom: 30px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-trust .ht-item { display: flex; align-items: center; gap: 9px; }
.hero-trust .ht-item svg { color: var(--amber-500); flex-shrink: 0; }
.hero-trust .ht-item span { font-size: 13.5px; color: #C9DAD5; font-weight: 500; }

.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}
.hero-photo-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 26px 26px 0;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
}
.hero-photo-card img { width: 100%; height: auto; }
.hero-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  background: var(--amber-600);
  color: var(--teal-950);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-spec {
  position: absolute;
  bottom: 90px;
  right: -14px;
  background: var(--teal-950);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
}
.hero-spec strong { color: var(--amber-500); display: block; font-size: 15px; }

/* ---------- Page hero (interior pages, no split) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--teal-950) 0%, var(--teal-900) 65%, var(--teal-700) 130%);
  padding: 48px 0 44px;
  color: var(--white);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #9FC1B8;
  margin-bottom: 18px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.breadcrumbs a:hover { color: var(--amber-500); }
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero .lede { color: #C9DAD5; max-width: 640px; margin-top: 16px; }
.page-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.page-hero-media {
  margin-top: 34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 420px;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; max-height: 420px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head h2 { margin-top: 14px; }
.section-head .lede { margin-top: 14px; }
.section-alt { background: var(--teal-50); }
.section-dark { background: var(--teal-950); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark li { color: #C9DAD5; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-card { display: flex; flex-direction: column; }
.service-card .sc-media { aspect-ratio: 4/3; overflow: hidden; background: var(--teal-100); }
.service-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .sc-media img { transform: scale(1.06); }
.service-card .sc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card .sc-num { font-family: var(--font-mono); font-size: 11.5px; color: var(--teal-600); font-weight: 700; letter-spacing: 0.06em; }
.service-card h3 { font-size: 18.5px; }
.service-card p { font-size: 14.5px; flex: 1; }
.service-card .sc-link { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13.5px; color: var(--teal-700); margin-top: 4px; }
.service-card .sc-link svg { transition: transform 0.15s ease; }
.service-card:hover .sc-link svg { transform: translateX(3px); }

/* Feature list */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-item { display: flex; flex-direction: column; gap: 12px; }
.feature-item .fi-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
}
.feature-item h3 { font-size: 17px; }
.feature-item p { font-size: 14.5px; }

/* Spec plate badges */
.spec-plate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-950);
  color: var(--amber-500);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.spec-plate.light { background: var(--teal-100); color: var(--teal-700); }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}
.stat-item:first-child { border-left: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--teal-700);
}
.stat-item span { font-size: 13px; color: #5C7871; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }

/* Steps / process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber-600);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14px; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px; right: -14px;
  width: 20px; height: 1px;
  background: var(--line);
  display: none;
}
@media (min-width: 900px) {
  .step:not(:last-child)::after { display: block; }
}

/* Two-col content with image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split-copy ul { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.split-copy ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.split-copy ul li svg { color: var(--teal-700); flex-shrink: 0; margin-top: 3px; }

/* Long-form content (service pages) */
.prose { max-width: 780px; }
.prose h2 { margin-top: 44px; margin-bottom: 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 30px; margin-bottom: 12px; }
.prose p { margin-bottom: 16px; font-size: 15.5px; }
.prose ul { margin: 16px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { display: flex; gap: 10px; font-size: 15px; }
.prose ul li svg { color: var(--teal-700); flex-shrink: 0; margin-top: 4px; }
.prose .callout {
  background: var(--teal-50);
  border-left: 4px solid var(--amber-600);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 15px;
}
.prose .callout strong { color: var(--teal-900); }

.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sidebar-card h3 { font-size: 16px; margin-bottom: 14px; }
.sidebar-cta {
  background: var(--teal-950);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  color: var(--white);
}
.sidebar-cta .eyebrow { color: var(--amber-500); margin-bottom: 10px; }
.sidebar-cta .eyebrow::before { background: var(--amber-500); }
.sidebar-cta h3 { color: var(--white); margin-bottom: 8px; }
.sidebar-cta p { color: #C9DAD5; font-size: 13.5px; margin-bottom: 18px; }
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 4px; font-size: 14px; font-weight: 500; color: var(--teal-900);
  border-bottom: 1px solid var(--line-soft);
}
.sidebar-services a:hover { color: var(--teal-700); }
.sidebar-services a.active { color: var(--teal-700); font-weight: 700; }
.sidebar-services li:last-child a { border-bottom: none; }

/* Pull layout for service detail pages */
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none;
  text-align: left;
  font-weight: 600; font-size: 15.5px; color: var(--teal-950);
}
.faq-q svg { flex-shrink: 0; transition: transform 0.2s ease; color: var(--teal-700); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 22px 22px; font-size: 14.8px; color: #3B534D; }

/* Testimonials */
.review-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.review-stars { display: flex; gap: 3px; color: var(--amber-600); }
.review-card p { font-size: 14.8px; color: #33463F; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line-soft); }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 13.8px; color: var(--teal-950); }
.review-author span { font-size: 12px; color: #5C7871; font-family: var(--font-mono); }

/* Service area chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal-900);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--teal-950), var(--teal-700));
  border-radius: var(--radius-lg);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  top: -40%; right: -6%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(232,137,12,0.22), transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; position: relative; z-index: 1;}
.cta-band p { color: #C9DAD5; position: relative; z-index: 1; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; flex-wrap: wrap; }

/* Emergency banner */
.emergency-banner {
  background: var(--amber-600);
  color: var(--teal-950);
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 24px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  flex-wrap: wrap;
}
.emergency-banner a { text-decoration: underline; text-underline-offset: 3px; }
.emergency-banner .eb-short { display: none; }
@media (max-width: 560px) {
  .emergency-banner .eb-long { display: none; }
  .emergency-banner .eb-short { display: inline; }
}

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--teal-950); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--teal-600);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: #5C7871; margin-top: 4px; }

/* Map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--teal-950); color: #A9C4BD; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 16.5px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber-500);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: #A9C4BD; font-size: 14px; margin-bottom: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--amber-500); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--amber-600); color: var(--teal-950); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.section-head.text-center { margin-left: auto; margin-right: auto; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .main-nav, .nav-cta .btn-outline-dark, .nav-call { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 66px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-left: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .topbar .topbar-left span:nth-child(3) { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  h1, .h1 { font-size: 2.1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 22px 14px; }
  .stat-item:nth-child(odd) { border-left: none; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 40px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-cta-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero-cta .btn { width: 100%; }
  .page-hero-cta { flex-direction: column; }
  .cta-band-actions { width: 100%; flex-direction: column; }
  .cta-band-actions .btn { width: 100%; }
  .topbar-left span:nth-child(2) { display: none; }
  .hero-spec { display: none; }
  .dropdown { width: 92vw; left: 50%; }
}

@media (max-width: 480px) {
  .topbar { display: none; }
  .emergency-banner .container { padding: 9px 16px; font-size: 12.5px; }
}
