:root {
  --ink: #1B2A24;
  --green: #2E4A3A;
  --ochre: #C58A2E;
  --ochre-dark: #A6711F;
  --paper: #F6F4EE;
  --paper-2: #ECE8DD;
  --slate: #48564E;
  --sage: #8E9A8C;
  --line: rgba(27, 42, 36, .14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 40px 24px 0;
}

.card {
  max-width: 620px;
  margin: auto 0;
  padding: 48px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 40px;
  color: var(--ochre);
}

.brand .mark { width: 34px; height: 34px; }

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  color: var(--ink);
}

.wordmark b { color: var(--ochre); font-weight: 600; }

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
}

h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-bottom: 20px;
}

.lede {
  font-size: 1.12rem;
  color: var(--slate);
  max-width: 34ch;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  background: var(--ochre);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 26px;
  border-radius: 8px;
  border: 1px solid var(--ochre);
  transition: background .15s, transform .15s;
}

.btn:hover { background: var(--ochre-dark); transform: translateY(-1px); }

.roofline {
  display: block;
  width: 100%;
  height: 40px;
  color: var(--ink);
  margin-top: auto;
}

.roofline path { fill: currentColor; }

.foot {
  width: 100%;
  background: var(--ink);
  color: var(--sage);
  font-size: .82rem;
  padding: 18px 24px;
  letter-spacing: .02em;
}
