﻿/* ============================================================
   Bennett's Plumbing, Inc. - styles.css
   Single stylesheet. All colors via CSS variables. No inline styles.
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --brand-red:      #CC1B1B;
  --brand-red-dark: #3a0606;
  --error-red:      #c0392b;
  --near-black:     #1A1A1A;
  --charcoal:       #2C2C2C;
  --white:          #FFFFFF;
  --off-white:      #F4F4F4;
  --mid-gray:       #6B7280;
  --light-gray:     #E2E2E2;
  --highlight:      #C8A96E;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --gutter:    24px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);

  /* Transitions */
  --transition: all 0.2s ease;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid-gray);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

input,
select,
textarea {
  font-family: var(--font-body);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--near-black);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid-gray);
}

strong {
  font-weight: 600;
  color: var(--near-black);
}


/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section--white    { background-color: var(--white); }
.section--offwhite { background-color: var(--off-white); }
.section--dark     { background-color: var(--charcoal); }
.section--red      { background-color: var(--brand-red); }

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header--centered {
  text-align: center;
}

.section-header--centered .section-subtext {
  margin-left: auto;
  margin-right: auto;
}

.overline {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  margin-bottom: var(--space-xs);
}

.section-subtext {
  font-size: 1.0625rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin-top: var(--space-xs);
  line-height: 1.7;
}

.text-white   { color: var(--white) !important; }
.text-gold    { color: var(--highlight); }
.text-red     { color: var(--brand-red); }
.text-midgray { color: var(--mid-gray); }

.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;
}

.divider {
  height: 1px;
  background-color: var(--light-gray);
  border: none;
  margin: var(--space-md) 0;
}


/* ============================================================
   5. LAYOUT
   ============================================================ */
.grid {
  display: grid;
  gap: var(--gutter);
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split-7-5 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-5-7 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-xl);
  align-items: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-gap-sm { gap: var(--space-sm); }
.flex-gap-md { gap: var(--space-md); }


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-red);
  color: var(--white);
  border: 2px solid var(--brand-red);
}
.btn-primary:hover {
  background-color: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--near-black);
}

.btn-ghost {
  background-color: transparent;
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
}
.btn-ghost:hover {
  background-color: var(--brand-red);
  color: var(--white);
}

.btn-ghost-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost-white:hover {
  background-color: var(--white);
  color: var(--near-black);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  min-height: 54px;
}

.btn-full { width: 100%; justify-content: center; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-red);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
}
.link-arrow:hover {
  gap: 10px;
}


/* ============================================================
   7. TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--charcoal);
  padding: 10px var(--space-sm);
  position: relative;
  z-index: 100;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--space-sm);
}

.trust-bar__left,
.trust-bar__right {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-bar__left span {
  color: var(--light-gray);
}

.trust-bar__dot {
  color: var(--highlight);
  font-size: 10px;
}

.trust-bar__right a {
  color: var(--highlight);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.trust-bar__right a:hover {
  color: var(--white);
}


/* ============================================================
   8. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--white);
  box-shadow: 0 1px 0 var(--light-gray);
  transition: box-shadow 0.3s ease;
}

.site-header--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
  height: 72px;
  gap: var(--space-md);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-icon {
  color: var(--brand-red);
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-red);
  line-height: 1.1;
}

.header__logo-text span {
  display: block;
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__link {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--near-black);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

.nav__link--active {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.header__actions .btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  min-height: 40px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--near-black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   9. MOBILE NAV PANEL
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  background-color: var(--white);
  padding-top: 70px;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}



.mobile-nav--open {
  transform: translateY(0);
}

body.nav-open .floating-call-btn {
  display: none;
}

.mobile-nav__list {
  list-style: none;
  border-top: 1px solid var(--light-gray);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-sm) 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--near-black);
  border-bottom: 1px solid var(--light-gray);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: var(--brand-red);
  padding-left: var(--space-xs);
}

.mobile-nav__actions {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-nav__actions .btn {
  justify-content: center;
}


/* ============================================================
   10. HERO - HOME (split layout)
   ============================================================ */
.hero-home {
  background-color: var(--charcoal);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,27,27,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-home__inner {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-home__content {
  padding-right: var(--space-md);
}

.hero-home__overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--highlight);
  margin-bottom: var(--space-sm);
  padding: 4px 12px;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 2px;
}

.hero-home__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-home__heading em {
  font-style: normal;
  color: var(--highlight);
}

.hero-home__subtext {
  font-size: 1.0625rem;
  color: #c8ccd1;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-home__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c8ccd1;
}

.trust-item svg {
  color: var(--highlight);
  flex-shrink: 0;
}

/* Hero Quote Form Card */
.hero-form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-form-card__header {
  background-color: var(--off-white);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--light-gray);
}

.hero-form-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--near-black);
}

.hero-form-card__subtitle {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

.hero-form-card__body {
  padding: var(--space-md);
}


/* ============================================================
   11. HERO - INTERIOR PAGES
   ============================================================ */
.hero-interior {
  min-height: 320px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
  scroll-margin-top: 120px;
  border-bottom: 3px solid var(--brand-red);
  position: relative;
  overflow: hidden;
}

.hero-interior::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,27,27,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-interior__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  position: relative;
  z-index: 1;
}

.hero-interior__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.hero-interior__subtext {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 540px;
  margin: 0 auto var(--space-md);
  line-height: 1.6;
}


/* ============================================================
   12. STATS BAR
   ============================================================ */
.stats-bar {
  background-color: var(--off-white);
  padding: var(--space-lg) var(--space-sm);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: var(--space-sm);
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: var(--light-gray);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.625rem);
  color: var(--highlight);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--near-black);
  font-weight: 400;
  line-height: 1.4;
}


/* ============================================================
   13. SERVICE CARDS
   ============================================================ */
.service-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: var(--transition);
  border-top: 3px solid transparent;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--brand-red);
}

.service-card__icon {
  color: var(--brand-red);
  margin-bottom: var(--space-sm);
  width: 32px;
  height: 32px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--near-black);
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.service-card__list {
  list-style: none;
  padding: 0;
}

.service-card__list li {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  padding: 3px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.service-card__list li::before {
  content: '-';
  color: var(--brand-red);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* On dark/off-white section backgrounds */
.section--offwhite .service-card {
  background-color: var(--white);
}


/* ============================================================
   14. INDUSTRY CARDS
   ============================================================ */
.industry-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: var(--transition);
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card__icon {
  color: var(--brand-red);
  margin: 0 auto var(--space-sm);
  width: 40px;
  height: 40px;
}

.industry-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--near-black);
  margin-bottom: var(--space-xs);
}

.industry-card__desc {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* Industry section (full-width on industries page) */
.industry-section {
  padding: var(--space-xl) 0;
}

.industry-section__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.industry-section__left {
  position: relative;
}

.industry-section__icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(204,27,27,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--brand-red);
}

.industry-section__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
}

.industry-section__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--near-black);
  margin: var(--space-xs) 0 var(--space-md);
}

.industry-section__right p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.industry-section__services {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
}

.industry-section__services h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: var(--space-sm);
}

.industry-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.industry-services-list__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-red);
  background-color: rgba(204,27,27,0.06);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(204,27,27,0.15);
}


/* ============================================================
   15. TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid var(--brand-red);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--highlight);
  margin-bottom: var(--space-xs);
  display: block;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-card__divider {
  height: 1px;
  background-color: var(--light-gray);
  margin-bottom: var(--space-sm);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--near-black);
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--mid-gray);
}


/* ============================================================
   16. CTA / EMERGENCY BANDS
   ============================================================ */
.cta-band {
  background-color: var(--charcoal);
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
}

.cta-band__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-band__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-band__subtext {
  font-size: 1rem;
  color: #c8ccd1;
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Emergency Band */
.emergency-band {
  background-color: var(--charcoal);
  padding: var(--space-lg) var(--space-sm);
  position: relative;
}

.emergency-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--brand-red);
}

.emergency-band__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.emergency-band__content h2,
.emergency-band__content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--white);
  margin-bottom: 4px;
}

.emergency-band__content p {
  color: var(--mid-gray);
  font-size: 0.9375rem;
}

.emergency-band__phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.emergency-band__phone:hover {
  color: var(--white);
}

/* Red emergency strip (service areas page) */
.emergency-strip {
  background-color: var(--brand-red);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
}

.emergency-strip p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.emergency-strip a {
  color: var(--highlight);
  font-weight: 700;
}
.emergency-strip a:hover {
  color: var(--white);
}


/* ============================================================
   17. FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-group--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--near-black);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--brand-red);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-sm);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--near-black);
  background-color: var(--white);
  transition: border-color 0.2s ease;
  appearance: none;
}

.form-textarea {
  height: auto;
  padding: var(--space-sm);
  resize: vertical;
  min-height: 100px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-gray);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  border-width: 2px;
}

.form-radio-group {
  display: flex;
  gap: var(--space-md);
  margin-top: 4px;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--mid-gray);
  cursor: pointer;
}

.form-radio-label input[type="radio"] {
  accent-color: var(--brand-red);
  width: 16px;
  height: 16px;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  margin-top: var(--space-xs);
  line-height: 1.5;
}

.form-input--error,
.form-select--error,
.form-textarea--error {
  border-color: var(--error-red);
  border-width: 2px;
}

.form-error-msg {
  display: block;
  font-size: 0.75rem;
  color: var(--error-red);
  margin-top: 4px;
}

.form-section {
  background-color: var(--off-white);
  padding: var(--space-xl) var(--space-sm);
}

.form-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Contact form larger wrapper */
.contact-form-wrap {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}


/* ============================================================
   18. PROJECT GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.gallery-filter__btn {
  padding: 10px 20px;
  border: 1.5px solid var(--light-gray);
  border-radius: 2px;
  background-color: var(--white);
  color: var(--mid-gray);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter__btn:hover,
.gallery-filter__btn--active {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.project-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-card__image {
  width: 100%;
  height: 200px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__image-placeholder {
  color: var(--mid-gray);
  font-size: 0.8125rem;
  text-align: center;
}

.project-card__body {
  padding: var(--space-sm);
}

.project-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-red);
  background-color: rgba(204,27,27,0.06);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: var(--space-xs);
}

.project-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--near-black);
  margin-bottom: 6px;
}

.project-card__desc {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

.project-card--photo-soon {
  position: relative;
  background: linear-gradient(155deg, #1e2a3a 0%, #121b28 42%, #1a2634 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.project-card--photo-soon:hover {
  border-color: rgba(200, 169, 110, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.project-card--photo-soon .project-card__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 1;
}

.project-card--photo-soon .project-card__soon-inner {
  position: relative;
  z-index: 1;
  min-height: 248px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.project-card--photo-soon .project-card__tag {
  align-self: flex-start;
  margin-bottom: 2px;
  margin-top: 0;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.92);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-card--photo-soon .project-card__tag--residential {
  background-color: rgba(130, 170, 220, 0.15);
  border-color: rgba(130, 170, 220, 0.35);
}

.project-card--photo-soon .project-card__tag--emergency {
  color: #fcefd3;
  background-color: rgba(200, 50, 40, 0.35);
  border-color: rgba(255, 130, 100, 0.45);
}

.project-card--photo-soon .project-card__soon-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--white);
  text-transform: none;
  margin: var(--space-xs) 0 0;
}

.project-card--photo-soon .project-card__soon-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin: 0;
}

.project-card--photo-soon .project-card__soon-city {
  margin-top: auto;
  padding-top: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}


/* ============================================================
   19. SERVICE AREAS
   ============================================================ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.city-chip {
  display: block;
  padding: 10px var(--space-sm);
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--near-black);
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.city-chip:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background-color: rgba(204,27,27,0.04);
}

.county-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition);
}

.county-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--brand-red);
}

.county-card__icon {
  color: var(--brand-red);
  margin: 0 auto var(--space-xs);
  width: 32px;
  height: 32px;
}

.county-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--near-black);
  margin-bottom: 4px;
}

.county-card__note {
  font-size: 0.8125rem;
  color: var(--mid-gray);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-xs);
  color: var(--mid-gray);
  font-size: 0.9375rem;
}

.map-placeholder svg {
  color: var(--mid-gray);
  opacity: 0.5;
}


/* ============================================================
   20. QUICK CONTACT CARDS
   ============================================================ */
.contact-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}

.contact-card__icon {
  color: var(--brand-red);
  margin: 0 auto var(--space-sm);
  width: 40px;
  height: 40px;
}

.contact-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-bottom: var(--space-xs);
}

.contact-card__value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--near-black);
  text-decoration: none;
  line-height: 1.3;
}

.contact-card__value a {
  color: var(--brand-red);
  text-decoration: none;
  transition: var(--transition);
}
.contact-card__value a:hover { color: var(--near-black); }

.contact-card__sub {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  margin-top: 4px;
}


/* ============================================================
   21. BUSINESS HOURS TABLE
   ============================================================ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 10px 0;
  color: var(--mid-gray);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--near-black);
}

.hours-table .highlight-row td {
  color: var(--brand-red);
  font-weight: 600;
}


/* ============================================================
   22. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--charcoal);
}

.footer__main {
  padding: var(--space-xl) var(--space-sm);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: var(--space-xl);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--highlight);
  margin-bottom: var(--space-sm);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: var(--space-sm);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer__license {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: var(--space-md);
}

.footer__payment {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--space-sm);
}

.footer__contact-item svg {
  color: var(--highlight);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
}

.footer__contact-text a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.footer__contact-text a:hover {
  color: var(--highlight);
}

.footer__contact-text strong {
  color: var(--white);
  font-weight: 600;
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background-color: var(--near-black);
  padding: var(--space-sm) var(--space-sm);
}

.footer__bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: #6b7280;
}

.footer__legal-links {
  display: flex;
  gap: var(--space-sm);
}

.footer__legal-links a {
  font-size: 0.8125rem;
  color: #6b7280;
  text-decoration: none;
  transition: var(--transition);
}
.footer__legal-links a:hover {
  color: var(--white);
}

/* Service area strip */
.footer__area-strip {
  background-color: #383838;
  padding: var(--space-sm) var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__area-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__area-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-bottom: 4px;
}

.footer__area-cities {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}


/* ============================================================
   23. MOBILE CLICK-TO-CALL STICKY BAR
   ============================================================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--brand-red);
  padding: var(--space-sm);
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}

.mobile-cta__link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

.mobile-cta svg {
  color: var(--white);
  flex-shrink: 0;
}


/* ============================================================
   24. WHY CHOOSE / FEATURE LIST
   ============================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-item {
  padding: var(--space-md);
  border-top: 3px solid var(--brand-red);
  background-color: var(--off-white);
}

.feature-item__icon {
  color: var(--brand-red);
  margin-bottom: var(--space-sm);
  width: 28px;
  height: 28px;
}

.feature-item__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--near-black);
  margin-bottom: var(--space-xs);
}

.feature-item__desc {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
}


/* ============================================================
   25. CREDENTIALS SECTION
   ============================================================ */
.credential-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition);
}

.credential-card:hover {
  box-shadow: var(--shadow-sm);
}

.credential-card__icon {
  color: var(--brand-red);
  margin: 0 auto var(--space-sm);
  width: 40px;
  height: 40px;
}

.credential-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--near-black);
  margin-bottom: var(--space-xs);
}

.credential-card__detail {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.credential-card__number {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 0.05em;
}


/* ============================================================
   26. IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  width: 100%;
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-xs);
  color: var(--mid-gray);
  font-size: 0.8125rem;
  text-align: center;
  padding: var(--space-md);
}

.img-placeholder--tall {
  min-height: 360px;
}

.img-placeholder--medium {
  min-height: 260px;
}

.img-placeholder svg {
  opacity: 0.4;
}


/* ============================================================
   27. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-ready {
  opacity: 0;
  transform: translateY(20px);
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }


/* ============================================================
   28. MEDIA QUERIES - TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .mobile-cta {
    display: none !important;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   29. MEDIA QUERIES - MOBILE (max 767px)
   ============================================================ */
@media (max-width: 768px) {
  /* Show mobile CTA */
  .mobile-cta {
    display: flex;
  }

  /* Adjust body for sticky bottom bar */
  body {
    padding-bottom: 60px;
  }

  /* Trust bar */
  .trust-bar__inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* Header */
  .header__nav,
  .header__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Hero home */
  .hero-home {
    min-height: auto;
    padding: var(--space-lg) 0;
  }

  .hero-home__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-home__content {
    padding-right: 0;
  }

  /* Interior hero */
  .hero-interior {
    min-height: 280px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-interior__heading {
    font-size: 2rem;
  }

  /* Sections */
  .section {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .split-7-5,
  .split-5-7 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Stats */
  .stats-bar__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  /* Feature list */
  .feature-list {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* City grid */
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Emergency band */
  .emergency-band__inner {
    flex-direction: column;
    text-align: center;
  }

  /* CTA band actions */
  .cta-band__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Form half */
  .form-group--half {
    grid-template-columns: 1fr;
  }

  /* Industry section */
  .industry-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Contact form */
  .contact-form-wrap {
    padding: var(--space-md);
  }
}


/* ============================================================
   30. MEDIA QUERIES - DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .footer__main {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: var(--space-lg);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   31. MEDIA QUERIES - WIDE (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}




