:root {
  --ink: #17212b;
  --muted: #5c6773;
  --paper: #f8f5ef;
  --surface: #ffffff;
  --line: #ded7cc;
  --green: #214f45;
  --green-2: #163a32;
  --gold: #d89b33;
  --rust: #a94f2d;
  --shadow: 0 18px 55px rgba(23, 33, 43, 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;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(18, 28, 35, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-2);
  background: var(--gold);
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: 0;
}

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

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

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
  padding: 11px 16px;
  color: var(--green-2);
  background: #fff;
  border-radius: 7px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 70px) 72px;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(15, 31, 37, 0.82), rgba(15, 31, 37, 0.26)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(16, 24, 31, 0.92), rgba(16, 24, 31, 0.06) 52%),
    radial-gradient(circle at 78% 24%, rgba(216, 155, 51, 0.28), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions,
.section-heading,
.service-area,
.contact-methods,
.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  color: #112018;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(216, 155, 51, 0.24);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: #fff;
  background: var(--green-2);
}

.quick-strip div {
  min-height: 112px;
  padding: 26px clamp(20px, 4vw, 54px);
  background: var(--green);
}

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

.quick-strip strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

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

.section {
  padding: clamp(72px, 10vw, 116px) clamp(18px, 5vw, 70px);
}

.intro-grid,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.intro p,
.feature-content p,
.service-area p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  justify-self: end;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.service-card,
.steps > div,
blockquote,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(23, 33, 43, 0.06);
}

.service-card {
  min-height: 230px;
  padding: 26px;
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--rust);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.steps p,
blockquote p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  min-height: 620px;
  background: var(--green-2);
  color: #fff;
}

.feature-image {
  min-height: 420px;
  background: url("https://images.unsplash.com/photo-1556912173-3bb406ef7e77?auto=format&fit=crop&w=1400&q=82") center / cover;
}

.feature-content {
  align-self: center;
  padding: clamp(48px, 8vw, 92px);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--gold);
  content: "+";
}

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

.steps > div {
  padding: 28px;
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  font-weight: 900;
}

.reviews {
  background: #efe9df;
}

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

blockquote {
  min-height: 240px;
  margin: 0;
  padding: 30px;
}

blockquote p {
  font-size: 1.15rem;
}

cite {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.service-area {
  justify-content: space-between;
  padding: clamp(54px, 7vw, 76px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 58, 50, 0.94), rgba(22, 58, 50, 0.76)),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.service-area > div {
  max-width: 760px;
}

.service-area p {
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  align-items: stretch;
}

.contact-methods {
  flex-wrap: wrap;
  margin: 28px 0;
}

.contact-methods a {
  padding: 10px 13px;
  color: var(--green);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 900;
}

.hours {
  display: grid;
  gap: 3px;
  color: var(--muted);
}

.hours strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #cfc6b8;
  border-radius: 7px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(33, 79, 69, 0.15);
}

.site-footer {
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.72);
  background: #111b20;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
    justify-content: stretch;
    padding-top: 12px;
  }

  .site-nav.is-open a {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick-strip,
  .service-grid,
  .steps,
  .review-grid,
  .feature-band,
  .intro-grid,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .service-area {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

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

  .hero {
    min-height: 88vh;
    padding: 122px 18px 54px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .hero-actions,
  .contact-methods,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-strip div {
    min-height: 94px;
    padding: 22px 18px;
  }

  .section {
    padding: 64px 18px;
  }

  .feature-content {
    padding: 48px 18px;
  }

  .service-card,
  .steps > div,
  blockquote {
    min-height: auto;
    padding: 24px;
  }
}
