:root {
  --ink-navy: #13243c;
  --navy-2: #1b3052;
  --brand-navy: #405f83;
  --gold: #c9b78d;
  --gold-hi: #d8c69b;
  --paper: #f4f7fb;
  --ink: #1a2433;
  --slate: #5a6678;
  --line: #e2e7ee;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Nunito, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a {
  color: inherit;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: var(--ink-navy);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1180px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink-navy);
}
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--slate);
}
nav a:hover,
nav a[aria-current="page"] {
  color: var(--ink-navy);
}
nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
main {
  min-height: 70vh;
}
.hero {
  background: var(--ink-navy);
  color: var(--paper);
  padding: 96px 24px 84px;
}
.container {
  max-width: 1080px;
  margin: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-hi);
  margin-bottom: 18px;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--ink-navy);
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  max-width: 950px;
}
.hero p {
  font-size: 1.25rem;
  max-width: 760px;
  color: #e9eef5;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
h3 {
  font-size: 1.5rem;
}
p {
  margin: 0 0 18px;
}
.lead {
  font-size: 1.25rem;
  max-width: 780px;
}
.section {
  padding: 78px 24px;
  scroll-margin-top: 110px;
}
.section.alt {
  background: var(--paper);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.card {
  border: 1px solid var(--line);
  padding: 28px;
  background: #fff;
  border-radius: 4px;
}
.card p:last-child {
  margin-bottom: 0;
}
.card a {
  font-weight: 800;
  text-underline-offset: 3px;
}
.quote {
  background: var(--navy-2);
  color: var(--paper);
  padding: 72px 24px;
  text-align: center;
}
.quote blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.25;
  max-width: 900px;
  margin: auto;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-block;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 3px;
  font-weight: 800;
  border: 1px solid var(--gold);
  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  background: var(--gold);
  color: var(--ink-navy);
}
.button.primary:hover {
  background: var(--gold-hi);
}
.button.secondary {
  background: transparent;
  color: var(--paper);
}
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.button.dark {
  background: var(--ink-navy);
  color: var(--paper);
  border-color: var(--ink-navy);
}
.button.dark:hover {
  background: var(--navy-2);
}
.list {
  padding-left: 20px;
}
.list li {
  margin-bottom: 9px;
}
footer {
  background: #0e1b2d;
  color: #d7dfe9;
  padding: 42px 24px 28px;
}
.footer-wrap {
  max-width: 1080px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  color: #d7dfe9;
}
.footer-meta {
  max-width: 1080px;
  margin: 26px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 223, 233, 0.2);
  font-size: 0.84rem;
  color: #aab7c7;
}
.note {
  font-size: 0.9rem;
  color: var(--slate);
}
@media (max-width: 760px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }
  .brand {
    font-size: 0.9rem;
  }
  nav {
    gap: 10px 14px;
  }
  nav a {
    font-size: 0.9rem;
  }
  .hero {
    padding: 64px 20px 60px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 58px 20px;
    scroll-margin-top: 175px;
  }
  .quote {
    padding: 58px 20px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
