:root {
  color: #263128;
  background: #f7f4ec;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f4ec;
  color: #263128;
  line-height: 1.65;
}

a {
  color: #4f633f;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page {
  min-height: 100vh;
}

.topbar {
  border-bottom: 1px solid rgba(38, 49, 40, 0.12);
  background: rgba(247, 244, 236, 0.94);
}

.nav,
.wrap,
.footer-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #263128;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links,
.topic-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.nav-links a,
.footer-links a {
  font-size: 13px;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #4f633f;
  background: #4f633f;
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(79, 99, 63, 0.18);
}

.button.secondary {
  background: rgba(79, 99, 63, 0.1);
  color: #4f633f;
  box-shadow: none;
}

.hero {
  padding: 72px 0 36px;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(79, 99, 63, 0.22);
  background: rgba(79, 99, 63, 0.08);
  color: #4f633f;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  color: #263128;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  max-width: 880px;
  margin: 18px 0;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.lead {
  font-size: 19px;
  max-width: 820px;
  color: rgba(38, 49, 40, 0.78);
}

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

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

.card,
.faq-item,
.notice {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(38, 49, 40, 0.12);
  border-radius: 24px;
  padding: 22px;
}

.notice {
  border-color: rgba(79, 99, 63, 0.25);
  background: rgba(79, 99, 63, 0.08);
}

main section {
  padding: 34px 0;
}

p,
li {
  color: rgba(38, 49, 40, 0.78);
}

ul {
  padding-left: 20px;
}

.faq {
  display: grid;
  gap: 14px;
}

.topic-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: #263128;
  color: white;
}

.topic-box h2,
.topic-box p {
  color: white;
}

.topic-links a {
  color: white;
}

footer {
  margin-top: 48px;
  padding: 34px 0;
  border-top: 1px solid rgba(38, 49, 40, 0.12);
}

.footer-inner {
  display: grid;
  gap: 20px;
}

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

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

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