:root { --brand: #232f66; --brand-light: #3a4a8c; --accent: #c0361a; --accent-ink: #ffffff; --bg: #f7f8fb; --surface: #ffffff; --ink: #22242e; --ink-soft: #5d6272; --line: #e0e2ec; --radius: 10px; --shadow: 0 2px 10px rgba(20,30,45,0.08); --shadow-lift: 0 8px 22px rgba(20,30,45,0.14); }

* { box-sizing: border-box; }
body {
  font-family: system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: static;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  z-index: 1000;
}

.site-header {
  background-color: var(--brand);
}
nav {
  display: flex;
  gap: 1rem;
}
nav a {
  color: white;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 .75rem;
}
.logo {
  font-weight: bold;
  font-size: 1.15rem;
}

.hero {
  background-image: radial-gradient(40rem 26rem at 12% 18%, rgba(232,119,34,.16), transparent 60%), radial-gradient(34rem 24rem at 88% 12%, rgba(157,123,184,.15), transparent 60%), radial-gradient(36rem 26rem at 85% 88%, rgba(41,182,207,.13), transparent 60%), radial-gradient(30rem 22rem at 15% 92%, rgba(92,138,111,.13), transparent 60%), linear-gradient(135deg, rgba(20,27,61,.9), rgba(35,47,102,.88)), url("images/pullman-1.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--radius);
}
.hero h1 {
  font-size: 3.4rem;
  margin: 0 0 .75rem;
}
.hero p {
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

button, .button {
  background-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: .8rem 1.6rem;
  min-height: 44px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
button:hover, .button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.button-emergency {
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.25rem;
}
.card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 0;
  color: var(--brand);
}

.gallery figure {
  margin: 0;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  background-color: var(--line);
}
figcaption {
  font-size: .9rem;
  color: var(--ink-soft);
  padding-top: .4rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.badge {
  background-color: var(--surface);
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-weight: 600;
  font-size: .9rem;
}

blockquote.testimonial {
  background-color: var(--surface);
  border-left: 4px solid var(--accent);
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
cite {
  color: var(--ink-soft);
  font-style: normal;
  font-size: .9rem;
}

label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 .35rem;
}
input, textarea, select {
  width: 100%;
  padding: .65rem .8rem;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background-color: var(--surface);
  color: var(--ink);
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(35,47,102,.25);
  border-color: var(--brand);
}
.required::after {
  content: " *";
  color: #b3261e;
}

.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: var(--accent);
  text-align: center;
  padding: .9rem;
  z-index: 20;
}
.call-bar a {
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}

.site-footer {
  background-color: var(--brand);
  color: white;
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
}
.social-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  padding: 1rem 0;
  list-style: none;
  margin: 0;
}
.social-row a {
  color: white;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

section {
  scroll-margin-top: 5rem;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  nav ul {
    flex-wrap: wrap;
    gap: .75rem;
  }
  .hero {
    padding: 2.5rem 1.25rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .call-bar {
    display: block;
  }
  body {
    padding-bottom: 4.5rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --bg: #131522; --surface: #1c1f30; --ink: #e7e8ee; --ink-soft: #a8acbd; --line: #2f3348; --brand: #93a3e8; --brand-light: #6f83d4; --accent: #c94425; --shadow: 0 2px 12px rgba(0,0,0,0.4); --shadow-lift: 0 8px 24px rgba(0,0,0,0.5); }
  :root:not([data-theme="light"]) .site-header, :root:not([data-theme="light"]) .site-footer { background-color: #0e1230; }
  :root:not([data-theme="light"]) .hero { background-image: radial-gradient(40rem 26rem at 12% 18%, rgba(232,119,34,.16), transparent 60%), radial-gradient(34rem 24rem at 88% 12%, rgba(157,123,184,.15), transparent 60%), radial-gradient(36rem 26rem at 85% 88%, rgba(41,182,207,.13), transparent 60%), radial-gradient(30rem 22rem at 15% 92%, rgba(92,138,111,.13), transparent 60%), linear-gradient(135deg, rgba(14,18,48,.92), rgba(35,47,102,.9)), url("images/pullman-1.jpg"); background-size: cover; background-position: center; }
}
:root[data-theme="dark"] { --bg: #131522; --surface: #1c1f30; --ink: #e7e8ee; --ink-soft: #a8acbd; --line: #2f3348; --brand: #93a3e8; --brand-light: #6f83d4; --accent: #c94425; --shadow: 0 2px 12px rgba(0,0,0,0.4); --shadow-lift: 0 8px 24px rgba(0,0,0,0.5); }
:root[data-theme="dark"] .site-header, :root[data-theme="dark"] .site-footer { background-color: #0e1230; }
:root[data-theme="dark"] .hero { background-image: radial-gradient(40rem 26rem at 12% 18%, rgba(232,119,34,.16), transparent 60%), radial-gradient(34rem 24rem at 88% 12%, rgba(157,123,184,.15), transparent 60%), radial-gradient(36rem 26rem at 85% 88%, rgba(41,182,207,.13), transparent 60%), radial-gradient(30rem 22rem at 15% 92%, rgba(92,138,111,.13), transparent 60%), linear-gradient(135deg, rgba(14,18,48,.92), rgba(35,47,102,.9)), url("images/pullman-1.jpg"); background-size: cover; background-position: center; }

.theme-toggle {
  background-color: transparent;
  border: 1.5px solid currentColor;
  color: inherit;
  border-radius: 999px;
  padding: .3rem .9rem;
  min-height: 36px;
  cursor: pointer;
}.svc-insulation { border-top: 4px solid #e87722; } .svc-drywall { border-top: 4px solid #9d7bb8; } .svc-paint { border-top: 4px solid #29b6cf; } .svc-contracting { border-top: 4px solid #5c8a6f; } .site-header .logo img { height: 2.4rem; width: auto; vertical-align: middle; margin-right: .5rem; border-radius: 4px; background: #ffffff; padding: 2px; }
.site-header { padding: .5rem 1.5rem; } .site-header nav { align-items: center; gap: 1.25rem; } .site-header nav ul { display: flex; align-items: center; flex-wrap: wrap; gap: .25rem; list-style: none; margin: 0; padding: 0; flex: 1; } .site-header nav ul li:last-child { margin-left: auto; } .site-header .logo { display: inline-flex; align-items: center; font-size: 1.3rem; white-space: nowrap; } .site-header .logo img { height: 3.4rem; width: 3.4rem; border-radius: 50%; object-fit: cover; padding: 0; margin-right: .8rem; box-shadow: 0 0 0 3px rgba(255,255,255,.3); } .site-header .theme-toggle { color: #ffffff; }
.hero { display: grid; grid-template-columns: 3fr 2fr; gap: 2rem; align-items: center; } .hero-art img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lift); } .hero .phone-link { color: #ffffff; font-weight: 700; } @media (max-width: 640px) { .hero { grid-template-columns: 1fr; } .hero-art { display: none; } }
.areas-list { display: flex; flex-wrap: wrap; gap: .5rem .6rem; list-style: none; padding: 0; margin: 1rem 0; } .areas-list li { border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: .25rem .9rem; font-size: .92rem; color: var(--ink-soft); } .card { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; } .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--accent); } @media (prefers-reduced-motion: no-preference) { .reveal { opacity: 0; } .reveal.in { animation: reveal-rise .55s ease both; } @keyframes reveal-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } } .grid > .reveal.in:nth-child(2), .stat-band > .stat:nth-child(2), .media-list > .item:nth-child(2) { animation-delay: .08s; } .grid > .reveal.in:nth-child(3), .stat-band > .stat:nth-child(3), .media-list > .item:nth-child(3) { animation-delay: .16s; } .grid > .reveal.in:nth-child(4), .stat-band > .stat:nth-child(4), .media-list > .item:nth-child(4) { animation-delay: .24s; } .grid > .reveal.in:nth-child(5) { animation-delay: .32s; } .process > li:nth-child(2) { animation-delay: .08s; } .process > li:nth-child(3) { animation-delay: .16s; } .process > li:nth-child(4) { animation-delay: .24s; } .process > li:nth-child(5) { animation-delay: .32s; } .hero-copy > * { animation: reveal-rise .6s ease both; } .hero-copy > *:nth-child(1) { animation-delay: .05s; } .hero-copy > *:nth-child(2) { animation-delay: .15s; } .hero-copy > *:nth-child(3) { animation-delay: .25s; } .hero-copy > *:nth-child(4) { animation-delay: .35s; } .hero-form { animation: reveal-rise .6s ease both; animation-delay: .3s; } }
.card { overflow: hidden; } .card .card-photo { width: calc(100% + 2.5rem); margin: -1.25rem -1.25rem .9rem; aspect-ratio: 3/2; object-fit: cover; display: block; background: var(--line); transition: transform .35s ease; } .card:hover .card-photo { transform: scale(1.05); } @media (prefers-reduced-motion: reduce) { .card .card-photo { transition: none; } .card:hover .card-photo { transform: none; } }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin: 2rem 0; text-align: center; } .stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--brand); font-variant-numeric: tabular-nums; } .stat-label { color: var(--ink-soft); font-size: .95rem; } @media (max-width: 640px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.card-link { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; color: var(--brand); text-decoration: none; margin-top: .35rem; } .card-link::after { content: " 92"; transition: transform .18s ease; display: inline-block; margin-left: .3rem; } .card:hover .card-link::after { transform: translateX(4px); } .card-link:hover, .card-link:focus-visible { text-decoration: underline; }
.map-wrap { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); margin-top: 1rem; } .map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; } .map-wrap { position: relative; } .map-open-link { position: absolute; bottom: .75rem; right: .75rem; background: var(--surface); color: var(--brand); font-weight: 700; font-size: .85rem; padding: .35rem .9rem; border-radius: 999px; box-shadow: var(--shadow); border: 1.5px solid var(--line); text-decoration: none; min-height: 36px; display: inline-flex; align-items: center; } .map-coverage { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; } .map-coverage ellipse { fill: var(--accent); fill-opacity: 0.16; stroke: var(--accent); stroke-width: 0.8; vector-effect: non-scaling-stroke; } .map-coverage-label { position: absolute; top: .75rem; left: .75rem; background: var(--surface); color: var(--ink); font-weight: 700; font-size: .85rem; padding: .35rem .8rem; border-radius: 999px; box-shadow: var(--shadow); border: 1.5px solid var(--accent); }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 1.5rem; list-style: none; padding: 0; max-width: 50rem; } .check-list li { padding-left: 1.7rem; position: relative; } .check-list li::before { content: "¹3"; position: absolute; left: 0; color: var(--accent); font-weight: 800; } .process { list-style: none; counter-reset: step; padding: 0; max-width: 46rem; } .process li { counter-increment: step; position: relative; padding: 0 0 1.5rem 3.2rem; } .process li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0; font-weight: 800; color: var(--brand); font-size: 1.15rem; font-variant-numeric: tabular-nums; } .process li:not(:last-child)::after { content: ""; position: absolute; left: .9rem; top: 2rem; bottom: .3rem; width: 2px; background: var(--line); } .process h3 { margin: 0 0 .25rem; } .stack-list { display: grid; gap: 1rem; grid-template-columns: 1fr; max-width: 50rem; } .stack-list .card { border: none; border-top: none; border-left: 4px solid var(--accent); border-radius: 0 10px 10px 0; box-shadow: none; } .stack-list .card:hover { transform: none; box-shadow: none; } @media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }
.media-list { display: grid; gap: 1.5rem; max-width: 56rem; } .media-list .item { display: grid; grid-template-columns: 220px 1fr; gap: 1.25rem; align-items: center; } .media-list img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 10px; background: var(--line); box-shadow: var(--shadow); } .media-list h3 { margin: 0 0 .3rem; color: var(--brand); } .media-list p { margin: 0; } @media (max-width: 640px) { .media-list .item { grid-template-columns: 1fr; } }
#insulation-types.media-list { max-width: 64rem; } #insulation-types .item { grid-template-columns: 340px 1fr; gap: 1.75rem; } @media (max-width: 780px) { #insulation-types .item { grid-template-columns: 1fr; } }
.hero-video { position: relative; overflow: hidden; background-image: none; } .hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; } .hero-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,27,61,.82), rgba(35,47,102,.78)); z-index: 1; pointer-events: none; } .hero-video .hero-copy { position: relative; z-index: 2; }
.hero-form { background: var(--surface); color: var(--ink); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-lift); } .hero-form h2 { margin-top: 0; color: var(--brand); } .hero-form button { margin-top: .85rem; width: 100%; } .hero-logo { width: 15rem; height: 15rem; border-radius: 24px; background: #ffffff; padding: .7rem; box-shadow: var(--shadow-lift); margin: 0 auto 1.6rem; display: block; } @media (max-width: 640px) { .hero-logo { width: 7rem; height: 7rem; } }
.card { position: relative; } .card .card-link::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius); } .card:has(.card-link) { cursor: pointer; }
