:root {
  --paper: #f4efe6;
  --paper-2: #ebe4d8;
  --ink: #1c1814;
  --muted: #6f675c;
  --rule: #d8cfc0;
  --accent: #9c4221;
  --shadow: rgba(28, 24, 20, 0.18);
  --font-sans: "Instrument Sans", "Segoe UI", sans-serif;
  --font-serif: "Fraunces", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, #fffaf2 0%, transparent 55%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 47px,
      rgba(28, 24, 20, 0.025) 47px,
      rgba(28, 24, 20, 0.025) 48px
    ),
    var(--paper);
  font-family: var(--font-sans);
  line-height: 1.5;
}

.sheet {
  width: min(720px, 100%);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 88%, white);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.wordmark span {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 5rem;
  max-width: 34rem;
}

h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lede {
  margin: 1.25rem 0 2rem;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 28rem;
}

.contact-btn {
  appearance: none;
  display: inline-block;
  width: fit-content;
  margin: 0;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
}

.contact-btn:hover {
  background: var(--accent);
}

.contact-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.foot {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .sheet {
    border-left: 0;
    border-right: 0;
    padding-inline: 1.25rem;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }
}
