@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

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

:root {
  --navy: #1B2A4A;
  --coral: #E8604C;
  --cream: #F7F5F2;
  --grey: #F0EDE8;
  --dark: #222222;
  --mid: #555555;
  --light: #999999;
  --border: #E0DDD8;
  --max: 720px;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: white;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  padding: 0 24px;
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}
.site-logo span { color: var(--coral); }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover { color: white; text-decoration: none; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 80px 24px 90px;
  text-align: center;
}
.hero-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 24px;
}
.hero h1 em { color: var(--coral); font-style: normal; }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-rule {
  width: 50px;
  height: 3px;
  background: var(--coral);
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--coral);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: #d4523f; text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--coral);
  color: var(--coral);
}
.btn-outline:hover { background: var(--coral); color: white; }
.btn-lg { font-size: 0.9rem; padding: 18px 40px; }

/* ── SECTION ── */
.section { padding: 70px 24px; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-navy h2 { color: white; }
.section p.lead {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.section-navy p.lead { color: rgba(255,255,255,0.65); }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-3px); }
.card-top {
  background: var(--navy);
  padding: 28px 28px 22px;
}
.card-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.card-top h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: white;
  line-height: 1.3;
}
.card-body { padding: 22px 28px 26px; }
.card-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 18px;
}
.card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--coral);
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.about-item { text-align: center; }
.about-icon {
  width: 48px;
  height: 48px;
  background: var(--coral);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.about-item h4 {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.about-item p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ── DISCLOSURE BANNER ── */
.disclosure {
  background: #FEF3E2;
  border-left: 4px solid #E8A020;
  padding: 14px 20px;
  font-size: 0.82rem;
  color: #6B4700;
  margin-bottom: 32px;
  border-radius: 0 6px 6px 0;
}

/* ── ARTICLE LAYOUT ── */
.article-hero {
  background: var(--navy);
  padding: 60px 24px 64px;
}
.article-hero-inner { max-width: var(--max); margin: 0 auto; }
.article-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.article-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-hero .standfirst {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.article-meta {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

.article-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px 80px;
}
.article-body h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--coral);
  margin: 32px 0 10px;
}
.article-body p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 1rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 10px;
}
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body em { color: var(--mid); }

.callout-box {
  background: #EAF2F8;
  border-left: 4px solid var(--navy);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.97rem;
  color: var(--navy);
  line-height: 1.7;
}

.article-footer {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 48px;
  font-size: 0.82rem;
  color: var(--light);
  font-style: italic;
  line-height: 1.6;
}

/* ── BRIDGE PAGE CTA ── */
.bridge-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0;
}
.bridge-cta h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.bridge-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.65;
}
.bridge-cta .affiliate-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 48px 24px;
  text-align: center;
}
.site-footer .logo {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}
.site-footer .logo span { color: var(--coral); }
.site-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 16px;
}
.site-footer .footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.site-footer .footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.site-footer .footer-links a:hover { color: white; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .site-nav { display: none; }
  .about-strip { grid-template-columns: 1fr; gap: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .article-meta { flex-direction: column; gap: 6px; }
  .bridge-cta { padding: 28px 20px; }
}
