:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f1ea;
  color: #18352d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
}

.eyebrow,
.role-label,
.step {
  color: #b14d2f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  max-width: 720px;
  color: #416058;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
}

section {
  margin-top: 72px;
}

.roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

article,
form {
  border: 1px solid #c9c3b6;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  padding: 28px;
}

li {
  margin: 10px 0;
  line-height: 1.45;
}

form {
  display: grid;
  gap: 10px;
  max-width: 660px;
}

label {
  margin-top: 10px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #9f9a8f;
  border-radius: 10px;
  background: #fff;
  color: #18352d;
  font: inherit;
  padding: 13px 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  width: fit-content;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: #18352d;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 13px 20px;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

#form-status {
  min-height: 1.5em;
  margin: 8px 0 0;
  color: #315c45;
  font-weight: 700;
}

@media (max-width: 700px) {
  main {
    width: min(100% - 28px, 960px);
    padding-top: 44px;
  }

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

  section {
    margin-top: 52px;
  }

  article,
  form {
    padding: 22px;
  }
}
