@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Sora:wght@300;400;500;600&display=swap");

:root {
  --bg: #f6f0e8;
  --surface: #ffffff;
  --ink: #1e2229;
  --muted: #5a5e66;
  --accent: #0f5b5f;
  --accent-2: #dd7a5e;
  --tint: #f1dfd4;
  --border: rgba(30, 34, 41, 0.12);
  --shadow: 0 24px 60px rgba(20, 28, 32, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Helvetica Neue", "Arial", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.7;
  z-index: 0;
}

.shape.one {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(221, 122, 94, 0.35), transparent 70%);
  top: -120px;
  left: -120px;
}

.shape.two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 91, 95, 0.28), transparent 70%);
  bottom: -140px;
  right: -140px;
}

.shape.three {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(241, 223, 212, 0.8), transparent 70%);
  top: 25%;
  right: 10%;
}

main {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 88px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.brand {
  font-family: "DM Serif Display", "Georgia", serif;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

nav a:hover {
  color: var(--accent);
  border-color: rgba(15, 91, 95, 0.2);
  background: #fff;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-bottom: 28px;
}

h1 {
  font-family: "DM Serif Display", "Georgia", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0;
  letter-spacing: -0.01em;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.meta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--accent);
  background: rgba(15, 91, 95, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.card {
  background: var(--surface);
  border-radius: 22px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease;
}

section {
  margin-top: 24px;
}

section:first-of-type {
  margin-top: 0;
}

h2 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.02rem;
  margin: 16px 0 8px;
}

p,
li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

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

footer {
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .card {
    padding: 24px;
  }
}
