/* =============================================
   SYMPHONY RH — Design System
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --navy:        #1B2B4B;
  --navy-light:  #2D4270;
  --navy-dark:   #111D33;
  --gold:        #C8921A;
  --gold-light:  #E8A234;
  --gold-pale:   #FDF3E0;
  --white:       #FFFFFF;
  --bg:          #FAFAFA;
  --bg-alt:      #F2F4F7;
  --text:        #1A202C;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      #E2E8F0;
  --red:         #C53030;
  --red-light:   #FFF5F5;
  --green:       #276749;
  --green-light: #F0FFF4;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg:   0 10px 30px rgba(0,0,0,.12);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  all .25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* --- Containers --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

/* --- Sections --- */
section { padding: 80px 0; }
section.bg-alt { background: var(--bg-alt); }
section.bg-navy { background: var(--navy); }
section.bg-navy * { color: var(--white); }
section.bg-navy p { color: rgba(255,255,255,.8); }

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-mid); max-width: 620px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
}
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.navbar-brand .brand-sub {
  font-size: .7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--navy);
}
.navbar-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.navbar-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: .5rem 1.2rem;
  border-radius: 6px;
  font-size: .85rem !important;
  transition: var(--transition);
}
.navbar-cta:hover {
  background: var(--navy-light) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  gap: .75rem;
}
.mobile-menu a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,26,.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}
.btn-center { display: block; text-align: center; margin-top: 2rem; }
.btn-center .btn { display: inline-flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,146,26,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust-item {
  text-align: center;
}
.hero-trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-trust-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* =============================================
   RISK SECTION
   ============================================= */
.risk-section {
  background: var(--navy-dark);
  padding: 60px 0;
}
.risk-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.risk-intro h2 { color: var(--white); }
.risk-intro p { color: rgba(255,255,255,.65); }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.risk-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.risk-card .risk-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.risk-card .risk-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #FC8181;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.risk-card .risk-detail {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* =============================================
   SITUATIONS SECTION
   ============================================= */
.situations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.situations-col h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-bottom: .75rem;
  margin-bottom: 1.25rem;
}
.situations-col.left h3 {
  color: var(--text-mid);
  border-bottom: 2px solid var(--border);
}
.situations-col.right h3 {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}
.situation-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--text-mid);
}
.situation-item:last-child { border-bottom: none; }
.situation-item .icon { flex-shrink: 0; font-size: 1rem; margin-top: .1rem; }

/* =============================================
   FORMULAS / CARDS
   ============================================= */
.formulas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.formula-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.formula-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.formula-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(200,146,26,.15);
}
.formula-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-light);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.formula-card .formula-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.formula-card h3 {
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.formula-duration {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-mid);
  font-size: .8rem;
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.formula-card.featured .formula-duration {
  background: var(--gold-pale);
  color: var(--gold);
}
.formula-card p {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.formula-card .formula-cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  padding: .7rem 1rem;
  border-radius: 7px;
  font-size: .87rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--navy);
  transition: var(--transition);
}
.formula-card.featured .formula-cta {
  background: var(--gold-light);
}
.formula-card .formula-cta:hover {
  background: var(--navy);
  color: var(--white);
}

/* =============================================
   CHECKLIST
   ============================================= */
.checklist {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.checklist h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 2rem;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-mid);
}
.checklist-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green-light);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-section {
  background: var(--navy);
  padding: 80px 0;
}
.testimonial-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.testimonial-block .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-light);
  line-height: .5;
  margin-bottom: 1.5rem;
  display: block;
}
.testimonial-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-block cite {
  font-style: normal;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.testimonial-block cite::before {
  content: '—';
  color: var(--gold-light);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--bg-alt);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-mid); max-width: 520px; margin: 0 auto 2rem; }
.cta-note {
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--text-light);
}

/* =============================================
   PAGE HEADERS (intérieures)
   ============================================= */
.page-header {
  background: var(--navy);
  padding: 70px 0 60px;
  text-align: center;
}
.page-header h1 { color: var(--white); }
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: .75rem auto 0;
}

/* =============================================
   À PROPOS
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .9rem;
  gap: .75rem;
}
.about-photo-placeholder span { font-size: 2.5rem; }
.about-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-mid);
}
.about-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.metric-card .metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: .25rem;
}
.metric-card .metric-label {
  font-size: .8rem;
  color: var(--text-light);
}
.parcours-section { padding: 60px 0; }
.parcours-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 3px solid var(--border);
  margin-left: 1rem;
}
.parcours-item {
  position: relative;
  padding: 1.25rem 0 1.25rem 2rem;
}
.parcours-item::before {
  content: '';
  position: absolute;
  left: -8px; top: 1.7rem;
  width: 13px; height: 13px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.parcours-item .company {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.parcours-item .sector {
  font-size: .85rem;
  color: var(--text-light);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--text-mid);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail .icon { font-size: 1.1rem; }
.contact-detail a { color: var(--navy); font-weight: 500; }
.contact-detail a:hover { color: var(--gold); }
.contact-note {
  margin-top: 1.5rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
  color: var(--text-mid);
}
.calendly-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.calendly-box h3 { margin-bottom: .5rem; }
.calendly-box p { font-size: .9rem; color: var(--text-light); margin-bottom: 1.5rem; }
.calendly-embed-area {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
}
.calendly-inline-widget {
  min-width: 100% !important;
  height: 600px;
}

/* =============================================
   MENTIONS LÉGALES
   ============================================= */
.legal-content {
  padding: 60px 0;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 .75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: .95rem;
  color: var(--text-mid);
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; margin-bottom: .25rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}
.footer-brand .brand-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .5rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  section { padding: 60px 0; }
  .risk-grid { grid-template-columns: 1fr; gap: 1rem; }
  .situations-grid { grid-template-columns: 1fr; }
  .formulas-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-placeholder { aspect-ratio: 3/2; max-height: 250px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .checklist-grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 70px 0 60px; }
  .hero-trust { gap: 1.5rem; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .container, .container-narrow { padding: 0 1.25rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .metrics-row { grid-template-columns: 1fr; }
}

/* =============================================
   BLOG — Index
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-body h2 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: .75rem;
  color: var(--navy);
}
.blog-card-body p {
  font-size: .9rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.25rem;
}
.blog-card-meta {
  font-size: .78rem;
  color: var(--text-light);
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.blog-card-meta strong {
  color: var(--text-mid);
}
.blog-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

/* =============================================
   BLOG — Article
   ============================================= */
.article-header {
  background: var(--navy);
  padding: 80px 0 60px;
}
.article-header .section-tag { color: var(--gold-light); }
.article-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: .75rem 0 1.25rem;
  max-width: 780px;
}
.article-header-meta {
  display: flex;
  gap: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.article-header-meta span { display: flex; align-items: center; gap: .35rem; }

.article-body {
  padding: 64px 0 80px;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}
.article-content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 .75rem;
  color: var(--navy-light);
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.article-content strong { color: var(--text); }
.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: .5rem;
  list-style: disc;
}
.article-content ol li { list-style: decimal; }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
}
.article-content blockquote strong {
  display: block;
  font-style: normal;
  font-size: .85rem;
  color: var(--text-light);
  margin-top: .5rem;
}
.article-alert {
  background: var(--red-light);
  border: 1px solid #fed7d7;
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.article-alert p { color: var(--red); font-weight: 500; margin: 0; }
.article-alert p::before { content: "⚠ "; }
.article-tip {
  background: var(--green-light);
  border: 1px solid #c6f6d5;
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.article-tip p { color: var(--green); font-weight: 500; margin: 0; }
.article-tip p::before { content: "✓ "; }

.article-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.article-cta h3 { color: var(--white); margin-bottom: .75rem; }
.article-cta p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }

.article-sidebar-cta {
  background: var(--gold-pale);
  border: 1px solid #f0d9a0;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2.5rem;
  text-align: center;
}
.article-sidebar-cta h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.article-sidebar-cta p { font-size: .9rem; margin-bottom: 1.25rem; }

.blog-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.blog-nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.blog-nav-links a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-header { padding: 60px 0 40px; }
  .article-content { padding: 0 1.25rem; }
}
