/* Shared styles for the secondary pages (legal, 404). The landing page keeps
   its CSS inline so it renders in a single request. */
@font-face {
  font-family: "Fraunces";
  src: url("Fraunces-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("Outfit-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  src: url("Outfit-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --bone: #F2ECE0;
  --bone-light: #FFF8EC;
  --ink: #1F1F1D;
  --gold: #D08A3E;
  --terracotta: #C16A33;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

nav { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; }
nav .logo img { height: 30px; width: auto; }
nav a { font-size: 0.95rem; text-decoration: none; opacity: 0.7; }
nav a:hover { opacity: 1; }

main { padding: 24px 0 90px; }
h1 {
  font-family: "Fraunces", serif; font-weight: 600; line-height: 1.15;
  font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px;
}
h2 {
  font-family: "Fraunces", serif; font-weight: 600; line-height: 1.2;
  font-size: 1.35rem; margin: 44px 0 12px;
}
h3 { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 1.02rem; margin: 26px 0 6px; }
p, li { margin-bottom: 12px; }
ul { padding-left: 1.2em; }
.lede { font-size: 1.05rem; opacity: 0.7; margin-bottom: 8px; }
.updated { font-size: 0.85rem; opacity: 0.55; margin-top: 40px; }
address { font-style: normal; }
main a { text-decoration: underline; text-underline-offset: 3px; }

footer { background: var(--ink); color: var(--bone); padding: 40px 0; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px 28px; }
footer img { height: 24px; width: auto; }
footer .links { display: flex; gap: 22px; font-size: 0.9rem; flex-wrap: wrap; }
footer a { text-decoration: none; opacity: 0.8; }
footer a:hover { opacity: 1; }

@media (max-width: 800px) {
  footer .wrap { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
