*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0A1628; --teal: #0A7C73; --teal-light: #14B8A6;
  --gold: #B89040; --ivory: #F5F0E8; --white: #FDFCFB;
  --text: #1A2336; --muted: #5A6478;
}
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.7; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 7%; background: var(--white); border-bottom: 1px solid rgba(0,0,0,.07); position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); font-family: 'Fraunces', serif; font-weight: 800; font-size: 20px; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-logo picture { display: contents; }
.nav-back { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.nav-back:hover { text-decoration: none; color: var(--navy); }

.article-wrap { max-width: 720px; margin: 0 auto; padding: 60px 7% 100px; }
.article-cat { display: inline-block; background: var(--navy); color: white; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; }
.article-title { font-family: 'Fraunces', serif; font-weight: 900; font-size: clamp(28px, 5vw, 44px); line-height: 1.1; color: var(--navy); margin-bottom: 16px; letter-spacing: -.02em; }
.article-meta { font-size: 14px; color: var(--muted); margin-bottom: 36px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.article-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 16px; margin-bottom: 40px; }

.article-body h2 { font-family: 'Fraunces', serif; font-weight: 800; font-size: clamp(20px, 3vw, 26px); color: var(--navy); margin: 40px 0 16px; }
.article-body h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px; color: var(--navy); margin: 28px 0 10px; }
.article-body p { margin-bottom: 20px; font-size: 17px; color: var(--text); line-height: 1.75; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body ul { margin: 0 0 20px 20px; }
.article-body li { margin-bottom: 10px; font-size: 17px; line-height: 1.7; }

.pullquote { border-left: 3px solid var(--teal-light); padding: 16px 24px; margin: 32px 0; background: rgba(10,124,115,.05); border-radius: 0 12px 12px 0; font-style: italic; font-size: 18px; color: var(--navy); }
.pullquote--gold { border-left-color: var(--gold); background: rgba(184,144,64,.06); }

.article-cta { background: var(--navy); color: white; padding: 40px; border-radius: 16px; margin-top: 56px; text-align: center; }
.article-cta h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: 16px; }
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: white !important; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 15px; text-decoration: none !important; transition: background .2s; }
.btn:hover { background: var(--teal-light); }

.timeline { list-style: none; margin: 24px 0; padding: 0; }
.timeline li { padding: 14px 0 14px 28px; border-left: 2px solid var(--teal-light); position: relative; font-size: 17px; }
.timeline li::before { content: ''; position: absolute; left: -5px; top: 22px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.timeline .year { font-weight: 700; color: var(--teal); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }

.fact-box { background: var(--ivory); border-radius: 14px; padding: 24px 28px; margin: 32px 0; }
.fact-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.fact-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.07); font-size: 15px; }
.fact-row:last-child { border-bottom: none; }
.fact-val { font-weight: 600; color: var(--teal); }

.footer { background: var(--navy); color: rgba(255,255,255,.5); text-align: center; padding: 28px 7%; font-size: 14px; }
.footer a { color: rgba(255,255,255,.7); }
