:root {
  color-scheme: light;
  --ink: #171b1f;
  --muted: #5e6873;
  --line: #d9dee5;
  --paper: #f6f4ef;
  --white: #ffffff;
  --red: #b7282e;
  --steel: #28323d;
  --gold: #d7a13b;
  --shadow: 0 20px 60px rgba(23, 27, 31, 0.12);
  --page-gutter: clamp(18px, 4vw, 64px);
  --section-padding-block: clamp(52px, 7vw, 92px);
  --section-padding-inline: var(--page-gutter);
  --card-padding: clamp(20px, 2.4vw, 28px);
  --grid-gap: clamp(14px, 1.8vw, 22px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 28px);
  padding: 12px var(--page-gutter);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 92px;
  height: 70px;
  object-fit: contain;
}

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

.brand small,
.eyebrow,
.quick-info span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: var(--steel);
  font-weight: 700;
}

nav a,
.header-call,
.button {
  text-decoration: none;
}

.header-call {
  color: var(--white);
  background: var(--steel);
  border-radius: 6px;
  padding: 11px 16px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(500px, 58vh, 660px);
  overflow: hidden;
  background: var(--steel);
}

.hero picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 19, 23, 0.84), rgba(15, 19, 23, 0.42), rgba(15, 19, 23, 0.1));
}

.hero-overlay {
  position: relative;
  align-self: center;
  z-index: 1;
  width: min(650px, calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin-left: var(--page-gutter);
  padding-block: clamp(48px, 6vh, 56px);
  color: var(--white);
}

.hero-overlay .eyebrow {
  color: #f0c468;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 900;
}

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

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info div {
  padding: clamp(18px, 2.6vw, 28px) var(--page-gutter);
  background: var(--white);
}

.quick-info strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}

.section {
  padding: var(--section-padding-block) var(--section-padding-inline);
}

.two-column,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.copy {
  font-size: 1.05rem;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.service-card,
figure {
  margin: 0;
  padding: var(--card-padding);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p,
blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  color: var(--white);
  background: var(--steel);
}

.split-band p,
.split-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

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

blockquote {
  font-size: 1.05rem;
}

figcaption {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

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

address {
  margin-top: 24px;
  color: var(--steel);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.contact img,
.contact iframe {
  display: block;
  width: 100%;
  min-height: clamp(360px, 46vw, 620px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 28px);
  padding: 26px var(--page-gutter);
  color: rgba(255, 255, 255, 0.76);
  background: #111519;
}

.site-footer p {
  margin: 0;
  color: inherit;
}

@media (max-width: 980px) {
  :root {
    --section-padding-block: clamp(42px, 8vw, 64px);
    --card-padding: 22px;
    --grid-gap: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-call {
    position: absolute;
    right: var(--page-gutter);
    top: 16px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .quick-info,
  .two-column,
  .split-band,
  .contact,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .image-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 18px;
    --section-padding-block: 38px;
    --card-padding: 18px;
    --grid-gap: 14px;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .brand {
    max-width: calc(100% - 150px);
    gap: 12px;
  }

  .brand-mark {
    width: 72px;
    height: 56px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .header-call {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  nav {
    font-size: 0.95rem;
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-overlay {
    width: auto;
    margin-right: var(--page-gutter);
    padding-block: 36px;
  }

  .hero-actions,
  .contact-actions {
    margin-top: 20px;
  }

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

  .quick-info div {
    padding-block: 16px;
  }

  .contact iframe {
    min-height: 320px;
  }

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