/* ================================================================
   Pride Plumbing — Shared Stylesheet
   Brand: Navy #002596 / Red #ff0000
   Fonts: Oswald (headings) + Nunito (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

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

:root {
  --navy:       #002596;
  --navy-dark:  #001a6e;
  --navy-light: #0033cc;
  --red:        #ff0000;
  --red-dark:   #cc0000;
  --white:      #ffffff;
  --off-white:  #f4f6fb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --text:       #1a1a2e;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Nunito', sans-serif;
  --radius:     6px;
  --shadow:     0 4px 20px rgba(0, 37, 150, 0.10);
  --shadow-lg:  0 8px 40px rgba(0, 37, 150, 0.15);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--navy); color: var(--white);
  padding: .5rem 1rem; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── Container ── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 1.5rem;
}

/* ── Navigation ── */
.site-nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.nav-logo img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: .95rem; letter-spacing: .05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

/* Mobile nav */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem; color: white;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; margin: 5px 0;
  transition: all .3s;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy-dark);
  padding: 1rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: 1rem; letter-spacing: .05em;
  text-transform: uppercase;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 16px rgba(255,0,0,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,0,0,.4);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 16px rgba(0,37,150,.3);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,37,150,.4);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,25,110,.88) 0%, rgba(0,37,150,.72) 55%, rgba(0,10,60,.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 4rem 1.5rem;
  margin-left: auto; margin-right: auto;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem; letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 550px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  color: rgba(255,255,255,.9);
  font-size: .875rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero-badges {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 40px
  );
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative; z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem; margin-top: .75rem;
  position: relative; z-index: 1;
}
.breadcrumb {
  font-size: .8rem; color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

/* ── Stats Band ── */
.stats-band {
  background: var(--navy-dark);
  padding: 2.5rem 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: .5rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: .75rem auto 0;
}

/* ── Value Props ── */
.value-props { padding: 5rem 1.5rem; background: var(--off-white); }
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.prop-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.prop-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: white;
}
.prop-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.prop-card p { font-size: .925rem; color: var(--gray-500); }

/* ── Services Grid ── */
.services-section { padding: 5rem 1.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  display: flex; align-items: flex-start; gap: .75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.service-card p {
  font-size: .85rem;
  color: var(--gray-500);
  margin-top: .25rem;
}

/* Services page categories */
.service-category { margin-bottom: 3.5rem; }
.category-title {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: .05em;
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid var(--red);
}
.category-title svg { color: var(--red); }

/* ── Testimonials ── */
.testimonials-section { padding: 5rem 1.5rem; background: var(--navy); }
.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-eyebrow { color: rgba(255,200,0,.9); }
.testimonials-section .section-header p { color: rgba(255,255,255,.7); }

.tc-wrapper {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}
.tc-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.tc-slide {
  min-width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
}
.tc-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.tc-slide blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255,255,255,.92);
  position: relative;
}
.tc-slide blockquote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  position: absolute; top: .8rem; left: -1.25rem;
  color: rgba(255,255,255,.1);
  font-family: Georgia, serif;
}
.tc-cite {
  display: block; margin-top: 1.5rem;
  font-style: normal; font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .05em;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
}
.tc-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.tc-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ── CTA Band ── */
.cta-band {
  background: var(--red);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 1.75rem; }
.cta-band .btn-outline { border-color: white; }

/* ── About Section ── */
.about-section { padding: 5rem 1.5rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img {
  width: 100%; height: 420px;
  object-fit: cover;
}
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  border-left: 4px solid var(--red);
}
.about-text .section-header { text-align: left; margin-bottom: 1.5rem; }
.about-text p { color: var(--gray-700); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }

/* ── Before / After Slider ── */
.ba-section { padding: 5rem 1.5rem; background: var(--off-white); }

/* ── FAQ Accordion ── */
.faq-section { padding: 5rem 1.5rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1.5px solid var(--gray-200);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--font-head);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; color: var(--red); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--red); border-radius: 3px; }
.faq-body {
  padding: 0 0 1.25rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-size: .975rem;
}

/* ── Service Area Map ── */
.map-section { padding: 5rem 1.5rem; background: var(--off-white); }
#service-area-map {
  height: 380px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 3px solid var(--navy);
}
.counties-list {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.5rem; justify-content: center;
}
.county-tag {
  background: var(--navy);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: .85rem; letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Contact ── */
.contact-section { padding: 5rem 1.5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.contact-item-label {
  font-family: var(--font-head);
  font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: .25rem;
}
.contact-item-value {
  font-size: 1.05rem;
  color: var(--gray-900);
  font-weight: 600;
}
.contact-item-value a:hover { color: var(--red); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--navy);
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #dcfce7;
  border: 1.5px solid #16a34a;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #166534;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}
.form-error {
  display: none;
  background: #fef2f2;
  border: 1.5px solid #dc2626;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #991b1b;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}

/* ── Phone Numbers ── */
.phone-list { list-style: none; margin-top: .75rem; }
.phone-list li a {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.phone-list li a:hover { color: var(--red); }
.phone-list li + li { margin-top: .3rem; }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--red); color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,0,0,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(255,0,0,.5);
}
@media (min-width: 768px) {
  .floating-cta { width: 64px; height: 64px; bottom: 2rem; right: 2rem; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ── Image Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem;
}
.gallery-img {
  width: 100%; height: 230px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s, opacity .3s;
}
.gallery-img:hover { transform: scale(1.03); opacity: .92; }
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 4px;
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2.5rem;
  cursor: pointer; line-height: 1;
}

/* ── Footer ── */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo img {
  height: 48px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: .925rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .9rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-phones a {
  color: rgba(255,255,255,.75);
  font-weight: 600;
  font-size: .95rem;
  display: block; margin-bottom: .3rem;
  transition: color var(--transition);
}
.footer-phones a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .tc-slide { padding: 2rem 1rem; }
}
@media (min-width: 641px) {
  .hero-content { padding: 5rem 3rem; }
}
@media (min-width: 1024px) {
  .hero-content { padding: 6rem 4rem; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-section { padding: 5rem 1.5rem; }
.bg-off-white { background: var(--off-white); }
.divider {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 1rem auto;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-content > * {
  animation: fadeUp .7s ease both;
}
.hero-content .hero-eyebrow { animation-delay: .1s; }
.hero-content h1 { animation-delay: .2s; }
.hero-content .hero-sub { animation-delay: .35s; }
.hero-content .hero-ctas { animation-delay: .5s; }
.hero-content .hero-badges { animation-delay: .65s; }
