@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --navy: #0c2040;
  --navy-mid: #12356b;
  --navy-light: #1a4a8a;
  --warm-white: #f8f7f4;
  --white: #ffffff;
  --rule: #dce2ec;
  --parchment: #e8e0d0;
  --text-body: #374151;
  --text-muted: #6b7280;
  --serif: 'Libre Baskerville', serif;
  --sans: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 16px;
}
.nav-brand { text-decoration: none; flex-shrink: 0; }
.nav-logo-main {
  font-family: var(--serif);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
}
.nav-logo-sub {
  font-family: var(--serif);
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; font-weight: 500; }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--parchment);
  padding: 8px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: #d4c9b5; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--navy);
  padding: 72px 2.5rem 64px;
  text-align: center;
  border-bottom: 3px solid var(--parchment);
}
.page-header .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 1.25rem;
  opacity: 0.7;
  display: block;
}
.page-header h1 {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-header h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
}
.page-header p {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION ── */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-navy { background: var(--navy); }
.section-parchment { background: var(--parchment); }

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}
.section-label.light { color: rgba(255,255,255,0.45); }

/* ── SECTION HEADINGS ── */
h2.section-heading {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}
h2.section-heading.light { color: #fff; }
h2.section-heading em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
}

.rule-bar {
  width: 28px;
  height: 2px;
  background: var(--navy);
  margin-bottom: 1rem;
  display: block;
}
.rule-bar.light { background: var(--parchment); opacity: 0.6; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-mid); }
.btn-parchment { background: var(--parchment); color: var(--navy); }
.btn-parchment:hover { background: #d4c9b5; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  border-radius: 0;
  padding: 4px 0;
  font-size: 11px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-radius: 8px;
  padding: 1.5rem;
}
.card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border: 0.5px solid var(--navy);
  border-radius: 1px;
  display: inline-block;
  padding: 2px 8px;
  margin-bottom: 0.75rem;
}
.card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.card-body {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}
.card-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  margin-top: 1rem;
  text-decoration: none;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.5rem;
  text-align: center;
  border-top: 3px solid var(--parchment);
}
footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
footer a:hover { color: #fff; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

/* ── FORMS ── */
label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
}
label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 11px;
  margin-left: 4px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 10px 13px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-body);
  background: var(--warm-white);
  border: 0.5px solid var(--rule);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,74,138,0.08);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-color: var(--warm-white);
  padding-right: 36px;
  cursor: pointer;
}
textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

/* ── UTILITIES ── */
.text-muted { color: var(--text-muted); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav {
    padding: 12px 1.25rem;
    min-height: 56px;
    height: auto;
  }
  .nav-logo-main { font-size: 11px; letter-spacing: 0.04em; }
  .nav-logo-sub { font-size: 8px; }
  .nav-cta { font-size: 10px; padding: 7px 13px; }
  .page-header { padding: 48px 1.5rem 40px; }
  .page-header h1 { font-size: 28px; }
  .page-header p { font-size: 14px; }
  .section { padding: 48px 0; }
  .container { padding: 0 1.25rem; }
  h2.section-heading { font-size: 22px; }
}
@media (max-width: 480px) {
  nav { padding: 10px 1rem; }
  .nav-logo-main { font-size: 10px; }
  .page-header h1 { font-size: 24px; }
  .btn { padding: 9px 18px; font-size: 11px; }
}