:root {
  --burgundy: #7a0e12;
  --deep-red: #9e1b1f;
  --black: #111111;
  --charcoal: #1f2933;
  --steel: #e5e7eb;
  --white: #ffffff;
  --yellow: #f4c542;
  --muted: #6b7280;
  --light: #f7f7f8;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.18);
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 900;
}

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

.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;
}

.announcement {
  background: linear-gradient(90deg, var(--burgundy), var(--deep-red));
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.announcement__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.announcement a {
  display: none;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--steel);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(244, 197, 66, 0.75);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(122, 14, 18, 0.95), rgba(158, 27, 31, 0.9)),
    var(--burgundy);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -0.06em;
  box-shadow: 0 14px 34px rgba(122, 14, 18, 0.22);
}

.brand strong {
  display: block;
  color: var(--black);
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: var(--black);
  font-size: 14px;
  font-weight: 850;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--steel);
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 950;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 197, 66, 0.55);
  outline-offset: 3px;
}

.button--primary {
  background: var(--deep-red);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(158, 27, 31, 0.24);
}

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

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

.button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button--dark-outline {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button--yellow {
  background: var(--yellow);
  color: var(--black);
}

.button--small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 13px;
}

.button--full {
  width: 100%;
}

.section {
  padding: 68px 0;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--black);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
}

.section-heading p,
.why p,
.reviews p,
.quote-grid p,
.area p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 16%, rgba(158, 27, 31, 0.52), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(244, 197, 66, 0.18), transparent 24%),
    linear-gradient(135deg, #080808 0%, #1f2933 54%, #3a0a0d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -105px -10%;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(247, 247, 248, 0.95));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(44px, 10vw, 86px);
}

.hero__body {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 3vw, 21px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__bullets {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.hero__bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(244, 197, 66, 0.16);
}

.hero__panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(17, 17, 17, 0.72);
  padding: 20px;
  box-shadow: var(--shadow);
}

.rating-card,
.hero-service-card,
.hero-phone-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.66);
  padding: 20px;
}

.rating-card__stars,
.trust-icon {
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.rating-card strong,
.hero-service-card strong,
.hero-phone-card a {
  display: block;
  color: var(--white);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.rating-card p,
.hero-service-card span,
.hero-phone-card span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-service-card strong {
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.35;
}

.hero-phone-card a {
  color: var(--yellow);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--steel);
}

.trust-grid {
  display: grid;
  gap: 12px;
  padding: 18px 0;
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--steel);
  border-radius: 16px;
  background: var(--white);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.04);
}

.trust-grid strong {
  color: var(--black);
  font-size: 14px;
}

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

.services-grid,
.benefit-grid,
.steps,
.review-cards {
  display: grid;
  gap: 16px;
}

.services-grid article,
.benefit-grid article,
.steps li,
.review-cards article,
.quote-form,
.area__box {
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.services-grid article,
.benefit-grid article,
.steps li,
.review-cards article {
  padding: 22px;
}

.services-grid h3,
.benefit-grid h3,
.steps h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.services-grid p,
.benefit-grid p,
.steps p,
.review-cards blockquote {
  margin-bottom: 0;
  color: var(--muted);
}

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

.why__grid,
.reviews__grid,
.quote-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.reviews {
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 197, 66, 0.12), transparent 28%),
    var(--light);
}

.rating-line {
  color: var(--black) !important;
  font-weight: 950;
}

.rating-line span {
  color: var(--yellow);
}

.review-note {
  margin-top: 18px;
  font-size: 14px !important;
  line-height: 1.5;
}

.review-cards article {
  position: relative;
  color: var(--charcoal);
}

.review-cards article::before {
  content: "\201C";
  position: absolute;
  right: 18px;
  top: 6px;
  color: rgba(122, 14, 18, 0.12);
  font-size: 78px;
  line-height: 1;
  font-weight: 950;
}

.review-cards article::after {
  content: "Google Business Profile";
  display: block;
  width: fit-content;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(122, 14, 18, 0.08);
  color: var(--burgundy);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-cards blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--black);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.review-cards footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--steel);
  color: var(--black);
  font-size: 14px;
  font-weight: 950;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 950;
}

.quote-section {
  background:
    radial-gradient(circle at left top, rgba(158, 27, 31, 0.1), transparent 28%),
    var(--light);
}

.quote-callout {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.quote-callout a {
  color: var(--burgundy);
  font-weight: 950;
}

.quote-form {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.hidden {
  display: none;
}

.quote-form label,
.quote-form legend {
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--steel);
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  padding: 13px 14px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 8px;
  padding: 0;
  border: 0;
}

.quote-form fieldset legend {
  width: 100%;
}

.quote-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--steel);
  border-radius: 999px;
  padding: 10px 14px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 850;
}

.area {
  background: var(--white);
}

.area__box {
  padding: 28px;
}

.faq__inner {
  max-width: 900px;
}

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

.faq-list article {
  border: 1px solid var(--steel);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.faq-list h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--black);
  padding: 18px;
  text-align: left;
  font-weight: 950;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(122, 14, 18, 0.1);
  color: var(--burgundy);
  font-size: 21px;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  padding: 58px 0;
  background: linear-gradient(135deg, var(--burgundy), var(--deep-red));
  color: var(--white);
}

.final-cta__inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 42px 0 92px;
  background: var(--black);
  color: var(--white);
}

.footer__grid {
  display: grid;
  gap: 28px;
}

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

.footer__brand small,
.site-footer p,
.footer__links span {
  color: rgba(255, 255, 255, 0.68);
}

.footer__links {
  display: grid;
  gap: 12px;
}

.footer__links a {
  color: var(--white);
  font-weight: 850;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--steel);
  box-shadow: 0 -12px 30px rgba(17, 17, 17, 0.14);
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-red);
  font-weight: 950;
}

.mobile-cta a:last-child {
  background: var(--black);
}

@media (min-width: 640px) {
  .announcement__inner {
    justify-content: space-between;
  }

  .announcement a {
    display: inline;
  }

  .trust-grid,
  .services-grid,
  .benefit-grid,
  .steps,
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .hero {
    padding: 88px 0 104px;
  }

  .hero__grid,
  .why__grid,
  .reviews__grid,
  .quote-grid,
  .final-cta__inner,
  .footer__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

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

  .benefit-grid,
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .final-cta__actions {
    justify-content: flex-end;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 859px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    z-index: 1001;
    display: grid;
    gap: 4px;
    max-height: calc(100svh - 104px);
    overflow: auto;
    border: 1px solid var(--steel);
    border-radius: 22px;
    background: var(--white);
    padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
    border-radius: 14px;
  }

  .site-nav a:not(.button):hover {
    background: var(--light);
  }

  .site-nav .button {
    margin-top: 6px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .announcement__inner {
    font-size: 12px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .quote-form,
  .area__box {
    padding: 18px;
  }
}
