/* ── TOKENS ── */
:root {
  --blue: #077CEA;
  --navy: #01204C;
  --heading-color: #10202D;
  --body-color: #000000;
  --white: #ffffff;
  --bg-alt: #f7f7f7;
  --border: #dde8f5;
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --max-w: 1160px;
  --section-pad: 80px 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--body-color); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--heading-color);
  line-height: 1.2;
  text-wrap: balance;
}
h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: clamp(15px, 1.5vw, 17px); font-weight: 600; letter-spacing: -0.2px; }
p { font-size: 15px; line-height: 1.75; }

/* ── SECTION HELPERS ── */
.section { padding: var(--section-pad); }
.section--white { background: var(--white); }
.section--alt { background: var(--bg-alt); }
.section--blue { background: var(--blue); }
.section--navy { background: var(--navy); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-eyebrow--light { color: rgba(255,255,255,0.7); }

.section-title { margin-bottom: 14px; }
.section-title--light { color: var(--white); }

.section-sub { font-size: 15px; color: #444; max-width: 600px; margin-bottom: 48px; }
.section-sub--light { color: rgba(255,255,255,0.82); max-width: 640px; margin-bottom: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(1,32,76,0.28);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  pointer-events: auto;
}
.site-logo:hover { color: var(--white); }
.logo-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color .2s;
}
.main-nav a:hover { color: var(--white); }
.nav-cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--blue) !important;
}
.nav-cta:hover { background: var(--white) !important; color: var(--blue) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── DROPDOWN NAV ── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-item > a svg { transition: transform .2s; }
.nav-item:hover > a svg { transform: rotate(180deg); }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 14px;
  min-width: 220px;
  z-index: 300;
}
.dropdown-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(1,32,76,0.14);
  padding: 8px 0;
}
.nav-item:hover .dropdown { display: block; }
.dropdown-inner a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color) !important;
  padding: 10px 18px;
  transition: background .15s, color .15s;
}
.dropdown-inner a:hover { background: #edf5fe; color: var(--blue) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 24px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/plumber-fort-collins-hero-banner.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1,32,76,0.88) 0%, rgba(1,32,76,0.65) 55%, rgba(1,32,76,0.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-content {
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 22px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; }
.hero h1 { margin-bottom: 18px; color: var(--white); }
.hero h1 em { font-style: normal; color: #7ec8ff; }
.hero-desc { color: rgba(255,255,255,0.88); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.hero-stat span { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── PLACEHOLDER IMAGE ── */
.img-placeholder {
  width: 100%;
  background: #dde8f5;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #7a9fc0;
  font-size: 13px;
  font-weight: 500;
  min-height: 280px;
  border: 2px dashed #aac8e8;
}
.img-placeholder svg { opacity: 0.5; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 500;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(7,124,234,0.1);
}
.service-icon {
  width: 48px; height: 48px;
  background: #deeefe;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 13px; color: #555; margin-bottom: 18px; }
.service-card a { font-size: 13px; font-weight: 600; color: var(--blue); }
.service-card a:hover { color: var(--navy); }

/* ── CTA BAND ── */
.cta-band { padding: 64px 24px; }
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.cta-ghost-link { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 3px; }
.cta-ghost-link:hover { color: var(--white); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; }
.why-check {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.why-item h3 { font-size: 14px; margin-bottom: 5px; }
.why-item p { font-size: 13px; color: #555; }

/* ── FAQ INLINE ── */
.faq-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.faq-q {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.faq-a { font-size: 13px; color: #444; line-height: 1.65; }

/* ── WHO WE HELP ── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.help-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.help-icon {
  width: 44px; height: 44px;
  background: #deeefe;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.help-card h3 { font-size: 14px; margin-bottom: 8px; }
.help-card p { font-size: 13px; color: #555; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process-step { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 14px; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: #555; }

/* ── DATA TABLE ── */
.data-table-wrap { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 14px 20px;
  text-align: left;
  letter-spacing: 0.3px;
}
.data-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: #222;
}
.data-table tr:nth-child(even) td { background: #f9fbfe; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { font-weight: 600; color: var(--heading-color); }

/* ── SEASONS ── */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.season-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.season-card--winter { background: #edf5fe; border-color: #c5dcf8; }
.season-card--spring { background: #edf8f2; border-color: #b8e4ca; }
.season-card--summer { background: #fff9ed; border-color: #f5dea0; }
.season-card--fall { background: #fff2ea; border-color: #f5c89a; }
.season-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.season-label--winter { color: var(--blue); }
.season-label--spring { color: #1a7d43; }
.season-label--summer { color: #b45a00; }
.season-label--fall { color: #c25a00; }
.season-card p { font-size: 13px; line-height: 1.65; color: #333; }

/* ── NEIGHBORHOODS ── */
.neighbor-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.neighbor-box h3 { font-size: 14px; color: var(--blue); margin-bottom: 12px; }
.neighbor-box p { font-size: 14px; color: #444; line-height: 1.7; }

/* ── FINAL CTA ── */
.final-cta { text-align: center; padding: 80px 24px; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 32px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); }
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.7; max-width: 240px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 20px 24px;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); }

/* ── FIXED CALL BUTTON ── */
.fixed-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(1,32,76,0.3);
  transition: background .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 180px;
  text-align: center;
}
.fixed-cta:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.fixed-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.88;
}
.fixed-cta-phone {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  .header-inner { padding: 0 20px; }
  .main-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 0; overflow-y: auto; z-index: 199; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; color: rgba(255,255,255,0.88); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { background: none !important; color: rgba(255,255,255,0.88) !important; padding: 14px 0 !important; border-radius: 0 !important; }
  .hamburger { display: flex; }

  .hero { min-height: 480px; padding: 60px 20px; }
  .hero-stats { gap: 20px; }

  .trust-bar-inner { gap: 20px; justify-content: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }

  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: row; flex-wrap: wrap; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }
  .neighbor-box { grid-template-columns: 1fr; gap: 20px; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .final-cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-bar-item { font-size: 12px; }
}

/* ── BREADCRUMB ── */
.breadcrumb-nav {
  background: var(--bg-alt);
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb-item a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #9aabb8;
  font-size: 15px;
  line-height: 1;
}
.breadcrumb-item--current { color: #6b7280; }

/* ── SECTION IMAGE ── */
.section-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}
