/* ============================================================
   EMCO Plumbing — Main Stylesheet
   Palette: Slate Charcoal & Copper Gold
   Fonts: Lexend (headings) + Nunito Sans (body)
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --charcoal:       #1F2937;
  --charcoal-mid:   #374151;
  --charcoal-soft:  #4B5563;
  --copper:         #B45309;
  --copper-light:   #D97706;
  --copper-pale:    #FEF3C7;
  --copper-glow:    rgba(180, 83, 9, 0.12);
  --cream:          #FFFBF5;
  --cream-dark:     #F5F0E8;
  --stone:          #E5DDD3;
  --stone-mid:      #D1C4B5;
  --text:           #111827;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --white:          #FFFFFF;
  --footer-bg:      #111827;
  --footer-text:    #9CA3AF;

  --font-head: 'Lexend', Arial, sans-serif;
  --font-body: 'Nunito Sans', Arial, sans-serif;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --shadow-copper: 0 4px 20px rgba(180, 83, 9, 0.18);

  --transition: 0.2s ease;

  --container-max: 1200px;
  --section-pad: 5rem 0;
  --section-pad-sm: 3.5rem 0;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--copper);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--copper-light);
}

ul { list-style: none; }
address { font-style: normal; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); margin-bottom: 1rem; }
h3 { font-size: 1.375rem; font-weight: 600; margin-bottom: 0.625rem; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section { padding: var(--section-pad); }
.section--alt { background-color: var(--cream-dark); }
.section--charcoal {
  background-color: var(--charcoal);
  color: var(--white);
}
.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4 {
  color: var(--white);
}

/* ---- Skip Link (Accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--copper);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  top: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: var(--copper);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--copper);
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform 0.15s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--copper-light);
  border-color: var(--copper-light);
  color: var(--white);
  box-shadow: var(--shadow-copper);
  transform: translateY(-1px);
}

.btn:active { transform: translateY(0); }

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

.btn--lg {
  padding: 1.0625rem 2.25rem;
  font-size: 1.0625rem;
}

.btn--outline {
  background-color: transparent;
  color: var(--copper);
}
.btn--outline:hover {
  background-color: var(--copper);
  color: var(--white);
}

.btn--outline-white {
  background-color: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  box-shadow: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-top: 0.625rem;
}
.section-charcoal .section-header p { color: rgba(255,255,255,0.7); }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.logo {
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emco {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--copper);
  letter-spacing: -0.03em;
}
.logo-plumbing {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}

.main-nav { display: none; }

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
  }
  .main-nav ul {
    display: flex;
    gap: 0.25rem;
  }
  .main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--charcoal-soft);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
  }
  .main-nav a:hover {
    color: var(--copper);
    background-color: var(--copper-pale);
  }
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 900px) {
  .header-cta { display: flex; }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--copper);
  text-decoration: none;
}
.header-phone:hover { color: var(--copper-light); }
.header-phone svg { flex-shrink: 0; }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 900px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--stone);
  padding: 1rem 0 1.5rem;
}
.mobile-menu.is-open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}
.mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  transition: color var(--transition), background-color var(--transition);
}
.mobile-menu a:hover {
  color: var(--copper);
  background-color: var(--copper-pale);
}
.mobile-menu .mobile-phone a {
  color: var(--copper);
  font-weight: 600;
  border-bottom: none;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(180,83,9,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 4rem;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1.25rem;
}

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

.hero-subheadline {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.hero-trust-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--copper-light);
  flex-shrink: 0;
}

/* Hero Stats Card */
.hero-stats-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: none;
}

@media (min-width: 900px) {
  .hero-stats-card { display: block; }
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 1.75rem 0;
}

.hero-card-gassafe {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.hero-card-gassafe strong {
  color: var(--white);
  font-weight: 600;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--stone);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}

.trust-item-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
}

.trust-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-item-text span:first-child {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9375rem;
}

.trust-item-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--copper);
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--copper-pale);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--copper);
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap 0.15s ease, color var(--transition);
}
.card-link:hover {
  color: var(--copper-light);
  gap: 0.5rem;
}

/* ========================================
   AREAS GRID
   ======================================== */
.areas-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

.area-card {
  display: block;
  background-color: var(--white);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 1.375rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.area-card-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.area-card-region {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.area-card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--copper);
}

/* ========================================
   STATS ROW
   ======================================== */
.stats-row {
  background-color: var(--charcoal);
  padding: 3.5rem 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--copper-light);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.125rem;
  background-color: var(--cream-dark);
  border-radius: var(--radius);
  border: 1px solid var(--stone);
}

.highlight-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.highlight-text strong {
  font-size: 0.9375rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
}

.highlight-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process-steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  position: relative;
  padding-top: 0.5rem;
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--copper);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}

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

.process-step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  color: var(--copper);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  font-style: italic;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9375rem;
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--copper-pale);
  border: 2px solid var(--copper);
  color: var(--copper);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9375rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.why-item-body strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}

.why-item-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.why-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-highlight {
  background-color: var(--cream-dark);
  border: 1px solid var(--stone);
  border-left: 4px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
}

.why-highlight h4 {
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.why-highlight p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background-color: var(--charcoal);
  text-align: center;
  padding: var(--section-pad);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 1.75rem;
  font-size: 1.0625rem;
}

.cta-phone-large {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  color: var(--copper-light);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.cta-phone-large:hover { color: var(--white); }

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
}

.cta-note a { color: rgba(255,255,255,0.75); }
.cta-note a:hover { color: var(--white); }

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  text-align: left;
  gap: 1rem;
  transition: background-color var(--transition);
}

.faq-question:hover {
  background-color: var(--cream-dark);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--copper);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  border-top: 1px solid var(--stone);
  padding-top: 1rem;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumb {
  padding: 0.875rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.breadcrumb li::after {
  content: '/';
  margin: 0 0.375rem;
  color: var(--stone-mid);
}

.breadcrumb li:last-child::after { display: none; }

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

.breadcrumb a:hover { color: var(--copper-light); }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  background-color: var(--charcoal);
  padding: 3.5rem 0 3rem;
  color: var(--white);
}

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

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 640px;
  margin-bottom: 0;
}

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

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

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

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--copper-pale);
  border-radius: var(--radius);
  color: var(--copper);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  display: block;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-info-value a {
  color: var(--copper);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
}

.contact-form h2 {
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background-color: var(--cream);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-glow);
}

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

/* ========================================
   CONTENT PAGES (services, areas)
   ======================================== */
.content-body {
  max-width: 800px;
}

.content-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.content-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-body ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.content-body p {
  color: var(--text-muted);
}

.content-body strong { color: var(--charcoal); }

/* Service/Area inner hero callout */
.inner-cta-bar {
  background-color: var(--copper-pale);
  border: 1px solid var(--copper);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.inner-cta-bar p {
  margin: 0;
  font-weight: 600;
  color: var(--charcoal);
}

.inner-cta-bar a { color: var(--copper); }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 2fr 1fr; }
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background-color: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.875rem;
  color: var(--charcoal);
}

.sidebar-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--stone);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.sidebar-card ul li:last-child { border-bottom: none; }

/* Partners (PBN links) on About page */
.partners-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-item {
  padding: 1rem 1.25rem;
  background-color: var(--cream-dark);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  font-size: 0.9375rem;
}

.partner-item a {
  font-weight: 600;
  color: var(--copper);
}

/* ========================================
   SERVICES INDEX PAGE
   ======================================== */
.services-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ========================================
   AREAS INDEX PAGE
   ======================================== */
.areas-index-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo .logo-emco {
  color: var(--copper-light);
}

.footer-logo .logo-plumbing {
  color: rgba(255,255,255,0.75);
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.footer-gassafe {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-address a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-address a:hover { color: var(--copper-light); }

.footer-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer-heading--spacer { margin-top: 1.75rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--copper-light); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-hours li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* Footer Partners (PBN links) */
.footer-partners {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-partners .footer-heading { margin-bottom: 0.5rem; }

.footer-partners-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-partners-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-partners-list a {
  color: var(--copper-light);
  text-decoration: none;
}

.footer-partners-list a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
}

/* ========================================
   UTILITY
   ======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-copper { color: var(--copper); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 2px;
}

/* Smooth transition on section alternating */
.section + .section--alt,
.section--alt + .section {
  /* Handled by bg-color change */
}

/* Rating summary */
.rating-summary {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
}
.rating-stars {
  font-size: 1.375rem;
  color: var(--copper);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.rating-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
