:root {
  --yellow: #ffc000;
  --yellow-dark: #917300;
  --black: #000000;
  --carbon: #202020;
  --deep: #181818;
  --white: #ffffff;
  --marble: #f5f5f5;
  --steel: #7d7d7d;
  --ash: #969696;
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--carbon);
  font-family: var(--font-display);
  letter-spacing: 0.023em;
  text-transform: uppercase;
}

img,
video {
  display: block;
  width: 100%;
}

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

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 48px;
  background: rgba(32, 32, 32, 0.95);
  color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white);
  color: var(--yellow);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: block;
}

.brand-copy strong,
.header-action,
.btn,
.eyebrow,
.section-link {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: #cfcfcf;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-media-shell,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media-shell {
  z-index: 0;
  background: var(--black);
}

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

.hero-video {
  z-index: 2;
  opacity: 1;
}

.hero-shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 44%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: end;
  min-height: 100vh;
  width: min(calc(100% - 96px), 1440px);
  margin: 0 auto;
  padding: 164px 0 80px;
}

.eyebrow,
.section-kicker,
.kicker {
  margin: 0 0 24px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 600;
  line-height: 0.9;
}

.hero-subhead {
  max-width: 560px;
  margin-top: 32px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.12;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid currentColor;
  background: transparent;
}

.btn-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

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

.btn::after,
.section-link::after {
  content: ">";
  margin-left: 18px;
}

.btn-with-note {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  min-width: 210px;
  padding-block: 10px;
  text-align: left;
}

.btn-with-note::after {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.btn-with-note small {
  color: inherit;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0;
  opacity: 0.75;
  text-transform: none;
}

.urgency-list,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  color: #dedede;
  font-size: 16px;
}

.trust-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--carbon);
  color: var(--white);
  border-top: 1px solid #494949;
  border-bottom: 1px solid #494949;
}

.trust-item {
  min-height: 128px;
  padding: 32px;
  border-right: 1px solid #494949;
}

.trust-item strong {
  display: block;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 10px;
  color: #ddd;
  font-size: 16px;
}

.section {
  padding: 96px 48px;
}

.section-dark {
  background: var(--carbon);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--carbon);
}

.section-gray {
  background: var(--marble);
  color: var(--carbon);
}

.section-inner,
.section > .section-head,
.section > .results-grid,
.section > .service-grid,
.section > .price-list,
.section > .section-note,
.section > .steps,
.section > .reasons-list,
.section > .disclaimer-copy,
.section > .answer-grid,
.section > .contact-card {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head-center {
  display: block;
  max-width: 900px;
  text-align: center;
}

.section-head h2,
.contact-card h2 {
  max-width: 940px;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.95;
}

.section-head p:not(.section-kicker) {
  margin-top: 16px;
  color: var(--steel);
  font-size: 20px;
  line-height: 1.2;
}

.section-dark .section-head p:not(.section-kicker) {
  color: #cfcfcf;
}

.section-link {
  white-space: nowrap;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.result-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.result-job {
  display: none;
}

.result-labels {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.result-labels span {
  width: fit-content;
  padding: 8px 12px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}

.result-labels span:last-child {
  justify-self: end;
  background: var(--yellow);
  color: var(--black);
}

.result-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-pair::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  background: var(--yellow);
}

.result-pair img {
  height: clamp(360px, 30vw, 520px);
  object-fit: cover;
}

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

.service-card,
.price-row,
.answer-item {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--ash);
  background: transparent;
}

.service-card h3,
.answer-item h3,
.price-row span,
.step-card h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.service-card p,
.answer-item p,
.section-note,
.disclaimer-copy,
.service-area-copy,
.contact-phone,
.thank-you-copy {
  margin-top: 18px;
  color: var(--steel);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.price-row {
  display: grid;
  align-content: space-between;
}

.price-row strong {
  color: var(--carbon);
  font-size: 46px;
  font-weight: 600;
  line-height: 0.95;
}

.minimum-row {
  background: var(--carbon);
  color: var(--white);
  border-color: var(--carbon);
}

.minimum-row strong {
  color: var(--yellow);
}

.section-note {
  margin-top: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #494949;
  border-bottom: 1px solid #494949;
}

.step-card {
  min-height: 170px;
  padding: 32px;
  border-right: 1px solid #494949;
}

.step-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 40px;
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--ash);
}

.reason-item {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.disclaimer-section {
  padding-top: 0;
}

.disclaimer-copy {
  margin-top: 0;
  padding: 24px;
  border: 1px solid var(--ash);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.google-map-shell {
  width: min(100%, 1440px);
  height: clamp(380px, 48vw, 620px);
  margin-inline: auto;
  border: 1px solid var(--ash);
  background: var(--carbon);
}

.google-map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.contact-card h2 {
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.92;
}

.contact-card .cta-group {
  justify-content: flex-end;
}

.contact-phone,
.service-area-copy {
  color: #cfcfcf;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 48px;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
}

body[data-page="thank-you"] {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--carbon);
  color: var(--white);
}

.thank-you-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 176px);
  padding: 64px 24px;
}

.thank-you-card {
  width: min(100%, 900px);
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid #494949;
  background: var(--deep);
}

.thank-you-card h1 {
  max-width: 780px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.95;
}

.thank-you-actions {
  margin-top: 32px;
}

.thank-you-copy {
  color: #cfcfcf;
}

body[data-page="thank-you"] .footer {
  border-top: 1px solid #494949;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--carbon);
  border: 1px solid #494949;
}

.sticky-cta .btn {
  min-height: 56px;
  padding: 0 12px;
}

@media (max-width: 980px) {
  .topbar {
    padding-inline: 24px;
  }

  .hero-copy {
    width: min(calc(100% - 40px), 1440px);
  }

  .trust-block,
  .service-grid,
  .price-list,
  .answer-grid,
  .reasons-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 92px;
  }

  .topbar {
    min-height: 58px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-copy {
    width: min(calc(100% - 24px), 1440px);
    padding-top: 132px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 84px);
  }

  .hero-subhead {
    font-size: 22px;
  }

  .hero .cta-group,
  .contact-card .cta-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-with-note {
    width: 100%;
  }

  .section {
    padding: 72px 12px;
  }

  .section-head h2,
  .contact-card h2 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .trust-block,
  .results-grid,
  .service-grid,
  .price-list,
  .answer-grid,
  .reasons-list {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .service-card,
  .price-row,
  .answer-item,
  .step-card {
    min-height: 136px;
  }

  .result-pair img {
    height: 310px;
  }

  .sticky-cta {
    display: grid;
  }

  .footer {
    display: grid;
    padding: 32px 14px 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
