/* ============================================================
   ALPHA PROFESSIONAL PAINTING — STEEL & BLUEPRINT DESIGN SYSTEM
   Redesigned for professional contractor aesthetic
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --obsidian:       #0D0F12;
  --graphite:       #171A1F;
  --graphite-2:     #1E2228;
  --steel:          #C7CCD1;
  --bright-steel:   #E9ECEF;
  --navy:           #2D4A69;
  --deep-navy:      #1B3049;
  --blueprint:      #4C86BD;
  --blueprint-dark: #3A6B9A;
  --cool-white:     #F2F4F6;
  --off-white:      #F8F9FA;

  /* Swatch secondaries — paint chip use only */
  --swatch-1: #8A9A7B;
  --swatch-2: #B5654A;
  --swatch-3: #D9A441;
  --swatch-4: #6E7B87;
  --swatch-5: #3F5D4A;
  --swatch-6: #A89B8C;

  /* Metallic gradient */
  --metallic: linear-gradient(8deg, #E9ECEF 0%, #9BA3AB 50%, #E9ECEF 100%);

  /* Noise texture overlay */
  --noise-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

  /* Layout */
  --nav-height:          80px;
  --section-pad-desktop: 110px;
  --section-pad-mobile:  64px;
  --max-content:         1280px;
  --radius:              4px;
  --radius-lg:           8px;
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--obsidian);
  color: var(--steel);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--blueprint); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--bright-steel); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 6rem);
  color: var(--bright-steel);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--bright-steel);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: var(--bright-steel);
}

.h2-on-light { color: var(--obsidian); }
.h3-on-light { color: var(--obsidian); }

p { max-width: 68ch; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.mono, .eyebrow, .mono-label {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blueprint);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blueprint);
  flex-shrink: 0;
}

/* Metallic gradient — permitted on hero H1 first line only */
.gradient-text {
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

/* --- Section Base Styles --- */
section {
  position: relative;
  overflow: hidden;
}

.section-obsidian {
  background: var(--obsidian);
  color: var(--steel);
}

.section-obsidian::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise-url);
  pointer-events: none;
  z-index: 0;
}

.section-obsidian > * { position: relative; z-index: 1; }

.section-deep-navy {
  background: var(--deep-navy);
  color: var(--steel);
}

.section-cool-white {
  background: var(--cool-white);
  color: var(--obsidian);
}

.section-cool-white h2 { color: var(--obsidian); }
.section-cool-white h3 { color: var(--obsidian); }
.section-cool-white p  { color: var(--obsidian); }
.section-cool-white .eyebrow { color: var(--blueprint); }
.section-cool-white .eyebrow::before { background: var(--blueprint); }

.section-navy {
  background: var(--navy);
  color: var(--cool-white);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(11, 13, 17, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(76, 134, 189, 0.18);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
  background: rgba(11, 13, 17, 0.99);
  border-bottom-color: rgba(76, 134, 189, 0.3);
  box-shadow: 0 1px 0 rgba(76, 134, 189, 0.15), 0 8px 32px rgba(0,0,0,0.55);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
  /* Isolate stacking context so mix-blend-mode works correctly */
  isolation: isolate;
}

/* Real logo — knock out white background via mix-blend-mode on dark nav */
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* mix-blend-mode: screen makes white pixels transparent against dark bg */
  mix-blend-mode: screen;
  /* Boost brightness slightly so the logo reads crisply */
  filter: brightness(1.15) contrast(1.05);
  image-rendering: -webkit-optimize-contrast;
}

.nav-wordmark {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bright-steel);
  font-size: 0.7rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  /* Push to right side with auto margin on left */
  margin-left: auto;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blueprint);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--bright-steel); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--bright-steel); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-phone {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blueprint);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.nav-phone:hover { color: var(--bright-steel); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--blueprint);
  color: white;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blueprint-dark);
  color: white;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: 1px solid rgba(199, 204, 209, 0.2);
  border-radius: var(--radius);
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bright-steel);
  transition: all 0.3s;
}

/* Mobile overlay nav */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay a {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  text-transform: uppercase;
  color: var(--bright-steel);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.nav-mobile-overlay a:hover { color: var(--blueprint); }

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--bright-steel);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blueprint);
  color: white;
  border-color: var(--blueprint);
}

.btn-primary:hover {
  background: var(--blueprint-dark);
  border-color: var(--blueprint-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 134, 189, 0.35);
}

.btn-primary-steel {
  background: var(--bright-steel);
  color: var(--obsidian);
  border-color: var(--bright-steel);
}

.btn-primary-steel:hover {
  background: white;
  color: var(--obsidian);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 236, 239, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--bright-steel);
  border-color: rgba(199, 204, 209, 0.4);
}

.btn-secondary:hover {
  background: rgba(199, 204, 209, 0.1);
  color: var(--bright-steel);
  border-color: var(--bright-steel);
}

.btn-lg {
  font-size: 14px;
  padding: 1.1rem 2.4rem;
}

.btn-outline-blueprint {
  background: transparent;
  color: var(--blueprint);
  border-color: var(--blueprint);
}

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

/* --- Cards --- */
.card {
  background: var(--graphite-2);
  border: 1px solid rgba(199, 204, 209, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: rgba(76, 134, 189, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.card-navy {
  background: var(--navy);
  border: 1px solid rgba(76, 134, 189, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}

.card-navy:hover {
  border-color: var(--blueprint);
  transform: translateY(-3px);
}

.card-on-light {
  background: white;
  border: 1px solid rgba(13, 15, 18, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  border-bottom: 3px solid transparent;
}

.card-on-light:hover {
  border-bottom-color: var(--blueprint);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--nav-height) + 90px);
  padding-bottom: 110px;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}

/* Hero dramatic background accent */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise-url);
  pointer-events: none;
}

/* Blueprint blue left-side accent bar in hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--blueprint), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.hero-content { grid-column: 1; }
.hero-swatches { grid-column: 2; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  background: rgba(76, 134, 189, 0.08);
  border: 1px solid rgba(76, 134, 189, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 0.25rem;
  width: fit-content;
}

.trust-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  padding: 0 1rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgba(76, 134, 189, 0.4);
}

.trust-item:first-child { padding-left: 1rem; }

.hero-region-chips {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.region-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blueprint);
  background: rgba(76, 134, 189, 0.12);
  border: 1px solid rgba(76, 134, 189, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.region-chip::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blueprint);
}

.region-chip:hover {
  background: var(--blueprint);
  color: white;
}

.region-chip:hover::before { background: white; }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* --- Paint Chip Swatches --- */
.swatch-strip {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.swatch-strip-horizontal {
  display: flex;
  flex-direction: row;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
}

.swatch {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 8px;
  position: relative;
  overflow: hidden;
}

.swatch-vertical {
  height: 88px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 10px;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.swatch-vertical.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.swatch-hex {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  line-height: 1;
}

.swatch-hex-dark {
  color: rgba(0,0,0,0.5);
}

/* --- Process Timeline --- */
.process-timeline {
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blueprint), rgba(76, 134, 189, 0.1));
}

.process-step {
  position: relative;
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(199, 204, 209, 0.08);
}

.process-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.process-num {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 1.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--blueprint);
  line-height: 1;
  opacity: 0.9;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--bright-steel);
}

/* --- Section Photo Background with Overlay --- */
/* Usage: wrap content in <div class="section-photo-bg"> with data-bg-url attribute */
.section-photo-bg {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Min height so image shows even if content is short */
  min-height: 320px;
}

.section-photo-bg img.section-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark gradient overlay to ensure text legibility */
.section-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 15, 18, 0.82) 0%,
    rgba(13, 15, 18, 0.65) 50%,
    rgba(13, 15, 18, 0.75) 100%
  );
  z-index: 1;
}

.section-photo-bg > *:not(.section-photo-img) {
  position: relative;
  z-index: 2;
}

/* Standalone photo frame (for sidebar images) */
.project-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  width: 100%;
}

.project-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.project-photo-frame:hover img {
  transform: scale(1.03);
}

/* Photo overlay caption badge */
.photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(13, 15, 18, 0.82);
  border: 1px solid rgba(76, 134, 189, 0.4);
  border-radius: var(--radius);
  padding: 0.35rem 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blueprint);
  z-index: 3;
  backdrop-filter: blur(8px);
}

/* --- Interactive Swatch Upgrade --- */
.swatch-vertical {
  cursor: pointer;
  position: relative;
  user-select: none;
}

.swatch-vertical:hover {
  filter: brightness(1.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
  z-index: 2;
}

.swatch-vertical.active {
  box-shadow: 0 0 0 3px white, 0 0 0 5px rgba(76, 134, 189, 0.6);
  z-index: 3;
  transform: translateY(-4px) !important;
}

.swatch-vertical::after {
  content: 'CLICK TO APPLY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.swatch-vertical:hover::after {
  opacity: 1;
}

/* Swatch active label replacement */
.swatch-vertical.active .swatch-hex::after {
  content: ' ✓';
}

/* --- Region Cards (replaces SVG CA map) --- */
.region-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.region-card {
  background: rgba(44, 74, 105, 0.25);
  border: 1px solid rgba(76, 134, 189, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blueprint);
}

.region-card:hover {
  border-color: rgba(76, 134, 189, 0.6);
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.region-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.region-card-name {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--bright-steel);
}

.region-card-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blueprint);
  background: rgba(76, 134, 189, 0.12);
  border: 1px solid rgba(76, 134, 189, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.region-card-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-bottom: 1rem;
}

.region-card-cities span {
  font-size: 0.8rem;
  color: var(--steel);
  font-family: 'Inter', sans-serif;
}

.region-card-cities span:not(:last-child)::after {
  content: '·';
  margin-left: 0.6rem;
  color: rgba(199, 204, 209, 0.3);
}

.region-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blueprint);
  text-decoration: none;
  transition: gap 0.2s;
}

.region-card-link:hover { gap: 0.7rem; color: var(--bright-steel); }

.region-card-link::after { content: '→'; }

/* --- Photo Placeholder --- */
.photo-placeholder {
  background: var(--graphite-2);
  border: 1px solid rgba(76, 134, 189, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(199, 204, 209, 0.3);
  border: 1px solid rgba(199, 204, 209, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
}

.photo-16-9 { aspect-ratio: 16/9; width: 100%; }
.photo-4-5  { aspect-ratio: 4/5;  width: 100%; max-width: 400px; }

/* --- Service Cards --- */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--graphite-2);
  padding: 3rem;
  border: 1px solid rgba(76, 134, 189, 0.15);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  border-bottom: 4px solid rgba(76, 134, 189, 0.3);
}

.service-card:hover {
  border-color: rgba(76, 134, 189, 0.5);
  border-bottom-color: var(--blueprint);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--bright-steel);
}

.service-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-list li {
  padding: 0.45rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--steel);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--blueprint);
  border-radius: 1px;
}

/* --- Credentials Grid --- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.credential-card {
  background: white;
  border: 1px solid rgba(13, 15, 18, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
  border-bottom: 3px solid transparent;
}

.credential-card:hover {
  border-bottom-color: var(--blueprint);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.credential-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.credential-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--obsidian);
}

.credential-card p { color: var(--obsidian); font-size: 0.9rem; }

.verify-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blueprint);
  text-decoration: underline;
  font-weight: 500;
}

/* --- Climate Columns --- */
.climate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.climate-col h3 {
  font-size: 1.15rem;
  color: var(--bright-steel);
  margin-bottom: 1rem;
}

.climate-col .climate-region-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blueprint);
  margin-bottom: 0.5rem;
  display: block;
}

.climate-illustration {
  margin-bottom: 1.5rem;
  height: 120px;
  opacity: 0.85;
}

.climate-points {
  list-style: none;
  margin-top: 1.5rem;
}

.climate-points li {
  padding: 0.6rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(199, 204, 209, 0.08);
}

.climate-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--blueprint);
  border-radius: 1px;
}

/* --- Service Area Lists --- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.area-col h3 {
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blueprint);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(76, 134, 189, 0.25);
  padding-bottom: 0.5rem;
}

.city-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.city-list a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.city-list a:hover { color: var(--bright-steel); }

/* --- FAQ Accordion --- */
.faq-list { 
  max-width: 860px; 
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 15, 18, 0.12);
  border-radius: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--obsidian);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover { color: var(--blueprint); }

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.25s, background 0.25s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--blueprint);
  border-color: var(--blueprint);
  color: white;
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--obsidian);
  font-size: 0.95rem;
}

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

/* --- Estimate Form --- */
.estimate-form {
  max-width: 660px;
}

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

.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--graphite-2);
  border: 1px solid rgba(199, 204, 209, 0.15);
  color: var(--bright-steel);
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blueprint);
  box-shadow: 0 0 0 3px rgba(76, 134, 189, 0.15);
}

.form-select { cursor: pointer; }

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

.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blueprint);
  flex-shrink: 0;
}

.form-checkbox-item span {
  font-size: 0.9rem;
  color: var(--steel);
}

.form-file-upload {
  background: var(--graphite-2);
  border: 1px dashed rgba(76, 134, 189, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.form-file-upload:hover {
  border-color: var(--blueprint);
  background: rgba(76, 134, 189, 0.05);
}

.form-file-upload input { display: none; }

.form-file-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Offer Section --- */
.value-stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
}

.value-stack li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(199, 204, 209, 0.08);
  font-size: 0.95rem;
}

.value-stack li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: rgba(76, 134, 189, 0.2);
  border-radius: 50%;
  border: 2px solid var(--blueprint);
  flex-shrink: 0;
  margin-top: 3px;
}

.risk-reversal {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--bright-steel);
  text-transform: uppercase;
  border-left: 4px solid var(--blueprint);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.scarcity-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blueprint);
  margin: 1.5rem 0;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(76, 134, 189, 0.35);
  border-radius: var(--radius);
  display: inline-block;
  background: rgba(76, 134, 189, 0.06);
}

.counter-number {
  color: var(--bright-steel);
  font-size: 1.4rem;
}

/* --- Stat Counter Bar --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(76, 134, 189, 0.25);
}

.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--bright-steel);
  font-weight: 900;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.stat-suffix {
  color: var(--blueprint);
  font-size: 0.7em;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-top: 0.4rem;
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--graphite);
  padding: 88px 0 44px;
  border-top: 1px solid rgba(76, 134, 189, 0.2);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise-url);
  pointer-events: none;
}

.footer > * { position: relative; z-index: 1; }

.footer-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

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

.footer-logo-lockup {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  isolation: isolate;
}

/* Footer logo — knock out white background with mix-blend-mode */
.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
}

.footer-logo-mark {
  width: 56px;
  height: 56px;
}

.footer-wordmark {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.85rem;
  line-height: 1.3;
}

.footer-nap {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.85;
}

.footer-nap a {
  color: var(--steel);
  text-decoration: none;
}

.footer-nap a:hover { color: var(--blueprint); }

.footer-col-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blueprint);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(76, 134, 189, 0.2);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--bright-steel); }

.footer-bottom {
  border-top: 1px solid rgba(199, 204, 209, 0.08);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
}

.footer-verify {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blueprint);
  text-decoration: underline;
}

.footer-verify:hover { color: var(--bright-steel); }

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(199, 204, 209, 0.4);
}

/* --- Mobile Bottom Bar --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 56px;
}

.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-bar-estimate {
  background: var(--blueprint);
  color: white;
}

.mobile-bar-call {
  background: var(--deep-navy);
  color: var(--bright-steel);
  border-left: 1px solid rgba(76, 134, 189, 0.3);
}

.mobile-bottom-bar a:hover { opacity: 0.9; }

/* --- Exit Intent Bar --- */
.exit-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--deep-navy);
  border-top: 2px solid var(--blueprint);
  padding: 1rem clamp(1rem, 4vw, 3rem);
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.exit-bar.visible { display: flex; }

.exit-bar-text {
  font-size: 0.95rem;
  color: var(--bright-steel);
  flex: 1;
}

.exit-bar-cta {
  white-space: nowrap;
}

.exit-bar-close {
  background: none;
  border: none;
  color: var(--steel);
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Footer Mini Form --- */
.footer-mini-form {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(199, 204, 209, 0.08);
}

.footer-mini-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.footer-mini-form .form-input,
.footer-mini-form .form-select {
  font-size: 0.85rem;
  padding: 0.65rem 0.85rem;
}

/* --- Inline SVG Icons --- */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.icon-lg {
  width: 44px;
  height: 44px;
}

.icon-md {
  width: 28px;
  height: 28px;
}

/* --- Section Padding --- */
.section-pad {
  padding-top: var(--section-pad-desktop);
  padding-bottom: var(--section-pad-desktop);
}

.section-pad-sm {
  padding-top: calc(var(--section-pad-desktop) * 0.6);
  padding-bottom: calc(var(--section-pad-desktop) * 0.6);
}

/* --- Scroll Animations --- */
.fade-rise {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-rise.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays */
.fade-rise:nth-child(1) { transition-delay: 0ms; }
.fade-rise:nth-child(2) { transition-delay: 90ms; }
.fade-rise:nth-child(3) { transition-delay: 180ms; }
.fade-rise:nth-child(4) { transition-delay: 270ms; }
.fade-rise:nth-child(5) { transition-delay: 360ms; }
.fade-rise:nth-child(6) { transition-delay: 450ms; }

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: white;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blueprint);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.problem-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.problem-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item p {
  font-size: 0.95rem;
  color: var(--obsidian);
  max-width: none;
}

.problem-close {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--obsidian);
  margin-top: 2.5rem;
  max-width: 60ch;
  padding: 1.25rem 1.5rem;
  background: rgba(76, 134, 189, 0.08);
  border-radius: var(--radius);
  border-left: 4px solid var(--blueprint);
}

/* --- Calendly Placeholder --- */
.calendly-placeholder {
  background: var(--graphite-2);
  border: 1px dashed rgba(76, 134, 189, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}

.calendly-placeholder p {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0 auto;
}

/* --- Call Block --- */
.call-block {
  padding: 2rem;
  background: var(--graphite-2);
  border: 1px solid rgba(76, 134, 189, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.call-block .phone-display {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--bright-steel);
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}

.call-block .phone-display:hover { color: var(--blueprint); }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: calc(var(--nav-height) + 1.5rem) clamp(1.25rem, 4vw, 3.5rem) 0;
  max-width: var(--max-content);
  margin: 0 auto;
}

.breadcrumb a,
.breadcrumb span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--blueprint); }
.breadcrumb .sep { color: rgba(199,204,209,0.25); }

/* --- Utilities --- */
.text-blueprint { color: var(--blueprint); }
.text-bright-steel { color: var(--bright-steel); }
.text-steel { color: var(--steel); }
.text-obsidian { color: var(--obsidian); }
.text-cool-white { color: var(--cool-white); }

.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 3rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Color Help & Swatch strip large */
.swatch-strip-lg {
  display: flex;
  height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2.5rem 0;
}

.swatch-strip-lg .swatch {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 10px;
}

/* Sub-page hero (shorter than homepage) */
.sub-hero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 88px;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise-url);
  pointer-events: none;
}

/* Blueprint accent on sub-hero left side */
.sub-hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--blueprint), transparent);
  pointer-events: none;
}

.sub-hero > * { position: relative; z-index: 1; }

/* City grid on region pages */
.city-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.city-detail-item {
  padding: 1.5rem;
  border: 1px solid rgba(76, 134, 189, 0.15);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s;
}

.city-detail-item:hover {
  border-color: var(--blueprint);
  transform: translateY(-2px);
}

.city-detail-item h4 {
  font-size: 0.9rem;
  color: var(--bright-steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.city-detail-item p {
  font-size: 0.85rem;
  color: var(--steel);
}

/* Section heading layout */
.section-head {
  margin-bottom: 4rem;
}

.section-head-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}

/* Divider strip — replaced diagonal clip-paths with clean horizontal border */
.blueprint-strip {
  height: 4px;
  background: linear-gradient(to right, var(--blueprint), rgba(76, 134, 189, 0.2));
  width: 100%;
}

/* Accent top border on sections */
.section-accent-top {
  border-top: 4px solid var(--blueprint);
}

/* --- "Who We Serve" split section (inspired by Deluxe homeowners/professionals split) --- */
.serve-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}

.serve-panel {
  padding: 3.5rem;
}

.serve-panel-dark {
  background: var(--deep-navy);
  border: 1px solid rgba(76, 134, 189, 0.15);
}

.serve-panel-light {
  background: var(--graphite-2);
  border: 1px solid rgba(199, 204, 209, 0.08);
  border-left: none;
}

.serve-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--bright-steel);
}

.serve-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.serve-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--steel);
}

.serve-bullets li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: rgba(76, 134, 189, 0.15);
  border: 2px solid var(--blueprint);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Stats bar (dark, between sections, prominent numbers) --- */
.stats-bar {
  background: var(--graphite);
  border-top: 1px solid rgba(76, 134, 189, 0.2);
  border-bottom: 1px solid rgba(76, 134, 189, 0.2);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise-url);
  pointer-events: none;
}

.stats-bar .container { position: relative; z-index: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 220px;
  }

  .climate-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-cards { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .section-head-split { grid-template-columns: 1fr; }
  .serve-split { grid-template-columns: 1fr; }
  .serve-panel-light { border-left: 1px solid rgba(199, 204, 209, 0.08); border-top: none; }
}

@media (max-width: 768px) {
  :root {
    --section-pad-desktop: var(--section-pad-mobile);
    --nav-height: 70px;
  }

  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-mobile-toggle { display: flex; }

  .mobile-bottom-bar {
    display: flex;
  }

  body { padding-bottom: 56px; }

  .hero { padding-bottom: 80px; }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-swatches {
    display: flex;
    flex-direction: row;
    height: 72px;
    gap: 3px;
  }

  .swatch-vertical {
    flex: 1;
    height: auto;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }

  .hero-trust { width: 100%; }

  .problem-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .climate-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-checkboxes { grid-template-columns: 1fr; }
  .city-detail-grid { grid-template-columns: 1fr; }
  .serve-split { grid-template-columns: 1fr; }
  .serve-panel-light { border-left: 1px solid rgba(199,204,209,0.08); border-top: none; }

  /* Offer section 2-col → 1-col */
  .offer-grid { grid-template-columns: 1fr !important; }
  .estimate-grid { grid-template-columns: 1fr !important; }
  .areas-layout { grid-template-columns: 1fr !important; }
  .color-layout { grid-template-columns: 1fr !important; }
  .process-layout { grid-template-columns: 1fr !important; }
  .services-3col { grid-template-columns: 1fr !important; }
  .commercial-grid { grid-template-columns: 1fr !important; }
  .cv-detail-layout { grid-template-columns: 1fr !important; }
  .climate-detail-layout { grid-template-columns: 1fr !important; }
  .process-detail-step { grid-template-columns: 60px 1fr !important; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-mini-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-mini-form-grid .btn { grid-column: 1 / -1; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:not(:last-child)::after { display: none; }

  .exit-bar { display: none !important; }

  .nav-logo-img { height: 46px; }
  .footer-logo-img { height: 58px; }
}

@media (max-width: 480px) {
  .footer-mini-form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item { font-size: 9px; padding: 0 0.6rem; }

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

/* ============================================================
   SECTION BACKGROUND IMAGE + OVERLAY SYSTEM
   ============================================================ */

/* Full-bleed section with background image */
.section-bg-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 50% dark overlay so text is always readable */
.section-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 18, 0.55);
  z-index: 1;
  pointer-events: none;
}

/* Estimate section gets its own BG */
.section-estimate-bg {
  position: relative;
  background-image: url('/assets/bg-estimate.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ============================================================
   PROCESS SECTION — card grid over background image
   ============================================================ */

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.process-card {
  background: rgba(13, 15, 18, 0.72);
  border: 1px solid rgba(76, 134, 189, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.process-card:hover {
  border-color: var(--blueprint);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.process-card-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--blueprint);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.process-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.65rem;
}

.process-card p {
  font-size: 0.875rem;
  color: rgba(199, 204, 209, 0.85);
  max-width: none;
}

/* CTA card in process grid */
.process-card-cta {
  background: rgba(76, 134, 189, 0.18);
  border-color: rgba(76, 134, 189, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ============================================================
   SERVICE AREAS — grid over background image
   ============================================================ */

.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.service-area-card {
  background: rgba(13, 15, 18, 0.72);
  border: 1px solid rgba(76, 134, 189, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.service-area-card .region-card-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.service-area-card .region-card-cities span {
  color: rgba(199, 204, 209, 0.85);
}

.service-area-cta-card {
  background: rgba(76, 134, 189, 0.18);
  border-color: rgba(76, 134, 189, 0.5);
  justify-content: center;
}

/* ============================================================
   CTA BANNER — for color consultation section
   ============================================================ */

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 240px;
}

/* ============================================================
   MODERN ESTIMATE FORM
   ============================================================ */

.estimate-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.estimate-form-col {}
.estimate-trust-col {}

/* Modern form inputs — larger, cleaner, floating style */
.estimate-form-modern {
  width: 100%;
}

.form-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blueprint);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(76, 134, 189, 0.25);
}

.form-input-modern {
  width: 100%;
  background: rgba(30, 34, 40, 0.9);
  border: 1.5px solid rgba(199, 204, 209, 0.2);
  color: #fff;
  padding: 1rem 1.15rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: blur(4px);
}

.form-input-modern::placeholder { color: rgba(199,204,209,0.45); }

.form-input-modern:focus {
  outline: none;
  border-color: var(--blueprint);
  background: rgba(30, 34, 40, 0.98);
  box-shadow: 0 0 0 3px rgba(76, 134, 189, 0.2);
}

.form-input-modern option { background: #1E2228; color: #fff; }

.form-textarea-modern {
  min-height: 110px;
  resize: vertical;
}

/* Project type pill checkboxes */
.form-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-pill {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.form-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-pill span {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  border: 1.5px solid rgba(199, 204, 209, 0.25);
  color: rgba(199,204,209,0.75);
  background: rgba(30, 34, 40, 0.7);
  transition: all 0.2s;
  user-select: none;
  backdrop-filter: blur(4px);
}

.form-pill:hover span {
  border-color: var(--blueprint);
  color: #fff;
}

.form-pill input:checked + span {
  background: var(--blueprint);
  border-color: var(--blueprint);
  color: #fff;
}

.btn-submit-modern {
  width: 100%;
  font-size: 15px;
  padding: 1.15rem 2rem;
  margin-top: 0.5rem;
  justify-content: center;
}

.form-disclaimer {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(199,204,209,0.4);
  margin-top: 0.75rem;
  max-width: none;
}

/* Estimate trust column */
.estimate-call-card {
  background: rgba(13, 15, 18, 0.72);
  border: 1px solid rgba(76, 134, 189, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.phone-display-lg {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 0.4rem;
  letter-spacing: -0.02em;
}

.phone-display-lg:hover { color: var(--blueprint); }

.estimate-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.estimate-guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(76, 134, 189, 0.15);
}

.estimate-guarantee-item:last-child { border-bottom: none; }

.guarantee-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(76, 134, 189, 0.2);
  border: 2px solid var(--blueprint);
  color: var(--blueprint);
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.estimate-guarantee-item strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  display: block;
  text-transform: none;
  letter-spacing: 0;
}

.estimate-guarantee-item p {
  font-size: 0.8rem;
  color: rgba(199, 204, 209, 0.7);
  margin-top: 0.2rem;
  max-width: none;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */

@media (max-width: 1100px) {
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .service-areas-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 2rem; }
  .estimate-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .process-steps-grid { grid-template-columns: 1fr; }
  .service-areas-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .estimate-layout { grid-template-columns: 1fr !important; }
}
