:root {
  color-scheme: light;
  --bg: #f5f0e6;
  --fg: #1c2d50;
  --muted: #5c6578;
  --line: #d4cbb8;
  --accent: #c4a35a;
  --navy: #1c2d50;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 45% at 50% -10%, #fff9ef 0%, transparent 55%),
    var(--bg);
}

.wrap {
  flex: 1;
  max-width: 34rem;
  margin: 0 auto;
  padding: 16vh 1.5rem 3rem;
  text-align: center;
}

.seal {
  display: block;
  margin: 0 auto 1.5rem;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(28, 45, 80, 0.12);
}

.mark {
  margin: 0 0 1rem;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.tm {
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 0.05em;
}

.lede {
  margin: 0 auto 2.5rem;
  max-width: 28rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--muted);
}

.contact {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.12rem;
}

.contact a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

footer {
  padding: 1.25rem 1.5rem 2rem;
  text-align: center;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
}

footer p { margin: 0.2rem 0; }
footer .legal { opacity: 0.9; }
footer .stealth {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
footer sup { font-size: 0.65em; }

.legal-page { text-align: left; padding-top: 12vh; }
.legal-page h1 { text-align: left; }
.lede.left { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
.mark a { color: inherit; text-decoration: none; }
