/*
 * Home — final CTA section ("The end of the unpaid estimate.").
 * Full-bleed amber-tinted background image, dark CTA + paper outline.
 */

.home-cta {
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.home-cta-bg-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(0.6) contrast(1.05);
}
.home-cta-bg-tint {
  position: absolute;
  inset: 0;
  background: oklch(0.62 0.15 55 / 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.home-cta-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.home-cta-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 16px;
}
.home-cta-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 80px;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--paper);
  text-wrap: balance;
}
.home-cta-body {
  font-size: 18px;
  color: var(--paper);
  margin-bottom: 36px;
  max-width: 600px;
  opacity: 0.9;
}
.home-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.home-btn-dark-lg {
  background: var(--ink-0);
  color: var(--paper);
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.15s;
}
.home-btn-dark-lg:hover { filter: brightness(1.2); }

@media (max-width: 1024px) {
  .home-cta { padding: 120px 32px; }
  .home-cta-title { font-size: 60px; }
}
@media (max-width: 768px) {
  .home-cta { padding: 96px 20px; }
  .home-cta-title { font-size: 40px; }
  .home-cta-body { font-size: 16px; }
}
@media (max-width: 480px) {
  .home-cta-title { font-size: 32px; }
}
