:root {
  --ink: #3a2c1d;
  --muted: #8a7963;
  --accent: #9a5b34;
  --rule: #d9cfbe;
}

body {
  text-align: center;
  background: url(paper.jpg);
  color: var(--ink);
  font-family: Georgia, "DejaVu Serif", "Liberation Serif", "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ---------- Header ---------- */
.site-header {
  max-width: 92vw;
  margin: 0 auto;
  padding: 56px 16px 10px;
}
.site-header h1 {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
  text-shadow: 2px 2px 1px var(--muted);
}
.site-header .tagline {
  font-size: 21px;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 16px;
}
.site-header .seeking {
  font-size: 18px;
  color: var(--accent);
  margin: 0 0 14px;
}
.site-header .seeking a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 6px 20px;
  cursor: pointer;
}
.site-header .seeking a:hover {
  background: rgba(154, 91, 52, 0.08);
  text-decoration: none;
}
.site-header .contact {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Graphic ---------- */
#frame {
  width: 840px;
  max-width: 92vw;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
}
.fade-in {
  opacity: 0.1;
  animation: fade-in 3s forwards;
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* ---------- Intro ---------- */
.intro {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 0 16px 14px;
  text-align: center;
  font-size: 19px;
  line-height: 1.65;
}
.intro .lead {
  font-size: 21px;
  line-height: 1.6;
  margin: 0;
}
.intro .divider {
  width: 72px;
  height: 1px;
  background: var(--rule);
  margin: 20px auto;
}
.intro .avail {
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  max-width: 92vw;
  margin: 0 auto;
  padding: 8px 16px 48px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  body {
    font-size: 15px;
  }
  .site-header {
    padding: 28px 24px 10px;
  }
  .site-header h1 {
    font-size: 32px;
  }
  .site-header .tagline {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .site-header .seeking {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .site-header .seeking a {
    padding: 5px 14px;
  }
  .site-header .contact {
    font-size: 13px;
  }
  .intro {
    font-size: 15px;
    margin-top: 20px;
    padding: 0 24px 14px;
    text-align: left;
    hyphens: auto;
  }
  .intro .lead {
    font-size: 16px;
    line-height: 1.55;
  }
  .intro .divider {
    margin: 14px auto;
  }
  .intro .avail {
    font-size: 14px;
    hyphens: none;
    text-align: center;
  }
  #frame {
    max-width: 96vw;
  }
  .site-footer {
    padding: 8px 24px 36px;
  }
}
