:root {
  --black: #050607;
  --black-soft: #101216;
  --charcoal: #4a4c54;
  --charcoal-dark: #24272d;
  --orange: #e87522;
  --orange-deep: #b85d20;
  --white: #f2f2f2;
  --muted: #bfc3c7;
  --line: rgba(242, 242, 242, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--orange);
  color: #111;
  padding: .75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(5, 6, 7, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand strong,
h1,
h2,
h3,
.button,
.eyebrow,
.header-call,
.menu-toggle {
  font-family: "Arial Narrow", Impact, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  padding: .65rem .8rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  border-color: var(--orange);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .75rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
}

.header-call,
.button.primary {
  background: var(--orange);
  color: #130a04;
}

.button.secondary {
  background: var(--charcoal);
  color: var(--white);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--white);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  background: rgba(16, 18, 22, .95);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: var(--orange);
  color: #130a04;
  border-color: var(--orange);
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 22px;
}

.menu-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 72vh, 680px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 6, 7, .95) 0%, rgba(5, 6, 7, .82) 44%, rgba(5, 6, 7, .18) 100%),
    linear-gradient(135deg, transparent 0 60%, rgba(74, 76, 84, .9) 60.2% 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(700px, calc(100% - 2rem));
  margin-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding: 3.5rem 0;
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--orange);
  font-size: .95rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5.1vw, 4.75rem);
  line-height: 1.02;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.65rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  max-width: 820px;
  margin: 2rem 0 0;
}

.trust-strip div,
.contact-form-card,
.contact-card,
.service-card,
.service-list-card,
.stat-stack div,
.service-detail aside {
  background: rgba(16, 18, 22, .86);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.trust-strip div {
  padding: 1rem;
}

.trust-strip dt {
  font-weight: 900;
  color: var(--white);
}

.trust-strip dd {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.intro-band,
.section,
.feature-row,
.cta-band,
.contact-layout,
.contact-section,
.page-hero,
.service-hero {
  padding: 4.5rem max(1rem, calc((100vw - var(--max)) / 2));
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  background: var(--charcoal-dark);
}

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

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

.service-card a,
.service-list-card {
  display: block;
  height: 100%;
  padding: 1.25rem;
  text-decoration: none;
}

.service-card span,
.service-list-card span {
  display: inline-block;
  margin-bottom: .65rem;
  color: var(--orange);
  font-weight: 800;
  font-size: .9rem;
}

.service-card p,
.service-list-card p,
.feature-row p,
.page-hero p,
.service-hero p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.centered-action {
  margin-top: 2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(132deg, var(--black) 0 62%, var(--charcoal-dark) 62.2% 100%);
}

.check-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .65rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65rem;
  width: .55rem;
  height: .55rem;
  background: var(--orange);
}

.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-stack div {
  padding: 1.4rem;
}

.stat-stack strong {
  display: block;
  color: var(--orange);
  font-size: 3rem;
  line-height: 1;
  font-family: Impact, "Arial Narrow", sans-serif;
}

.stat-stack span {
  color: var(--muted);
}

.dark-section {
  background: #08090c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.gallery-item {
  margin: 0;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.gallery-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal-dark);
}

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

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

.gallery-item figcaption {
  min-height: 50px;
  padding: .75rem .8rem;
  color: var(--muted);
  font-size: .92rem;
}

.keyword-list li,
.three-column-list li {
  border: 1px solid var(--line);
  background: rgba(74, 76, 84, .25);
  color: var(--white);
  border-radius: 4px;
  padding: .55rem .7rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--charcoal);
}

.cta-band h2 {
  margin-bottom: .5rem;
}

.cta-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #e6e8eb;
}

.page-hero {
  background:
    linear-gradient(132deg, rgba(5, 6, 7, .98) 0 60%, rgba(74, 76, 84, .9) 60.2% 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

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

.service-list-card h2 {
  margin-bottom: .75rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.service-list-card h2 a {
  color: var(--white);
  text-decoration: none;
}

.service-list-card h2 a:hover {
  color: var(--orange);
}

.service-list-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.service-list-card li {
  color: var(--muted);
  font-size: .9rem;
}

.three-column-list,
.keyword-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(132deg, var(--black) 0 60%, var(--charcoal-dark) 60.2% 100%);
}

.service-hero img {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 2rem;
}

.service-detail aside {
  padding: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 1rem;
  align-items: start;
  background: #08090c;
}

.contact-form-card {
  padding: 1.5rem;
}

.estimate-form {
  display: grid;
  gap: 1rem;
}

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

.estimate-form label {
  display: grid;
  gap: .45rem;
  color: var(--white);
  font-weight: 800;
}

.estimate-form label span {
  color: var(--muted);
  font-size: .9rem;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #07080b;
  color: var(--white);
  font: inherit;
  padding: .85rem .9rem;
}

.estimate-form textarea {
  min-height: 160px;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-color: transparent;
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder {
  color: #858a90;
}

.estimate-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.form-note {
  margin: -.25rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-sidebar,
.contact-section {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.4rem;
}

.big-link {
  font-size: 1.35rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 4rem max(1rem, calc((100vw - var(--max)) / 2)) 1.5rem;
  background: #030407;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .85fr 1.25fr;
  gap: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-services {
  columns: 2;
  padding-left: 1rem;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 920px) {
  .site-header {
    gap: .75rem;
    padding: .65rem 1rem;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

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

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .4rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--black-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: .4rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
  }

  .site-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: .8rem .9rem;
    border-bottom: 0;
    border-left: 3px solid transparent;
    border-radius: 4px;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link.is-active {
    background: rgba(232, 117, 34, .12);
    border-left-color: var(--orange);
  }

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

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    width: auto;
    margin: 0;
    padding: 5rem 1rem 3.5rem;
  }

  .trust-strip,
  .service-grid,
  .gallery-grid,
  .three-column-list,
  .field-grid,
  .contact-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band,
  .feature-row,
  .contact-layout,
  .service-hero,
  .service-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: .55rem .75rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    display: block;
    max-width: 12rem;
    overflow: hidden;
    font-size: .92rem;
    line-height: 1.05;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

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

  .site-nav {
    left: .75rem;
    right: .75rem;
  }

  .trust-strip,
  .service-grid,
  .gallery-grid,
  .service-list,
  .three-column-list,
  .keyword-list,
  .field-grid,
  .contact-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .section,
  .feature-row,
  .cta-band,
  .contact-layout,
  .contact-section,
  .page-hero,
  .service-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: 2.15rem;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}
