:root {
  color: #16283a;
  background: #f4eee7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #16283a;
  --muted: #626c74;
  --line: rgba(22, 40, 58, 0.14);
  --gold: #8f6839;
  --teal: #2f8d7c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(199, 160, 106, 0.16), transparent 28rem),
    linear-gradient(180deg, #f7f1ea 0%, #eef4f2 100%);
}

a {
  color: inherit;
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

header,
.card,
.cta,
.links {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(22, 40, 58, 0.09);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 999px;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
  color: #4e5962;
  font-size: 0.92rem;
  font-weight: 760;
}

.top-links a {
  text-decoration: none;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

main {
  padding-top: 74px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 0.96;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.05;
}

p,
li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.lede {
  max-width: 760px;
  font-size: 1.15rem;
}

.intent {
  display: inline-flex;
  max-width: 760px;
  margin: 8px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(47, 141, 124, 0.18);
  border-radius: 14px;
  color: #173f38;
  background: rgba(47, 141, 124, 0.08);
  font-weight: 760;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 34px 0;
}

.card,
.cta,
.links {
  border-radius: 18px;
  padding: 24px;
}

.card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.cta {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 141, 124, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.86);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
}

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

@media (max-width: 680px) {
  header {
    border-radius: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  main {
    padding-top: 44px;
  }

  .top-links {
    margin-left: 0;
  }

  header .button {
    width: 100%;
  }
}
