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

:root {
  --navy: #1a2744;
  --navy-light: #243258;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #1a2744;
  --muted: #5a6a8a;
  --border: #ddd8cc;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Georgia, serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #1a2744 0%, #243258 60%, #1a3060 100%);
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 36px;
}
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  margin-left: 12px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* SECTIONS */
.section { padding: 80px 24px; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-navy .eyebrow { color: var(--gold-light); }
h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
}
.section-navy h2 { color: var(--white); }
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* STATS BAR */
.stats-bar {
  background: var(--gold);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-top: 4px;
  display: block;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
}
.section-cream .card { background: var(--white); }
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.card h3 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--navy);
}
.card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* TWO-COL LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.prose h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--navy);
}
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }
.prose .lead { font-size: 1.05rem; color: var(--text); font-style: italic; }

/* PROFILE BLOCK */
.profile-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) { .profile-block { flex-direction: column; } }
.profile-photo {
  width: 200px;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.profile-photo-placeholder {
  width: 200px;
  height: 240px;
  background: var(--navy);
  flex-shrink: 0;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3rem;
}

/* NAV PILLS */
.page-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.page-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}
.page-nav a {
  padding: 14px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.page-nav a:hover, .page-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* STATEMENT BOX */
.statement-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.statement-box h2 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--navy);
}
.statement-box p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }
.statement-date { font-size: 0.8rem; color: var(--muted); margin-top: 24px; border-top: 1px solid var(--border); padding-top: 16px; }

/* FOOTER */
footer {
  background: #0f1929;
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .nav-logo-text { font-size: 1rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.83rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ARTICLE PAGE */
.article-hero {
  background: var(--navy);
  padding: 80px 24px 60px;
  color: var(--white);
}
.article-inner { max-width: 760px; margin: 0 auto; }
.article-body { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.article-body h2 { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; margin: 40px 0 16px; color: var(--navy); }
.article-body h3 { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 400; margin: 28px 0 12px; color: var(--navy); }
.article-body p { color: var(--muted); margin-bottom: 18px; font-size: 1rem; line-height: 1.8; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--cream);
  font-style: italic;
  color: var(--text);
}
.article-meta { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }

/* CONTACT FORM */
.contact-form { max-width: 560px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 60px 24px 50px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 50px 24px; }
}
