:root {
  --bg-1: #f8f3ea;
  --bg-2: #f1ece0;
  --bg-3: #eceee6;
  --card: #fffdf9;
  --card-border: rgba(33, 29, 23, 0.09);
  --ink: #211d17;
  --body-text: #55503f;
  --muted: #8a8574;
  --button-bg: #201c16;
  --button-text: #fbf7ef;
  --shadow:
    0 1px 2px rgba(33, 29, 23, 0.04), 0 12px 32px rgba(33, 29, 23, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-1);
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-text);
  background: linear-gradient(
    160deg,
    var(--bg-1) 0%,
    var(--bg-2) 45%,
    var(--bg-3) 100%
  );
  background-attachment: fixed;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5em;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 480;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1em, 5vw, 2.9em);
  line-height: 1.18;
  margin: 0 0 0.5em;
  text-align: center;
  font-optical-sizing: auto;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 460;
}

h2 {
  font-size: 1.5em;
  line-height: 1.25;
  margin: 0 0 0.6em;
}

.card h2:not(:first-child) {
  margin-top: 1.75em;
}

p {
  margin: 0 0 1.1em;
}

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

a {
  color: var(--ink);
  text-decoration-color: rgba(33, 29, 23, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--ink);
}

strong {
  font-weight: 600;
  color: var(--ink);
}

/* header */

header.wrap {
  padding-top: 2.2em;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.45em;
  letter-spacing: -0.01em;
}

.logo-link img {
  width: 28px;
  height: 28px;
}

/* hero */

.hero {
  text-align: center;
  padding: 4.5em 0 3em;
}

.hero-body {
  max-width: 46em;
  margin: 0 auto 2em;
  text-align: left;
}

/* pill buttons */

.cta-button {
  display: inline-block;
  background: var(--button-bg);
  color: var(--button-text);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  font-size: 0.98em;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(33, 29, 23, 0.08),
    0 16px 36px rgba(33, 29, 23, 0.1);
  text-decoration: none;
}

/* content cards */

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  padding-bottom: 1.25em;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 2.2em 2.3em;
}

ul {
  margin: 0;
  padding: 0 0 0 1.2em;
}

li {
  margin-bottom: 0.75em;
}

li:last-child {
  margin-bottom: 0;
}

.bio p {
  margin-bottom: 0.6em;
}

/* closing */

.closing {
  text-align: center;
  padding: 3em 0 5em;
}

.closing p {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35em;
  line-height: 1.4;
  color: var(--ink);
  max-width: 24em;
  margin: 0 auto 1.5em;
}

footer {
  padding: 0 0 3em;
  color: var(--muted);
  font-size: 0.85em;
  text-align: center;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .hero {
    padding: 3em 0 2em;
  }
  .card {
    padding: 1.7em 1.6em;
    border-radius: 18px;
  }
  .closing {
    padding: 2.5em 0 4em;
  }
}
