:root {
  --bg: #f5f0e6;
  --ink: #0f1714;
  --muted: #566a60;
  --panel: #ffffff;
  --line: #dbe5df;
  --deep: #11302a;
  --teal: #1b6f6a;
  --shadow: 0 22px 52px rgba(13, 22, 19, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 2%, rgba(106, 165, 149, 0.2), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(144, 188, 173, 0.16), transparent 30%),
    var(--bg);
}

.page-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 44px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.brand img {
  border-radius: 10px;
}

.top-links {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-links a {
  color: rgba(15, 23, 20, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
}

.top-links a:hover {
  color: var(--ink);
}

.hero {
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero p {
  color: var(--muted);
  line-height: 1.6;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.15rem;
  margin-top: 22px;
  margin-bottom: 8px;
}

.card h2:first-child {
  margin-top: 0;
}

.card p {
  line-height: 1.6;
  color: #203129;
}

.closing-note {
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfe2da;
  background: #f2faf6;
  color: #1e4035;
  font-weight: 500;
}

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

  .top-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-links a {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #cfe0d8;
    background: rgba(255, 255, 255, 0.72);
  }

  .card {
    padding: 20px;
  }
}
