:root {
  color-scheme: light;
  --ink: #16201b;
  --muted: #5c6861;
  --line: #dce4de;
  --paper: #f7faf7;
  --panel: #ffffff;
  --accent: #167764;
  --accent-strong: #0f5c4e;
  --warm: #f0b95a;
  --sky: #d9edf7;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: blur(12px);
}

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

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 44px;
  padding: 76px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 650;
  text-decoration: none;
}

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

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(33, 44, 38, 0.12);
}

.hero-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.band {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.band.alt {
  background: linear-gradient(180deg, var(--sky), #f7faf7 74%);
}

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

.card,
.plain-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card {
  overflow: hidden;
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body,
.plain-card {
  padding: 18px;
}

.plain-card {
  border-top: 4px solid var(--warm);
}

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

.content {
  max-width: 820px;
  padding: 58px 0;
}

.content h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.content ul {
  padding-left: 1.25rem;
}

.content li + li {
  margin-top: 8px;
}

.notice {
  margin: 28px 0;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #eef8f4;
}

.footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer .section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

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

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

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