/* ==========================================================================
   All Pro Plumbers — shared stylesheet
   ========================================================================== */

:root {
  --color-bg: #FAF9F6;
  --color-navy: #0E2A47;
  --color-navy-light: #16385c;
  --color-copper: #C97A3D;
  --color-copper-dark: #a8632f;
  --color-charcoal: #1C1F24;
  --color-green: #2F8F5B;
  --color-white: #FFFFFF;
  --color-border: rgba(14, 42, 71, 0.12);

  --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --header-height: 84px;
  --header-height-mobile: 68px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(14, 42, 71, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 42, 71, 0.12);
  --shadow-lg: 0 16px 48px rgba(14, 42, 71, 0.18);

  --container-w: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

body {
  background: var(--color-bg);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { max-width: 68ch; }

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

section { padding: 72px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 40px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; color: #44505c; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  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; width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-copper {
  background: var(--color-copper);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-copper:hover { background: var(--color-copper-dark); box-shadow: var(--shadow-md); }

.btn-navy {
  background: var(--color-navy);
  color: #fff;
}
.btn-navy:hover { background: var(--color-navy-light); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  padding: 13px 26px;
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
  padding: 13px 26px;
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: #fff; color: var(--color-navy); border-color: #fff; }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height-mobile);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(14,42,71,0.85) 0%, rgba(14,42,71,0.35) 60%, rgba(14,42,71,0) 100%);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}
@media (min-width: 900px) {
  .site-header { height: var(--header-height); }
}

.site-header.is-scrolled {
  background: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.brand .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--color-copper);
  color: #fff;
}
.brand .brand-mark svg { width: 22px; height: 22px; }
.brand-name-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.nav-links {
  display: none;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 0.96rem;
    position: relative;
    padding: 6px 2px;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--color-copper);
    transition: right 0.2s ease;
  }
  .nav-links a:hover::after,
  .nav-links a.is-active::after { right: 0; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: none;
  flex-direction: column;
  line-height: 1.25;
  color: #fff;
  text-align: right;
}
.header-phone .label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.header-phone .number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
@media (min-width: 1080px) {
  .header-phone { display: flex; }
}

.header-cta { display: none; }
@media (min-width: 900px) {
  .header-cta { display: inline-flex; padding: 12px 22px; }
}

/* Desktop "Services" dropdown — CSS-only, hover + keyboard focus-within */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item-dropdown > a .caret { width: 10px; height: 10px; transition: transform 0.2s ease; }
.nav-item-dropdown:hover > a .caret,
.nav-item-dropdown:focus-within > a .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 260px;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1001;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { background: rgba(255,255,255,0.08); }

/* Mobile nav "Services" accordion — native <details> avoids custom JS toggle bugs */
.mobile-nav-services { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 4px; }
.mobile-nav-services summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 14px 4px;
}
.mobile-nav-services summary::-webkit-details-marker { display: none; }
.mobile-nav-services summary .caret { width: 14px; height: 14px; transition: transform 0.2s ease; flex-shrink: 0; }
.mobile-nav-services[open] summary .caret { transform: rotate(180deg); }
.mobile-nav-services .sub-links { padding: 0 0 10px 14px; display: flex; flex-direction: column; }
.mobile-nav-services .sub-links a {
  border-bottom: none;
  padding: 10px 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  z-index: 1002;
  position: relative;
}
@media (min-width: 900px) {
  .hamburger { display: none; }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav backdrop + panel */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 71, 0.55);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(84vw, 360px);
  background: var(--color-navy);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 90px 32px 32px;
  overflow-y: auto;
  box-shadow: -12px 0 40px rgba(0,0,0,0.3);
}
.mobile-nav.is-open { transform: translateX(0); }
@media (min-width: 900px) {
  .mobile-nav, .nav-backdrop { display: none; }
}

.mobile-nav-links { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-cta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.mobile-nav-phone {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 10px 0;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--color-navy) 0%, #143a5f 55%, var(--color-copper-dark) 130%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,71,0.55) 0%, rgba(14,42,71,0.35) 35%, rgba(14,42,71,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--header-height-mobile) + 56px) 0 56px;
}
@media (min-width: 900px) {
  .hero-content { padding: calc(var(--header-height) + 90px) 0 80px; }
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
  max-width: 16ch;
}
.hero-content .hero-sub {
  margin-top: 18px;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  max-width: 46ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-cta-row .btn { flex: 1 1 auto; min-width: 200px; }
@media (min-width: 640px) {
  .hero-cta-row .btn { flex: 0 1 auto; }
}

.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero-reviews .g-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.g-logo .g1{color:#4285F4} .g-logo .g2{color:#EA4335} .g-logo .g3{color:#FBBC05} .g-logo .g4{color:#4285F4} .g-logo .g5{color:#34A853} .g-logo .g6{color:#EA4335}
.hero-reviews .stars { color: #FBBC05; letter-spacing: 1px; font-size: 0.95rem; }
.hero-reviews .rev-text { color: var(--color-charcoal); font-size: 0.85rem; font-weight: 600; }

/* Page banner (interior pages) */
.page-banner {
  position: relative;
  padding: calc(var(--header-height-mobile) + 60px) 0 56px;
  background: linear-gradient(120deg, var(--color-navy) 0%, #17395e 100%);
  color: #fff;
  overflow: hidden;
}
@media (min-width: 900px) {
  .page-banner { padding: calc(var(--header-height) + 70px) 0 64px; }
}
.page-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,122,61,0.35), transparent 70%);
}
.page-banner h1 { color: #fff; max-width: 20ch; }
.page-banner p { color: rgba(255,255,255,0.85); margin-top: 12px; max-width: 55ch; }
.breadcrumb {
  position: relative;
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--color-copper); }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar {
  background: var(--color-navy);
  padding: 26px 0;
}
.trust-bar ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 760px) {
  .trust-bar ul { grid-template-columns: repeat(4, 1fr); }
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}
.trust-bar svg { width: 22px; height: 22px; color: var(--color-copper); flex-shrink: 0; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-media { aspect-ratio: 4/3; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: #44505c; font-size: 0.95rem; flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--color-copper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
}
.service-card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ==========================================================================
   Why choose / icon list
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 760px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.why-card .icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(201,122,61,0.12);
  color: var(--color-copper);
  display: flex; align-items: center; justify-content: center;
}
.why-card .icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-card p { font-size: 0.94rem; color: #44505c; }

.section-alt { background: #F1EEE7; }

/* ==========================================================================
   Process strip
   ========================================================================== */
.process-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
}
@media (min-width: 760px) {
  .process-strip { grid-template-columns: repeat(4, 1fr); }
}
.process-step { position: relative; padding-left: 56px; }
@media (min-width: 760px) {
  .process-step { padding-left: 0; padding-top: 56px; }
}
.process-step .num {
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-copper);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.92rem; color: #44505c; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--color-border);
}
.review-card .rating-line { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.review-card .rating-line .g-logo { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.review-card .stars { color: #FBBC05; letter-spacing: 2px; }
.review-card p { font-size: 0.94rem; color: #33404a; margin-bottom: 14px; }
.review-card .author { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--color-navy); }
.review-placeholder-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-copper-dark);
  background: rgba(201,122,61,0.12);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-navy);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,122,61,0.12);
  color: var(--color-copper);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 22px 20px; color: #44505c; font-size: 0.95rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--color-navy), #16385c 60%, var(--color-copper-dark));
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 14px auto 28px; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--color-copper); }
.footer-social { display: flex; gap: 12px; 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 svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--color-copper); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--color-copper); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-navy);
  margin-bottom: 7px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-charcoal);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px rgba(201,122,61,0.18);
}
.form-row-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) {
  .form-row-grid.two { grid-template-columns: 1fr 1fr; }
}
.form-note { font-size: 0.82rem; color: #6b7684; margin-top: 6px; }
.form-emergency-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(201,122,61,0.1);
  border: 1px solid rgba(201,122,61,0.3);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.form-emergency-note svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-copper); }

/* Contact info cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 14px;
}
.contact-info-card .icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 9px;
  background: rgba(14,42,71,0.06);
  color: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card .icon svg { width: 22px; height: 22px; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: #44505c; }
.contact-info-card a:hover { color: var(--color-copper); }

/* ==========================================================================
   Service page specifics
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1.1fr 0.9fr; }
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; }
.checklist svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-green); margin-top: 2px; }

.service-nav {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.service-nav h4 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.service-nav ul { display: flex; flex-direction: column; gap: 2px; }
.service-nav a {
  display: block;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #44505c;
}
.service-nav a:hover, .service-nav a.is-active {
  background: rgba(201,122,61,0.1);
  color: var(--color-copper-dark);
  font-weight: 600;
}
.service-nav .emergency-box {
  margin-top: 16px;
  padding: 16px;
  background: var(--color-navy);
  border-radius: var(--radius-sm);
  color: #fff;
  text-align: center;
}
.service-nav .emergency-box p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 10px; }

/* ==========================================================================
   Service areas
   ========================================================================== */
.area-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.area-card h3 { display: flex; align-items: center; gap: 8px; }
.area-card h3 svg { width: 20px; height: 20px; color: var(--color-copper); }
.area-card p { font-size: 0.92rem; color: #44505c; }
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   404
   ========================================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 60px;
  background: linear-gradient(160deg, var(--color-navy), #102338);
}
.error-page .code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--color-copper);
  line-height: 1;
}
.error-page h1 { color: #fff; margin-top: 8px; }
.error-page p { color: rgba(255,255,255,0.75); margin: 16px auto 30px; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.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;
}

@media (max-width: 899px) {
  section { padding: 56px 0; }
}
