:root {
  --ink: #10223a;
  --ink-soft: #435268;
  --paper: #f7f4ee;
  --line: #d9d5cd;
  --accent: #9a7b4f;
  --accent-dark: #745a38;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)),
    radial-gradient(circle at 20% 10%, #efe8dc 0 18%, transparent 40%),
    var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  padding: .75rem 1rem; background: var(--ink); color: white;
}
.skip-link:focus { left: .75rem; top: .75rem; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247,244,238,.92);
  border-bottom: 1px solid rgba(16,34,58,.10);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto; min-height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  text-decoration: none; font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem; letter-spacing: .12em; font-weight: 700;
}
.brand small {
  display: block; margin-top: -2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .58rem; letter-spacing: .24em; font-weight: 600;
  color: var(--ink-soft);
}
nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.5rem; align-items: center;
}
nav a {
  text-decoration: none; font-size: .92rem; font-weight: 600;
  letter-spacing: .02em;
}
nav a:hover, nav a:focus-visible { color: var(--accent-dark); }
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink); text-decoration: none;
  padding: .85rem 1.1rem; font-size: .87rem; font-weight: 700;
  letter-spacing: .04em; transition: all .2s ease;
}
.cta:hover, .cta:focus-visible { background: var(--ink); color: white; }
.hero {
  min-height: 72vh; display: grid; align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto; padding: 7rem 0 6rem;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em;
  font-size: .75rem; font-weight: 700; color: var(--accent-dark);
}
.hero h1, .page-hero h1 {
  margin: .7rem 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: .98; letter-spacing: -.035em; font-weight: 500;
  max-width: 980px;
}
.hero p, .page-hero p {
  max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--ink-soft);
}
.hero-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.text-link {
  display: inline-block; padding: .85rem 0; text-decoration: none;
  border-bottom: 1px solid var(--accent); font-weight: 700;
}
.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto; padding: 5.5rem 0;
}
.section + .section { border-top: 1px solid var(--line); }
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05; font-weight: 500; margin: 0 0 1rem;
}
.section-intro {
  max-width: 760px; color: var(--ink-soft);
  font-size: 1.08rem; margin-bottom: 2.5rem;
}
.grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.card { background: rgba(255,255,255,.65); padding: 2rem; min-height: 250px; }
.card .num {
  display: block; font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem; color: var(--accent-dark); margin-bottom: 2.2rem;
}
.card h3 { margin: 0 0 .7rem; font-size: 1.15rem; }
.card p { margin: 0; color: var(--ink-soft); }
.split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 5rem; align-items: start;
}
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.2; margin: 0;
}
.rule-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.rule-list li {
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto; padding: 6rem 0 4rem;
}
.prose { max-width: 820px; font-size: 1.05rem; }
.prose h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem; font-weight: 500; margin-top: 2.75rem;
}
.prose p, .prose li { color: var(--ink-soft); }
.contact-panel {
  background: var(--ink); color: white;
  padding: clamp(2rem, 6vw, 5rem);
}
.contact-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 500; line-height: 1.05; margin: 0 0 1.2rem;
}
.contact-panel p { color: rgba(255,255,255,.78); max-width: 720px; }
.contact-panel a { color: white; }
.notice {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.22);
  font-size: .82rem; color: rgba(255,255,255,.62);
}
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto; padding: 2.5rem 0 3rem;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; border-top: 1px solid var(--line);
  color: var(--ink-soft); font-size: .82rem;
}
.site-footer p { margin: 0; }
.site-footer .footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
@media (max-width: 820px) {
  .nav-wrap { min-height: auto; padding: 1rem 0; align-items: flex-start; flex-direction: column; gap: .8rem; }
  nav ul { gap: .9rem 1.1rem; flex-wrap: wrap; }
  .hero { min-height: auto; padding: 5rem 0; }
  .grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
