:root {
  --ink: #17211f;
  --ink-2: #22312d;
  --sage: #93a188;
  --sage-light: #dbe2d3;
  --sage-soft: #eef2e9;
  --red: #d64a3a;
  --red-dark: #a8372c;
  --white: #ffffff;
  --muted: #65706a;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  background: var(--sage-soft);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(238, 242, 233, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(23, 33, 31, 0.16);
}

.brand span {
  font-size: clamp(1rem, 2vw, 1.2rem);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
}

.nav-links a:hover {
  color: var(--red-dark);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(214, 74, 58, 0.25);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-action:hover,
.button:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 34px rgba(168, 55, 44, 0.26);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--sage-light);
  border: 1px solid rgba(219, 226, 211, 0.45);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero {
  min-height: calc(92vh - 72px);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  align-items: stretch;
  background:
    linear-gradient(110deg, rgba(23, 33, 31, 0.98), rgba(34, 49, 45, 0.9)),
    radial-gradient(circle at 12% 22%, rgba(214, 74, 58, 0.2), transparent 32%);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(42px, 5vw, 60px) clamp(22px, 6vw, 84px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.2vw, 4.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  color: var(--sage-light);
}

.hero-copy p {
  max-width: 600px;
  margin-bottom: 36px;
  color: var(--sage-light);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

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

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 420px;
  padding: clamp(28px, 5vw, 50px);
  background:
    linear-gradient(rgba(147, 161, 136, 0.9), rgba(147, 161, 136, 0.94)),
    repeating-linear-gradient(-45deg, transparent 0 34px, rgba(255, 255, 255, 0.18) 34px 35px);
}

.logo-stage {
  width: min(330px, 100%);
  aspect-ratio: 1 / 1.08;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
  border-radius: 8px;
  background: rgba(238, 242, 233, 0.55);
  box-shadow: var(--shadow);
}

.logo-stage img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
  color: var(--white);
  border-top: 4px solid var(--red);
}

.status-item {
  min-height: 92px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.status-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-item span {
  font-size: 1.05rem;
  font-weight: 800;
}

section {
  padding: clamp(62px, 9vw, 110px) clamp(20px, 6vw, 84px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head p,
.coverage-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.services {
  background: var(--sage-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.service-card {
  min-height: 278px;
  padding: 34px;
  background: var(--white);
}

.service-card .num {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 22px 0 12px;
  font-size: 1.26rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  line-height: 1.64;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 84px);
  background: var(--white);
}

.reason-list {
  display: grid;
  gap: 18px;
}

.reason {
  padding: 24px;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: var(--sage-soft);
}

.reason h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reason p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.stat {
  min-height: 176px;
  padding: 30px 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.stat span {
  color: var(--sage-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-head p {
  color: var(--sage-light);
}

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

.step {
  position: relative;
  min-height: 242px;
  padding: 28px;
  border: 1px solid rgba(219, 226, 211, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.step p {
  margin-bottom: 0;
  color: var(--sage-light);
  line-height: 1.62;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
  background: var(--sage);
}

.coverage-copy p {
  color: rgba(23, 33, 31, 0.82);
}

.map-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 33, 31, 0.96), rgba(34, 49, 45, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.05) 58px 59px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(214, 74, 58, 0.45);
  transform: rotate(-18deg);
}

.map-panel::before {
  inset: 58px 76px;
}

.map-panel::after {
  inset: 98px 126px;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(214, 74, 58, 0.18);
}

.pin-one {
  top: 33%;
  left: 38%;
}

.pin-two {
  top: 52%;
  left: 58%;
}

.pin-three {
  top: 24%;
  left: 67%;
}

.map-label {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 2;
}

.map-label strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.map-label span {
  color: var(--sage-light);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 84px);
  background: var(--ink);
  color: var(--white);
}

.contact-copy p {
  color: var(--sage-light);
}

.contact-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(219, 226, 211, 0.18);
  border-radius: 8px;
  background: rgba(219, 226, 211, 0.18);
}

.contact-detail {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 1.05rem;
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(219, 226, 211, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font: inherit;
  outline: 0;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(219, 226, 211, 0.62);
}

select {
  color: rgba(219, 226, 211, 0.8);
}

select option {
  background: var(--ink);
  color: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 74, 58, 0.18);
}

.form-note {
  display: none;
  margin: 0;
  color: var(--sage-light);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 84px);
  background: #0f1715;
  color: rgba(219, 226, 211, 0.72);
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .why,
  .coverage,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .status-strip,
  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .brand span {
    white-space: normal;
  }

  .nav-action {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.3rem);
  }

  .hero-copy {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .hero-media {
    display: none;
  }

  .status-strip,
  .service-grid,
  .steps,
  .stats-grid,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
