:root {
  color-scheme: light;
  font-family: "Manrope", sans-serif;
  background: #f5f1e8;
  color: #171812;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(187, 129, 21, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(187, 129, 21, 0.08) 1px, transparent 1px),
    #f8f5ee;
  background-size: 72px 72px;
}

main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.back {
  color: #665f52;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

article {
  margin-top: 42px;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(23, 24, 18, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 80px rgba(42, 34, 18, 0.08);
}

.eyebrow {
  margin: 0 0 20px;
  color: #a56d09;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 720px;
  margin: 28px 0 48px;
  color: #5e5b53;
  font-size: clamp(18px, 2.5vw, 23px);
  line-height: 1.55;
}

section {
  padding: 28px 0;
  border-top: 1px solid rgba(23, 24, 18, 0.12);
}

h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

section p {
  max-width: 720px;
  margin: 0;
  color: #68645b;
  line-height: 1.7;
}

.control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 0;
}

button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  padding: 14px 18px;
  background: #171812;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: #a56d09;
}

button:focus-visible,
.back:focus-visible {
  outline: 3px solid #e9aa25;
  outline-offset: 4px;
}

@media (max-width: 640px) {
  main {
    width: min(100% - 24px, 920px);
    padding-top: 24px;
  }

  article {
    margin-top: 24px;
    border-radius: 20px;
  }

  .control {
    align-items: stretch;
    flex-direction: column;
  }

  button {
    width: 100%;
  }
}
