
:root {
  --red: #ec1c24;
  --red-dark: #a80f17;
  --charcoal: #15171a;
  --steel: #3e4448;
  --silver: #d9dde0;
  --mist: #f5f6f7;
  --white: #ffffff;
  --ink: #0f1216;
  --muted: #626b73;
  --line: #e6e8eb;
  --shadow: 0 18px 45px rgba(12, 14, 18, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img, video, iframe {
  max-width: 100%;
}

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

p {
  margin: 0 0 18px;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--charcoal);
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--charcoal);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  color: #30343a;
}

.desktop-nav a,
.nav-dropdown button {
  color: #30343a;
  background: transparent;
  border: 0;
  padding: 8px 0;
  font: inherit;
  cursor: pointer;
}

.desktop-nav a:hover,
.nav-dropdown button:hover,
.phone-link:hover,
.text-link:hover {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 290px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: var(--mist);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  font-weight: 800;
  color: var(--charcoal);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 7px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(236, 28, 36, 0.28);
}

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

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
}

.mobile-nav {
  display: none;
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero,
.page-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-video,
.page-hero-media,
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  min-height: 540px;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 16, 0.68);
}

.page-hero-overlay {
  background: rgba(13, 14, 16, 0.62);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 36px));
  text-align: center;
  padding: 110px 0 70px;
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(236, 28, 36, 0.12);
  color: var(--red);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-content .hero-pill,
.page-hero-content .hero-pill {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-content h1,
.page-hero-content h1 {
  margin: 26px 0 18px;
  color: var(--white);
}

.hero-content p,
.page-hero-content p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.inline-actions,
.center-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(560px, 100%);
  margin: 56px auto 0;
  color: var(--white);
}

.hero-stats div {
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: var(--white);
}

.info-bar div {
  padding: 17px 32px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.info-bar div:last-child {
  border-right: 0;
}

.info-bar span {
  display: inline-block;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background: var(--mist);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-content h2 {
  margin: 16px 0 22px;
}

.split-content h3 {
  margin: 28px 0 14px;
}

.feature-media,
.feature-media img,
.card-media,
.card-media img,
.gallery-media,
.gallery-media img,
.related-media,
.related-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.layered-media {
  position: relative;
}

.media-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-width: 210px;
  padding: 18px 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge span {
  color: var(--silver);
}

.check-list,
.bullet-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.check-list li {
  position: relative;
  padding-left: 36px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list span {
  color: var(--muted);
}

.bullet-list {
  list-style: disc;
  padding-left: 22px;
  color: var(--muted);
}

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

.section-header h2 {
  margin: 16px 0 14px;
}

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

.service-card,
.related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 24, 28, 0.06);
}

.service-card .card-media img,
.related-card .related-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body,
.related-card {
  padding: 24px;
}

.service-card h3,
.related-card h3 {
  margin: 12px 0 12px;
  font-size: 21px;
}

.service-card p,
.related-card p {
  font-size: 15px;
}

.mini-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mist);
  border: 2px solid rgba(236, 28, 36, 0.22);
  box-shadow: inset 0 0 0 8px var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -18px auto 38px;
  max-width: 980px;
}

.service-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--steel);
  font-weight: 800;
  font-size: 13px;
}

.center-actions {
  margin-top: 44px;
}

.process-list,
.process-grid,
.value-grid {
  display: grid;
  gap: 18px;
}

.process-grid,
.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-list div,
.process-grid div,
.value-grid div,
.hours-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.process-list span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-grid img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 36px;
  align-items: start;
  padding: 90px max(24px, calc((100% - var(--max)) / 2));
  background: var(--charcoal);
}

.quote-band h2,
.quote-band p {
  color: var(--white);
}

.quote-band p {
  color: rgba(255, 255, 255, 0.78);
}

.form-shell {
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-map-section,
.contact-grid-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: stretch;
}

.contact-grid-section {
  grid-template-columns: 0.72fr 1.28fr;
}

.contact-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--mist);
  border: 1px solid var(--line);
}

.contact-panel.large {
  background: var(--charcoal);
}

.contact-panel.large h2,
.contact-panel.large h3,
.contact-panel.large p {
  color: var(--white);
}

.contact-panel h2 {
  margin: 16px 0 16px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  display: block;
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 900;
  border: 1px solid var(--line);
}

.contact-list a:hover {
  color: var(--red);
}

.hours-card {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.map-wrap {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap.full {
  min-height: 500px;
}

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

.service-detail-grid,
.service-area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.service-detail-grid h2 {
  margin: 16px 0 20px;
}

.planning-card-grid {
  display: grid;
  gap: 16px;
}

.planning-card-grid div,
.area-panel,
.review-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20, 24, 28, 0.05);
}

.planning-card-grid h3,
.area-copy h3,
.review-card h3 {
  margin: 0 0 10px;
}

.area-panel {
  display: grid;
  gap: 22px;
}

.area-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
  color: var(--charcoal);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  padding: 10px 12px;
}

.area-button:hover,
.area-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.area-copy {
  padding-top: 4px;
}

.area-copy h3 {
  margin-top: 16px;
}

.area-map-wrap {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
}

.area-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.area-list strong,
.area-list span {
  display: block;
}

.area-list span {
  color: var(--muted);
  font-size: 14px;
}

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

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 40px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
  color: var(--charcoal);
}

.faq-list p {
  padding-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.site-footer {
  background: #0f1114;
  color: var(--white);
  padding: 72px 32px 24px;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer h2 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-social-link svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.facebook-circle {
  fill: #1877f2;
}

.facebook-f {
  fill: var(--white);
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .mobile-nav a {
    padding: 10px 0;
    font-weight: 800;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

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

  .split-section,
  .quote-band,
  .contact-map-section,
  .contact-grid-section,
  .service-detail-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .value-grid,
  .gallery-grid,
  .related-grid,
  .reviews-grid,
  .area-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand span {
    max-width: 145px;
    line-height: 1.1;
  }

  .header-actions .btn {
    display: none;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    min-height: 660px;
  }

  .page-hero {
    min-height: 500px;
  }

  .hero-content,
  .page-hero-content {
    padding: 92px 0 54px;
  }

  .hero-content p,
  .page-hero-content p {
    font-size: 17px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 16px;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .info-bar {
    grid-template-columns: 1fr;
  }

  .info-bar div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding: 14px 18px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 68px 0;
  }

  .band {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-grid,
  .process-grid,
  .value-grid,
  .gallery-grid,
  .related-grid,
  .reviews-grid,
  .area-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .split-section {
    gap: 34px;
  }

  .media-badge {
    position: static;
    margin-top: 14px;
  }

  .quote-band {
    padding: 66px 16px;
  }

  .form-shell {
    min-height: 760px;
  }

  .contact-panel {
    padding: 24px;
  }

  .map-wrap {
    min-height: 360px;
  }

  .area-map-wrap {
    min-height: 420px;
  }

  .site-footer {
    padding: 56px 18px 24px;
  }
}
