:root {
  --ink: #111;
  --paper: #f7f2e8;
  --rule: #2a2926;
  --soft: #6f675c;
  --brass: #9b7a3a;
  --card: rgba(255, 255, 255, 0.35);
  --shadow: 4px 4px 0 rgba(0,0,0,.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

a {
  color: var(--ink);
}

header {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  border-bottom: 3px double var(--rule);
  background:
    linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.15)),
    var(--paper);
}

.logo {
  width: 220px;
  max-width: 70%;
  margin-bottom: .1rem;
}

header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .06em;
}

.tagline {
  margin-top: .5rem;
  color: var(--soft);
  font-size: 1.1rem;
  letter-spacing: .04em;
}

nav {
  margin-top: 1.5rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  margin: 0 .7rem;
}

nav a:hover,
nav a[aria-current="page"] {
  border-bottom: 1px solid var(--ink);
}

main,
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section {
  margin-bottom: 3rem;
}

.section h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section h2 {
  font-size: 1.7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section p {
  max-width: 72ch;
}

.intro {
  font-size: 1.25rem;
  border-left: 4px solid var(--brass);
  padding-left: 1.25rem;
  margin-bottom: 3rem;
}

.section-rule {
  text-align: center;
  margin: 3rem 0;
  color: var(--soft);
  letter-spacing: .25em;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  border: 1px solid var(--rule);
  padding: 1.25rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.card h2 {
  margin-top: 0;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.card p {
  color: var(--soft);
}

.card {
  overflow-wrap: anywhere;
}

.card h2 {
  line-height: 1.25;
}

.card a {
  overflow-wrap: anywhere;
}

.email-link {
  font-size: 1rem;
  word-break: break-word;
}

.button {
display: inline-block;
margin-top: 1rem;
padding: .75rem 1.2rem;

background: var(--brass);
color: white;

border: 1px solid var(--brass);
text-decoration: none;

text-transform: uppercase;
letter-spacing: .08em;
font-size: .85rem;
font-weight: 600;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button {
  border-radius: 4px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,.35);
}

.table th,
.table td {
  padding: .9rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.table th {
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
}

.table tr:last-child td {
  border-bottom: none;
}

footer {
  border-top: 3px double var(--rule);
  text-align: center;
  padding: 2rem 1rem;
  color: var(--soft);
  font-size: .9rem;
}

.footergrid {
  max-width: 900px;
  margin: 0 auto;
}

.smalllinks {
  margin-top: .75rem;
}

.smalllinks a {
  color: var(--soft);
  text-decoration: none;
  margin: 0 .5rem;
}

.smalllinks a:hover {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: .5rem .75rem;
  z-index: 1000;
}

@media (max-width: 700px) {
  nav a {
    display: inline-block;
    margin: .35rem .45rem;
  }

  main,
  .container {
    padding: 2rem 1rem;
  }

  .logo {
    width: 180px;
  }
}
