:root {
  --ink: #18211f;
  --muted: #5d6b66;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe4dd;
  --green: #286a46;
  --red: #b9483c;
  --steel: #45616a;
  --gold: #c99a3b;
  --shadow: 0 24px 70px rgba(24, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: #fff;
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
}

.main-nav {
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 96px) 80px;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 24, 23, 0.9) 0%, rgba(13, 24, 23, 0.72) 36%, rgba(13, 24, 23, 0.12) 76%),
    linear-gradient(0deg, rgba(13, 24, 23, 0.55) 0%, rgba(13, 24, 23, 0) 38%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(12px);
}

.intro {
  padding: 30px clamp(18px, 6vw, 96px);
  background: var(--green);
  color: #fff;
}

.intro p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 32px);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr);
  gap: clamp(32px, 6vw, 86px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(24, 33, 31, 0.06);
}

.card-number {
  color: var(--red);
  font-weight: 800;
}

.service-card h3 {
  margin: 52px 0 14px;
  font-size: 22px;
}

.service-card p,
.contact-panel p,
.process-list li {
  color: var(--muted);
  line-height: 1.65;
}

.band {
  background: #edf2ee;
  border-block: 1px solid var(--line);
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 76px);
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 96px;
  padding: 20px 22px 20px 74px;
  border-left: 4px solid var(--green);
  background: #fff;
  box-shadow: 0 10px 26px rgba(24, 33, 31, 0.05);
  counter-increment: step;
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--steel);
  color: #fff;
  font-weight: 800;
}

.process-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 800;
}

.contact-section {
  padding-block: 110px;
}

.contact-panel {
  max-width: 850px;
  padding: clamp(30px, 6vw, 64px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 20px;
}

.email-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(13, 24, 23, 0.9), rgba(13, 24, 23, 0.58));
  }

  .split,
  .band-inner,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 70px;
  }

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

  .service-card h3 {
    margin-top: 34px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 96vh;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .process-list li {
    padding-left: 64px;
  }
}
