:root {
  --bg: #f4f5f0;
  --ink: #1b2a24;
  --muted: #5b655f;
  --gold: #e5b640;
  --juniper: #3c6e52;
  --rule: #d8d6cc;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  border-left: 7px solid var(--gold);
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.page {
  max-width: 68ch;
  margin: 0 auto;
  padding: 28px 24px 56px;
}

header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}


.wordmark {
  margin: 0 24px 12px 0;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}

nav { font-size: 15px; }
nav a { display: inline-block; color: var(--muted); text-decoration: none; padding-bottom: 2px; margin: 0 18px 4px 0; }
nav a:last-child { margin-right: 0; }
nav a:hover, nav a:focus { color: var(--ink); text-decoration: underline; }
nav a[aria-current="page"] { color: var(--ink); border-bottom: 2px solid var(--gold); }

h1, h2, h3 {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-weight: normal;
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 { font-size: 39px; margin-bottom: 20px; }
h2 { font-size: 25px; margin-top: 48px; }
h3 { font-size: 20px; margin-top: 28px; }

p, ul, ol { margin: 0 0 18px; }
li { margin-bottom: 6px; }
.lede { font-size: 20px; line-height: 1.5; color: var(--ink); }
.meta { color: var(--muted); font-size: 15px; }

a { color: var(--juniper); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.notice {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin: 28px 0;
}
.notice p:last-child { margin-bottom: 0; }

.button {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
}
.button:hover, .button:focus { background: var(--juniper); }

.form-frame {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #fff;
}

dl { margin: 0 0 18px; }
dt { font-weight: 600; margin-top: 10px; }
dd { margin: 2px 0 0; }

footer {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--muted);
}
address { font-style: normal; }
footer address { margin-bottom: 12px; }
footer a { color: var(--muted); }
footer .links { margin-top: 10px; }
footer .links a { display: inline-block; margin: 0 18px 4px 0; }

@media (max-width: 600px) {
  html { border-left-width: 5px; }
  body { font-size: 16px; }
  .page { padding: 20px 18px 48px; }
  h1 { font-size: 31px; }
  h2 { font-size: 23px; }
  .lede { font-size: 18px; }
}
