:root {
  --paper: #fbfaf7;
  --paper-2: #f1efe8;
  --ink: #24221e;
  --ink-2: #56524a;
  --ink-3: #8d887c;
  --line: #e6e1d4;
  --line-2: #d2ccba;
  --clay: #bf5d3c;
  --sage: #718062;
  color: var(--ink);
  background: var(--paper);
  font-family: "Newsreader", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(113, 128, 98, 0.12), transparent 23rem),
    radial-gradient(circle at 92% 8%, rgba(191, 93, 60, 0.1), transparent 24rem),
    var(--paper);
}

main {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 38px clamp(18px, 5vw, 46px) 60px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  text-decoration: none;
}

.wordmark span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--clay);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

a {
  color: inherit;
}

.nav-links a {
  color: var(--ink-3);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--clay);
}

.hero {
  display: grid;
  gap: 18px;
  padding: clamp(54px, 10vw, 90px) 0 34px;
}

.eyebrow,
.section-label {
  color: var(--ink-3);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 9vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.45rem, 4.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
}

p,
li {
  color: var(--ink-2);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
}

.dek {
  max-width: 62ch;
  font-size: clamp(1.02rem, 2.6vw, 1.18rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.card,
.note {
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: color-mix(in srgb, var(--paper-2) 78%, white);
  padding: 20px;
}

.card {
  display: grid;
  gap: 8px;
}

.card strong {
  font-size: 1.06rem;
}

.section {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.note {
  display: grid;
  gap: 10px;
  border-color: color-mix(in srgb, var(--clay) 38%, var(--line-2));
}

.feedback-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 800;
}

.feedback-form label span {
  color: var(--ink-3);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper-2) 72%, white);
  font: 600 1rem/1.45 "Hanken Grotesk", system-ui, sans-serif;
}

.feedback-form textarea {
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--clay) 48%, transparent);
  outline-offset: 2px;
}

.quote-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.quote-list li {
  border-left: 3px solid var(--clay);
  padding-left: 12px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.24rem;
}

.fine-print {
  color: var(--ink-3);
  font-size: 0.86rem;
}

@media (max-width: 720px) {
  nav {
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
  }

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