:root {
  --paper: #f7f1e8;
  --paper-deep: #eadfce;
  --ink: #1f1c18;
  --muted: #766c60;
  --rose: #b48774;
  --olive: #7f8976;
  --line: rgba(31, 28, 24, 0.16);
  --shadow: rgba(31, 28, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(180, 135, 116, 0.22), transparent 32rem),
    linear-gradient(145deg, var(--paper), #fffaf2 58%, var(--paper-deep));
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  min-height: 100vh;
}

a {
  color: inherit;
}

.shell {
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 64px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.14em;
  background: rgba(255, 255, 255, 0.34);
}

.links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.links a {
  text-decoration: none;
}

.hero {
  display: grid;
  gap: 28px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 252, 246, 0.7);
  box-shadow: 0 24px 70px var(--shadow);
}

.kicker {
  margin: 0;
  color: var(--rose);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 10vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-style: italic;
}

h2 {
  margin: 46px 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
}

p,
li {
  font-size: 21px;
  line-height: 1.55;
}

p {
  margin: 0 0 18px;
}

ul {
  margin: 0;
  padding-left: 24px;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.22;
}

.card {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.44);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.meta {
  color: var(--muted);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  margin-top: 60px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .shell {
    width: min(100vw - 22px, 920px);
    padding-top: 20px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .hero {
    padding: 32px 24px;
    border-radius: 28px;
  }

  p,
  li {
    font-size: 18px;
  }
}
