:root {
  --ink: #111111;
  --muted: #5f656d;
  --line: #e5e0d8;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --white: #ffffff;
  --red: #9b141b;
  --red-dark: #6d0f14;
  --black: #0b0b0b;
  --gold: #c99542;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(170px, 20vw, 250px);
  height: auto;
}

.brand-mark,
.brand strong,
.brand small {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.site-nav a,
.header-phone,
.site-footer a {
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.header-phone:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-phone {
  justify-self: end;
  color: var(--red-dark);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 7vw, 92px) 56px;
  overflow: hidden;
  background: var(--black);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 48%);
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
  min-width: 0;
  color: var(--white);
}

.hero-logo-card {
  display: none;
}

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

.hero .eyebrow,
.why .eyebrow,
.reviews .eyebrow {
  color: #c92d35;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
}

.quick-facts div {
  padding: 18px;
  background: rgba(0, 0, 0, 0.58);
}

.quick-facts dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  font-weight: 900;
}

.cert-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 14px;
  padding: 28px clamp(20px, 7vw, 92px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.cert-strip article {
  min-height: 128px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  color: var(--black);
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cert-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 20, 27, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.cert-strip strong {
  min-width: 76px;
  min-height: 52px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 2px solid var(--red-dark);
  border-radius: 10px;
  background: var(--white);
  color: var(--red-dark);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.cert-strip article:nth-child(2) strong {
  min-width: 92px;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  font-size: 1.35rem;
}

.cert-strip article:nth-child(3) strong {
  min-width: 118px;
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.cert-strip article:nth-child(4) strong {
  min-width: 94px;
  border-color: var(--black);
  color: var(--black);
}

.cert-strip article:nth-child(5) strong {
  min-width: 86px;
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  font-size: 1.25rem;
}

.cert-strip span {
  max-width: 200px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: clamp(64px, 10vw, 128px) clamp(20px, 7vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(36px, 7vw, 90px);
  background: var(--white);
}

.intro-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child,
.contact-content p:last-child {
  margin-bottom: 0;
}

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

.compact {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 900;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.projects .section-heading {
  max-width: none;
}

.projects .section-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.why {
  background: var(--black);
  color: var(--white);
}

.why .section-heading {
  max-width: none;
}

.why .section-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.reason-list li {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  background: #121212;
  border-top: 4px solid var(--red);
}

.reason-list strong,
.reason-list span {
  display: block;
}

.reason-list strong {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.05rem;
}

.reason-list span {
  color: rgba(255, 255, 255, 0.72);
}

.reviews {
  background:
    radial-gradient(circle at top left, rgba(109, 15, 20, 0.22), transparent 34%),
    var(--black);
  color: var(--white);
}

.reviews-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

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

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

.review-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.featured-review {
  border-top: 6px solid var(--red);
  transform: translateY(-12px);
}

.review-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.stars {
  color: var(--red-dark);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(155, 20, 27, 0.1);
  color: var(--red-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.review-card footer {
  margin-top: auto;
  color: var(--black);
  font-weight: 900;
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.reviews-cta strong,
.reviews-cta span {
  display: block;
}

.reviews-cta strong {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.reviews-cta span {
  color: rgba(255, 255, 255, 0.68);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
  background: var(--white);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-style: normal;
}

.contact-panel strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.contact-panel a {
  color: var(--red-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(20px, 7vw, 92px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer img {
  width: min(220px, 70vw);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

@media (max-width: 1100px) {
  .cert-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .brand-logo {
    width: 180px;
  }

  .menu-toggle {
    display: grid;
  }

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

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .site-header.is-open .site-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

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

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

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

  .featured-review {
    transform: none;
  }
}

@media (max-width: 620px) {
  .projects .section-heading h2 {
    white-space: normal;
  }

  .why .section-heading h2 {
    white-space: normal;
  }

  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 150px;
  }

  .hero {
    min-height: 94vh;
    padding: 118px 18px 34px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .quick-facts,
  .service-grid,
  .reason-list,
  .reviews-grid,
  .cert-strip {
    grid-template-columns: 1fr;
  }

  .cert-strip {
    padding: 22px 18px;
  }

  .cert-strip article {
    min-height: 112px;
  }

  .quick-facts div,
  .service-grid article,
  .reason-list li {
    min-height: auto;
  }

  .section {
    padding: 58px 18px;
  }

  .contact-panel {
    padding: 22px;
  }
}
