:root {
  --ink: #151a20;
  --muted: #5b6673;
  --paper: #f7f4ee;
  --white: #ffffff;
  --amber: #f5a524;
  --amber-dark: #c66f09;
  --teal: #0f6f72;
  --charcoal: #222831;
  --line: rgba(21, 26, 32, 0.12);
  --shadow: 0 22px 60px rgba(12, 18, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(10, 15, 20, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.76;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 750;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(245, 165, 36, 0.18);
}

.header-call {
  border-radius: 8px;
  background: var(--amber);
  color: #201303;
  padding: 12px 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(245, 165, 36, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-tow-truck.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13, 17, 22, 0.92), rgba(13, 17, 22, 0.58) 44%, rgba(13, 17, 22, 0.18)),
    linear-gradient(0deg, rgba(13, 17, 22, 0.92), rgba(13, 17, 22, 0.02) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 150px 0 56px;
  margin-left: clamp(18px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--amber);
  color: #201303;
  box-shadow: 0 16px 32px rgba(245, 165, 36, 0.24);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(15, 111, 114, 0.25);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 750;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

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

.intro {
  background: var(--charcoal);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 216px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbfaf7;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.service-card p,
.locations p,
.reviews p {
  color: var(--muted);
}

.work {
  background: var(--charcoal);
  color: var(--white);
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  max-width: none;
}

.work-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0d1116;
}

.photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 16px;
  background: linear-gradient(0deg, rgba(5, 7, 10, 0.86), rgba(5, 7, 10, 0));
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  line-height: 1.25;
}

.locations {
  background:
    linear-gradient(90deg, rgba(15, 111, 114, 0.08), transparent),
    var(--paper);
}

.location-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.service-area {
  border-left: 6px solid var(--teal);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-area strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.service-area ul {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.service-area li + li {
  margin-top: 8px;
}

.reviews {
  background: var(--white);
}

.review-copy .btn {
  margin-top: 10px;
}

.testimonial-list {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fbfaf7;
}

blockquote p {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1rem;
}

cite {
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 6vw, 76px);
  background: var(--charcoal);
  color: var(--white);
}

.contact-strip h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #111419;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 850;
}

.footer-links a {
  color: var(--white);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: block;
  }

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

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 6px;
    padding-top: 10px;
  }

  .site-header.is-open .site-nav a {
    padding: 12px;
  }

  .intro-grid,
  .location-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .work-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .photo-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .contact-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(13, 17, 22, 0.9), rgba(13, 17, 22, 0.6)),
      linear-gradient(0deg, rgba(13, 17, 22, 0.94), rgba(13, 17, 22, 0.18) 58%);
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 116px;
    padding-bottom: 42px;
    margin-left: 16px;
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .hero-points {
    display: grid;
  }

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

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }

  .photo-card-large {
    grid-column: span 1;
  }

  .service-card {
    min-height: auto;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
