:root {
  --red: #c90000;
  --red-bright: #ff1f1f;
  --black: #050505;
  --charcoal: #141414;
  --muted: #666;
  --light: #f6f6f6;
  --white: #fff;
  --silver: #d8d8d8;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 20px 70px rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}

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

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

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-frame {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-frame-nav {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  padding: 5px;
}

.logo-frame-hero {
  width: 100%;
  aspect-ratio: 1;
  padding: 18px;
  border-color: rgba(255, 255, 255, .9);
}

.logo-frame-callout {
  width: 116px;
  height: 116px;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.logo-frame-form {
  width: 132px;
  height: 132px;
  padding: 8px;
  margin-bottom: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.logo-frame-footer {
  width: 150px;
  height: 150px;
  padding: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--red-bright);
}

.nav-call {
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  padding: 8px 14px;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: var(--radius);
  padding: 10px 13px;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
}

.hero,
.page-hero {
  padding: 76px 0;
  background: linear-gradient(135deg, #050505, #151515 52%, #080808);
  color: var(--white);
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 670px;
  color: #e5e5e5;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(201, 0, 0, .35);
}

.btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
}

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

.trust-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.pill-row span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 700;
}

.hero-brand-card {
  position: relative;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 20px;
  color: #111;
  box-shadow: var(--shadow);
}

.compact-brand-card {
  max-width: 520px;
  justify-self: end;
}

.hero-brand-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .4), rgba(201, 0, 0, .6), rgba(255, 255, 255, .2));
  content: "";
}

.quick-card {
  padding: 24px 8px 4px;
  color: var(--white);
}

.quick-card strong {
  display: block;
  font-size: 22px;
}

.quick-card p {
  color: #d8d8d8;
}

.quick-card a {
  color: var(--red-bright);
  font-size: 24px;
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.light {
  background: var(--light);
}

.dark {
  background: #0b0b0b;
  color: var(--white);
}

.split,
.feature-row,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.section h2 {
  font-size: 54px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p {
  color: #555;
}

.dark .section-head p,
.dark p {
  color: #d6d6d6;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.quote-box,
.estimate-form,
details {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.dark .service-card {
  border-color: #2b2b2b;
  background: #171717;
  color: var(--white);
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.check-list {
  padding-left: 20px;
  font-weight: 700;
}

.check-list li {
  margin: 9px 0;
}

.quote-box {
  background: #111;
  color: var(--white);
}

.quote-box p {
  color: #ddd;
}

.branded-callout {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.branded-callout h3,
.branded-callout p {
  margin-top: 0;
}

.red-box {
  background: linear-gradient(135deg, var(--red), #700000);
}

.reverse {
  grid-template-columns: .9fr 1.1fr;
}

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

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

.placeholder {
  display: grid;
  min-height: 190px;
  place-items: center;
  border-bottom: 7px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #171717, #3b3b3b);
  color: var(--white);
  font-weight: 900;
}

.pill-row {
  margin-top: 18px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-proof span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 14px;
  margin: auto;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.contact {
  background: linear-gradient(135deg, #111, #000);
  color: var(--white);
}

.contact-lines {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.contact-lines a:first-child {
  color: var(--red-bright);
}

.estimate-form {
  display: grid;
  gap: 14px;
}

.estimate-form label {
  display: grid;
  gap: 6px;
  color: #111;
  font-weight: 800;
}

.estimate-form input,
.estimate-form textarea,
.estimate-form select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  padding: 13px;
  font: inherit;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #222;
  font-size: 14px;
  font-weight: 800;
}

.hidden {
  display: none;
}

.footer {
  padding: 40px 0 20px;
  background: #050505;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  border-bottom: 1px solid #222;
  padding-bottom: 28px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aaa;
  font-size: 12px;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 8px;
}

.sticky-actions a {
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

@media (max-width: 1080px) {
  .nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 58px;
  }

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

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 88px;
  }

  .logo-frame-nav {
    width: 72px;
    height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #050505;
    padding: 20px 30px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding: 52px 0;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .feature-row,
  .contact-grid,
  .reverse {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .section h2 {
    font-size: 36px;
  }

  .three,
  .four,
  .gallery-grid,
  .large-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .legal {
    display: block;
  }

  .compact-brand-card {
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .lead,
  .contact-lines {
    font-size: 18px;
  }

  .logo-frame-hero {
    padding: 10px;
  }

  .sticky-actions {
    right: 14px;
    bottom: 14px;
    left: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .sticky-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-actions a {
    width: 100%;
    text-align: center;
  }
}
