:root {
  --ink: #152033;
  --muted: #5b6575;
  --accent: #2f6fed;
  --bg: #f7f8fb;
  --card: #ffffff;
  --line: #e4e8ef;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at top left, rgba(47, 111, 237, 0.08), transparent 45%),
    linear-gradient(180deg, #eef2f8 0%, var(--bg) 35%, var(--bg) 100%);
  min-height: 100vh;
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

nav a {
  color: var(--ink);
}

nav a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  padding: 4rem 0 2.5rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42rem;
}

.about,
.policy {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(21, 32, 51, 0.04);
}

.about h2,
.policy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  margin: 1.5rem 0 0.6rem;
}

.about h2:first-child,
.policy h1 {
  margin-top: 0;
}

.policy h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  margin-bottom: 0.35rem;
}

.policy p,
.about p {
  margin-bottom: 0.9rem;
  color: #334155;
}

.policy ul {
  margin: 0.4rem 0 1rem 1.2rem;
  color: #334155;
}

.policy li {
  margin-bottom: 0.35rem;
}

.meta,
.breadcrumb {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-line {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
