:root {
  --ink: #101a27;
  --muted: #56616f;
  --navy: #101c2d;
  --blue: #198fc5;
  --blue-dark: #0874a7;
  --yellow: #f5c936;
  --green: #2d805f;
  --paper: #ffffff;
  --mist: #f1f6f8;
  --line: #dbe4e8;
  --shadow: 0 16px 38px rgba(16, 28, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.brand img {
  width: 142px;
  height: 52px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.header-call,
.mobile-nav a {
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--yellow);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown > button svg {
  width: 15px;
  height: 15px;
}

.dropdown-menu {
  position: absolute;
  top: 34px;
  left: -18px;
  min-width: 230px;
  display: none;
  padding: 8px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.nav-dropdown.is-open .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  padding: 9px 10px;
  border-radius: 4px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  color: var(--blue-dark);
  background: var(--mist);
}

.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: white;
  background: var(--blue);
  border-radius: 6px;
  font-weight: 800;
}

.header-call:hover {
  background: var(--blue-dark);
}

.header-call svg,
.button svg,
.text-link svg,
.service-body a svg,
.footer-bottom svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, 82vh);
  display: flex;
  align-items: center;
  background: url("assets/hero-van.jpg") center 58% / cover no-repeat;
  color: white;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 22, 38, 0.88) 0%, rgba(7, 22, 38, 0.66) 50%, rgba(7, 22, 38, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 60px auto 0;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: white;
  background: var(--blue);
}

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

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  color: var(--navy);
  background: white;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-list svg {
  width: 19px;
  color: var(--yellow);
}

.band {
  padding: 88px 24px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  padding-top: 62px;
  padding-bottom: 62px;
  background: var(--navy);
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}

.section-label {
  color: var(--blue);
}

.intro .section-label {
  color: var(--yellow);
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.13;
  letter-spacing: 0;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.surface-spectrum {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.surface-spectrum li {
  padding: 6px 9px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.services {
  background: var(--mist);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 650px;
}

.text-link,
.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 800;
}

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

.service-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.service-body {
  padding: 28px;
}

.service-body > svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.service-body h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.service-body p {
  min-height: 78px;
  margin: 0 0 18px;
  color: var(--muted);
}

.service-list,
.construction-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.service-list > div,
.construction-services > div {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.service-list svg,
.construction-services svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--blue-dark);
}

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

.specialty-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.specialty-card > div {
  padding: 22px;
}

.specialty-card svg {
  width: 25px;
  height: 25px;
  color: var(--blue-dark);
}

.specialty-card h3 {
  margin: 14px 0 10px;
  font-size: 21px;
}

.specialty-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.specialty-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.additional-services {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  background: var(--navy);
  border-radius: 8px;
}

.additional-services p {
  margin: 0;
  color: white;
  font-weight: 800;
}

.additional-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.additional-services li {
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.results {
  background: white;
}

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

.results-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.results-grid .result-feature {
  grid-column: 1 / -1;
}

.results-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.results-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  color: white;
  background: rgba(16, 28, 45, 0.9);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.why {
  padding-top: 104px;
  padding-bottom: 104px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 76px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image > img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.stat {
  position: absolute;
  right: -20px;
  bottom: -24px;
  min-width: 150px;
  padding: 20px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 30px;
}

.stat span {
  font-size: 14px;
  font-weight: 700;
}

.why-copy > p:not(.section-label) {
  margin: 20px 0 0;
  color: var(--muted);
}

.feature-list {
  margin-top: 30px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-list svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.feature-list span {
  color: var(--muted);
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.construction {
  padding-top: 62px;
  padding-bottom: 62px;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.construction-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: end;
}

.construction-heading p {
  margin: 0;
  color: var(--muted);
}

.construction-heading .section-label {
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.construction-heading h2 {
  font-size: 34px;
}

.construction-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  margin-top: 32px;
  align-items: stretch;
}

.construction-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border-radius: 8px;
}

.construction-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.construction-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: white;
  background: rgba(16, 28, 45, 0.92);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.construction-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.construction-cta {
  margin-top: 22px;
}

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

.reviews {
  padding-top: 76px;
  padding-bottom: 76px;
  background: white;
  border-top: 1px solid var(--line);
}

.reviews-inner {
  max-width: 1180px;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.reviews-heading h2 {
  max-width: 650px;
}

.google-rating {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  min-width: 210px;
  padding-left: 26px;
  border-left: 3px solid var(--yellow);
}

.google-rating strong {
  grid-row: 1 / 3;
  font-size: 42px;
  line-height: 1;
}

.google-rating small {
  color: var(--muted);
  font-weight: 700;
}

.review-stars {
  color: #e3ad00;
  font-size: 17px;
  letter-spacing: 0;
}

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

.review-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.review-card blockquote {
  margin: 18px 0 26px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.review-card p {
  display: grid;
  gap: 2px;
  margin: auto 0 0;
}

.review-card p strong {
  color: var(--ink);
}

.review-card p span {
  color: var(--muted);
  font-size: 13px;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue-dark);
  font-weight: 800;
}

.reviews-link svg {
  width: 17px;
  height: 17px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 74px;
  align-items: start;
}

.quote-copy .section-label {
  color: var(--yellow);
}

.quote-copy > p:not(.section-label) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-lines a,
.contact-lines span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-lines svg {
  width: 19px;
  color: var(--yellow);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  color: var(--ink);
  background: white;
  border-radius: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #273341;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bcc9cf;
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
}

input,
select {
  min-height: 46px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(25, 143, 197, 0.22);
  border-color: var(--blue);
}

.submit-button {
  width: 100%;
}

.form-status {
  display: none;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

footer {
  padding: 54px 24px 22px;
  color: white;
  background: #0a131f;
}

.footer-inner,
.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-inner img {
  width: 150px;
  height: 58px;
  object-fit: contain;
}

.footer-inner p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}

.footer-links svg {
  width: 19px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 10px 18px;
  }

  .brand img {
    width: 125px;
    height: 48px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    z-index: 19;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 12px 18px 18px;
    color: white;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
  }

  .hero {
    min-height: min(680px, 82vh);
  }

  .hero-content {
    width: min(100% - 36px, 620px);
    margin-top: 54px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .trust-list {
    gap: 14px 22px;
  }

  .band {
    padding: 68px 20px;
  }

  .intro-grid,
  .why-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .why-grid,
  .quote-grid {
    gap: 40px;
  }

  h2 {
    font-size: 36px;
  }

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

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

  .review-card {
    min-height: 0;
  }

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

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

  .construction-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

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

  .construction-body {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .service-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-body p {
    min-height: 0;
  }

  .stat {
    right: 16px;
  }

  .footer-inner {
    grid-template-columns: 160px 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .hero {
    min-height: min(650px, 82vh);
    align-items: flex-end;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 32px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
  }

  .google-rating {
    padding-left: 0;
    border-left: 0;
  }

  .service-card {
    display: block;
  }

  .service-list,
  .construction-services {
    grid-template-columns: 1fr;
  }

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

  .service-card > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .results-grid .result-feature {
    grid-column: auto;
  }

  .quote-form {
    padding: 24px 18px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
