:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7f8;
  color: #172026;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: #12695f;
}

.site-header,
footer {
  width: min(1080px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-header {
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #172026;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  display: block;
}

nav,
footer {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a,
footer a {
  font-weight: 700;
  text-decoration: none;
}

main {
  width: min(1080px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 58vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 48px;
  align-items: center;
  padding: 42px 0 64px;
}

.hero-logo {
  width: min(220px, 42vw);
  height: auto;
  justify-self: end;
  filter: drop-shadow(0 18px 34px rgba(18, 105, 95, 0.18));
}

.eyebrow {
  margin: 0 0 12px;
  color: #4b635f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: #3f4d54;
  font-size: 20px;
  line-height: 1.55;
}

.site-note {
  max-width: 720px;
  margin: -10px 0 28px;
  color: #172026;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid #12695f;
  border-radius: 8px;
  background: #12695f;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: #12695f;
}

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

article,
.notice,
.policy {
  background: #ffffff;
  border: 1px solid #d8dee2;
  border-radius: 8px;
}

article,
.notice {
  padding: 22px;
}

article h2,
.notice h2,
.policy h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

article p,
.notice p,
.policy p {
  margin: 0 0 18px;
  color: #3f4d54;
  font-size: 16px;
  line-height: 1.65;
}

.notice {
  margin: 0 0 32px;
}

.policy {
  max-width: 860px;
  padding: 34px;
}

.policy h1 {
  font-size: clamp(36px, 5vw, 56px);
}

footer {
  padding: 26px 0 34px;
  color: #53616b;
}

@media (max-width: 760px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .hero-logo {
    justify-self: start;
    order: -1;
    width: 132px;
  }

  .policy {
    padding: 24px;
  }
}
