@font-face {
  font-family: "Metamorphous";
  src: url("/assets/fonts/Metamorphous-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/EBGaramond-Variable.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #e5dec8;
  --muted: #aaa48f;
  --ember: #c69855;
  --fen: #637d6d;
  --night: #07100f;
  --panel: rgba(12, 24, 21, .72);
  --line: rgba(198, 152, 85, .2);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 12%, rgba(70, 95, 78, .2), transparent 32rem),
    linear-gradient(180deg, #0b1513 0%, var(--night) 48%, #030706 100%);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.shell {
  width: min(90vw, 760px);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem) 0 4rem;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
}

.back::before { content: "\2190"; }
.back:hover, .back:focus-visible { color: var(--ink); }

header {
  padding: clamp(3rem, 9vw, 6rem) 0 clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--ember);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Metamorphous", Palatino, serif;
  font-size: clamp(2.35rem, 7vw, 4.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.updated {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

article {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

h2 {
  margin: 2.5rem 0 .65rem;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 400;
}

h2:first-child { margin-top: 0; }

p { margin: .65rem 0 1rem; }

ul {
  margin: .65rem 0 1.2rem;
  padding-left: 1.25rem;
}

li { margin: .4rem 0; }

a { color: #d8b47a; }
a:hover, a:focus-visible { color: var(--ink); }

address {
  color: var(--ink);
  font-style: normal;
}

.legal-note {
  margin-top: 2.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

footer {
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: rgba(159, 154, 135, .65);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .64rem;
  letter-spacing: .13em;
  line-height: 1.8;
  text-transform: uppercase;
}

footer a {
  color: inherit;
  text-decoration: none;
}

.footer-separator { margin-inline: .5rem; color: rgba(198, 152, 85, .45); }

@media (max-width: 520px) {
  .shell { width: min(88vw, 760px); }
  article { font-size: .96rem; }
  footer span:first-of-type { display: none; }
  footer a:first-of-type { display: block; margin-top: .5rem; }
}
