:root {
  --navy: #0b1a2e;
  --navy-deep: #06101c;
  --navy-mid: #13263f;
  --gold: #c4a35a;
  --gold-soft: #e2c98a;
  --ink: #e8eef6;
  --muted: #9aa8bc;
  --line: rgba(196, 163, 90, 0.28);
  --card: rgba(19, 38, 63, 0.72);
  --max: 42rem;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  background:
    radial-gradient(ellipse 90% 55% at 12% -10%, rgba(196, 163, 90, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(46, 90, 160, 0.22), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff4d4;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2.75rem 0 4rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2.25rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-title {
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.brand-sub {
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

nav.site {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin: 0 0 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
}

h1 {
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

h2 {
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  margin: 2rem 0 0.65rem;
  color: var(--gold-soft);
}

p,
li {
  color: #d5deea;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.15rem 1.25rem;
  margin: 1.25rem 0;
}

.card strong {
  color: var(--gold-soft);
}

.cta {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy-deep);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  text-decoration: none;
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 650;
}

.cta:hover {
  color: var(--navy-deep);
  filter: brightness(1.05);
}

ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

li + li {
  margin-top: 0.4rem;
}

.meta {
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

.links {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.links a.panel {
  display: block;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.links a.panel:hover {
  border-color: rgba(226, 201, 138, 0.55);
  background: rgba(19, 38, 63, 0.92);
}

.links a.panel span {
  display: block;
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
}
