/* ===================================================================
   Sagesses Modernes — styles.css
   Brand v2.2 (25 avril 2026 · verrouillé Keita Karamo)
   Palette 60-30-10 : Off-white #ffffff / Navy #0a2a4d / Forest Green #2d7a4a / Or filets #C4992A
   Typo : Source Serif Pro headlines + Source Sans Pro body
   =================================================================== */

/* ───── @font-face self-host (v2.2.4 — subset Latin, ~66 KB total) ───── */
@font-face {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/source-serif-pro-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/source-sans-pro-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/source-sans-pro-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/source-sans-pro-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ───── Variables ───── */
:root {
  /* Palette v2.2 */
  --off-white: #ffffff;
  --white: #ffffff;
  --navy: #0a2a4d;
  --navy-dark: #061a30;
  --forest: #2d7a4a;
  --forest-dark: #235e39;
  --or: #C4992A;
  --or-light: #e0b94d;
  --border: #ebe8e0;
  --text: #0a2a4d;
  --text-secondary: #5a6573;
  --text-muted: #8a93a0;
  --bg-dark: #1a1a2e;
  --error: #c0392b;

  /* Typo */
  --font-serif: "Source Serif Pro", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans Pro", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", Menlo, monospace;

  /* Spacing scale (8 px grid) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; --s-6: 24px;
  --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --container-text: 720px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.15s;
  --t-base: 0.3s;
  --t-slow: 0.6s;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 42, 77, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 42, 77, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 42, 77, 0.12);
  --shadow-xl: 0 24px 56px rgba(10, 42, 77, 0.16);
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ───── Base ───── */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga";
}
::selection { background: var(--forest); color: var(--white); }

/* ───── Typography ───── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); line-height: 1.18; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.35; }
p { font-size: 1.0625rem; line-height: 1.7; color: var(--text); }
p.lead { font-size: 1.18rem; line-height: 1.65; color: var(--text); }
p + p { margin-top: var(--s-4); }
a:hover { color: var(--forest); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--s-4);
}
.eyebrow--muted { color: var(--text-secondary); }
.eyebrow--or { color: var(--forest); }

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(196,153,42,0.1);
  border: 1px solid rgba(196,153,42,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--navy);
  border-left: 3px solid var(--or);
  padding-left: var(--s-6);
  margin: var(--s-8) 0;
}
blockquote cite { display: block; margin-top: var(--s-3); font-size: 0.95rem; font-style: normal; color: var(--text-secondary); }

code, kbd { font-family: var(--font-mono); font-size: 0.92em; background: var(--border); padding: 1px 6px; border-radius: 4px; }

hr.rule { border: 0; height: 1px; background: var(--border); margin: var(--s-12) 0; }
hr.rule--gold { background: linear-gradient(90deg, transparent, var(--or), transparent); height: 2px; }

/* ───── Layout ───── */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--s-6); }
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }
.section { padding-block: var(--s-20); }
.section--sm { padding-block: var(--s-12); }
.section--lg { padding-block: var(--s-24); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.85); }
.section--white { background: var(--white); }

.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1023px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 639px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.flex { display: flex; gap: var(--s-4); }
.flex--center { align-items: center; justify-content: center; }
.flex--wrap { flex-wrap: wrap; }
.flex--col { flex-direction: column; }

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.muted { color: var(--text-secondary); }

/* ───── Header ───── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(255, 255, 255, 0.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); padding-block: var(--s-4); }
.brand { display: inline-flex; align-items: baseline; gap: 6px; font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: -0.01em; color: var(--navy); }
.brand-sagesses { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.03em; }
.brand-modernes { font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.brand:hover { color: var(--forest); }

.nav { display: flex; align-items: center; gap: var(--s-6); }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-block: 4px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--forest);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.nav-toggle { display: none; }
@media (max-width: 1023px) {
  .nav { display: none; flex-direction: column; align-items: stretch; gap: var(--s-2); padding: var(--s-4) 0; flex-basis: 100%; }
  .nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; padding: 8px; }
  .header-inner { flex-wrap: wrap; }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(45, 122, 74, 0.25);
}
.btn-primary:hover { background: var(--forest-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(45, 122, 74, 0.35); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-ghost { color: var(--navy); padding: 8px 0; font-weight: 600; }
.btn-ghost:hover { color: var(--forest); }
.btn-or { background: var(--or); color: var(--navy); }
.btn-or:hover { background: var(--or-light); }
.btn-on-dark { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-on-dark:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-block { width: 100%; }
.fine-print { font-size: 0.83rem; color: var(--text-secondary); margin-top: var(--s-3); }
.fine-print--center { text-align: center; }

/* ───── Hero ───── */
.hero { padding-top: var(--s-16); padding-bottom: var(--s-12); background: var(--off-white); }
.hero h1 { max-width: 18ch; margin-bottom: var(--s-5); }
.hero .lead { max-width: 50ch; color: var(--text); margin-bottom: var(--s-8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero-meta { margin-top: var(--s-3); }

/* ───── Cards ───── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--forest); }
.card h3 { font-size: 1.18rem; }
.card p { font-size: 0.98rem; line-height: 1.65; color: var(--text-secondary); }
.card-num { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--navy); letter-spacing: 0.1em; }
.card--navy .card-num { color: var(--or); }
.card--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.card--navy h3 { color: var(--white); }
.card--navy p { color: rgba(255,255,255,0.82); }
.card--navy:hover { border-color: var(--or); }
.card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border: 0;
  position: relative;
}
.card--featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--or), var(--forest));
  border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg);
}
.card--featured h3 { color: var(--white); }
.card--featured p { color: rgba(255,255,255,0.85); }
.badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--forest); border: 1px solid var(--forest); padding: 3px 9px; border-radius: 999px; align-self: flex-start;
}
.card--navy .badge { color: var(--or); border-color: var(--or); }
.card--small { padding: var(--s-6); gap: var(--s-3); }
.card-meta { font-size: 0.85rem; color: var(--text-secondary); display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ───── Trust bar ───── */
.trust-bar { background: var(--white); padding-block: var(--s-10); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-eyebrow { text-align: center; color: var(--text-secondary); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: var(--s-7); }
.trust-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-8); align-items: center; }
.trust-logo {
  display: flex; align-items: center; justify-content: center;
  height: 32px; padding: 0 8px;
  font-family: var(--font-serif); font-weight: 600; font-size: 1rem;
  color: var(--text-secondary); letter-spacing: 0.02em;
  text-align: center; line-height: 1.1;
  filter: grayscale(100%); opacity: 0.55;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.trust-logo:hover { opacity: 0.85; color: var(--navy); }
.trust-logo img { max-height: 28px; width: auto; filter: grayscale(100%); opacity: 0.7; transition: filter 0.25s ease, opacity 0.25s ease; }
.trust-logo:hover img { filter: grayscale(0%); opacity: 1; }
@media (max-width: 1023px) { .trust-logos { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
@media (max-width: 639px) { .trust-logos { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); } .trust-logo { font-size: 0.9rem; } }

/* ───── Diagram Compound ───── */
.compound-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--s-4);
  margin: var(--s-12) auto;
  max-width: 920px;
}
.compound-step {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-5);
  text-align: center;
  position: relative;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.compound-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.compound-step .step-num { display: block; font-family: var(--font-serif); font-style: italic; font-size: 0.85rem; color: var(--or); margin-bottom: 6px; letter-spacing: 0.08em; }
.compound-step h4,
.compound-step h3 { color: var(--white); font-size: 1.12rem; margin-bottom: 4px; }
.compound-step .step-duration { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.compound-arrow { font-size: 1.4rem; color: var(--forest); font-weight: 700; }
@media (max-width: 767px) {
  .compound-diagram { grid-template-columns: 1fr; }
  .compound-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ───── Founder spotlight ───── */
.founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--s-12);
  align-items: center;
  background: var(--white);
  padding: var(--s-12);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.founder-photo {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  aspect-ratio: 4/5;
  display: flex; align-items: flex-end; justify-content: center;
  color: var(--or); font-family: var(--font-serif); font-size: 1.1rem; padding: var(--s-4);
  background-size: cover; background-position: center;
}
.founder blockquote { margin: 0; }
@media (max-width: 767px) {
  .founder { grid-template-columns: 1fr; padding: var(--s-8); gap: var(--s-6); }
  .founder-photo { max-width: 220px; margin-inline: auto; }
}

/* ───── Article cards ───── */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--forest));
  position: relative;
  overflow: hidden;
}
.article-cover::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(196,153,42,0.18), transparent 50%);
}
.article-cover-label {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.92); color: var(--navy);
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.article-body { padding: var(--s-6); flex: 1; display: flex; flex-direction: column; gap: var(--s-3); }
.article-body h3 { font-size: 1.15rem; line-height: 1.3; }
.article-body p { color: var(--text-secondary); font-size: 0.95rem; flex: 1; }
.article-meta { font-size: 0.8rem; color: var(--text-secondary); display: flex; gap: 14px; }

/* ───── Forms ───── */
.form { display: flex; flex-direction: column; gap: var(--s-4); }
.form-row { display: grid; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field input, .field textarea, .field select {
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.97rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45,122,74,0.18);
}
.field--error input, .field--error textarea { border-color: var(--error); }
.field-error-msg { font-size: 0.83rem; color: var(--error); }
.field textarea { min-height: 110px; resize: vertical; }
.field--inline { flex-direction: row; align-items: center; gap: var(--s-3); }
.field--inline label { font-weight: 400; }

.form-on-dark .field input, .form-on-dark .field textarea, .form-on-dark .field select {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.form-on-dark .field input::placeholder { color: rgba(255,255,255,0.55); }
.form-on-dark .field label { color: rgba(255,255,255,0.85); }
.form-on-dark .field input:focus, .form-on-dark .field textarea:focus { border-color: var(--or); box-shadow: 0 0 0 3px rgba(196,153,42,0.25); }

/* ───── Newsletter section ───── */
.newsletter-block {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-12);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.newsletter-block::before {
  content: ""; position: absolute; inset: -50% -10% auto auto; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(196,153,42,0.18), transparent 70%);
  pointer-events: none;
}
.newsletter-block h2, .newsletter-block h3 { color: var(--white); position: relative; }
.newsletter-block p { color: rgba(255,255,255,0.85); position: relative; }
.newsletter-block .form { position: relative; max-width: 460px; }

/* ───── Final CTA ───── */
.cta-final { text-align: center; padding-block: var(--s-20); }
.cta-final h2 { max-width: 22ch; margin: 0 auto var(--s-4); }
.cta-final p { max-width: 50ch; margin: 0 auto var(--s-8); color: var(--text-secondary); }

/* ───── Footer ───── */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.78); padding-block: var(--s-16); margin-top: var(--s-20); }
.site-footer h4,
.site-footer .footer-h { color: var(--white); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--s-4); }
.site-footer a { color: rgba(255,255,255,0.78); transition: color var(--t-fast); display: inline-block; padding: 4px 0; font-size: 0.92rem; }
.site-footer a:hover { color: var(--or); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: var(--s-10); margin-bottom: var(--s-12); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 36ch; margin-top: var(--s-3); }
.footer-bottom { padding-top: var(--s-6); border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }
@media (max-width: 639px) { .footer-grid { grid-template-columns: 1fr; } }

/* ───── Lists & FAQ ───── */
.list-check { display: flex; flex-direction: column; gap: var(--s-3); }
.list-check li { display: flex; gap: var(--s-3); align-items: flex-start; line-height: 1.55; }
.list-check li::before { content: "→"; color: var(--forest); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.list-cross li::before { content: "✗"; color: var(--text-secondary); }

.faq-item { border-bottom: 1px solid var(--border); padding-block: var(--s-5); }
.faq-q { width: 100%; text-align: left; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); padding: 4px 0; cursor: pointer; }
.faq-q::after { content: "+"; font-family: var(--font-sans); font-weight: 400; font-size: 1.4rem; color: var(--forest); transition: transform var(--t-base); }
.faq-item.is-open .faq-q::after { content: "−"; }
.faq-a { font-size: 0.97rem; line-height: 1.7; color: var(--text); padding-top: var(--s-3); display: none; }
.faq-item.is-open .faq-a { display: block; }

/* ───── Breadcrumbs ───── */
.breadcrumbs { font-size: 0.85rem; color: var(--text-secondary); padding-block: var(--s-4); }
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs .sep { margin: 0 6px; color: var(--text-secondary); }

/* ───── Tables ───── */
.tbl { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.tbl th, .tbl td { text-align: left; padding: var(--s-3) var(--s-4); border-bottom: 1px solid var(--border); }
.tbl th { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); font-weight: 700; }
.tbl tbody tr:hover { background: rgba(45,122,74,0.04); }

/* ───── Reveal & Animations ───── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
.count-target { font-family: var(--font-serif); font-weight: 700; color: var(--navy); }

/* ───── Article reading view ───── */
.article-reader { max-width: var(--container-text); margin: var(--s-12) auto; padding-inline: var(--s-6); }
.article-reader h1 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); margin-bottom: var(--s-4); }
.article-reader .article-meta-top { display: flex; gap: var(--s-4); flex-wrap: wrap; font-size: 0.88rem; color: var(--text-secondary); margin-bottom: var(--s-8); }
.article-reader p { font-size: 1.085rem; line-height: 1.78; }
.article-reader h2 { margin-top: var(--s-12); margin-bottom: var(--s-4); font-size: 1.55rem; }
.article-reader h3 { margin-top: var(--s-8); margin-bottom: var(--s-3); font-size: 1.2rem; }
.article-reader ul, .article-reader ol { margin-block: var(--s-4); padding-left: var(--s-5); }
.article-reader ul li, .article-reader ol li { margin-block: var(--s-2); list-style: disc; }
.article-reader ol li { list-style: decimal; }
.article-reader ul.list-check li, .article-reader .list-check li { list-style: none; }
.article-reader ul.list-check { padding-left: 0; }
.inline-cta {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--forest);
  border-radius: var(--radius);
  padding: var(--s-5) var(--s-6);
  margin: var(--s-8) 0;
}
.inline-cta strong { display: block; font-family: var(--font-serif); color: var(--navy); margin-bottom: 4px; font-size: 1.05rem; }
.inline-cta a { color: var(--forest); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.author-box { display: flex; gap: var(--s-4); align-items: center; padding: var(--s-6); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-block: var(--s-12); }
.author-photo { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--forest)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--or); font-family: var(--font-serif); font-weight: 700; font-size: 1.4rem; }
.author-info p { font-size: 0.92rem; line-height: 1.55; color: var(--text-secondary); margin: 0; }
.author-info strong { color: var(--navy); }

/* ───── Assessment specifics ───── */
.assess-progress { height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; margin-bottom: var(--s-8); }
.assess-progress-bar { height: 100%; background: linear-gradient(90deg, var(--forest), var(--or)); transition: width var(--t-base) var(--ease); width: 6%; }
.assess-question { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s-5) var(--s-8); margin-bottom: var(--s-4); }
.assess-question h3 { font-size: 1.15rem; margin-bottom: var(--s-3); }
.assess-options { display: grid; grid-template-columns: 1fr; gap: var(--s-2); }
.assess-options--grid { grid-template-columns: 1fr 1fr; }
.assess-option {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-2) var(--s-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  background: var(--white);
  min-height: 44px;
}
.assess-option:hover { border-color: var(--forest); background: rgba(45,122,74,0.04); }
.assess-option input { accent-color: var(--forest); }
.assess-option.is-selected { border-color: var(--forest); background: rgba(45,122,74,0.06); }
.assess-actions { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); margin-top: var(--s-6); }
.assess-warning {
  background: rgba(196,153,42,0.07);
  border: 1px solid rgba(196,153,42,0.4);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  margin-bottom: var(--s-8);
}
.assess-warning::before { content: "⚠️"; margin-right: 8px; }
.assess-anchor {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-8);
  border-radius: var(--radius-lg);
  margin-block: var(--s-6);
}
.assess-anchor h4 { color: var(--or); font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--s-3); }
.assess-anchor p { color: rgba(255,255,255,0.88); margin-bottom: var(--s-3); }
.assess-anchor strong { color: var(--or); }

.score-band { display: inline-block; padding: 8px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.score-band--red { background: rgba(192,57,43,0.12); color: #c0392b; }
.score-band--orange { background: rgba(196,153,42,0.15); color: #b8800f; }
.score-band--green { background: rgba(45,122,74,0.13); color: var(--forest); }

/* ───── Misc helpers ───── */
.divider { display: flex; align-items: center; gap: var(--s-3); color: var(--or); margin-block: var(--s-6); font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: lowercase; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--or); opacity: 0.4; }

.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); background: rgba(45,122,74,0.08); padding: 3px 9px; border-radius: 4px; }

.chip { display: inline-flex; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--white); border: 1px solid var(--border); font-size: 0.85rem; color: var(--text); cursor: pointer; transition: border-color var(--t-fast), background var(--t-fast); }
.chip:hover, .chip.is-active { border-color: var(--forest); background: rgba(45,122,74,0.06); color: var(--forest); }

/* ───── Card icons (v2.2.5) ───── */
.card-icon {
  display: inline-flex; width: 40px; height: 40px; padding: 8px;
  border-radius: 8px; background: rgba(45,122,74,0.08); color: var(--forest);
  margin-bottom: var(--s-4);
}
.card-icon svg { width: 100%; height: 100%; stroke-width: 1.75; }
.card--navy .card-icon { background: rgba(196,153,42,0.15); color: var(--or); }

.hero-icon {
  display: inline-flex; width: 96px; height: 96px; padding: 18px;
  border-radius: 16px; background: rgba(45,122,74,0.08); color: var(--forest);
  margin-bottom: var(--s-6);
}
.hero-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }

/* ───── Sticky CTA mobile (v2.2.3) ───── */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest); color: #fff;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 24px rgba(10,42,77,0.18);
}
.sticky-cta-mobile.is-visible { transform: translateY(0); }
.sticky-cta-mobile.is-hidden { transform: translateY(100%); }
.sticky-cta-mobile:hover { color: #fff; background: #256a3e; }
@media (max-width: 768px) { .sticky-cta-mobile { display: block; } }

/* ───── Founder video placeholder (v2.2.3) ───── */
.founder-video {
  display: block; width: 100%; max-width: 640px; margin: var(--s-8) auto 0;
  border-radius: 12px; overflow: hidden;
  background: #1a1a2e;
}
.founder-video video,
.founder-video .video-placeholder {
  display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.founder-video .video-placeholder {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: rgba(255,255,255,0.85); font-family: var(--font-serif); font-style: italic;
  text-align: center; padding: var(--s-6); gap: var(--s-3); background: linear-gradient(135deg, #0a2a4d 0%, #1a1a2e 100%);
}
.founder-video .video-placeholder span { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; font-style: normal; font-family: var(--font-sans); font-weight: 600; }
.founder-video .video-placeholder strong { font-size: 1.1rem; font-weight: 600; }

/* ───── Disabled state CTA (v2.2.3 UX fix) ───── */
.btn:disabled, .btn[disabled],
button:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ───── Print ───── */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn, .sticky-cta-mobile { display: none; }
  body { background: white; color: black; }
}

/* ═══════════════════════════════════════════════════════════════════
   DARK THEME — reserved for future implementation
   [data-theme="dark"] rules will go here
   ═══════════════════════════════════════════════════════════════════ */


/* Language switcher removed — browser handles locale automatically */
