:root {
  --ink: #1d1f23;
  --muted: #626973;
  --line: #dde1e6;
  --paper: #ffffff;
  --soft: #f5f6f7;
  --accent: #f2c94c;
  --accent-dark: #765a00;
  --green: #1f7a4f;
  --shadow: 0 18px 45px rgba(20, 24, 30, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(17, 19, 22, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px 7%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: flex-start;
  color: white;
  display: inline-flex;
  flex-direction: column;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  padding-left: 3px;
}

.brand-service {
  background: var(--accent);
  border-radius: 3px;
  color: #171717;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-top: 3px;
  padding: 4px 7px 3px;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a,
.text-link {
  font-weight: 700;
  text-decoration: none;
}

.nav-links a {
  color: white;
}

.nav-links a:hover,
.footer-column a:hover {
  color: var(--accent);
}

.text-link:hover {
  color: var(--accent-dark);
}

.header-call {
  background: var(--accent);
  border-radius: 6px;
  color: #171717;
  font-weight: 800;
  padding: 10px 16px;
  text-decoration: none;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  width: 46px;
}

.menu-toggle span {
  background: white;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 21px;
}

.hero {
  align-items: center;
  background: #111316;
  color: white;
  display: flex;
  justify-content: center;
  min-height: 760px;
  padding: 116px 7% 58px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(44px, 6vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.hero-content {
  max-width: 650px;
  width: 100%;
}

.hero-media {
  aspect-ratio: 4 / 5;
  border-bottom: 6px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  max-height: 610px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.hero-personal-note {
  background: rgba(17, 19, 22, 0.94);
  bottom: 22px;
  display: grid;
  left: 0;
  padding: 12px 18px 13px;
  position: absolute;
}

.hero-personal-note span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-personal-note strong {
  font-size: 0.98rem;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

.section-heading .eyebrow,
.about-copy .eyebrow {
  color: var(--accent-dark);
}

.quote-card .eyebrow {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 720px;
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 30px;
  max-width: 660px;
}

.hero-buttons,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons {
  max-width: 360px;
  width: 100%;
}

.hero-buttons .btn {
  width: 100%;
}

.hero-review-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  gap: 15px;
  margin-top: 24px;
  max-width: 360px;
  padding: 10px 16px 10px 12px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.hero-review-card:hover {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.hero-review-logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 104px;
}

.hero-review-copy {
  display: block;
  line-height: 1.35;
}

.hero-review-copy strong {
  font-size: 0.95rem;
}

.btn,
.btn-secondary {
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-width: 170px;
  padding: 15px 22px;
  text-decoration: none;
}

.btn {
  background: var(--accent);
  color: #171717;
}

.btn:hover {
  background: #ffd85c;
}

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

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 28px;
}

.trust-points li {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 13px;
}

.section {
  padding: 78px 7%;
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.quote-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-heading p,
.about-copy p,
.about-panel p,
.card p,
.quote-card p,
footer p {
  color: var(--muted);
}

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

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

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.card,
.review-note,
.about-panel,
.quote-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 24, 30, 0.06);
}

.card {
  border-top: 4px solid var(--accent);
  min-height: 200px;
  padding: 30px;
}

.card h3,
.review-note h3,
.about-panel h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.services-coverage {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 20px auto 0;
  max-width: 1180px;
  padding: 25px 28px;
}

.services-coverage strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.services-coverage p {
  color: #c9ced6;
}

.services-coverage .btn {
  flex: 0 0 auto;
}

.about {
  align-items: stretch;
  display: grid;
  gap: 48px;
  grid-template-columns: 360px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.about-section {
  background: #111316;
  color: white;
}

.about-section .about-copy .eyebrow {
  color: var(--accent);
}

.about-content {
  align-content: center;
  display: grid;
  gap: 24px;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 760px;
}

.about-copy p {
  max-width: 760px;
}

.about-section .about-copy p {
  color: #c9ced6;
}

.about-copy p + p,
.about-panel p {
  margin-top: 12px;
}

.about-side {
  align-self: center;
  position: relative;
}

.about-side img {
  aspect-ratio: 3 / 4;
  border-bottom: 6px solid var(--accent);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.about-highlights {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  max-width: 860px;
}

.about-highlights li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: white;
  font-weight: 800;
  line-height: 1.35;
  padding: 16px;
}

.about-panel {
  align-items: center;
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--accent);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
}

.about-panel-copy {
  min-width: 0;
}

.about-panel h3 {
  color: white;
}

.about-panel p {
  color: #c9ced6;
}

.about-panel .btn {
  min-width: 210px;
}

.review-note {
  padding: 30px;
}

.reviews-layout {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(20, 24, 30, 0.08);
  display: grid;
  gap: clamp(40px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(38px, 4vw, 52px);
}

.reviews-layout h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 690px;
}

.reviews-action {
  align-items: center;
  align-self: stretch;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(40px, 5vw, 70px);
  text-align: center;
}

.google-reviews-logo {
  display: block;
  margin: 0 auto;
  max-width: 220px;
  width: 56%;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
}

.reviews-layout .btn {
  margin-top: 28px;
}

.review-note {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 36px auto 0;
  max-width: 1040px;
  padding: 0;
  text-align: center;
}

.review-note h3 {
  font-size: 1rem;
  margin-bottom: 18px;
}

.trust-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.trust-list li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(20, 24, 30, 0.05);
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 20px 16px;
  place-content: center;
}

.trust-list span {
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-list strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.quote {
  background: var(--ink);
}

.quote-card {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 38px;
}

.quote-card .btn-secondary {
  border: 1px solid var(--line);
}

.site-footer {
  background: #111316;
  color: white;
  padding: 48px 7% 0;
}

.site-footer p {
  color: #c9ced6;
}

.footer-main {
  display: grid;
  gap: clamp(36px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(140px, 0.55fr));
  margin: 0 auto;
  max-width: 1180px;
  padding-bottom: 42px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 430px;
}

.footer-column {
  align-content: start;
  display: grid;
  gap: 9px;
}

.footer-column h2 {
  color: #9ea5af;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.footer-column a {
  color: #e8eaed;
  font-weight: 700;
  text-decoration: none;
}

.footer-column .footer-phone {
  color: var(--accent);
  font-size: 1.08rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  font-size: 0.82rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 0 25px;
}

.mobile-call-bar {
  background: var(--accent);
  bottom: 0;
  color: #171717;
  display: none;
  font-weight: 900;
  left: 0;
  padding: 15px 18px;
  position: fixed;
  right: 0;
  text-align: center;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.25s ease, visibility 0.25s;
  visibility: hidden;
  z-index: 20;
}

.mobile-call-bar.is-visible {
  transform: translateY(0);
  visibility: visible;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-media {
    aspect-ratio: 16 / 9;
    max-height: 480px;
  }

  .about,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
    padding: 34px;
    text-align: center;
  }

  .reviews-action {
    border-left: 0;
    padding-left: 0;
    width: 100%;
  }

  .google-reviews-logo {
    margin-top: 28px;
  }

  .about {
    gap: 30px;
  }

  .about-side {
    justify-self: center;
    max-width: 390px;
    width: 100%;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-panel .btn {
    width: 100%;
  }

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

  .quote-card {
    align-items: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 52px;
  }

  .site-header {
    padding: 12px 5%;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    background: #111316;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 8px 5% 18px;
    position: absolute;
    right: 0;
    top: 66px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 5% 42px;
  }

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

  .services-coverage {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-personal-note {
    bottom: 14px;
  }

  .hero-buttons,
  .hero-review-card {
    max-width: none;
    width: 100%;
  }

  .hero-review-logo {
    width: 86px;
  }

  .hero-buttons,
  .quote-actions {
    flex-direction: column;
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }

  .trust-points {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-points li {
    border-radius: 6px;
  }

  .section {
    padding: 58px 5%;
  }

  .reviews-layout {
    padding: 24px;
  }

  .card,
  .about-panel,
  .review-note,
  .quote-card {
    padding: 24px;
  }

  .card {
    min-height: 0;
  }

  .about-side img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .google-reviews-logo {
    max-width: 160px;
    width: 56%;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 40px 5% 78px;
  }

  .footer-main {
    gap: 32px;
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 0;
  }

  .mobile-call-bar {
    display: block;
  }
}
