:root {
  --ink: #202326;
  --muted: #5d646a;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #d9d3ca;
  --terracotta: #b74231;
  --terracotta-dark: #863022;
  --green: #2f6f5e;
  --gold: #d9a441;
  --charcoal: #17191b;
  --shadow: 0 18px 42px rgba(28, 25, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(32, 35, 38, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(32, 35, 38, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 34px;
  position: relative;
  border-bottom: 8px solid var(--terracotta);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -2px;
  width: 30px;
  height: 20px;
  border-left: 5px solid var(--green);
  border-top: 5px solid var(--green);
  transform: skewX(-24deg) rotate(10deg);
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #33383d;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  background: #efe9df;
  outline: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 580px;
  height: calc(100svh - 128px);
  max-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-compact {
  min-height: 430px;
}

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

.hero-media {
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background: rgba(8, 10, 11, 0.58);
}

.hero-content {
  color: #fff;
  padding: 92px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-lines a {
  color: var(--green);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--terracotta-dark);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  color: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 700;
}

.offer-strip {
  background: var(--charcoal);
  color: #fff;
}

.offer-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.1fr;
  align-items: center;
  gap: 18px;
}

.offer-grid strong {
  color: var(--gold);
  text-transform: uppercase;
}

.section {
  padding: 86px 0;
}

.section-intro {
  padding-top: 70px;
}

.intro-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

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

.section-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 40px;
  align-items: end;
}

.section-heading-row p:last-child {
  margin: 0;
}

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

.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(35, 31, 27, 0.05);
}

.service-number {
  display: inline-flex;
  color: var(--terracotta);
  font-weight: 900;
  margin-bottom: 34px;
}

.service-card p {
  margin-bottom: 0;
}

.service-card-feature .text-link {
  color: var(--terracotta);
}

.section-dark {
  background: var(--charcoal);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-copy {
  max-width: 560px;
}

.feature-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

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

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

.gallery-item {
  position: relative;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(30, 29, 27, 0.1);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 12px 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent);
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  font-size: 0.94rem;
}

.gallery-caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.section-video {
  background: #eee9df;
}

.section-muted {
  background: #eee9df;
}

.promo-video-feature {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  margin-bottom: 34px;
}

.promo-video-feature video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.promo-video-copy {
  max-width: 620px;
}

.promo-video-copy h3 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.96;
}

.promo-video-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.promo-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.video-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 540px;
  object-fit: cover;
}

.section-steps {
  background: var(--surface);
}

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

.steps-grid article {
  padding: 22px;
  border-left: 4px solid var(--green);
  background: #f4f0e8;
  border-radius: 8px;
}

.steps-grid strong {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--terracotta);
  font-size: 1.4rem;
}

.steps-grid p {
  margin-bottom: 0;
}

.section-contact {
  background: #f2eee7;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: start;
}

.service-content {
  max-width: 760px;
}

.service-content h2 + p,
.service-content p + h2,
.service-content ul + h2 {
  margin-top: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #dfeae5;
}

.quote-panel,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(34, 31, 28, 0.08);
}

.quote-panel {
  position: sticky;
  top: 96px;
}

.quote-panel .btn,
.cta-panel .btn {
  width: 100%;
}

.quote-panel .btn + .panel-phone,
.cta-panel .btn + .btn {
  margin-top: 12px;
}

.panel-phone {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.coverage {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.coverage p {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(34, 31, 28, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc7bb;
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.btn-form {
  width: 100%;
  background: var(--green);
  color: #fff;
}

.site-footer {
  padding: 28px 0 150px;
  background: var(--charcoal);
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid a {
  color: var(--gold);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mobile-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(170px, calc(100vw - 32px));
}

.mobile-cta a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.mobile-cta a:last-child {
  background: var(--green);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 64px 80px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: calc(100svh - 150px);
  width: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.lightbox p {
  color: #fff;
  margin: 16px 0 0;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 30px, 760px);
  }

  .header-inner {
    min-height: 66px;
  }

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

  .main-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px;
  }

  .header-call {
    display: none;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 116px);
  }

  .hero-content {
    padding: 92px 0 42px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .offer-grid,
  .intro-grid,
  .feature-grid,
  .contact-grid,
  .section-heading-row,
  .promo-video-feature,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .promo-video-feature video {
    width: min(100%, 380px);
    justify-self: center;
  }

  .quote-panel {
    position: static;
  }

  .offer-grid {
    padding: 18px 0;
    gap: 8px;
  }

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

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

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

  .section {
    padding: 58px 0;
  }

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

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: calc(100svh - 104px);
  }

  .hero-content {
    padding: 78px 0 30px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.85rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-facts {
    display: none;
  }

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

  .promo-video-copy h3 {
    font-size: 2rem;
  }

  .promo-video-actions {
    flex-direction: column;
  }

  .service-card {
    min-height: auto;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-item img {
    aspect-ratio: 5 / 4;
  }

  .video-card video {
    aspect-ratio: 4 / 5;
  }

  .footer-grid {
    display: grid;
  }

  .mobile-cta {
    right: 12px;
    bottom: 12px;
    width: min(160px, calc(100vw - 24px));
  }

  .lightbox {
    padding: 62px 14px 82px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: calc(100svh - 180px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 12px;
    transform: none;
  }
}
