:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #607078;
  --line: #dce5e3;
  --paper: #fbfcfa;
  --soft: #eef5f1;
  --green: #2f6f52;
  --blue: #2f5f86;
  --amber: #b7791f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 250, .94);
}

.bar,
.section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  font-weight: 750;
  color: var(--ink);
  font-size: 20px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.hero {
  padding: 54px 0 44px;
  background: linear-gradient(180deg, #f7faf7 0%, #fbfcfa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 38px;
  align-items: center;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(34px, 6vw, 58px);
  max-width: 760px;
  letter-spacing: 0;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 19px;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 650;
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(33, 52, 44, .08);
}

.map-card img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 42px 0;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.tag {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

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

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.list li {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

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

  .hero {
    padding-top: 34px;
  }
}
