:root {
  --navy: #1b3a4b;
  --ink: #24343c;
  --muted: #5a6a72;
  --cream: #f6f3ee;
  --line: #d4dce0;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Libre Franklin", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

header {
  text-align: center;
  padding: 12px 0 40px;
}

.wordmark {
  width: min(520px, 92vw);
  height: auto;
  margin: 0 auto 28px;
  display: block;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 4vw, 34px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}

.lede {
  color: var(--muted);
  font-size: 16px;
}

section {
  margin-top: 36px;
}

h2 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 600;
}

p + p { margin-top: 12px; }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.start {
  background: var(--white);
  border-top: 3px solid var(--navy);
  padding: 22px 24px;
}

.start strong { color: var(--navy); }

.contact a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.contact a:hover { border-bottom-color: var(--navy); }

footer {
  margin-top: 56px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
