:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211b;
  background: #f3f0e7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  padding: 64px 24px 32px;
  background: radial-gradient(circle at top left, #fff 0, #f3f0e7 42%, #e7eadf 100%);
}

main, footer {
  width: min(100%, 720px);
  margin-inline: auto;
}

main {
  padding: clamp(28px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 33, 27, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(54, 66, 55, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: #607064;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.intro {
  max-width: 610px;
  margin: 28px 0 48px;
  color: #35443a;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

section {
  padding: 24px 0;
  border-top: 1px solid rgba(23, 33, 27, 0.12);
}

h2 { margin: 0 0 8px; font-size: 1rem; }
p { margin: 0; line-height: 1.65; }
a { color: #315c43; }

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 16px;
  color: white;
  background: #315c43;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover { background: #244a34; }
.back { display: inline-block; margin-bottom: 36px; }

footer {
  padding: 20px 8px 0;
  color: #687168;
  font-size: 0.8rem;
}

@media (max-width: 520px) {
  body { padding: 16px; }
  main { border-radius: 16px; }
}
