:root {
  --bg: #f5efe6;
  --surface: rgba(255, 250, 243, 0.92);
  --text: #243127;
  --muted: #5f6a63;
  --forest: #19392d;
  --forest-soft: #2f5748;
  --accent: #a9713d;
  --line: rgba(36, 49, 39, 0.12);
  --shadow: 0 24px 70px rgba(25, 57, 45, 0.13);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 183, 146, 0.28), transparent 32%),
    linear-gradient(180deg, #f9f4ec 0%, #f4ede1 45%, #efe5d5 100%);
}

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

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

.page {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero,
.content,
.side-card,
.footer {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  color: #14261d;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 14ch;
}

.lead {
  max-width: 58ch;
  margin: 1rem 0 0;
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.button--ghost {
  background: rgba(255, 250, 243, 0.78);
  color: var(--forest);
  border: 1px solid rgba(25, 57, 45, 0.12);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 1.25rem;
}

.content {
  padding: 1.75rem;
}

.content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.content p {
  margin: 0 0 1rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}

.content p:last-child {
  margin-bottom: 0;
}

.side-card {
  padding: 1.75rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.side-card h3 {
  margin: 0;
  font-size: 1.9rem;
}

.side-card p,
.side-card li {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.side-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.footer {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

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

@media (max-width: 640px) {
  .page {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .hero,
  .content,
  .side-card,
  .footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .footer {
    flex-direction: column;
  }
}
