:root {
  --ground: #16201e;
  --ground-2: #1d2a27;
  --lead: #0a0f0e;
  --gilt: #c9a227;
  --ivory: #f3e9d2;
  --sage: #9aa992;
  --line: rgba(201, 162, 39, .28);
  --frame: 10px;
  --display: "Yeseva One", "Palatino Linotype", Georgia, serif;
  --body: "Alegreya", Georgia, "Times New Roman", serif;
}

@media (min-width: 800px) { :root { --frame: 16px; } }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100svh;
  color: var(--ivory);
  background: var(--ground);
  font: 18px/1.65 var(--body);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--ground);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='160' viewBox='0 0 120 160'%3E%3Cg fill='none' stroke='%23c9a227' stroke-opacity='.085' stroke-width='1.1'%3E%3Cpath d='M60 0C20 30 20 50 60 80c40 30 40 50 0 80'/%3E%3Cpath d='M0 0c40 30 40 50 0 80-40 30-40 50 0 80'/%3E%3Cpath d='M120 0c-40 30-40 50 0 80 40 30 40 50 0 80'/%3E%3C/g%3E%3C/svg%3E");
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(75% 48% at 50% -8%, rgba(201,162,39,.16), transparent 72%);
}
.frame {
  position: fixed;
  inset: var(--frame);
  z-index: 20;
  pointer-events: none;
  border: 1px solid rgba(201,162,39,.34);
  outline: var(--frame) solid var(--ground);
}
.wrap { width: min(760px, calc(100% - 44px)); margin: auto; }
.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 30px 0 10px;
}
.site-nav a, .footer-links a { color: var(--sage); text-decoration-color: rgba(201,162,39,.45); text-underline-offset: 4px; }
.site-nav a:hover, .site-nav a[aria-current="page"], .footer-links a:hover { color: var(--ivory); }
header { text-align: center; padding: 42px 0 28px; }
.eyebrow { margin: 0 0 10px; color: var(--gilt); font-size: .74rem; letter-spacing: .34em; text-transform: uppercase; }
h1, h2 { font-family: var(--display); font-weight: 400; }
h1 { margin: 0 0 14px; font-size: clamp(2.3rem, 8vw, 4rem); line-height: 1.05; }
h1 em { color: var(--gilt); font-style: normal; }
.tagline { max-width: 48ch; margin: auto; color: var(--sage); font-size: 1.08rem; }
.fleuron { margin: 26px auto 0; color: var(--gilt); opacity: .7; letter-spacing: .5em; }
main { padding: 6px 0 70px; }
.panel {
  margin: 0 0 20px;
  padding: clamp(22px, 5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34,48,45,.94), rgba(24,34,31,.94));
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.panel h2 { margin: 0 0 10px; color: var(--ivory); font-size: 1.35rem; }
.panel p:last-child, .panel ul:last-child { margin-bottom: 0; }
p, li { color: #d9d4c5; }
li + li { margin-top: 7px; }
a { color: #e0be4a; }
.notice { border-left: 4px solid var(--gilt); }
.button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(243,233,210,.5);
  border-radius: 999px;
  color: #121b19;
  background: linear-gradient(#e0be4a, var(--gilt));
  font-family: var(--display);
  text-decoration: none;
}
.button:focus-visible, a:focus-visible { outline: 3px solid var(--ivory); outline-offset: 3px; }
footer { padding: 0 0 60px; text-align: center; color: #788773; font-size: .86rem; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 12px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print { .frame, .site-nav, footer { display: none; } body { color: #111; background: #fff; } body::before, body::after { display: none; } .panel { color: #111; background: #fff; box-shadow: none; } p, li { color: #222; } }
