:root {
  --orange: #f05a00;
  --orange-dark: #c94700;
  --charcoal: #1c1f26;
  --ink: #242832;
  --muted: #626a76;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --line: #e4e4e4;
  --shadow: 0 16px 36px rgba(16, 18, 24, 0.12);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
}

body,
button,
input,
textarea {
  font-size: 16px;
}

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

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

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

.top-bar {
  background: var(--charcoal);
  color: var(--paper);
  font-size: 0.92rem;
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-links,
.main-nav,
.hero-actions,
.hero-points {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-links a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand img {
  width: 184px;
}

.main-nav {
  justify-content: center;
}

.main-nav a {
  color: var(--charcoal);
  font-weight: 700;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-light {
  border-color: var(--paper);
  color: var(--paper);
}

.btn-light:hover {
  background: var(--paper);
  color: var(--charcoal);
}

.hero {
  min-height: calc(100vh - 128px);
  max-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.88) 0%, rgba(17, 19, 24, 0.62) 46%, rgba(17, 19, 24, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 19, 24, 0.24), rgba(17, 19, 24, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 0;
}

.hero-content p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
}

.hero-actions {
  margin-top: 26px;
}

.hero-points {
  margin-top: 26px;
}

.hero-points span {
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  font-weight: 700;
}

.trust-bar {
  background: var(--charcoal);
  color: var(--paper);
}

.trust-bar .container {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
}

.trust-bar p {
  margin: 0;
  border-left: 3px solid var(--orange);
  padding-left: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5.7vw, 5rem);
}

h2 {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 3.6vw, 3.15rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.26rem;
}

.section {
  padding: 82px 0;
}

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

.section-heading p,
.service-card p,
.about-copy p,
.why-list p,
.reviews-hero p,
.review-card p,
.contact p,
.site-footer p {
  color: var(--muted);
}

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

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

.service-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(16, 18, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  color: var(--charcoal);
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.gallery {
  background: var(--soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(28, 31, 38, 0.84);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: start;
}

.about-copy p + p {
  margin-top: 14px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  border-left: 4px solid var(--orange);
  padding: 18px 18px 18px 22px;
  background: var(--soft);
  border-radius: var(--radius);
}

.reviews {
  background: var(--soft);
}

.reviews-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.reviews-hero > div {
  max-width: 760px;
}

.angi-badge {
  min-width: 180px;
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 18, 24, 0.08);
  font-family: "Montserrat", Arial, sans-serif;
}

.angi-badge strong {
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1.1;
}

.angi-badge span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.stars {
  color: var(--orange);
  letter-spacing: 0;
  font-size: 1.05rem;
  line-height: 1;
}

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

.review-card {
  display: flex;
  min-width: 0;
  min-height: 240px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(16, 18, 24, 0.07);
}

.featured-review {
  grid-column: span 2;
}

.review-card blockquote {
  margin: 16px 0 0;
  color: var(--charcoal);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.55;
}

.review-card p {
  margin: 12px 0 0;
}

.review-card cite {
  margin-top: auto;
  padding-top: 18px;
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
}

.contact {
  background: var(--charcoal);
  color: var(--paper);
}

.contact h2 {
  color: var(--paper);
  font-size: clamp(2.15rem, 4.4vw, 2.8rem);
}

.contact p,
.contact .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-phone {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.site-footer {
  padding: 34px 0;
  background: #111318;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.site-footer img {
  width: 170px;
  margin-bottom: 12px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  font-weight: 800;
}

@media (max-width: 1060px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .reviews-hero,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .top-bar-inner {
    min-height: 0;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 7px 0;
    text-align: center;
  }

  .top-bar-inner > span {
    display: none;
  }

  .top-links {
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .top-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 16px 0;
  }

  .main-nav {
    justify-content: center;
    gap: 12px;
  }

  .hero {
    min-height: 680px;
    max-height: none;
  }

  .hero-shade {
    background: rgba(17, 19, 24, 0.72);
  }

  .section {
    padding: 62px 0;
  }

  .trust-bar .container {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-review {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-feature {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

  .brand img {
    width: 158px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 58px 0;
  }

  .service-card {
    grid-template-rows: 230px 1fr;
  }

  .contact-panel {
    padding: 20px;
  }
}
