/*
 * NampaWaterHeater.com — Custom Styles
 * Design System: Industrial Craft / Pacific Northwest Trade
 * Palette: Deep Navy (#1B2A3B), Ember Orange (#E8500A), Warm Slate (#4A5568),
 *          Cream White (#F7F4EF), Steel Gray (#8B9BAA), Light Warm (#EDE9E3)
 * Typography: Oswald (display/headings) + Source Serif 4 (body) + Roboto Mono (utility)
 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --navy: #1B2A3B;
  --ember: #E8500A;
  --ember-dark: #C44208;
  --slate: #4A5568;
  --cream: #F7F4EF;
  --light-warm: #EDE9E3;
  --steel: #8B9BAA;
  --white: #FFFFFF;
  --text-dark: #1A1F2E;
  --text-mid: #3D4A5C;
  --border: #D4CFC8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
  margin: 0;
  padding: 0;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-top: 0;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.2rem; }

a {
  color: var(--ember);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--ember-dark); text-decoration: underline; }

/* =====================
   HEADER / NAVIGATION
   ===================== */
.site-header {
  background-color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--ember);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  background: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
}

.site-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a,
.nav-dropdown-trigger {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav a:hover,
.nav-dropdown-trigger:hover {
  color: var(--white);
  text-decoration: none;
}

.main-nav a.active {
  color: var(--ember);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--ember);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--steel);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: none;
  letter-spacing: 0.02em;
}

.nav-dropdown-menu a:hover {
  background: rgba(232,80,10,0.12);
  color: var(--white);
}

.header-cta {
  background: var(--ember);
  color: var(--white) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-cta:hover {
  background: var(--ember-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--white);
}

/* =====================
   MOBILE NAV
   ===================== */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.25rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--steel);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--white); }

.mobile-nav-section {
  padding: 0.5rem 0 0.25rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  color: var(--ember);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-cta-bar {
  background: var(--ember);
  padding: 0.85rem 1rem;
  text-align: center;
}

.mobile-cta-bar a {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* =====================
   STICKY MOBILE CALL BAR
   ===================== */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ember);
  padding: 0.9rem 1rem;
  text-align: center;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.25);
}

.sticky-call-bar a {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sticky-call-bar small {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 0.1rem;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background-color: var(--navy);
  background-image: linear-gradient(115deg, rgba(19,30,41,0.88) 0%, rgba(19,30,41,0.62) 45%, rgba(19,30,41,0.4) 100%);
  background-size: cover;
  background-position: center;
  padding: 5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ember);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--ember);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--ember);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--ember);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--ember-dark);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  border-color: white;
  color: white;
  text-decoration: none;
}

/* =====================
   STAT BAR (Since / Serviced / Response Time / Licensed)
   ===================== */
.stat-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--ember);
}

.stat-bar-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.stat-bar-divider {
  color: var(--steel);
  font-weight: 400;
}

.trust-signals {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  fill: var(--ember);
  flex-shrink: 0;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--ember);
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.hero-card-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card-list li::before {
  content: '→';
  color: var(--ember);
  font-weight: bold;
  flex-shrink: 0;
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: 4.5rem 1.25rem;
}

.section-alt {
  background: var(--light-warm);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--ember);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 640px;
  margin: 0.75rem 0 0;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* =====================
   SERVICE CARDS
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ember);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(27,42,59,0.12);
  transform: translateY(-3px);
}

.service-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.75rem;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,80,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--ember);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.service-card .card-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .card-link:hover { color: var(--ember-dark); text-decoration: none; }

/* =====================
   PROCESS / HOW IT WORKS
   ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  position: relative;
  text-align: left;
}

.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* =====================
   WHY CHOOSE US
   ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,80,10,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--ember);
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* =====================
   AREAS GRID
   ===================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ember);
}

.area-card:hover {
  box-shadow: 0 6px 20px rgba(27,42,59,0.1);
}

.area-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.area-card .zip-badge {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  background: var(--light-warm);
  color: var(--slate);
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.area-card p {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.area-card .card-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
}

.neighborhoods-list {
  background: var(--light-warm);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.neighborhoods-list h4 {
  font-size: 0.85rem;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.neighborhoods-list p {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.8;
}

/* =====================
   MAP SECTION
   ===================== */
.map-wrapper {
  border: 3px solid var(--border);
  overflow: hidden;
  position: relative;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-list {
  border-top: 2px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--ember); }

.faq-question.open { color: var(--ember); }

.faq-icon {
  width: 22px;
  height: 22px;
  background: var(--light-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.25s ease;
  font-size: 1rem;
  color: var(--slate);
}

.faq-question.open .faq-icon {
  background: var(--ember);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
}

.faq-answer.open { display: block; }

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  background: var(--ember);
  padding: 3.5rem 1.25rem;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: white;
  color: var(--ember);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-white:hover {
  background: var(--cream);
  color: var(--ember-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 1.25rem 1.5rem;
  border-top: 3px solid var(--ember);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .site-logo-img {
  height: 50px;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  font-size: 0.88rem;
  margin: 1rem 0 1.25rem;
  line-height: 1.65;
}

.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ember);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-phone:hover { color: white; text-decoration: none; }

.footer-col h4 {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.25rem;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  padding: 0.55rem 0;
  min-height: 44px;
  box-sizing: border-box;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--ember);
  text-decoration: none;
}

.service-area-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--ember);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-area-block h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.service-area-block strong {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--ember); }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
  background: var(--light-warm);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1.25rem;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--slate);
}

.breadcrumb-inner a {
  color: var(--slate);
  text-decoration: none;
}

.breadcrumb-inner a:hover { color: var(--ember); }

.breadcrumb-inner span { margin: 0 0.4rem; color: var(--steel); }
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  font-family: 'Roboto Mono', monospace;
  color: var(--slate);
}
.breadcrumb li + li::before {
  content: "›";
  margin: 0 0.4rem;
  color: var(--steel);
}
.breadcrumb li a {
  color: var(--slate);
  text-decoration: none;
}
.breadcrumb li a:hover { color: var(--ember); }


/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ember);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero .hero-lead {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

/* =====================
   CONTENT LAYOUT
   ===================== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ember);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.sidebar-card ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--light-warm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate);
}

.sidebar-card ul li::before {
  content: '✓';
  color: var(--ember);
  font-weight: bold;
  flex-shrink: 0;
}

.call-box {
  background: var(--ember);
  padding: 1.5rem;
  text-align: center;
  color: white;
}

.call-box h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.call-box p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.call-box a {
  display: block;
  background: white;
  color: var(--ember);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.75rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}

.call-box a:hover {
  background: var(--cream);
  text-decoration: none;
}

/* =====================
   CONTENT ARTICLE
   ===================== */
.article-content h2 {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: var(--slate);
}

.info-box {
  background: rgba(232,80,10,0.06);
  border-left: 4px solid var(--ember);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 0.95rem;
}

.info-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.92rem;
}

.cost-table th,
.cost-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cost-table th {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--white);
  background: var(--navy);
}

.cost-table tbody tr:nth-child(even) {
  background: var(--light-warm);
}

.cost-table td:last-child {
  font-family: 'Roboto Mono', monospace;
  color: var(--text-mid);
  white-space: nowrap;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-warm);
  border-top: 3px solid var(--ember);
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ember);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-card {
  padding: 2rem;
  background: var(--navy);
  color: white;
}

.contact-info-card h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,80,10,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--ember);
}

.contact-detail h4 {
  color: white;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.contact-detail a {
  color: var(--ember);
  text-decoration: none;
}

/* =====================
   POLICY PAGES
   ===================== */
.policy-content {
  max-width: 800px;
}

.policy-content h2 {
  margin-top: 2.5rem;
  font-size: 1.4rem;
}

.policy-content p, .policy-content li {
  color: var(--slate);
  font-size: 0.95rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .sticky-call-bar { display: block; }
  body { padding-bottom: 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .section { padding: 3rem 1.25rem; }
  .trust-signals { gap: 0.75rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .header-cta { display: none; }
  .cost-table { display: block; overflow-x: auto; white-space: nowrap; }
  .site-logo { padding: 0.3rem 0.55rem; }
  .site-logo-img { height: 32px; }
}

/* Print */
@media print {
  .site-header, .sticky-call-bar, .mobile-nav { display: none; }
}

/* =====================
   BRAND LOGO GRID (homepage — real brand logo images)
   ===================== */
.brand-name-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
}
.brand-card img {
  max-width: 100%;
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .brand-name-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================
   FOOTER ADDRESS (contact info wrapper)
   ===================== */
.footer-brand address { font-style: normal; display: block; }

/* =====================
   BODY IMAGE SIZING (content images — object-fit + max-height)
   ===================== */
.article-content img,
.content-with-sidebar img {
  max-height: 380px;
  max-width: 560px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
