:root {
  color-scheme: light;
  --ink: #121711;
  --text: #293127;
  --muted: #687064;
  --paper: #f7f4ea;
  --cream: #fffaf0;
  --moss: #314a2f;
  --moss-dark: #172817;
  --fern: #4e7d3a;
  --safety: #f5a623;
  --rust: #9b4a2f;
  --line: #d9d0be;
  --smoke: rgba(18, 23, 17, 0.72);
  --shadow: 0 26px 80px rgba(18, 23, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(49, 74, 47, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 118px 100%;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

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

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

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px clamp(16px, 5vw, 72px);
  color: white;
  background: var(--moss-dark);
  font-size: 13px;
  font-weight: 800;
}

.top-bar a {
  color: var(--safety);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(16px, 5vw, 72px);
  background: rgba(247, 244, 234, 0.94);
  border-bottom: 1px solid rgba(49, 74, 47, 0.18);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
}

.brand span:last-child {
  display: grid;
  line-height: 1.04;
}

.brand strong {
  color: var(--ink);
  font-size: 18px;
}

.brand em {
  color: var(--fern);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--moss-dark);
  background: var(--safety);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  outline: 4px solid rgba(245, 166, 35, 0.24);
}

.nav-links {
  gap: 24px;
  color: var(--moss-dark);
  font-size: 14px;
  font-weight: 900;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  padding: 11px 16px;
  color: white;
  background: var(--moss);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: white;
  background: var(--rust);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button-secondary {
  color: var(--moss-dark);
  background: var(--safety);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 5vw, 60px);
  align-items: end;
  min-height: 720px;
  padding: clamp(70px, 10vw, 130px) clamp(16px, 5vw, 72px) 46px;
  overflow: hidden;
  background: var(--moss-dark);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(18, 23, 17, 0.88));
  content: "";
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 23, 17, 0.9), rgba(18, 23, 17, 0.56), rgba(18, 23, 17, 0.18)),
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1800&q=82") center/cover;
  transform: scale(1.02);
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--safety);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(46px, 8vw, 98px);
}

.hero-lede {
  max-width: 710px;
  color: #e6eadf;
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card {
  padding: 28px;
  color: white;
  background: rgba(18, 23, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid var(--safety);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.06;
}

.hero-card p {
  color: #d8dfd1;
}

.hero-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 0;
}

.hero-card div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-card dt {
  color: var(--safety);
  font-size: 34px;
  font-weight: 900;
}

.hero-card dd {
  margin: 0;
  color: #d8dfd1;
  font-size: 13px;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 28px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

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

.proof-strip strong {
  margin-bottom: 5px;
  color: var(--moss-dark);
  font-size: 18px;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 9vw, 108px) clamp(16px, 5vw, 72px);
}

.split,
.areas,
.quote-section,
.review-section,
.safety-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 76px);
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-grid article:first-child {
  border-top: 1px solid var(--line);
}

.service-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  background: var(--moss);
  border-radius: 50%;
  font-weight: 900;
}

.service-grid h3 {
  margin: 0 0 7px;
  font-size: 28px;
}

.service-grid p {
  grid-column: 2;
  margin-bottom: 0;
}

.safety-band {
  color: white;
  background:
    linear-gradient(135deg, rgba(23, 40, 23, 0.96), rgba(49, 74, 47, 0.92)),
    url("https://images.unsplash.com/photo-1516214104703-d870798883c5?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.safety-band h2 {
  color: white;
}

.safety-band p {
  color: #e4eadf;
}

.feature-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.feature-list span {
  padding: 18px 20px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--safety);
  font-weight: 900;
}

.review-section {
  background: var(--cream);
}

.review-card {
  margin: 0;
  padding: clamp(24px, 5vw, 46px);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 rgba(49, 74, 47, 0.1);
}

blockquote {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.02;
}

figcaption {
  color: var(--rust);
  font-weight: 900;
}

.areas {
  align-items: start;
}

.hours-card,
.quote-form {
  padding: clamp(22px, 4vw, 34px);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(18, 23, 17, 0.1);
}

.hours-card {
  border-top: 8px solid var(--moss);
}

.hours-card h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

.hours-card .button {
  width: 100%;
  margin-top: 12px;
}

.quote-section {
  background: var(--moss-dark);
}

.quote-section h2 {
  color: white;
}

.quote-section p {
  color: #dbe4d6;
}

.quote-form {
  display: grid;
  gap: 14px;
  border-top: 8px solid var(--safety);
}

label {
  display: grid;
  gap: 7px;
  color: var(--moss-dark);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: #fbfaf5;
  border: 1px solid #cfc7b5;
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

.quote-form .button {
  width: 100%;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(16px, 5vw, 72px);
  color: white;
  background: #0c120c;
}

.site-footer p {
  margin: 6px 0 0;
  color: #c9d1c5;
}

.site-footer a {
  color: var(--safety);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .top-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 42px;
    padding: 9px;
    background: var(--cream);
    border: 1px solid var(--line);
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    background: var(--moss-dark);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .split,
  .areas,
  .quote-section,
  .review-section,
  .safety-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 560px) {
  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-card dl,
  .service-grid article {
    grid-template-columns: 1fr;
  }

  .service-grid p {
    grid-column: auto;
  }

  .button,
  .nav-cta {
    width: 100%;
  }
}
