:root {
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #d8dee6;
  --panel: #f6f8fb;
  --white: #ffffff;
  --red: #e11f31;
  --red-dark: #b61222;
  --steel: #dbe3ea;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0));
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-solid,
.site-header:focus-within {
  border-color: rgba(216, 222, 230, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 700;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0.74;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: currentColor;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus {
  opacity: 1;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: currentColor;
  background: transparent;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.92) 0%, rgba(8, 13, 22, 0.78) 32%, rgba(8, 13, 22, 0.2) 70%),
    linear-gradient(0deg, rgba(8, 13, 22, 0.5), rgba(8, 13, 22, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 128px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff5b68;
}

.hero-copy {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 900;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus {
  background: var(--red-dark);
}

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

.contact .button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 58px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.36);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 20px;
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 900;
}

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

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-grid a {
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.16s ease;
}

.quick-grid a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-grid a:hover,
.quick-grid a:focus {
  background: rgba(255, 255, 255, 0.08);
}

.quick-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-grid strong {
  display: block;
  margin-top: 8px;
}

.section {
  padding: 96px 0;
}

.intro-grid,
.inspection-grid,
.reviews-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.intro-grid p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

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

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

.service-card,
.rating-card,
.review-points,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 220px;
  padding: 24px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.service-card-cta {
  color: var(--white);
  background: var(--ink);
}

.service-card-cta span,
.service-card-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.service-card-cta a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.inspection {
  background:
    linear-gradient(120deg, rgba(225, 31, 49, 0.1), rgba(219, 227, 234, 0.24)),
    var(--white);
}

.inspection-panel {
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow);
}

.inspection-panel .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.inspection-panel p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
}

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

.inspection-list div {
  padding: 26px;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.inspection-list strong,
.inspection-list span,
.review-points strong,
.review-points span {
  display: block;
}

.inspection-list span,
.review-points span {
  margin-top: 6px;
  color: var(--muted);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .eyebrow {
  color: #ff5b68;
}

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

.process-grid div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.process-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.reviews-grid {
  grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
  align-items: stretch;
}

.reviews-grid > div:first-child p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.rating-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.rating-number {
  color: var(--red);
  font-size: 5.8rem;
  font-weight: 950;
  line-height: 0.92;
}

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

.review-points {
  display: grid;
  gap: 0;
}

.review-points div {
  padding: 22px;
}

.review-points div + div {
  border-top: 1px solid var(--line);
}

.faq {
  background: var(--panel);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  padding: 96px 0;
  background: var(--white);
}

.contact-copy > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hours-box {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.hours-box h3 {
  margin-bottom: 14px;
}

.hours-box dl {
  margin: 0;
}

.hours-box div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.hours-box dt,
.hours-box dd {
  margin: 0;
}

.hours-box dt {
  color: var(--ink-soft);
  font-weight: 800;
}

.hours-box dd {
  text-align: right;
  font-weight: 900;
}

.hours-box p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, auto) minmax(0, auto);
  align-items: center;
  gap: 28px;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--white);
  font-weight: 800;
}

.copyright {
  text-align: right;
}

@media (max-width: 980px) {
  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 12vw, 5.7rem);
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  body.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px;
    border-radius: var(--radius);
  }

  .site-nav a:hover,
  .site-nav a:focus {
    background: var(--panel);
  }

  .hero-facts,
  .quick-grid,
  .service-grid,
  .process-grid,
  .intro-grid,
  .inspection-grid,
  .reviews-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div + div,
  .quick-grid a,
  .quick-grid a:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quick-grid a:first-child {
    border-top: 0;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .site-header {
    background: rgba(17, 24, 39, 0.9);
  }

  .site-header.is-solid,
  .site-header:focus-within {
    background: rgba(255, 255, 255, 0.98);
  }

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

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 13, 22, 0.92), rgba(8, 13, 22, 0.64)),
      linear-gradient(0deg, rgba(8, 13, 22, 0.58), rgba(8, 13, 22, 0.18));
  }

  .hero-content {
    padding: 118px 0 42px;
  }

  .hero-copy {
    margin-top: 18px;
  }

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

  .button {
    width: 100%;
  }

  .section,
  .contact {
    padding: 70px 0;
  }

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

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

  .inspection-panel {
    padding: 28px;
  }

  .hours-box div {
    display: block;
  }

  .hours-box dd {
    margin-top: 4px;
    text-align: left;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}
