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

:root {
  --navy: #1a2744;
  --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', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--gold);
}
.nav-inner { max-width: 1000px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-brand { font-family: Georgia, serif; font-size: 1rem; color: var(--white); text-decoration: none; letter-spacing: 0.04em; }
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.83rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hero { background: var(--navy); color: var(--white); padding: 80px 24px 70px; }
.hero-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.hero-photo { width: 180px; height: 220px; object-fit: cover; border: 3px solid var(--gold); flex-shrink: 0; }
.hero-photo-placeholder { width: 180px; height: 220px; background: #243258; border: 3px solid var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: Georgia,serif; font-size: 2.5rem; color: var(--gold); }
.hero-text {}
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.hero-name { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; margin-bottom: 10px; }
.hero-title { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-bottom: 24px; letter-spacing: 0.02em; }
.hero-links { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 11px 26px; border-radius: 2px; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.stats-strip { background: var(--gold); padding: 28px 24px; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 0 16px; border-right: 1px solid rgba(26,39,68,0.15); }
.stat:last-child { border-right: none; }
.stat-n { font-family: Georgia,serif; font-size: 1.8rem; color: var(--navy); display: block; }
.stat-l { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,39,68,0.65); margin-top: 2px; display: block; }

.section { padding: 72px 24px; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.inner { max-width: 1000px; margin: 0 auto; }
.eyebrow { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-navy .eyebrow { color: var(--gold-light); }
h2 { font-family: Georgia, serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 400; line-height: 1.3; }
.section-navy h2 { color: #fff; }
.divider { width: 40px; height: 2px; background: var(--gold); margin: 16px 0 28px; }

.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 p { color: var(--muted); margin-bottom: 15px; font-size: 0.94rem; line-height: 1.75; }
.prose .lead { font-size: 1.05rem; color: var(--text); font-style: italic; }
.prose h3 { font-family: Georgia,serif; font-size: 1.1rem; font-weight: 400; color: var(--navy); margin-bottom: 12px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 32px 24px; }
.section-cream .card { background: var(--white); }
.card h3 { font-family: Georgia,serif; font-size: 1.05rem; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.timeline { display: flex; flex-direction: column; gap: 0; max-width: 700px; }
.tl-item { padding-left: 28px; border-left: 2px solid var(--gold); padding-bottom: 36px; position: relative; }
.tl-item:last-child { padding-bottom: 0; border-left-color: var(--border); }
.tl-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: absolute; left: -6px; top: 4px; }
.tl-date { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.tl-title { font-family: Georgia,serif; font-size: 1.05rem; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.tl-body { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.article-list { display: flex; flex-direction: column; gap: 20px; max-width: 720px; }
.article-card { display: grid; grid-template-columns: 80px 1fr; border: 1px solid var(--border); background: var(--white); }
.article-date { background: var(--navy); padding: 20px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.article-date-mo { font-family: Georgia,serif; font-size: 1.1rem; color: var(--gold); line-height: 1.1; }
.article-date-yr { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.article-info { padding: 20px 24px; }
.article-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.article-info h3 { font-family: Georgia,serif; font-size: 1rem; font-weight: 400; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.article-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

footer { background: #0f1929; color: rgba(255,255,255,0.5); padding: 40px 24px 28px; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-brand p { font-family: Georgia,serif; font-size: 1rem; color: var(--white); }
.footer-brand small { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); max-width: 1000px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; gap: 28px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
