* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('../fonts/playfair-display-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin.woff2') format('woff2');
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  background: var(--color-cream);
  color: var(--color-ink);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--color-ink);
}
h1 {
  font-size: 46px;
  line-height: 1.12;
}
h2 {
  font-size: 34px;
  line-height: 1.2;
}
h3 {
  font-size: 22px;
  line-height: 1.3;
}
p {
  margin-bottom: 8px;
  line-height: 1.6;
}
a {
  color: var(--color-teal);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--color-red);
}
ul, ol {
  padding-left: 20px;
}
button, input {
  font: inherit;
}
table {
  border-collapse: collapse;
}
:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 2px;
}


.db { display: block; }
.dib { display: inline-block; }
.df { display: flex; }
.dg { display: grid; }
.fdc { flex-direction: column; }
.fww { flex-wrap: wrap; }
.aic { align-items: center; }
.aib { align-items: baseline; }
.jcsb { justify-content: space-between; }
.gap8 { gap: 8px; }
.gap12 { gap: 12px; }
.gap16 { gap: 16px; }
.gap24 { gap: 24px; }
.gap32 { gap: 32px; }
.mb0 { margin-bottom: 0; }
.mb8 { margin-bottom: 8px; }
.mb12 { margin-bottom: 12px; }
.mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; }
.mb32 { margin-bottom: 32px; }
.mt8 { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt32 { margin-top: 32px; }
.mxa { margin-left: auto; margin-right: auto; }
.tc { text-align: center; }
.fw4 { font-weight: 400; }
.fw6 { font-weight: 600; }
.fw7 { font-weight: 700; }
.f13 { font-size: 13px; }
.f14 { font-size: 14px; }
.f15 { font-size: 15px; }
.f16 { font-size: 16px; }
.f18 { font-size: 18px; }
.f20 { font-size: 20px; }
.ttu { text-transform: uppercase; }
.ls2 { letter-spacing: 2px; }
.lh14 { line-height: 1.4; }
.c-ink { color: var(--color-ink); }
.c-soft { color: var(--color-ink-soft); }
.c-teal { color: var(--color-teal); }
.c-red { color: var(--color-red); }
.c-paper { color: var(--color-paper); }
.c-sand { color: var(--color-sand-light); }
.bg-paper { background: var(--color-paper); }
.bg-sand { background: var(--color-sand); }
.w100 { width: 100%; }
.mw560 { max-width: 560px; }
.mw680 { max-width: 680px; }
.mw760 { max-width: 760px; }
.relative { position: relative; }
.list-plain { list-style: none; padding-left: 0; }
.nowrap { white-space: nowrap; }
.hyph { -webkit-hyphens: auto; hyphens: auto; overflow-wrap: break-word; }
.strike { text-decoration: line-through; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
