:root {
  --ink: #101512;
  --charcoal: #101512;
  --charcoal-2: #17221d;
  --black: #070a08;
  --green: #2f4b40;
  --green-dark: #21372f;
  --gold: #d9a529;
  --gold-bright: #f0bf3f;
  --steel: #63716c;
  --steel-2: #dce3df;
  --mist: #eef2ef;
  --paper: #f7f8f5;
  --white: #ffffff;
  --muted: #59625d;
  --line: rgba(16, 21, 18, 0.14);
  --dark-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 58px rgba(16, 21, 18, 0.14);
  --shadow-strong: 0 28px 72px rgba(16, 21, 18, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link:focus {
  z-index: 10000;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(16, 21, 18, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.top-strip {
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
  font-size: 0.82rem;
}

.top-strip__inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: var(--gold-bright);
  font-weight: 850;
  white-space: nowrap;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 136px;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.36));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--gold);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(217, 165, 41, 0.2);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  padding: clamp(32px, 4.4vw, 54px) 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 245, 0.96) 54%, rgba(220, 227, 223, 0.92)),
    repeating-linear-gradient(90deg, rgba(16, 21, 18, 0.05) 0 1px, transparent 1px 104px);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.hero__copy-block {
  position: relative;
  padding: 8px 0 8px 24px;
}

.hero__copy-block::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.08rem, 3.35vw, 3.4rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 850;
}

h3 {
  font-size: 1.08rem;
}

.hero__lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #34413a;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.hero__proof {
  width: fit-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 21, 18, 0.16);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  font-weight: 850;
}

.hero__actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 30px rgba(217, 165, 41, 0.28);
}

.button--primary:hover,
.button--primary:focus {
  background: var(--gold-bright);
}

.button--secondary {
  color: var(--ink);
  border-color: rgba(16, 21, 18, 0.24);
  background: rgba(255, 255, 255, 0.84);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.hero-proof {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.hero-proof__label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero-proof img,
.proof-gallery img {
  width: 100%;
  object-fit: cover;
}

.hero-proof__main img {
  height: clamp(238px, 25vw, 328px);
}

.hero-proof__rail {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.hero-proof__rail img {
  height: clamp(78px, 8vw, 96px);
}

figcaption {
  min-height: 42px;
  padding: 11px 13px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f3f5f1);
  border-top: 1px solid rgba(16, 21, 18, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
}

.trust-strip {
  color: var(--white);
  background: var(--charcoal);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-line);
}

.trust-strip__grid div {
  min-height: 124px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--charcoal-2);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(60px, 7vw, 96px) 0;
}

.work,
.areas {
  background: var(--paper);
}

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

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.section-heading p,
.areas p,
.commercial p,
.approach__panel p,
.contact p {
  margin: 18px 0 0;
  color: var(--muted);
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.proof-gallery figure {
  box-shadow: var(--shadow);
}

.proof-gallery img {
  height: clamp(230px, 30vw, 380px);
}

.proof-gallery figure:nth-child(2) img {
  height: clamp(230px, 30vw, 380px);
}

.service-paths {
  background:
    linear-gradient(180deg, #ffffff, #eef2ef);
}

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

.path-card {
  min-height: 270px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 21, 18, 0.08);
}

.path-card span,
.step span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  font-weight: 900;
}

.path-card h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.path-card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.commercial {
  color: var(--white);
  background:
    linear-gradient(135deg, #101512, #21372f 58%, #070a08);
}

.commercial .eyebrow,
.commercial h2 {
  color: var(--white);
}

.commercial p {
  color: rgba(255, 255, 255, 0.76);
}

.commercial__grid,
.approach__grid,
.areas__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

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

.maintenance-list div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

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

.maintenance-list strong {
  margin-bottom: 4px;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.maintenance-list span {
  color: rgba(255, 255, 255, 0.74);
}

.approach {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 165, 41, 0.12), transparent 30%),
    linear-gradient(135deg, #17221d, #2f4b40 60%, #101512);
}

.approach .eyebrow,
.approach h2 {
  color: var(--white);
}

.approach__panel p {
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.step span {
  margin-bottom: 0;
}

.step h3 {
  margin-bottom: 7px;
}

.step p {
  color: rgba(255, 255, 255, 0.74);
}

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

.area-list span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.contact {
  padding: clamp(58px, 8vw, 96px) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #17221d 64%, var(--charcoal));
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  margin-top: 0;
  padding: 22px;
  background: rgba(16, 21, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.contact-panel .button,
.contact-panel p {
  width: 100%;
}

.contact-panel .button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel p {
  margin-top: 6px;
  font-size: 0.92rem;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer__inner {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
}

.footer-brand img {
  width: 216px;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.38));
}

.footer p {
  margin: 0;
  text-align: right;
}

.footer__fine {
  margin-top: 8px;
  font-size: 0.86rem;
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 8px) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

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

  .nav-cta {
    margin-top: 12px;
    border-bottom: 0;
  }

  .hero__inner,
  .section-heading--split,
  .commercial__grid,
  .approach__grid,
  .areas__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .top-strip__inner {
    min-height: 34px;
    font-size: 0.72rem;
  }

  .top-strip__inner span {
    max-width: 185px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 112px;
  }

  .site-nav {
    inset: calc(100% + 8px) 12px auto 12px;
  }

  .hero {
    padding: 28px 0 42px;
  }

  .hero__copy-block {
    padding-left: 16px;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero__actions .button,
  .contact-panel .button {
    width: 100%;
  }

  .hero-proof {
    padding: 10px;
  }

  .hero-proof__main img,
  .proof-gallery img {
    height: auto;
    max-height: none;
  }

  .hero-proof__rail,
  .trust-strip__grid,
  .proof-gallery,
  .path-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .hero-proof__rail img {
    height: auto;
  }

  .trust-strip__grid div,
  .path-card {
    min-height: auto;
  }

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

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.74rem;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }
}
