:root {
  --yellow: #f1c40f;
  --yellow-brand: #f2c40c;
  --yellow-deep: #d5ac0f;
  --black: #111111;
  --charcoal: #1d1d1d;
  --charcoal-soft: #272727;
  --text-light: #f4f4f4;
  --text-mid: #d8d8d8;
  --max-width: 1120px;
  --radius: 8px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 0.75rem;
  width: auto;
  height: auto;
  z-index: 10000;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  background: var(--yellow-brand);
  border-bottom: 2px solid var(--black);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.eyebrow {
  margin: 0;
  color: var(--black);
  font-size: 0.9rem;
}

.brand-name {
  margin: 0.2rem 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

.brand-home-link {
  color: inherit;
  text-decoration: none;
}

.brand-home-link:hover,
.brand-home-link:focus-visible {
  text-decoration: underline;
}

.location {
  margin: 0;
  color: #2a2a2a;
  font-size: 0.95rem;
}

.top-right {
  text-align: right;
}

.phone-link {
  display: inline-block;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.phone-link:hover,
.phone-link:focus-visible {
  text-decoration: underline;
}

.bbb-badge {
  margin: 0.4rem 0 0 auto;
  width: 130px;
  height: auto;
  display: block;
}

.main-nav {
  background: #202020;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-top: 1px solid #1a1a1a;
  background: #202020;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 0;
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-list {
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-light);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--yellow);
}

.nav-list a[aria-current="page"] {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.68));
  z-index: -1;
}

.hero-grid {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-service-card {
  background: var(--yellow);
  color: var(--black);
  padding: 1.2rem;
  border-radius: var(--radius);
}

.hero-service-card h2 {
  margin-top: 0;
}

.hero-service-card ul {
  margin: 0.9rem 0;
  padding-left: 1.1rem;
}

.mini-trust {
  margin: 0;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero-copy p {
  max-width: 68ch;
}

.keywords-line {
  color: var(--text-mid);
}

.btn {
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1rem;
}

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

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

.btn-yellow-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.05);
}

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

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem 0;
  font-weight: 700;
  text-align: center;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
}

.trust-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--yellow-deep);
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  color: var(--yellow);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding: 0.4rem 0 1.3rem;
}

.cta-row .btn {
  min-width: 180px;
  text-align: center;
}

.section-dark {
  background: var(--charcoal);
  margin: 1rem 0 0;
  padding: 2.2rem 0;
}

.section-dark h2 {
  color: var(--yellow);
  margin-top: 0;
}

.section-intro {
  color: var(--text-mid);
  max-width: 78ch;
}

.services-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.service-card {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: 1rem 0.9rem;
  min-height: 92px;
  display: grid;
  align-items: center;
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
}

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

.testimonial-card {
  background: var(--charcoal-soft);
  border: 1px solid #3a3a3a;
  border-radius: var(--radius);
  padding: 1rem;
}

.testimonial-card h3 {
  margin: 0 0 0.25rem;
}

.stars {
  margin: 0 0 0.5rem;
  color: var(--yellow);
}

.faq-section {
  padding: 2rem 0;
}

.faq-section h2 {
  color: var(--yellow);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list article {
  background: var(--charcoal-soft);
  border: 1px solid #393939;
  border-radius: var(--radius);
  padding: 0.95rem;
}

.faq-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.site-footer {
  background: var(--yellow-brand);
  border-top: 2px solid var(--black);
  margin-top: 0.9rem;
}

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

.site-footer h2 {
  color: var(--black);
  font-size: 1.1rem;
  margin-top: 0;
}

.site-footer p,
.site-footer a {
  color: var(--black);
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  color: var(--black);
  font-weight: 700;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding: 0.9rem 1rem 1.2rem;
  text-align: center;
  color: var(--black);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0.2rem 0;
}

.about-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.about-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.about-main-content h1 {
  color: var(--black);
  margin-top: 0;
  line-height: 1.25;
}

.about-main-content p {
  margin: 0.8rem 0;
}

.about-main-content a {
  color: #0060b8;
}

.about-main-content a:hover,
.about-main-content a:focus-visible {
  text-decoration: underline;
}

.about-figure {
  margin: 1rem 0;
}

.about-figure img {
  width: 100%;
  border-radius: 6px;
}

.about-values h2 {
  margin: 0.2rem 0 0.5rem;
  color: var(--black);
}

.about-services-sidebar {
  background: #ffffff;
  border-left: 1px solid #d8d8d8;
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.about-services-sidebar h2 {
  color: var(--black);
  margin-top: 0;
}

.about-services-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about-services-sidebar a {
  display: block;
  color: #1d1d1d;
  text-decoration: none;
  background: #f2c40c;
  border: 1px solid #dbb000;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}

.about-services-sidebar a:hover,
.about-services-sidebar a:focus-visible {
  filter: brightness(1.02);
}

.areas-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.areas-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.areas-main-content h1 {
  margin-top: 0;
  color: var(--black);
  line-height: 1.25;
}

.areas-main-content h2,
.areas-main-content h3 {
  color: var(--black);
}

.areas-main-content p {
  margin: 0.8rem 0;
}

.areas-main-content a {
  color: #0060b8;
}

.areas-main-content a:hover,
.areas-main-content a:focus-visible {
  text-decoration: underline;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
}

.areas-list a {
  display: block;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  color: #1f1f1f;
}

.areas-list a:hover,
.areas-list a:focus-visible {
  border-color: #d4a800;
  background: #fff9dd;
}

.areas-faq {
  margin-top: 1.25rem;
}

.areas-faq article {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 0.8rem;
  background: #fbfbfb;
}

.areas-faq article + article {
  margin-top: 0.65rem;
}

.areas-faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.areas-faq p {
  margin: 0;
}

.areas-services-sidebar {
  background: #ffffff;
  border-left: 1px solid #d8d8d8;
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.areas-services-sidebar h2 {
  color: var(--black);
  margin-top: 0;
}

.areas-services-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.areas-services-sidebar a {
  display: block;
  color: #1d1d1d;
  text-decoration: none;
  background: #f2c40c;
  border: 1px solid #dbb000;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}

.areas-services-sidebar a:hover,
.areas-services-sidebar a:focus-visible {
  filter: brightness(1.02);
}

.contact-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.contact-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.contact-main-content h1 {
  margin-top: 0;
  color: var(--black);
  line-height: 1.25;
}

.contact-main-content h2,
.contact-main-content h3 {
  color: var(--black);
}

.contact-main-content p {
  margin: 0.8rem 0;
}

.contact-main-content a {
  color: #0060b8;
}

.contact-main-content a:hover,
.contact-main-content a:focus-visible {
  text-decoration: underline;
}

.contact-block {
  margin: 1.15rem 0;
  padding: 1rem;
  background: #fbfbfb;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  text-align: center;
}

.contact-block address {
  margin: 0.7rem 0;
  font-style: normal;
}

.contact-block address p {
  margin: 0.2rem 0;
}

.contact-phone-cta {
  display: block;
  margin-top: 0.8rem;
  background: linear-gradient(90deg, #f2c40c 0%, #111111 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.85rem 1rem;
}

.contact-phone-cta:hover,
.contact-phone-cta:focus-visible {
  filter: brightness(1.04);
  text-decoration: none;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #dddddd;
  border-radius: 6px;
  overflow: hidden;
  background: #eaeaea;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-faq {
  margin-top: 1.2rem;
}

.contact-faq article {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 0.8rem;
  background: #fbfbfb;
}

.contact-faq article + article {
  margin-top: 0.65rem;
}

.contact-faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.contact-faq p {
  margin: 0;
}

.contact-services-sidebar {
  background: #ffffff;
  border-left: 1px solid #d8d8d8;
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.contact-services-sidebar h2 {
  color: var(--black);
  margin-top: 0;
}

.contact-services-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.contact-services-sidebar a {
  display: block;
  color: #1d1d1d;
  text-decoration: none;
  background: #f2c40c;
  border: 1px solid #dbb000;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}

.contact-services-sidebar a:hover,
.contact-services-sidebar a:focus-visible {
  filter: brightness(1.02);
}

.gallery-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.gallery-main-content h1 {
  margin-top: 0;
  color: var(--black);
}

.gallery-main-content h2,
.gallery-main-content h3 {
  color: var(--black);
}

.gallery-main-content a {
  color: #0060b8;
}

.gallery-main-content a:hover,
.gallery-main-content a:focus-visible {
  text-decoration: underline;
}

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

.gallery-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efefef;
}

.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-link:hover img,
.gallery-link:focus-visible img {
  transform: scale(1.03);
  opacity: 0.96;
}

.gallery-card figcaption {
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
  color: #2a2a2a;
}

.gallery-summary {
  margin-top: 1.2rem;
}

.gallery-faq {
  margin-top: 1.2rem;
}

.gallery-faq article {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 0.8rem;
  background: #fbfbfb;
}

.gallery-faq article + article {
  margin-top: 0.65rem;
}

.gallery-faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.gallery-faq p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 10000;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  color: #ffffff;
  margin: 0.75rem 0 0;
  text-align: center;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  border-radius: 6px;
  background: #f2c40c;
  color: #111111;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .nav-list {
    gap: 0.8rem 1rem;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.1rem 0;
  }

  .hero-service-card {
    max-width: 560px;
  }

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

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

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

  .about-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 1fr);
    gap: 1.25rem;
  }

  .areas-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 1fr);
    gap: 1.25rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 1fr);
    gap: 1.25rem;
  }

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

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

  .top-bar {
    flex-direction: column;
    gap: 0.6rem;
  }

  .top-right {
    text-align: left;
  }

  .main-nav {
    padding: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }

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

  .nav-list li {
    border-top: 1px solid #333333;
  }

  .nav-list a {
    display: block;
    font-size: 1rem;
    white-space: nowrap;
    padding: 0.82rem 0.25rem;
    text-align: center;
  }

  .highlights,
  .trust-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 1.3rem 0;
  }

  .hero-service-card {
    padding: 1rem;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .cta-row .btn {
    width: 100%;
  }

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

  .service-card {
    min-height: 80px;
  }

  .payment-icons img {
    width: 46px;
    height: 46px;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }

  .about-page {
    padding: 1.2rem 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .areas-page {
    padding: 1.2rem 0;
  }

  .areas-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-main-content,
  .about-services-sidebar {
    border-left: 0;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    background: #ffffff;
  }

  .areas-main-content,
  .areas-services-sidebar {
    border-left: 0;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    background: #ffffff;
  }

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

  .contact-page {
    padding: 1.2rem 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-main-content,
  .contact-services-sidebar {
    border-left: 0;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    background: #ffffff;
  }

  .contact-phone-cta {
    width: 100%;
  }

  .gallery-page {
    padding: 1.2rem 0;
  }

  .gallery-main-content {
    padding: 1rem;
  }

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

  .lightbox-close {
    top: 0.7rem;
    right: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
