/* ─── SUCCESSION THINKING — ARTICLE STYLES ─── */

:root {
  --navy: #30364E;
  --navy-deep: #1E2235;
  --navy-mid: #252B40;
  --sage: #98CC8F;
  --sage-dark: #7AB870;
  --cream: #FAF9F5;
  --ink: #1A1A1A;
  --ink-muted: #4A4A4A;
  --white: #FFFFFF;
  --adapt: #F1634C;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: var(--navy-deep);
}
nav.scrolled {
  padding: 16px 48px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--white); text-transform: uppercase; white-space: nowrap;
}
.nav-wordmark-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; letter-spacing: 0.02em;
  text-transform: none; color: rgba(255,255,255,0.55);
}
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.9); letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-link:hover, .nav-link-active { color: var(--sage) !important; }
.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--navy-deep); background: var(--sage);
  padding: 10px 24px; border-radius: var(--radius);
  transition: var(--transition); letter-spacing: 0.04em;
}
.nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* ─── ARTICLE HERO ─── */
.article-hero {
  background: var(--navy-deep);
  padding: 140px 48px 80px;
  text-align: center;
}
.article-hero-pillar {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #2a1e35 100%);
}
.article-hero-inner { max-width: 800px; margin: 0 auto; }
.article-breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.45); letter-spacing: 0.06em;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.article-breadcrumb a { transition: color 0.2s; }
.article-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.article-breadcrumb span { color: rgba(255,255,255,0.5); }
.article-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 20px;
  display: inline-block;
}
.article-tag-pillar { color: var(--adapt); }
.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 400;
  color: var(--white); line-height: 1.08; margin-bottom: 28px;
}
.article-hero h1 em {
  font-style: italic; color: rgba(255,255,255,0.65);
}
.article-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.4); letter-spacing: 0.06em;
}

/* ─── ARTICLE BODY ─── */
.article-body {
  padding: 80px 48px 120px;
}
.article-container {
  max-width: 740px; margin: 0 auto;
}

/* ─── TYPOGRAPHY ─── */
.article-lead {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 1.8vw, 20px); font-weight: 300;
  color: var(--ink); line-height: 1.75;
  border-left: 3px solid var(--sage);
  padding-left: 24px;
  margin-bottom: 40px;
}
.article-container p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 300;
  color: var(--ink); line-height: 1.85;
  margin-bottom: 24px;
}
.article-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px); font-weight: 400;
  color: var(--navy-deep); line-height: 1.12;
  margin: 56px 0 20px;
}
.article-container h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 30px); font-weight: 400;
  color: var(--navy); line-height: 1.18;
  margin: 40px 0 16px;
}
.article-container strong { font-weight: 600; color: var(--ink); }
.article-container em { font-style: italic; }

/* ─── BLOCKQUOTE ─── */
.article-container blockquote {
  border-left: none;
  background: var(--navy-deep);
  color: var(--white);
  padding: 36px 40px;
  border-radius: 6px;
  margin: 40px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px); font-weight: 300;
  font-style: italic; line-height: 1.5;
}
.article-container blockquote cite {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-style: normal;
  font-weight: 400; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ─── LISTS ─── */
.article-list {
  padding-left: 0; list-style: none;
  margin-bottom: 24px;
}
.article-list li {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 300;
  color: var(--ink); line-height: 1.85;
  padding-left: 24px; position: relative;
  margin-bottom: 12px;
}
.article-list li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px;
  background: var(--sage); border-radius: 50%;
  flex-shrink: 0;
}
ol.article-list { counter-reset: ol-counter; }
ol.article-list li { counter-increment: ol-counter; }
ol.article-list li::before {
  content: counter(ol-counter);
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 600;
  background: var(--sage); color: var(--navy-deep);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  top: 4px;
}

/* ─── TABLE ─── */
.article-table {
  width: 100%; border-collapse: collapse;
  margin: 32px 0; font-family: 'Poppins', sans-serif;
  font-size: 14px; overflow: hidden; border-radius: 6px;
}
.article-table thead tr {
  background: var(--navy-deep); color: var(--white);
}
.article-table thead th {
  padding: 14px 20px; font-weight: 600;
  letter-spacing: 0.04em; text-align: left;
  font-size: 12px; text-transform: uppercase;
}
.article-table tbody tr { border-bottom: 1px solid rgba(48,54,78,0.08); }
.article-table tbody tr:last-child { border-bottom: none; }
.article-table tbody tr:nth-child(even) { background: rgba(152,204,143,0.06); }
.article-table tbody td { padding: 14px 20px; line-height: 1.6; font-weight: 300; }

/* ─── PRINCIPLE NAV ─── */
.principle-nav {
  background: var(--white);
  border: 1px solid rgba(48,54,78,0.1);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 40px 0;
}
.principle-nav-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(48,54,78,0.45); margin-bottom: 14px;
}
.principle-nav-links {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.principle-nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--navy); padding: 8px 16px;
  background: rgba(152,204,143,0.12);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.principle-nav-links a:hover {
  background: var(--sage); color: var(--navy-deep);
}

/* ─── FAQ ─── */
.article-faq {
  margin-top: 64px;
  border-top: 1px solid rgba(48,54,78,0.12);
  padding-top: 48px;
}
.article-faq h2 { margin-top: 0 !important; }
.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(48,54,78,0.08);
}
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h3 {
  margin-top: 0 !important;
  font-size: clamp(18px, 1.8vw, 22px) !important;
  margin-bottom: 12px !important;
  color: var(--navy-deep) !important;
}
.faq-item p { margin-bottom: 0 !important; }

/* ─── CTA BLOCK ─── */
.article-cta {
  background: var(--navy-deep);
  border-radius: 8px;
  padding: 56px 48px;
  margin-top: 64px;
  text-align: center;
}
.cta-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 16px;
}
.article-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px); font-weight: 400;
  color: var(--white); line-height: 1.12;
  margin: 0 0 20px !important;
}
.article-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.7); line-height: 1.75;
  max-width: 500px; margin: 0 auto 32px !important;
}
.cta-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--sage); color: var(--navy-deep);
  padding: 14px 32px; border-radius: var(--radius);
  transition: var(--transition);
  margin-bottom: 20px;
}
.cta-btn:hover {
  background: var(--sage-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(152,204,143,0.3);
}
.cta-link {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
  transition: color 0.2s;
}
.cta-link:hover { color: rgba(255,255,255,0.8); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
}
.footer-endorser {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.45); margin-top: 6px;
}
.footer-center {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55);
}
.footer-center a { transition: color 0.2s; }
.footer-center a:hover { color: var(--white); }
.footer-contact {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.footer-email {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.footer-email:hover { color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-link { display: none; }
  .article-hero { padding: 110px 24px 60px; }
  .article-body { padding: 48px 24px 80px; }
  .article-container blockquote { padding: 28px 24px; }
  .article-cta { padding: 40px 28px; }
  .principle-nav-links { gap: 8px; }
  .principle-nav-links a { font-size: 12px; padding: 10px 14px; min-height: 44px; display: inline-flex; align-items: center; }
  footer { padding: 40px 24px; flex-direction: column; text-align: center; }
}
