:root {
  color-scheme: light;
  --ink: #1f2937;
  --muted: #566070;
  --paper: #fffaf0;
  --panel: #ffffff;
  --sky: #d9f1ff;
  --leaf: #24765c;
  --coral: #f26d5b;
  --sun: #f7c948;
  --line: #ded8cb;
  --shadow: 0 22px 50px rgba(31, 41, 55, 0.15);
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--leaf);
  font-weight: 700;
}

.site-header,
.section,
.site-footer {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--coral);
  color: #ffffff;
  font-weight: 900;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 4.5rem);
  padding: 2rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--leaf);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 39rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 2px solid var(--leaf);
  border-radius: 8px;
  padding: 0 1rem;
  color: var(--leaf);
  text-decoration: none;
}

.button.primary {
  background: var(--leaf);
  color: #ffffff;
}

.hero-image {
  position: relative;
}

.hero-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 4rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  min-height: 13rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card p,
.content p,
.content li {
  color: var(--muted);
}

.content {
  max-width: 50rem;
  padding: 3rem 0 4rem;
}

.content h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
}

.content h2 {
  margin-top: 2.25rem;
  font-size: 1.6rem;
}

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

.notice {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 0.4rem solid var(--sun);
  border-radius: 8px;
  background: #fff4c4;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 820px) {
  .site-header,
  .hero {
    align-items: flex-start;
  }

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

  .site-header {
    display: grid;
  }

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