@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/www/fonts/source-serif-4-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/www/fonts/source-serif-4-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/www/fonts/source-serif-4-latin-700.woff2") format("woff2");
}

:root {
  --paper: #f3eee4;
  --paper-edge: #e6dfd0;
  --ink: #1a1612;
  --ink-soft: #4a433a;
  --rule: #c4b8a4;
  --copper: #824019;
  --copper-deep: #5c2c10;
  --font: "Source Serif 4", "Iowan Old Style", Palatino, "Palatino Linotype",
    Georgia, "Times New Roman", serif;
  --measure: 38rem;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 112.5%;
  line-height: 1.55;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  max-width: calc(var(--measure) + var(--gutter) * 2);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 var(--gutter) 4.5rem;
  background: var(--paper);
}

.skip {
  position: absolute;
  left: var(--gutter);
  top: 0.75rem;
  z-index: 2;
  transform: translateY(-160%);
  padding: 0.4rem 0.7rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.95rem;
  text-decoration: none;
}

.skip:focus {
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 2.25rem 0 1.75rem;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  align-items: center;
}

.mark {
  grid-row: 1 / span 2;
  width: 2.15rem;
  height: 2.15rem;
}

.mark-rule {
  fill: var(--copper);
}

.wordmark {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.firm,
.place {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.lede {
  padding: 3.25rem 0 0.5rem;
}

.lede h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.15rem, 6.4vw, 3.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.lede p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.5;
}

.order-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 2.5rem 0 0.5rem;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--paper-edge);
}

.order-nav a {
  color: var(--copper-deep);
  font-size: 0.95rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.order-nav a:hover {
  color: var(--copper);
}

section {
  padding: 2.35rem 0 0;
}

section h2 {
  margin: 0 0 0.7rem;
  color: var(--copper);
  font-size: 1.05rem;
  font-weight: 600;
}

section p {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
}

.command {
  margin-top: 1.25rem;
  padding-top: 2.35rem;
  border-top: 1px solid var(--rule);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.4rem;
}

.cta {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: #f8efe7;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.cta:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
}

.mail {
  color: var(--copper-deep);
  font-size: 1.05rem;
  text-underline-offset: 0.18em;
}

.colophon {
  margin-top: 3.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 1rem;
}

.colophon p {
  margin: 0;
}

.colophon p + p {
  margin-top: 0.35rem;
}

@media (max-width: 640px) {
  html {
    font-size: 106%;
  }

  .masthead {
    padding-top: 1.6rem;
  }

  .lede {
    padding-top: 2.25rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media print {
  body {
    padding-bottom: 1.5rem;
    background: white;
  }

  .skip,
  .order-nav,
  .cta {
    display: none;
  }

  .mail {
    color: var(--ink);
  }

  a[href^="mailto:"]::after {
    content: " (" attr(href) ")";
  }
}
