/* ===================================================================
   Suzie Mondésir - thème suzie-authority
   Design system : hybride crédibilité + chaleur (éditorial)
   Palette verrouillée : crème (paper) + encre profonde (ink) + accent terracotta.
   Type : Newsreader (serif éditoriale, titres) + Figtree (sans humaniste, corps).
   Light theme verrouillé (identité de marque chaleureuse, cf. adamgrant.net / brenebrown.com).
   Mobile d'abord. Contrastes AA. prefers-reduced-motion respecté.
   =================================================================== */

@import url("./fonts.css");

/* ----------------------------- Tokens ----------------------------- */
:root {
  --paper:      #FBF8F3;   /* fond crème principal */
  --paper-2:    #F4EEE4;   /* sections alternées / cartes */
  --paper-3:    #EDE4D6;   /* fond plus profond */
  --ink:        #211C19;   /* texte principal / sections sombres */
  --ink-2:      #4A433D;   /* texte secondaire */
  --ink-3:      #6B6258;   /* texte discret / légendes */
  --line:       #E3D9CA;   /* filets */
  --line-2:     #D6C9B5;
  --accent:     #B14E33;   /* terracotta (boutons, grands éléments) */
  --accent-deep:#8E3C26;   /* survol / liens corps */
  --accent-tint:#F3E5DC;   /* lavis d'accent (surlignage doux) */
  --accent-dk:  #E0937A;   /* accent lisible sur fond sombre */
  --white:      #FFFFFF;

  --maxw: 1180px;
  --maxw-text: 68ch;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(33,28,25,.05), 0 2px 8px rgba(33,28,25,.04);
  --shadow-md: 0 6px 24px rgba(33,28,25,.08), 0 1px 3px rgba(33,28,25,.05);
  --shadow-lg: 0 18px 50px rgba(33,28,25,.12);

  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans:  "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step--1: clamp(0.83rem, 0.80rem + 0.12vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.25rem + 1vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.45rem + 1.7vw, 2.7rem);
  --step-4:  clamp(2.2rem, 1.6rem + 3vw, 3.8rem);
  --step-5:  clamp(2.6rem, 1.7rem + 4.5vw, 4.8rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ink); }
ul, ol { padding-left: 1.1em; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
::selection { background: var(--accent-tint); color: var(--ink); }

/* --------------------------- Typography --------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); font-weight: 600; line-height: 1.02; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.15; }
h4 { font-size: var(--step-1); line-height: 1.2; }
p { max-width: var(--maxw-text); }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); font-weight: 400; }
strong, b { color: var(--ink); font-weight: 600; }
em, i { font-style: italic; }
.serif { font-family: var(--font-serif); }
.italic-accent { font-style: italic; color: var(--accent-deep); }
small, .small { font-size: var(--step--1); }

/* Eyebrow - rationné (max 1 / 3 sections), réservé aux moments clés */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-block;
  margin-bottom: 0.9rem;
}

/* --------------------------- Layout ------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-paper-2 { background: var(--paper-2); }
.bg-paper-3 { background: var(--paper-3); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--paper); }
.bg-ink a { color: var(--accent-dk); }
.bg-ink .eyebrow { color: var(--accent-dk); }
.bg-ink p { color: #D8CFC4; }

.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 1.8rem; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem,5vw,3.5rem); }

/* Grilles utilitaires (Grid, jamais de flex-math) */
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------- Buttons ------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.98rem;
  line-height: 1; white-space: nowrap;
  padding: 0.9rem 1.5rem; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.bg-ink .btn-primary { background: var(--accent); color: #fff; }
.bg-ink .btn-ghost { color: var(--paper); border-color: rgba(251,248,243,.32); }
.bg-ink .btn-ghost:hover { border-color: var(--paper); color: var(--paper); }
.btn-arrow::after { content: "→"; font-size: 1.05em; transition: transform .25s var(--ease); }
.btn:hover .btn-arrow, .btn-arrow:hover::after { transform: translateX(3px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.textlink { font-weight: 600; color: var(--accent-deep); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; }
.textlink::after { content: "→"; transition: transform .25s var(--ease); }
.textlink:hover { color: var(--ink); }
.textlink:hover::after { transform: translateX(3px); }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 70px; }
.brand { font-family: var(--font-serif); font-weight: 600; font-size: 1.3rem; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; white-space: nowrap; }
.brand:hover { color: var(--ink); }
.brand .brand-mark { color: var(--accent); }
.nav-links { display: none; align-items: center; gap: 1.15rem; list-style: none; padding: 0; margin: 0; }
.nav-links a { font-family: var(--font-sans); font-size: 0.92rem; font-weight: 500; color: var(--ink-2); text-decoration: none; position: relative; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 0.9rem; }
.lang-switch { display: inline-flex; gap: 0.15rem; font-size: 0.85rem; font-weight: 600; }
.lang-switch a { color: var(--ink-3); text-decoration: none; padding: 0.2rem 0.35rem; border-radius: var(--r-sm); }
.lang-switch a[aria-current="true"] { color: var(--ink); background: var(--paper-3); }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px; justify-content: center;
  width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); margin-inline: auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none; position: fixed; inset: 70px 0 0; z-index: 49;
  background: var(--paper); padding: 1.5rem var(--gutter) 3rem;
  overflow-y: auto; flex-direction: column;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 1rem 0; font-family: var(--font-serif); font-size: 1.4rem; color: var(--ink); text-decoration: none; }
.mobile-menu .btn { margin-top: 1.6rem; justify-content: center; }

@media (min-width: 1120px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav { height: 76px; }
}
@media (min-width: 1280px) {
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.95rem; }
}

/* ------------------------------ Hero ------------------------------ */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero-title { font-size: clamp(2rem, 1.45rem + 2.1vw, 3rem); line-height: 1.07; margin-bottom: 1.3rem; }
.hero-title .hl { color: var(--accent-deep); font-style: italic; }
.hero-lead { font-size: var(--step-1); color: var(--ink-2); max-width: 42ch; margin-bottom: 1.8rem; }
.hero-media { position: relative; }
.hero-portrait {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  background: var(--paper-3);
}
.hero-badge {
  position: absolute; left: -8px; bottom: 18px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0.7rem 1rem; box-shadow: var(--shadow-md);
  font-size: 0.82rem; max-width: 220px;
}
.hero-badge b { display: block; font-family: var(--font-serif); font-size: 1.4rem; color: var(--accent-deep); }
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}

/* Section header */
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-bottom: 0.8rem; }
.section-head p { color: var(--ink-2); font-size: var(--step-1); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* ----------------------- Stat / proof row ------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); }
.stat { background: var(--paper); padding: 1.5rem 1.2rem; }
.stat .num { font-family: var(--font-serif); font-size: var(--step-3); color: var(--accent-deep); line-height: 1; }
.stat .lbl { font-size: 0.9rem; color: var(--ink-3); margin-top: 0.45rem; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ----------------------------- Cards ------------------------------ */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(1.4rem, 3vw, 2rem); height: 100%;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
a.card, .card-link { text-decoration: none; color: inherit; }
a.card:hover, .card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.card p { color: var(--ink-2); font-size: 0.98rem; }
.card .card-kicker { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 0.8rem; }
.card-foot { margin-top: auto; padding-top: 1.1rem; }

/* Credential card */
.cred-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.cred-card .cred-abbr { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--accent-deep); line-height: 1; min-width: 64px; }
.cred-card .cred-body h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.cred-card .cred-body p { font-size: 0.92rem; color: var(--ink-3); }
.cred-card .cred-year { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); background: var(--paper-3); padding: 0.15rem 0.55rem; border-radius: var(--r-pill); display: inline-block; margin-top: 0.5rem; }

/* Feature / list with hairlines (no border on every row) */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 1.3rem 0; border-top: 1px solid var(--line); display: grid; gap: 0.3rem; }
.feature-list li:first-child { border-top: 0; }
.feature-list h3 { font-size: var(--step-1); }
.feature-list p { color: var(--ink-2); }

/* --------------------- Brand band (logos) ------------------------- */
.brand-band { padding-block: clamp(2rem, 5vw, 3.2rem); }
.brand-band .bb-label { text-align: center; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.6rem; }
.brand-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.2rem); }
.brand-logo { font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem; color: var(--ink-2); filter: grayscale(1); opacity: .9; transition: opacity .3s var(--ease), color .3s var(--ease), filter .3s var(--ease); text-decoration: none; white-space: nowrap; }
.brand-logo:hover { opacity: 1; filter: grayscale(0); color: var(--accent-deep); }
.brand-logo img { height: 30px; width: auto; filter: grayscale(1); opacity: .7; transition: opacity .3s var(--ease), filter .3s var(--ease); }
.brand-logo:hover img { filter: grayscale(0); opacity: 1; }

/* --------------------- Testimonials band -------------------------- */
.tband { }
.tcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(1.5rem, 3vw, 2.1rem); height: 100%; display: flex; flex-direction: column; }
.tcard blockquote { font-family: var(--font-serif); font-size: var(--step-1); line-height: 1.4; color: var(--ink); margin-bottom: 1.2rem; }
.tcard blockquote .mark { color: var(--accent); }
.tcard .t-service { display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-deep); background: var(--accent-tint); padding: 0.2rem 0.6rem; border-radius: var(--r-pill); text-decoration: none; margin-bottom: 1rem; align-self: flex-start; }
.tcard .t-attr { margin-top: auto; font-size: 0.9rem; }
.tcard .t-attr b { display: block; color: var(--ink); }
.tcard .t-attr span { color: var(--ink-3); }

/* --------------------------- Newsletter --------------------------- */
.newsletter { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); }
.newsletter h2 { color: var(--paper); }
.newsletter p { color: #D8CFC4; max-width: 52ch; }
.nl-form { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; max-width: 480px; }
.nl-form input[type="email"] { flex: 1 1 220px; background: rgba(251,248,243,.07); border: 1.5px solid rgba(251,248,243,.25); color: var(--paper); border-radius: var(--r-pill); padding: 0.85rem 1.2rem; }
.nl-form input::placeholder { color: #B7ADA1; }
.nl-form input:focus-visible { border-color: var(--accent-dk); outline: none; }
.nl-note { font-size: 0.8rem; color: #B7ADA1; margin-top: 0.9rem; }

/* ------------------------------ Press ----------------------------- */
.press-quote { border-left: 3px solid var(--accent); padding-left: 1.3rem; }
.press-quote blockquote { font-family: var(--font-serif); font-size: var(--step-2); line-height: 1.3; color: var(--ink); }
.press-quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.92rem; color: var(--ink-3); }
.press-quote cite b { color: var(--ink); }

/* --------------------------- Breadcrumb --------------------------- */
.breadcrumb { font-size: 0.85rem; color: var(--ink-3); padding-block: 1.2rem 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.4rem; color: var(--line-2); }

/* ----------------------------- FAQ -------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 0.4rem 0; }
.faq summary { font-family: var(--font-serif); font-size: var(--step-1); color: var(--ink); cursor: pointer; padding: 1rem 2rem 1rem 0; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-a { padding: 0 0 1.2rem; color: var(--ink-2); }

/* --------------------------- Glossary ----------------------------- */
.glossary-nav { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem; }
.glossary-nav a { font-weight: 600; font-size: 0.9rem; color: var(--ink-2); text-decoration: none; padding: 0.3rem 0.65rem; border: 1px solid var(--line); border-radius: var(--r-pill); }
.glossary-nav a:hover { border-color: var(--accent); color: var(--accent-deep); }
.term { padding: 1.6rem 0; border-top: 1px solid var(--line); }
.term h3 { font-size: var(--step-2); margin-bottom: 0.5rem; }
.term .term-def { color: var(--ink-2); }
.term .term-links { margin-top: 0.8rem; font-size: 0.9rem; }

/* ------------------------------ Prose ----------------------------- */
.prose { max-width: var(--maxw-text); }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { margin-top: 2.5rem; font-size: var(--step-3); }
.prose h3 { margin-top: 1.8rem; font-size: var(--step-1); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.4rem; }
.prose blockquote { border-left: 3px solid var(--accent); padding-left: 1.2rem; font-family: var(--font-serif); font-size: var(--step-1); color: var(--ink); font-style: italic; }
.prose a { color: var(--accent-deep); font-weight: 500; }
.prose figure img { border-radius: var(--r-md); }
.prose figcaption { font-size: 0.85rem; color: var(--ink-3); margin-top: 0.5rem; }

/* ---------------------------- Footer ------------------------------ */
.site-footer { background: var(--ink); color: #C9C0B5; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: #C9C0B5; text-decoration: none; }
.site-footer a:hover { color: var(--paper); }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.footer-brand .brand { color: var(--paper); }
.footer-brand p { color: #A89E92; font-size: 0.92rem; max-width: 34ch; margin-top: 0.8rem; }
.footer-col h3 { color: var(--paper); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; line-height: 1.2; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(251,248,243,.12); margin-top: 1.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; font-size: 0.85rem; color: #8E857A; }
.footer-bottom a { color: #8E857A; }
.footer-glossary { border-top: 1px solid rgba(251,248,243,.12); margin-top: 2.5rem; padding-top: 1.4rem; font-size: 0.85rem; color: #8E857A; line-height: 1.7; }
.footer-glossary .fg-label { color: var(--paper); font-weight: 600; margin-right: 0.5rem; }
.footer-glossary a { color: #A89E92; }
.footer-glossary a:hover { color: var(--paper); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; } }

/* ------------------ EAV table (Casey: structured data) ------------ */
.eav-table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; font-size: 0.96rem; }
.eav-table caption { text-align: left; font-family: var(--font-serif); font-size: var(--step-1); color: var(--ink); margin-bottom: 0.8rem; }
.eav-table th, .eav-table td { text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.eav-table thead th { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.eav-table tbody th { font-weight: 600; color: var(--ink); }
.eav-table td { color: var(--ink-2); }
.eav-yes { color: var(--accent-deep); font-weight: 600; }

/* ---------------------- Reveal animation -------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ----------------------------- Utilities -------------------------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: 0.7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 100; }
.skip-link:focus { left: 0; color: var(--paper); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.tag { display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-deep); background: var(--accent-tint); padding: 0.25rem 0.7rem; border-radius: var(--r-pill); }
.placeholder-note { font-size: 0.8rem; color: var(--ink-3); font-style: italic; border: 1px dashed var(--line-2); border-radius: var(--r-sm); padding: 0.3rem 0.6rem; display: inline-block; }

/* ---------------- Home: IHE teaser, chips, region list ----------- */
.ihe-teaser {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.4rem);
}
.ihe-teaser-body { flex: 1 1 30ch; }
.ihe-status { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--accent-deep); margin-bottom: 0.55rem; }
.ihe-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.chip { font-size: 0.84rem; font-weight: 500; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line-2); padding: 0.35rem 0.8rem; border-radius: var(--r-pill); }
.ihe-teaser-cta { flex: 0 0 auto; }

.region-cols { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; }
.region-cols li { font-family: var(--font-serif); font-size: var(--step-1); color: var(--ink); padding: 0.85rem 0; border-top: 1px solid var(--line); }
.region-cols li:first-child { border-top: 0; }
@media (min-width: 680px) {
  .region-cols { grid-template-columns: 1fr 1fr; column-gap: 2.2rem; }
  .region-cols li:nth-child(2) { border-top: 0; }
}

/* ---------------- Service/section: results, mandate, pricing ------ */
.result-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1rem; }
.result-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.result-list .rnum { font-family: var(--font-serif); font-size: var(--step-2); color: var(--accent-deep); line-height: 1; }
.mandate-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 1.5rem; }
@media (min-width: 760px) { .mandate-grid { grid-template-columns: 1fr 1fr; } }
.mandate-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.3rem 1.4rem; }
.mandate-card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.mandate-card p { color: var(--ink-2); }
.mandate-card.is-reserved { border-style: dashed; background: transparent; }
.price-band { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); }
.price-band .price-figure { font-family: var(--font-serif); font-size: var(--step-3); color: var(--ink); line-height: 1.1; }
.case-quote { border-left: 3px solid var(--accent); padding: 0.4rem 0 0.4rem 1.4rem; font-family: var(--font-serif); font-size: var(--step-1); line-height: 1.45; color: var(--ink); }
.case-quote cite { display: block; margin-top: 0.9rem; font-family: var(--font-sans); font-style: normal; font-size: 0.9rem; color: var(--ink-3); }
.topic-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0; }
.topic-list li { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.topic-list li:first-child { border-top: 0; }
.topic-list h3 { font-size: var(--step-1); margin-bottom: 0.35rem; }
.topic-list p { color: var(--ink-2); max-width: 70ch; }
.method-steps { counter-reset: step; list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1rem; }
.method-steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline; }
.method-steps li::before { counter-increment: step; content: counter(step); font-family: var(--font-serif); font-size: var(--step-2); color: var(--accent-deep); line-height: 1; }
.method-steps h3 { font-size: var(--step-0); font-weight: 600; }
.method-steps p { color: var(--ink-2); }
