:root {
  --blue: #004aad;
  --blue-dark: #003b8c;
  --navy: #0f1e3a;
  --red: #ff3131;
  --red-dark: #de2020;
  --white: #ffffff;
  --gray: #f5f7fa;
  --blue-tint: #d6e8ff;
  --line: #dde5ee;
  --text: #17253d;
  --muted: #617087;
  --shadow: 0 24px 70px rgba(15, 30, 58, 0.16);
  --radius: 8px;
  --max: 1180px;
  font-family: "Open Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(0, 74, 173, 0.2);
}

.icon-badge-soft {
  color: var(--blue);
  background: var(--blue-tint);
  box-shadow: none;
}

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

a {
  color: inherit;
}
.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 229, 238, 0.9);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  display: block;
  width: 196px;
  height: auto;
  aspect-ratio: 1404 / 293;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.desktop-nav a,
.nav-dropdown-trigger,
.mobile-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 10px 9px;
  border-radius: var(--radius);
}

.desktop-nav a:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.mobile-menu a:hover {
  color: var(--navy);
  background: var(--gray);
}

.mobile-menu .btn-urgent,
.mobile-menu .btn-urgent:hover {
  color: var(--white);
}

.mobile-menu .btn-primary,
.mobile-menu .btn-primary:hover {
  color: var(--white);
  background: var(--blue);
}

.mobile-menu .btn-primary,
.mobile-menu .btn-urgent {
  width: 100%;
  margin-top: 6px;
}

.mobile-menu .mobile-sub-link {
  padding-left: 28px;
  color: var(--navy);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 800;
  white-space: nowrap;
}

.phone-button {
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  padding: 11px 17px;
  box-shadow: 0 12px 26px rgba(255, 49, 49, 0.22);
}

.phone-button:hover {
  background: var(--red-dark);
}

.menu-button {
  display: none;
  border: 0;
  background: var(--gray);
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 20px;
  text-decoration: none;
  font: 800 14px/1 "Open Sans", system-ui, sans-serif;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 74, 173, 0.26);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-urgent {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(255, 49, 49, 0.28);
}

.btn-urgent:hover {
  background: var(--red-dark);
}

.btn-outline-light {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.btn-large {
  padding: 16px 25px;
}

.hero-section {
  position: relative;
  min-height: 680px;
  padding: 118px 0 92px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 30, 58, 0.94), rgba(15, 30, 58, 0.78) 44%, rgba(15, 30, 58, 0.42)),
    linear-gradient(180deg, rgba(15, 30, 58, 0.22), rgba(15, 30, 58, 0.8));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 58px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

h1,
h2,
h3 {
  font-family: Poppins, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  max-width: 840px;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
}

h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-section-contact-compact {
  min-height: 360px;
  padding: 106px 0 60px;
}

.hero-section-contact-compact .hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 30, 58, 0.94), rgba(15, 30, 58, 0.76) 58%, rgba(15, 30, 58, 0.5)),
    linear-gradient(180deg, rgba(15, 30, 58, 0.14), rgba(15, 30, 58, 0.64));
}

.hero-section-contact-compact .hero-grid {
  grid-template-columns: minmax(0, 760px);
  gap: 0;
}

.hero-section-contact-compact .hero-copy {
  max-width: 760px;
}

.hero-section-contact-compact h1 {
  max-width: 760px;
  font-size: 2.875rem;
}

.hero-section-contact-compact .hero-copy p {
  max-width: 720px;
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card h2 {
  margin-top: 16px;
  font-size: 1.5rem;
  color: var(--white);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-tint);
  text-decoration: none;
  font-weight: 800;
}

.work-button {
  margin-top: 26px;
}

.hero-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-red {
  color: #ff8b8b;
}

.eyebrow-brand-red {
  color: var(--red) !important;
}

.hero-section .eyebrow-light {
  color: var(--red);
}

.eyebrow-brand-blue {
  color: var(--blue) !important;
}

.eyebrow-white {
  color: var(--white) !important;
}

.eyebrow-spaced {
  margin-bottom: 22px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 30, 58, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.875rem;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item .icon {
  color: var(--blue);
  width: 24px;
  height: 24px;
}

.section {
  padding: 96px 0;
}

.section-gray {
  background: var(--gray);
}

.services-overview-section {
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.split .btn {
  margin-top: 14px;
}

.lead,
.section-heading p {
  color: var(--muted);
  font-size: 1.0625rem;
  margin: 18px 0 0;
}

.section-heading {
  max-width: var(--max);
  margin-bottom: 36px;
}

.section-heading > h2,
.section-heading > p {
  max-width: 760px;
}

.section-heading p.eyebrow-spaced {
  margin: 0 0 22px;
}

.section-heading .eyebrow,
.split .eyebrow,
.area-band .eyebrow {
  color: var(--red);
}

.dark-panel .eyebrow-red {
  color: #ff8b8b;
}

.final-cta .eyebrow-light,
.final-cta .eyebrow-red {
  color: var(--white) !important;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 700;
  text-align: left;
}

.check-list li span {
  display: block;
  text-align: left;
}

.check-list-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 0 24px;
}

.check-list .icon-check {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-top: 2px;
  padding: 4px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  stroke-width: 2.4;
}

.image-check-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  background: url("../assets/images/siding/hero/finished-siding.webp") center / cover;
  box-shadow: 0 18px 50px rgba(15, 30, 58, 0.18);
}

.roofing-check-panel {
  background: url("../assets/images/roofing/gallery/roof-9.webp") center / cover;
}

.siding-check-panel {
  background: url("../assets/images/roofing/gallery/repaired-roof-3.webp") 78% 62% / 145% auto no-repeat;
}

.gutters-check-panel {
  background: url("../assets/images/gutters/gallery/gutters2.webp") center / cover;
}

.storm-check-panel {
  background: url("../assets/images/storm-damage-insurance-claims/detail/roof-damage-close-up.webp") center / cover;
}

.windows-check-panel {
  background: url("../assets/images/windows/gallery/window2.webp") center / cover;
}

.image-check-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 58, 0.02), rgba(15, 30, 58, 0.22));
}

.image-check-panel .check-list {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0;
  padding: 28px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(15, 30, 58, 0.78);
  box-shadow: 0 18px 42px rgba(15, 30, 58, 0.28);
}

.image-check-panel .check-list li {
  color: var(--white);
}

.image-check-panel .check-list .icon-check {
  color: var(--blue);
  background: var(--white);
}

.copy-stack {
  color: var(--muted);
  font-size: 1.0625rem;
}

.copy-stack p,
.section p {
  text-align: left;
}

.copy-stack p:first-child,
.section article p:first-child {
  margin-top: 0;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 30, 58, 0.08);
}

.content-card h3 {
  margin-top: 18px;
}

.content-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.service-detail-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

.text-link-blue,
.related-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link-blue {
  margin-top: auto;
  padding-top: 18px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-links-intro {
  margin-bottom: 18px;
}

.related-link {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(15, 30, 58, 0.06);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 30, 58, 0.14);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(0, 74, 173, 0.12);
  font-family: Georgia, serif;
  font-size: 5.75rem;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.96875rem;
  line-height: 1.65;
}

.testimonial-card p::before {
  content: "\201C";
}

.testimonial-card p::after {
  content: "\201D";
}

.testimonial-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 0.9375rem;
}

.two-list-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.two-list-panel h3 + .check-list {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 30, 58, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-card {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: var(--radius);
}

.service-card p,
.mini-card p,
.process-card p,
.review-placeholder p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 0.90625rem;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.875rem;
}

.product-hero .hero-bg {
  background-position: center 42%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 30, 58, 0.08);
}

.product-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%);
  border-bottom: 4px solid var(--brand-red);
}

.product-logo-box img {
  display: block;
  width: min(100%, 400px);
  height: 130px;
  object-fit: contain;
}

.product-logo-wide img {
  width: min(100%, 400px);
}

.product-card-body {
  padding: 26px;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-card p {
  color: var(--muted);
  font-size: 0.96875rem;
}

.product-card p + p {
  margin-top: 12px;
}

.inline-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.inline-link:hover {
  color: var(--brand-red);
}

.malarkey-hero .hero-bg {
  background-position: center 35%;
}

.product-logo-card img {
  display: block;
  width: min(100%, 400px);
  height: 130px;
  margin-bottom: 22px;
  object-fit: contain;
}

.video-embed {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.malarkey-video-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
}

.malarkey-video {
  width: 100%;
}

.brava-hero .hero-bg {
  background-position: center 45%;
}

.brava-video-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
}

.brava-video {
  width: 100%;
}

.lp-hero .hero-bg {
  background-position: center 45%;
}

.lp-video-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
}

.lp-video {
  width: 100%;
}

.lp-logo-card img {
  width: min(100%, 430px);
}

.velux-hero .hero-bg {
  background-position: center 45%;
}

.velux-logo-card img {
  width: min(100%, 320px);
}

.velux-hero-certified-logo img {
  width: min(100%, 190px);
  height: auto;
}

.product-logo-certified img {
  width: min(100%, 210px);
  height: 210px;
}

.velux-photo-grid,
.velux-products-grid {
  display: grid;
  gap: 18px;
}

.velux-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.velux-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 30, 58, 0.1);
}

.velux-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.velux-products-grid .service-card {
  padding: 28px;
}

.velux-products-grid .service-card h3 {
  margin: 0;
}

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

.velux-certified-card img {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.brava-collection-grid,
.brava-photo-grid {
  display: grid;
  gap: 18px;
}

.brava-collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brava-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brava-collection-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 30, 58, 0.08);
}

.brava-collection-card img,
.brava-photo-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.brava-collection-card img {
  aspect-ratio: 4 / 3;
}

.brava-collection-card h3 {
  padding: 18px 20px 20px;
  color: var(--navy);
  font-size: 1.25rem;
}

.brava-photo-grid img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 30, 58, 0.1);
}

.malarkey-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  gap: 16px;
}

.malarkey-photo-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 30, 58, 0.1);
}

.certification-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 30, 58, 0.08);
}

.certification-panel p {
  color: var(--muted);
}

.copy-match-list li {
  color: var(--muted);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
}

.copy-match-list .icon-check {
  margin-top: 4px;
}

.check-list-light li {
  color: rgba(255, 255, 255, 0.84);
}

.check-list-light .icon-check {
  color: var(--blue);
  background: var(--white);
}

.check-list-light.check-list-red .icon-check {
  color: var(--white);
  background: var(--red);
}

.hero-card a.card-cta-red {
  color: var(--red);
}

.dark-panel {
  background: var(--navy);
  color: var(--white);
}

.dark-panel h2,
.final-cta h2 {
  color: var(--white);
}

.dark-panel p,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-stack figure {
  position: relative;
  margin: 0;
}

.image-stack figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  min-width: 78px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font: 800 12px/1 "Open Sans", system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(255, 49, 49, 0.28);
}

.image-stack img,
.feature-photo img,
.preview-mosaic img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 30, 58, 0.18);
}

.image-stack img {
  aspect-ratio: 3 / 4;
}

.feature-photo img {
  aspect-ratio: 4 / 3;
}

.siding-work-split {
  align-items: center;
}

.siding-work-strip {
  width: 100%;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  box-shadow: 0 14px 34px rgba(15, 30, 58, 0.1);
}

.storm-help-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.storm-help-grid h2 {
  margin-bottom: 30px;
}

.storm-help-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 30, 58, 0.18);
}

.storm-help-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.storm-help-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(100% - 56px, 360px);
  padding: 22px 24px;
  background: rgba(15, 30, 58, 0.86);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.storm-help-badge strong,
.storm-help-badge span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

.storm-help-badge strong {
  font-size: 1.25rem;
}

.storm-help-badge span {
  margin-top: 6px;
  font-size: 1rem;
}

.process-section,
.why-choose-section,
.service-area-section {
  position: relative;
  overflow: hidden;
}

.process-section > .wrap,
.why-choose-section > .wrap,
.service-area-section > .wrap {
  position: relative;
  z-index: 1;
}

.roof-vector-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(135deg, transparent 44%, rgba(15, 30, 58, 0.05) 44% 46%, transparent 46%),
    linear-gradient(45deg, transparent 44%, rgba(15, 30, 58, 0.045) 44% 46%, transparent 46%),
    repeating-linear-gradient(0deg, rgba(15, 30, 58, 0.035) 0 2px, transparent 2px 54px);
  background-size: 180px 120px, 180px 120px, 100% 54px;
}

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

.photo-overlay-bg,
.service-area-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.photo-overlay-bg {
  background-image:
    linear-gradient(90deg, rgba(15, 30, 58, 0.93), rgba(15, 30, 58, 0.76)),
    url("../assets/images/siding/hero/finished-siding.webp");
}

.photo-overlay-bg-roofing {
  background-image:
    linear-gradient(90deg, rgba(15, 30, 58, 0.94), rgba(15, 30, 58, 0.78)),
    url("../assets/images/roofing/card/residential-roofing-2.webp");
}

.why-choose-section h2,
.why-choose-section .lead {
  color: var(--white);
}

.why-choose-section .lead {
  color: rgba(255, 255, 255, 0.78);
}

.why-choose-section .mini-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}

.review-callout-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 255px;
  overflow: hidden;
  border-top: 5px solid var(--red);
  box-shadow: 0 18px 46px rgba(15, 30, 58, 0.14);
}

.review-callout-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(0, 74, 173, 0.12);
  font-family: Georgia, serif;
  font-size: 5.75rem;
  line-height: 1;
}

.review-callout-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.96875rem;
  line-height: 1.65;
}

.review-callout-card p::before {
  content: "\201C";
}

.review-callout-card p::after {
  content: "\201D";
}

.review-callout-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 0.9375rem;
}

.process-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.storm-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card,
.mini-card,
.review-placeholder,
.quote-panel,
.area-band {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 30, 58, 0.08);
}

.why-choose-section .review-callout-card {
  border-top: 5px solid var(--red);
}

.process-card h3 {
  margin-top: 20px;
}

.storm-process-grid .process-card {
  padding: 24px;
}

.storm-process-grid .process-card h3 {
  font-size: 1.12rem;
}

.windows-process-heading {
  margin-bottom: 24px;
}

.windows-process-heading h2 {
  max-width: 980px;
}

.area-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 30, 58, 0.08);
}

.area-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.25rem;
}

.area-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-link-panel {
  display: grid;
  gap: 12px;
}

.service-link-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.service-link-panel a::after {
  content: ">";
  color: var(--brand-red);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 30, 58, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.mini-card h3 {
  margin-top: 18px;
}

.mini-card .icon-badge {
  width: 50px;
  height: 50px;
}

.mini-card .icon {
  width: 24px;
  height: 24px;
}

.review-placeholder .icon-badge {
  margin-bottom: 18px;
}

.preview-mosaic,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.preview-mosaic img {
  aspect-ratio: 1 / 1;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.area-band {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
}

.area-band p {
  max-width: 920px;
  color: var(--muted);
}

.service-area-section {
  background: var(--navy);
}

.service-area-bg {
  background-image:
    linear-gradient(90deg, rgba(15, 30, 58, 0.92), rgba(15, 30, 58, 0.74)),
    url("../assets/images/storm-damage-insurance-claims/process/roof-worked-on.webp");
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card,
.contact-cards a,
.contact-cards > div {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px 18px;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(0, 74, 173, 0.16);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 30, 58, 0.08);
}

.contact-cards a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 74, 173, 0.28);
  box-shadow: 0 18px 38px rgba(15, 30, 58, 0.12);
}

.contact-card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 74, 173, 0.22);
}

.contact-card-icon .icon {
  width: 21px;
  height: 21px;
}

.contact-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.quote-panel {
  padding: 18px;
}

.quote-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 16px;
}

.quote-panel-head .icon {
  color: var(--blue);
}

.form-embed {
  height: 1095px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray);
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 1095px;
  border: 0;
}

.review-placeholder {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: start;
  border-style: dashed;
}

.review-placeholder-full {
  min-height: 420px;
  width: 100%;
}

.final-cta {
  padding: 74px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 74, 173, 0.94), rgba(15, 30, 58, 0.98)),
    var(--navy);
}

.final-cta .btn-urgent {
  min-width: 190px;
}

.final-cta .btn-white {
  min-width: 190px;
  color: #111827;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.24);
}

.final-cta .btn-white:hover {
  background: var(--gray);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.footer {
  padding: 46px 0 70px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy);
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 1.02fr 0.86fr;
  align-items: start;
  gap: 28px;
}

.footer img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer p {
  max-width: 360px;
  margin: 0;
  font-size: 0.84375rem;
}

.footer p.footer-license {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78125rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer h3 {
  color: var(--white);
  font-size: 0.875rem;
  margin: 0 0 10px;
}

.footer a,
.footer span {
  display: block;
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84375rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer .footer-social-link .icon {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.footer .footer-social-link span {
  display: inline;
  margin: 0;
}

.footer-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.narrow {
  max-width: 820px;
}

.privacy-copy article {
  padding-top: 28px;
}

.privacy-copy h2 {
  font-size: 1.5rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu.open {
    display: grid;
    gap: 4px;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px 20px 22px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(15, 30, 58, 0.12);
  }

  .mobile-menu a:nth-child(n+2):nth-child(-n+6) {
    padding-left: 28px;
    color: var(--navy);
  }

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

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

  .malarkey-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brava-collection-grid,
  .brava-photo-grid,
  .velux-photo-grid,
  .velux-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid .quote-panel {
    order: -1;
  }

  .siding-work-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .nav-actions {
    display: flex;
    margin-left: auto;
    gap: 8px;
  }

  .nav-actions .phone-link {
    display: none;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 12px 16px;
    font-size: 0.8125rem;
  }

  .menu-button {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 176px;
  }

  .hero-section {
    min-height: auto;
    padding: 86px 0 54px;
  }

  .hero-section-contact-compact {
    padding: 92px 0 42px;
  }

  .hero-section-contact-compact h1 {
    font-size: 2.125rem;
  }

  .hero-grid {
    gap: 30px;
  }

  .siding-work-split {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .proof-grid,
  .process-grid,
  .trust-grid,
  .area-card-grid,
  .area-service-grid,
  .service-grid,
  .content-card-grid,
  .service-page-grid,
  .storm-help-grid,
  .related-links,
  .testimonial-grid,
  .gallery-grid,
  .preview-mosaic,
  .image-stack,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .malarkey-photo-grid {
    grid-template-columns: 1fr;
  }

  .brava-collection-grid,
  .brava-photo-grid,
  .velux-photo-grid,
  .velux-products-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-grid .quote-panel {
    order: -1;
  }

  .contact-grid,
  .quote-panel {
    min-width: 0;
  }

  .mobile-cta {
    position: sticky;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
    box-shadow: 0 -12px 30px rgba(15, 30, 58, 0.22);
  }

  .mobile-cta a {
    min-height: 56px;
    display: grid;
    place-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 800;
    text-align: center;
    padding: 8px;
  }

  .mobile-cta a:first-child {
    background: var(--red);
  }

  .footer {
    padding-bottom: 92px;
  }

  .form-embed {
    height: auto;
    min-height: 1095px;
    overflow: visible;
  }

  .form-embed iframe {
    height: 1095px !important;
    min-height: 1095px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


.review-widget-embed {
  width: 100%;
  min-height: 360px;
}

.review-widget-embed .lc_reviews_widget {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  background: var(--white);
}

.review-widget-embed-full .lc_reviews_widget {
  min-height: 520px;
}

.footer-address-link {
  max-width: 260px;
}

@media (max-width: 760px) {
  .review-widget-embed .lc_reviews_widget {
    min-height: 480px;
  }

  .review-widget-embed-full .lc_reviews_widget {
    min-height: 560px;
  }
}
