* {
  box-sizing: border-box;
}

:root {
  --ink: #111827;
  --navy: #0b1d35;
  --blue: #0b72f0;
  --red: #a91518;
  --steel: #566070;
  --line: #dce2ea;
  --paper: #ffffff;
  --mist: #f3f6f9;
  --warm: #f8f3ed;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 90px;
  padding: 12px clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: min(220px, 46vw);
  height: auto;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a,
.header-cta,
.button {
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.nav a.active {
  color: var(--red);
}

.nav a:hover,
.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta,
.button,
.quote-form button {
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta {
  padding: 14px 18px;
  background: var(--red);
  color: var(--paper);
  font-size: 13px;
}

.hero {
  min-height: calc(100vh - 90px);
  max-height: 820px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
  display: flex;
  align-items: end;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 20, 35, .96), rgba(8, 20, 35, .72) 54%, rgba(8, 20, 35, .38)),
    url("https://wallpapercat.com/w/full/e/b/b/1410331-3840x2160-desktop-4k-charlotte-nc-skyline-background-image.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: #ffdadb;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 22px;
}

.primary {
  background: var(--red);
  color: var(--paper);
}

.dark {
  background: var(--navy);
  color: var(--paper);
}

.light {
  background: var(--paper);
  color: var(--navy);
}

.secondary {
  border: 2px solid rgba(255, 255, 255, .72);
  color: var(--paper);
}

.intro,
.coverage,
.proof {
  max-width: 1180px;
  margin: 0 auto;
}

.intro {
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro > p,
.coverage-copy p,
.section-heading p,
.proof p,
.contact-copy p {
  margin: 0;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.7;
}

.section {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
}

.service-section {
  background: var(--mist);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

.centered {
  text-align: center;
}

.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(17, 24, 39, .06);
}

.service-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  font-size: 22px;
  font-weight: 900;
}

.service-card h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--steel);
  line-height: 1.6;
}

.coverage {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.coverage-copy p {
  margin-top: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.coverage-list span {
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: var(--warm);
  color: var(--navy);
  font-weight: 900;
}

.coverage-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.coverage-board div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
}

.coverage-board h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 26px;
}

.coverage-board span {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(11, 29, 53, .14);
  color: var(--navy);
  font-weight: 900;
}

.work {
  background: #101820;
  color: var(--paper);
}

.work h2 {
  color: var(--paper);
}

.work .section-heading p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .7);
}

.gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  min-height: 360px;
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -180px 120px rgba(0, 0, 0, .58);
}

.photo-card.install {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80");
}

.photo-card.retail {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=80");
}

.photo-card.land {
  background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=900&q=80");
}

.photo-card.industrial {
  background-image: url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=900&q=80");
}

.photo-card.development {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=80");
}

.photo-card.removal {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80");
}

.photo-card span {
  color: #ffdadb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card strong {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.1;
}

.proof {
  padding: 34px clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof div {
  padding: 26px;
  border-bottom: 4px solid var(--red);
  background: var(--mist);
  border-radius: 8px;
}

.proof strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.proof p {
  margin-top: 8px;
}

.contact {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 78px);
  background: var(--navy);
  color: var(--paper);
}

.contact-page {
  min-height: calc(100vh - 90px);
  align-items: center;
}

.contact h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.contact h2 {
  color: var(--paper);
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 6px;
  color: var(--paper);
  font-weight: 800;
}

.contact-address {
  font-weight: 800;
}

.location-map {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(28px, 5vw, 58px);
  background: var(--mist);
}

.location-copy {
  width: 100%;
  max-width: 440px;
  min-height: 440px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 46px rgba(17, 24, 39, .08);
}

.location-copy h2 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 54px);
}

.location-copy p {
  color: var(--steel);
  font-size: 18px;
  line-height: 1.7;
}

.location-copy .button {
  margin-top: 18px;
}

.online-map {
  width: 100%;
  max-width: 440px;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 46px rgba(17, 24, 39, .12);
}

.online-map iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  border: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
}

.order-card h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
}

.order-card p {
  margin: 22px 0 0;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.7;
}

.order-card .button {
  margin-top: 26px;
}

.order-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.order-list li {
  padding-left: 28px;
  position: relative;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.order-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form label:nth-child(4),
.quote-form label:nth-child(5),
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  min-height: 132px;
  resize: vertical;
}

.quote-form button {
  min-height: 54px;
  border: 0;
  background: var(--red);
  color: var(--paper);
  cursor: pointer;
}

footer {
  padding: 28px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #050b12;
  color: rgba(255, 255, 255, .72);
}

footer img {
  width: 160px;
  height: auto;
}

footer p {
  margin: 0;
  text-align: right;
  line-height: 1.5;
}

.page-hero {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 64px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 20, 35, .96), rgba(8, 20, 35, .72)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.map-hero {
  background:
    linear-gradient(90deg, rgba(8, 20, 35, .94), rgba(8, 20, 35, .68) 48%, rgba(8, 20, 35, .24)),
    url("assets/carolinas-map.svg");
  background-size: cover;
  background-position: center;
}

.coverage-hero {
  background:
    linear-gradient(90deg, rgba(8, 20, 35, .96), rgba(8, 20, 35, .74) 48%, rgba(8, 20, 35, .24)),
    url("assets/hero-coverage-truck-highway.jpg");
  background-size: cover;
  background-position: center;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(8, 20, 35, .96), rgba(8, 20, 35, .74) 48%, rgba(8, 20, 35, .28)),
    url("assets/hero-services-lift.jpg");
  background-size: cover;
  background-position: center;
}

.work-hero {
  background:
    linear-gradient(90deg, rgba(8, 20, 35, .97), rgba(8, 20, 35, .78) 48%, rgba(8, 20, 35, .34)),
    url("assets/hero-work-collage.jpg");
  background-size: cover;
  background-position: center;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(8, 20, 35, .96), rgba(8, 20, 35, .72) 48%, rgba(8, 20, 35, .24)),
    url("assets/hero-about-building.jpg");
  background-size: cover;
  background-position: center;
}

.coverage-hero::after {
  display: none;
}

.coverage-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact {
  min-height: 420px;
  padding-top: clamp(88px, 12vw, 136px);
  display: grid;
  align-content: center;
}

.page-hero .eyebrow {
  color: #ffdadb;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 5.8vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.6;
}

.page-section {
  margin-top: 0;
}

.detail-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid article,
.process-list div {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(17, 24, 39, .05);
}

.detail-grid span {
  color: var(--red);
  font-weight: 900;
}

.detail-grid h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.detail-grid p,
.process-list p,
.info-band p,
.cta-band p {
  color: var(--steel);
  font-size: 18px;
  line-height: 1.7;
}

.process {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
  background: var(--mist);
}

.materials-section {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
  background: var(--mist);
}

.materials-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.material-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(17, 24, 39, .06);
}

.material-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.material-card div {
  padding: 24px;
}

.material-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}

.material-card p {
  margin: 0;
  color: var(--steel);
  line-height: 1.6;
}

.capabilities-section {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
  background: var(--paper);
}

.capability-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.capability-grid strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.capability-grid p {
  margin: 12px 0 0;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.6;
}

.service-standards {
  padding: clamp(52px, 7vw, 82px) clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  background: var(--navy);
  color: var(--paper);
}

.service-standards h2 {
  color: var(--paper);
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.standard-list article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.standard-list strong {
  display: block;
  color: var(--paper);
  font-size: 22px;
}

.standard-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.65;
}

.process-list {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-list strong {
  color: var(--navy);
  font-size: 22px;
}

.large-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-work {
  background: #101820;
}

.work-gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.work-card div {
  padding: 18px;
}

.work-card span {
  display: block;
  color: #ffdadb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card strong {
  display: block;
  margin-top: 7px;
  color: var(--paper);
  font-size: 20px;
  line-height: 1.18;
}

.info-band,
.cta-band {
  padding: clamp(52px, 7vw, 82px) clamp(20px, 5vw, 64px);
  text-align: center;
}

.info-band {
  background: var(--mist);
}

.info-band h2,
.cta-band h2 {
  margin: 0 auto;
  max-width: 820px;
}

.info-band p,
.cta-band p {
  max-width: 760px;
  margin: 16px auto 0;
}

.cta-band {
  background: var(--navy);
  color: var(--paper);
}

.cta-band h2 {
  color: var(--paper);
}

.cta-band .button {
  margin-top: 26px;
}

.cta-band .contact-line {
  color: rgba(255, 255, 255, .82);
}

.cta-band .contact-line a {
  color: var(--paper);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-self: center;
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .intro,
  .coverage,
  .contact,
  .location-map,
  .service-standards {
    grid-template-columns: 1fr;
  }

  .location-copy,
  .online-map {
    justify-self: center;
    max-width: min(100%, 440px);
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .materials-grid,
  .capability-grid,
  .gallery,
  .work-gallery,
  .proof,
  .detail-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .gallery .photo-card:last-child,
  .proof div:last-child,
  .process-list div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .header-cta {
    padding: 12px 14px;
    font-size: 12px;
  }

  .nav {
    gap: 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .service-grid,
  .coverage-list,
  .coverage-board,
  .materials-grid,
  .capability-grid,
  .gallery,
  .work-gallery,
  .proof,
  .quote-form,
  .detail-grid,
  .process-list,
  .standard-list {
    grid-template-columns: 1fr;
  }

  .gallery .photo-card:last-child,
  .proof div:last-child,
  .process-list div:last-child {
    grid-column: auto;
  }

  .photo-card {
    min-height: 280px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  footer p {
    text-align: center;
  }
}
