:root {
  --paper: #f6f1e8;
  --sidebar: #efe8dc;
  --card: #ffffff;
  --ink: #121714;
  --muted: #3d4541;
  --line: #d4cbbb;
  --accent: #1f5c3e;
  --accent-soft: #dcece3;
  --danger: #9b1c1c;
  --shadow: rgba(18, 23, 20, 0.08);
  --max: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  background: var(--sidebar);
  border-bottom: 1px solid var(--line);
}

.site-header-inner,
.site-footer-inner,
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--shadow);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.95rem;
}

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

nav a:hover,
nav a[aria-current="page"] {
  color: var(--accent);
}

main {
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
}

.hero-icon {
  justify-self: center;
}

.hero-icon img {
  width: min(240px, 70vw);
  filter: drop-shadow(0 18px 40px rgba(31, 92, 62, 0.18));
}

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

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-title {
  font-size: 1.5rem;
  margin: 40px 0 12px;
}

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

.legal h1 {
  margin-top: 0;
  font-size: 2rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.updated {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.faq-item + .faq-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-icon {
    order: -1;
  }

  nav {
    width: 100%;
  }
}
