:root {
  --black: #111111;
  --charcoal: #1d1d1f;
  --ink: #262626;
  --muted: #6e6a64;
  --cream: #f7f1e8;
  --sand: #e8dccd;
  --white: #ffffff;
  --orange: #c7672a;
  --red: #d33d2f;
  --blue: #1688c9;
  --blue-dark: #0d5f92;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  --radius: 24px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  border-radius: 12px;
  background:
    linear-gradient(180deg, transparent 0 28%, var(--red) 28% 43%, var(--blue) 43% 58%, var(--orange) 58% 73%, transparent 73%),
    var(--black);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(199, 103, 42, 0.28);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(199, 103, 42, 0.36);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.button-ghost {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at 10% 18%, rgba(22, 136, 201, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(211, 61, 47, 0.14), transparent 26rem),
    linear-gradient(180deg, var(--cream), #fff8ef);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--orange));
}

.hero-grid,
.split-grid,
.feature-grid,
.contact-grid,
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1,
h2,
h3 {
  color: var(--black);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.split-copy p,
.feature-grid p,
.contact-copy p,
.area-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.rating-row div {
  padding: 1.1rem;
  border-right: 1px solid var(--line);
}

.rating-row div:last-child {
  border-right: 0;
}

.rating-row strong {
  display: block;
  color: var(--black);
  font-size: 1.45rem;
  line-height: 1;
}

.rating-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border: 12px solid var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  width: min(280px, 78%);
  padding: 1.2rem;
  color: var(--white);
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.9);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  margin-bottom: 0.3rem;
  color: #afdfff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
}

.thank-you-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.thank-you-card span {
  display: block;
  margin-bottom: 0.4rem;
  color: #afdfff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thank-you-card strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.thank-you-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.thank-you-card a:hover {
  color: #91d4ff;
}

.trust-strip {
  padding: 1.2rem 0;
  color: var(--white);
  background: var(--black);
}

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

.trust-grid div {
  padding: 1rem;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.trust-grid span {
  display: block;
  color: #91d4ff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-grid strong {
  font-size: 1.05rem;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

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

.section-heading-narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.service-card,
.process-grid article,
.review-card,
.review-summary,
.estimate-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07);
}

.service-card {
  padding: 1.5rem;
}

.service-card p,
.process-grid p,
.review-card p,
.review-summary p,
.site-footer p {
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
  color: var(--white);
  border-radius: 14px;
  background: var(--black);
  font-weight: 800;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 136, 201, 0.12), transparent 35%),
    var(--black);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .split-copy p,
.section-dark .check-list {
  color: rgba(255, 255, 255, 0.76);
}

.image-stack {
  position: relative;
  min-height: 600px;
}

.image-stack img {
  position: absolute;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.image-stack img:first-child {
  left: 0;
  top: 0;
  width: 76%;
  height: 460px;
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 300px;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.process-section {
  background: #fff8ef;
}

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

.process-grid article {
  position: relative;
  padding: 1.45rem;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-weight: 800;
}

.feature-band {
  padding-top: 0;
}

.feature-grid {
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 34px;
  background: var(--sand);
}

.feature-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 1rem;
}

.review-card,
.review-summary {
  padding: 1.5rem;
}

.review-card-accent {
  border-color: rgba(22, 136, 201, 0.28);
}

.stars {
  margin-bottom: 1rem;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.review-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 61, 47, 0.38), transparent 9rem),
    radial-gradient(circle at 95% 78%, rgba(22, 136, 201, 0.34), transparent 10rem),
    var(--black);
}

.review-summary h3 {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.review-summary .summary-kicker {
  margin-bottom: 0.55rem;
  color: #ffb27b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-summary-copy {
  margin-bottom: 0;
}

.review-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.review-rating-pill {
  display: inline-flex;
  width: max-content;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  font-size: 0.9rem;
  font-weight: 800;
}

.review-summary p {
  color: rgba(255, 255, 255, 0.75);
}

.review-source-list {
  display: grid;
  gap: 0.7rem;
}

.review-source-link {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.review-source-link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.review-source-link strong,
.review-source-link small {
  display: block;
}

.review-source-link strong {
  color: var(--white);
  line-height: 1.15;
}

.review-source-link small {
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.35;
}

.review-source-link em {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #91d4ff;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.review-source-link em::after {
  content: "→";
  margin-left: 0.35rem;
}

.service-area {
  background: #fff8ef;
}

.area-grid {
  grid-template-columns: 0.9fr 1fr;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-list span {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.contact-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(211, 61, 47, 0.24), transparent 35%),
    linear-gradient(315deg, rgba(22, 136, 201, 0.2), transparent 32%),
    var(--black);
}

.contact-section h2 {
  color: var(--white);
}

.contact-grid {
  align-items: top;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(0.5rem, 2vw, 1.25rem) 0;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  font-weight: 800;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link svg {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact-methods a:hover {
  color: #91d4ff;
}

.estimate-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--ink);
}

.estimate-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row-address {
  grid-template-columns: 1fr 0.5fr 0.65fr;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfaf8;
  padding: 0.9rem 1rem;
  color: var(--ink);
}

.estimate-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #0b0b0c;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 2rem;
}

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

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .nav-links.is-open,
  .nav-actions.is-open {
    display: grid;
  }

  .nav-links {
    gap: 0.35rem;
  }

  .nav-links a,
  .nav-actions a {
    padding: 0.85rem 0;
  }

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

  .form-row,
  .form-row-address {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-media img {
    min-height: 420px;
  }

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

  .review-summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 1.25rem, var(--wrap));
  }

  .nav {
    min-height: 72px;
  }

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

  .hero {
    padding: 2.75rem 0 3rem;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 3.6rem);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .rating-row,
  .trust-grid,
  .service-grid,
  .process-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rating-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rating-row div:last-child {
    border-bottom: 0;
  }

  .hero-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .image-stack img {
    position: static;
    width: 100% !important;
    height: auto !important;
    max-height: 420px;
  }

  .feature-grid img {
    height: 320px;
  }
}
