:root {
  --ink: #101513;
  --ink-2: #17201d;
  --paper: #f5f1e8;
  --paper-2: #ece6d8;
  --gold: #b99a5f;
  --gold-light: #e3c98f;
  --green: #29352e;
  --muted: #777a72;
  --line: rgba(16, 21, 19, .14);
  --white: #fffdf8;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 24px 60px rgba(9, 13, 11, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: .8rem 1rem;
  background: var(--gold-light);
  color: var(--ink);
  border-radius: .3rem;
}
.skip-link:focus { top: 1rem; }

.container { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #444a45; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
  color: var(--white);
}
.site-header.is-scrolled {
  background: rgba(15, 20, 18, .95);
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.brand-text span { margin-top: .25rem; font-size: .57rem; letter-spacing: .28em; text-transform: uppercase; opacity: .78; }

.main-nav ul { display: flex; align-items: center; gap: 1.55rem; list-style: none; padding: 0; margin: 0; }
.main-nav a {
  position: relative;
  padding: .7rem 0;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .35rem;
  height: 1px;
  background: var(--gold-light);
  transition: right .2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: transparent;
  color: inherit;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after { content: ''; display: block; width: 18px; height: 1px; background: currentColor; margin: 5px auto; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  background: #111714 url('../img/hero-accueil.webp') 62% center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,12,10,.91) 0%, rgba(8,12,10,.68) 38%, rgba(8,12,10,.16) 68%, rgba(8,12,10,.34) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(8,12,10,.96), transparent);
}
.hero-inner { position: relative; z-index: 2; padding: 160px 0 62px; }
.hero-copy { width: min(690px, 75%); }
.hero-kicker { margin: 0 0 1rem; color: var(--gold-light); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.055em;
}
.hero h1 span { display: block; margin-top: .35rem; font-size: .46em; letter-spacing: -.02em; color: #efe8da; }
.hero-description { max-width: 590px; margin: 1.7rem 0 0; font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(255,255,255,.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-light); color: #18201d; }
.button-secondary { border-color: rgba(255,255,255,.45); color: var(--white); background: rgba(10,13,12,.18); }
.button-dark { background: var(--ink); color: var(--white); }

.hero-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.principle { padding: 1.45rem 1.4rem 0 0; }
.principle + .principle { padding-left: 1.4rem; border-left: 1px solid rgba(255,255,255,.18); }
.principle-index { display: block; margin-bottom: .45rem; color: var(--gold-light); font-family: var(--serif); font-size: 1.15rem; }
.principle strong { display: block; font-family: var(--serif); font-size: 1.28rem; font-weight: 500; }
.principle span { display: block; margin-top: .25rem; font-size: .72rem; color: rgba(255,255,255,.6); }

.intro { padding: 125px 0 120px; background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.intro-copy p { margin: 0 0 1.2rem; color: #484e49; }
.definition-card {
  margin-top: 2.4rem;
  padding: 1.65rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.38);
}
.definition-card strong { display: block; margin-bottom: .45rem; font-family: var(--serif); font-size: 1.4rem; }
.definition-card p { margin: 0; font-size: .9rem; }

.methods { padding: 118px 0; color: var(--white); background: var(--ink); position: relative; overflow: hidden; }
.methods::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  right: -130px;
  top: -80px;
  background: url('../img/ink-circle.svg') center/contain no-repeat;
  opacity: .12;
}
.methods-header { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3.2rem; }
.methods-header p { max-width: 450px; margin: 0; color: rgba(255,255,255,.62); }
.method-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.method-card { min-height: 330px; padding: 2rem; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .2s ease; }
.method-card:hover { background: rgba(255,255,255,.035); }
.method-number { color: var(--gold-light); font-family: var(--serif); font-size: 1.4rem; }
.method-card h3 { margin: 3.2rem 0 .2rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.method-card .method-cn { display: block; margin-bottom: 1rem; color: var(--gold); font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; }
.method-card p { color: rgba(255,255,255,.62); font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1rem; color: var(--gold-light); font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.text-link::after { content: '→'; font-size: 1rem; }

.founder { padding: 125px 0; background: #e9e3d7; }
.founder-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.founder-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 50% 34%, #435048 0, #1b2420 42%, #0d1210 100%);
  box-shadow: var(--shadow);
}
.founder-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 45%); }
.founder-visual img { width: 78%; opacity: .5; }
.founder-characters { position: absolute; inset: auto 1.8rem 1.5rem auto; font-family: var(--serif); font-size: 5rem; line-height: 1; color: rgba(227,201,143,.76); writing-mode: vertical-rl; letter-spacing: .08em; }
.founder-copy p { color: #484e49; }
.timeline { margin: 2rem 0 2.2rem; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { display: grid; grid-template-columns: 85px 1fr; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.timeline strong { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.timeline span { font-size: .9rem; color: #4f554f; }

.practice { padding: 118px 0; background: var(--paper); }
.practice-header { max-width: 820px; margin-bottom: 3.2rem; }
.practice-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1rem; }
.practice-card { min-height: 360px; padding: 2.2rem; display: flex; flex-direction: column; justify-content: end; position: relative; overflow: hidden; color: var(--white); background: #1d2923; }
.practice-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,10,9,.9), rgba(7,10,9,.12)); }
.practice-card:first-child { min-height: 480px; background: radial-gradient(circle at 75% 20%, #8a7e63 0, #34443a 35%, #15201b 100%); }
.practice-card:nth-child(2) { background: linear-gradient(145deg, #5e594c, #242d28); }
.practice-card:nth-child(3) { background: linear-gradient(145deg, #30392f, #111815); }
.practice-card-content { position: relative; z-index: 1; }
.practice-card small { color: var(--gold-light); letter-spacing: .14em; text-transform: uppercase; }
.practice-card h3 { margin: .65rem 0 .5rem; font-family: var(--serif); font-size: 2.1rem; font-weight: 500; line-height: 1; }
.practice-card p { margin: 0; color: rgba(255,255,255,.7); font-size: .9rem; }

.resources { padding: 118px 0; background: var(--paper-2); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.resource-card { background: rgba(255,255,255,.55); border: 1px solid var(--line); min-height: 300px; padding: 2rem; display: flex; flex-direction: column; }
.resource-card small { color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
.resource-card h3 { margin: auto 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.05; }
.resource-card p { margin: 0; color: #555b55; font-size: .9rem; }

.faq { padding: 115px 0; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 1.25rem 0; border: 0; background: transparent; color: inherit; display: flex; justify-content: space-between; gap: 2rem; text-align: left; cursor: pointer; font-family: var(--serif); font-size: 1.35rem; }
.faq-item button::after { content: '+'; color: var(--gold); }
.faq-item button[aria-expanded="true"]::after { content: '−'; }
.faq-answer { display: none; padding: 0 2rem 1.35rem 0; color: #4e544f; }
.faq-answer.is-open { display: block; }

.final-cta { padding: 95px 0; color: var(--white); background: var(--ink); position: relative; overflow: hidden; }
.final-cta::after { content: ''; position: absolute; width: 420px; height: 420px; right: -80px; top: -105px; background: url('../img/ink-circle.svg') center/contain no-repeat; opacity: .25; }
.final-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.final-cta h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 500; line-height: .9; }

.site-footer { padding: 65px 0 30px; color: rgba(255,255,255,.72); background: #090d0b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 3rem; }
.footer-brand p { max-width: 330px; font-size: .85rem; }
.footer-title { margin: 0 0 1rem; color: var(--white); font-family: var(--serif); font-size: 1.15rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li + li { margin-top: .55rem; }
.footer-list a { font-size: .82rem; }
.footer-list a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; color: rgba(255,255,255,.45); }

@media (max-width: 1040px) {
  .main-nav { position: fixed; inset: 86px 0 auto; display: none; padding: 1.5rem; background: rgba(15,20,18,.98); }
  .main-nav.is-open { display: block; }
  .main-nav ul { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .main-nav a { display: block; font-size: .78rem; }
  .menu-toggle { display: block; }
  .hero-copy { width: 82%; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .practice-card:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 2rem, 1180px); }
  .header-inner { min-height: 76px; }
  .main-nav { inset: 76px 0 auto; }
  .brand-text strong { font-size: .9rem; }
  .hero { background-position: 72% center; }
  .hero::before { background: linear-gradient(90deg, rgba(8,12,10,.91) 0%, rgba(8,12,10,.76) 58%, rgba(8,12,10,.5) 100%); }
  .hero-inner { padding: 135px 0 36px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.7rem); }
  .hero-principles { grid-template-columns: 1fr 1fr; margin-top: 45px; }
  .principle { padding: 1.1rem 1rem 1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .principle + .principle { padding-left: 1rem; }
  .intro, .methods, .founder, .practice, .resources, .faq { padding: 85px 0; }
  .intro-grid, .founder-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .methods-header, .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 275px; }
  .founder-visual { min-height: 460px; order: 2; }
  .practice-grid, .resources-grid { grid-template-columns: 1fr; }
  .practice-card:first-child { grid-column: auto; min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* Page éditoriale : découvrir le Zhineng Qigong */
.site-header.page-header { background: rgba(10, 14, 12, .84); backdrop-filter: blur(16px); }
.main-nav a[aria-current="page"] { color: var(--gold-light); }
.main-nav a[aria-current="page"]::after { right: 0; }

.article-hero {
  min-height: 760px;
  padding: 165px 0 84px;
  color: var(--white);
  background-color: #111714;
  background-image:
    linear-gradient(90deg, rgba(7,11,9,.94) 0%, rgba(7,11,9,.76) 43%, rgba(7,11,9,.30) 72%, rgba(7,11,9,.38) 100%),
    var(--hero-image);
  background-position: center, var(--hero-position, center);
  background-size: cover, cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}


/* Photographies de couverture propres à chaque page */
.discover-page-hero {
  --hero-image: url('../img/hero-decouvrir.webp');
  --hero-position: 60% center;
  --hero-mobile-position: 66% center;
}
.methods-page-hero {
  --hero-image: url('../img/hero-methodes.webp');
  --hero-position: 61% center;
  --hero-mobile-position: 70% center;
}
.pang-page-hero {
  --hero-image: url('../img/hero-pang-ming.webp');
  --hero-position: 62% center;
  --hero-mobile-position: 72% center;
}
.teachers-page-hero {
  --hero-image: url('../img/hero-professeurs.webp');
  --hero-position: 58% center;
  --hero-mobile-position: 65% center;
}
.events-page-hero {
  --hero-image: url('../img/hero-formations.webp');
  --hero-position: 60% center;
  --hero-mobile-position: 70% center;
}
.resources-page-hero {
  --hero-image: url('../img/hero-ressources.webp');
  --hero-position: 56% center;
  --hero-mobile-position: 64% center;
}
.about-page-hero {
  --hero-image: url('../img/hero-a-propos.webp');
  --hero-position: 62% center;
  --hero-mobile-position: 73% center;
}
.contact-page-hero {
  --hero-image: url('../img/hero-contact.webp');
  --hero-position: 62% center;
  --hero-mobile-position: 74% center;
}

.article-hero::after {
  content: '智能气功';
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: -2.2rem;
  color: rgba(255,255,255,.075);
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: clamp(7rem, 16vw, 15rem);
  line-height: .82;
  letter-spacing: -.08em;
  white-space: nowrap;
}
.article-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.article-hero-grid > * { min-width: 0; }
.breadcrumbs { margin: 0 0 3rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.56); }
.breadcrumbs a:hover { color: var(--gold-light); }
.article-kicker { color: var(--gold-light); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; }
.article-hero h1 { margin: .75rem 0 1.4rem; font-family: var(--serif); font-size: clamp(4rem, 8vw, 8.4rem); font-weight: 500; line-height: .82; letter-spacing: -.055em; }
.article-hero h1 span { display: block; margin-top: .72rem; color: #e4d6b6; font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: .44em; letter-spacing: .08em; }
.article-hero .lead { max-width: 730px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.55vw, 1.28rem); }
.hero-aside { border-left: 1px solid rgba(255,255,255,.2); padding-left: 2rem; }
.hero-aside-label { display: block; margin-bottom: 1rem; color: var(--gold-light); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-aside strong { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 500; line-height: 1.05; }
.hero-aside p { color: rgba(255,255,255,.62); font-size: .88rem; }

.article-nav { background: #0c110f; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.12); }
.article-nav-inner { min-height: 78px; display: flex; align-items: center; gap: 2rem; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.article-nav-inner::-webkit-scrollbar { display: none; }
.article-nav a { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.article-nav a:hover { color: var(--gold-light); }

.article-section { padding: 112px 0; }
.article-section.alt { background: var(--paper-2); }
.article-section.dark { color: var(--white); background: var(--ink); position: relative; overflow: hidden; }
.article-section.dark::after { content: ''; position: absolute; width: 520px; height: 520px; right: -150px; bottom: -160px; background: url('../img/ink-circle.svg') center/contain no-repeat; opacity: .1; }
.article-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.article-grid.reverse { grid-template-columns: 1.15fr .85fr; }
.article-copy { max-width: 780px; }
.article-copy p { margin: 0 0 1.25rem; color: #474d48; }
.dark .article-copy p { color: rgba(255,255,255,.68); }
.article-copy h3 { margin: 2.2rem 0 .8rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.1; }
.article-copy .lead { color: #303630; }
.dark .article-copy .lead { color: rgba(255,255,255,.84); }

.quick-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(255,255,255,.28); }
.quick-fact { min-height: 165px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quick-fact small { display: block; margin-bottom: 2.4rem; color: var(--gold); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.quick-fact strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; line-height: 1.1; }
.quick-fact span { display: block; margin-top: .35rem; color: var(--muted); font-size: .78rem; }

.term-stack { display: grid; gap: .75rem; }
.term-row { display: grid; grid-template-columns: 94px 120px 1fr; gap: 1.2rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.term-hanzi { font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 2rem; color: var(--gold); }
.term-pinyin { font-weight: 600; font-size: .9rem; }
.term-meaning { color: #515752; font-size: .9rem; }
.translation-note { margin-top: 1.5rem; padding: 1.35rem 1.5rem; border-left: 2px solid var(--gold); background: rgba(255,255,255,.45); color: #4d534e; font-size: .88rem; }

.triptych { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); position: relative; z-index: 1; }
.triptych-card { min-height: 360px; padding: 2rem; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.triptych-number { color: var(--gold-light); font-family: var(--serif); font-size: 1.5rem; }
.triptych-card h3 { margin: 4.5rem 0 .4rem; font-family: var(--serif); font-size: 2.5rem; font-weight: 500; line-height: .95; }
.triptych-card .cn { color: var(--gold); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.triptych-card p { color: rgba(255,255,255,.62); font-size: .9rem; }

.principle-list { counter-reset: principles; border-top: 1px solid var(--line); }
.principle-line { counter-increment: principles; display: grid; grid-template-columns: 82px 1fr; gap: 1.5rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.principle-line::before { content: '0' counter(principles); color: var(--gold); font-family: var(--serif); font-size: 1.45rem; }
.principle-line h3 { margin: 0 0 .35rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.principle-line p { margin: 0; color: #555b56; font-size: .9rem; }

.session-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.session-step { position: relative; min-height: 300px; padding: 1.8rem; display: flex; flex-direction: column; background: #18221d; color: var(--white); overflow: hidden; }
.session-step:nth-child(2) { background: #28342d; }
.session-step:nth-child(3) { background: #3e463a; }
.session-step:nth-child(4) { background: #665f4e; }
.session-step .step-no { color: var(--gold-light); font-family: var(--serif); font-size: 1.3rem; }
.session-step h3 { margin: auto 0 .55rem; font-family: var(--serif); font-size: 1.9rem; font-weight: 500; line-height: 1; }
.session-step p { margin: 0; color: rgba(255,255,255,.68); font-size: .82rem; }

.concept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.concept-card { min-height: 280px; padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.42); }
.concept-card .hanzi { display: block; color: var(--gold); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 3.2rem; line-height: 1; }
.concept-card h3 { margin: 2.3rem 0 .45rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.concept-card p { margin: 0; color: #555b56; font-size: .88rem; }

.editorial-note { padding: 1.5rem; border: 1px solid var(--line); background: var(--white); }
.editorial-note strong { display: block; margin-bottom: .45rem; font-family: var(--serif); font-size: 1.25rem; }
.editorial-note p { margin: 0; color: #555b56; font-size: .87rem; }

.source-list { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.source-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .86rem; color: #4d534e; }
.source-list a { text-decoration: underline; text-decoration-color: rgba(185,154,95,.6); text-underline-offset: 3px; }
.source-list a:hover { color: #765c2e; }

.next-page { padding: 90px 0; background: var(--ink); color: var(--white); }
.next-page-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.next-page small { color: var(--gold-light); letter-spacing: .15em; text-transform: uppercase; }
.next-page h2 { max-width: 780px; margin: .7rem 0 0; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 500; line-height: .92; }

@media (max-width: 1040px) {
  .article-hero-grid, .article-grid, .article-grid.reverse { grid-template-columns: 1fr; }
  .hero-aside { max-width: 560px; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .triptych { grid-template-columns: 1fr 1fr; }
  .session-flow { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .article-hero { min-height: 690px; padding: 130px 0 65px; background-position: center, var(--hero-mobile-position, var(--hero-position, center)); }
  .article-hero h1 { font-size: clamp(3.55rem, 18vw, 5.7rem); }
  .breadcrumbs { margin-bottom: 2rem; }
  .hero-aside { padding-left: 1.2rem; }
  .article-section { padding: 82px 0; }
  .quick-facts, .triptych, .session-flow, .concept-grid { grid-template-columns: 1fr; }
  .triptych-card { min-height: 290px; }
  .term-row { grid-template-columns: 70px 1fr; gap: .8rem; }
  .term-meaning { grid-column: 2; }
  .next-page-inner { align-items: flex-start; flex-direction: column; }
}

/* Page méthodes */
.methods-page-hero::after { content: '功法'; right: clamp(1rem, 7vw, 7rem); letter-spacing: .02em; }
.method-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.method-map-card {
  min-height: 460px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.3);
}
.map-level { color: var(--gold); font-size: .67rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.map-hanzi { display: block; margin: 3.2rem 0 1.4rem; color: rgba(16,21,19,.2); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 4rem; line-height: 1; }
.method-map-card h3 { margin: 0 0 .55rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.map-translation { min-height: 3.2rem; margin: 0 0 2rem; color: var(--muted); font-size: .83rem; }
.method-map-card dl { margin: 0; }
.method-map-card dl div { display: grid; grid-template-columns: 90px 1fr; gap: .7rem; padding: .75rem 0; border-top: 1px solid var(--line); }
.method-map-card dt { color: var(--gold); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.method-map-card dd { margin: 0; color: #4e544f; font-size: .82rem; }

.method-focus { padding: 118px 0; overflow: hidden; }
.method-focus-grid { display: grid; grid-template-columns: .35fr 1.65fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.method-focus-grid.reverse-layout { grid-template-columns: .35fr 1.65fr; }
.method-focus-index { position: sticky; top: 120px; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid currentColor; padding-left: 1.4rem; opacity: .55; }
.method-focus-index span { font-family: var(--serif); font-size: 1.35rem; }
.method-focus-index strong { font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: clamp(7rem, 14vw, 12rem); font-weight: 400; line-height: .8; }
.method-focus-content { max-width: 920px; }
.method-focus-content h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7.2rem); font-weight: 500; line-height: .87; letter-spacing: -.05em; }
.method-cn-line { margin: 1rem 0 2.1rem; color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.method-cn-line span { font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 1.15rem; letter-spacing: .08em; }
.method-focus-content > .lead { max-width: 780px; margin-bottom: 3rem; }
.method-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid currentColor; border-left: 1px solid currentColor; }
.method-detail-grid > div { min-height: 230px; padding: 1.7rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; }
.method-detail-grid h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.method-detail-grid p { margin: 0; font-size: .88rem; }
.dark-focus { color: var(--white); background: #121a16; }
.dark-focus .lead, .dark-focus .method-detail-grid p { color: rgba(255,255,255,.67); }
.dark-focus .method-detail-grid, .dark-focus .method-detail-grid > div { border-color: rgba(255,255,255,.17); }
.light-focus { background: #ded8ca; color: var(--ink); }
.light-focus .lead, .light-focus .method-detail-grid p { color: #4e544f; }
.light-focus .method-detail-grid, .light-focus .method-detail-grid > div { border-color: rgba(16,21,19,.16); }
.ochre-focus { background: #6c6049; color: var(--white); }
.ochre-focus .eyebrow, .ochre-focus .method-cn-line { color: #f0d59d; }
.ochre-focus .lead, .ochre-focus .method-detail-grid p { color: rgba(255,255,255,.7); }
.ochre-focus .method-detail-grid, .ochre-focus .method-detail-grid > div { border-color: rgba(255,255,255,.2); }

.support-methods { margin-top: 4rem; border-top: 1px solid var(--line); }
.support-method-card { display: grid; grid-template-columns: .48fr 1.52fr; gap: clamp(2rem, 7vw, 7rem); padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.support-hanzi { color: rgba(16,21,19,.18); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: clamp(3rem, 7vw, 6rem); line-height: 1; white-space: nowrap; }
.support-method-card h3 { margin: 0; font-family: var(--serif); font-size: 2.3rem; font-weight: 500; line-height: 1; }
.support-translation { margin: .55rem 0 1rem; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.support-method-card div > p:last-child { max-width: 720px; margin: 0; color: #4f5550; }

.study-path { margin-top: 4rem; border-top: 1px solid var(--line); }
.study-path article { display: grid; grid-template-columns: 110px 1fr; gap: 1.5rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.study-path article > span { color: var(--gold); font-family: var(--serif); font-size: 1.45rem; }
.study-path h3 { margin: 0 0 .35rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.study-path p { max-width: 760px; margin: 0; color: #535954; font-size: .9rem; }
.naming-note { display: grid; grid-template-columns: .45fr 1.55fr; gap: 2rem; margin-top: 3rem; padding: 2rem; background: var(--ink); color: var(--white); }
.naming-note > span { color: var(--gold-light); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 2.3rem; }
.naming-note h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.naming-note p { margin: 0; color: rgba(255,255,255,.65); font-size: .88rem; }

@media (max-width: 1040px) {
  .method-map { grid-template-columns: 1fr; }
  .method-map-card { min-height: 0; }
  .map-hanzi { margin-top: 2rem; }
}

@media (max-width: 760px) {
  .method-focus { padding: 82px 0; }
  .method-focus-grid, .method-focus-grid.reverse-layout { grid-template-columns: 1fr; }
  .method-focus-index { position: static; min-height: 0; flex-direction: row; align-items: end; border-left: 0; border-bottom: 1px solid currentColor; padding: 0 0 1rem; }
  .method-focus-index strong { font-size: 5rem; }
  .method-detail-grid { grid-template-columns: 1fr; }
  .support-method-card { grid-template-columns: 1fr; gap: 1.2rem; }
  .support-hanzi { white-space: normal; }
  .study-path article { grid-template-columns: 58px 1fr; }
  .naming-note { grid-template-columns: 1fr; }
}

/* Page Dr Pang He Ming */
.pang-page-hero::after {
  content: '庞明';
  right: clamp(1rem, 7vw, 7rem);
  bottom: -1.2rem;
  letter-spacing: .03em;
}
.pang-hero-grid { grid-template-columns: 1.35fr .65fr; }
.pang-facts { margin-top: 4rem; }

.name-section {
  padding: 0;
  color: var(--white);
  background: #151d19;
  overflow: hidden;
}
.name-layout {
  min-height: 660px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
}
.name-monogram {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at center, rgba(227,201,143,.1), transparent 48%),
    url('../img/ink-circle.svg') center/72% no-repeat;
}
.name-monogram::before,
.name-monogram::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,.1);
}
.name-monogram::before { width: 1px; height: 100%; left: 50%; top: 0; }
.name-monogram::after { height: 1px; width: 100%; top: 50%; left: 0; }
.name-monogram span {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: clamp(7rem, 13vw, 12rem);
  line-height: .76;
}
.name-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}
.name-copy h2 {
  max-width: 760px;
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.04em;
}
.name-copy p { max-width: 760px; color: rgba(255,255,255,.67); }
.name-copy strong, .name-copy span[lang="zh"] { color: #f1d89f; }

.journey-aside {
  min-height: 480px;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: #26322c;
  color: var(--white);
  box-shadow: var(--shadow);
}
.journey-character {
  margin-bottom: auto;
  color: rgba(227,201,143,.72);
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: .8;
}
.journey-aside h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.journey-aside p { margin: 0; color: rgba(255,255,255,.68); font-size: .9rem; }

.timeline-section { padding: 120px 0; background: #dcd4c4; }
.timeline-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: 4rem;
}
.timeline-heading > p { margin: 0 0 .5rem; color: #525852; }
.pang-timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.pang-timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.pang-timeline time { color: var(--gold); font-family: var(--serif); font-size: 2.1rem; line-height: 1; }
.pang-timeline h3 { margin: 0 0 .45rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.pang-timeline p { max-width: 760px; margin: 0; color: #4f554f; font-size: .91rem; }

.contribution-heading { max-width: 850px; margin-bottom: 4rem; position: relative; z-index: 1; }
.contribution-heading .lead { color: rgba(255,255,255,.7); }
.contribution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.16);
  border-left: 1px solid rgba(255,255,255,.16);
  position: relative;
  z-index: 1;
}
.contribution-grid article {
  min-height: 390px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.contribution-no { color: var(--gold-light); font-family: var(--serif); font-size: 1.3rem; }
.contribution-cn {
  margin: 2.4rem 0 auto;
  color: rgba(227,201,143,.32);
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
}
.contribution-grid h3 { margin: 2rem 0 .65rem; font-family: var(--serif); font-size: 2.05rem; font-weight: 500; }
.contribution-grid p { margin: 0; color: rgba(255,255,255,.64); font-size: .9rem; }

.huaxia-section { padding: 120px 0; background: #6e624d; color: var(--white); }
.huaxia-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.huaxia-title-block { position: sticky; top: 120px; }
.huaxia-seal {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,.28);
  color: #f1d79c;
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: 2.6rem;
}
.huaxia-cn { color: #f0d59d; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.huaxia-cn span { font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 1.05rem; letter-spacing: .1em; }
.huaxia-copy > p { color: rgba(255,255,255,.73); }
.huaxia-copy .lead { color: rgba(255,255,255,.9); }
.evidence-note { margin-top: 2.5rem; padding: 1.7rem; border: 1px solid rgba(255,255,255,.22); background: rgba(12,16,14,.19); }
.evidence-note strong { display: block; margin-bottom: .6rem; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.evidence-note p { margin: 0; color: rgba(255,255,255,.68); font-size: .87rem; }

.book-list { margin-top: 4rem; border-top: 1px solid var(--line); }
.book-list article {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.book-cn {
  color: rgba(16,21,19,.32);
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}
.book-list h3 { margin: 0 0 .45rem; font-family: var(--serif); font-size: 1.85rem; font-weight: 500; line-height: 1.05; }
.book-list p { margin: 0; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .06em; }

@media (max-width: 1040px) {
  .pang-hero-grid, .name-layout, .timeline-heading, .huaxia-layout { grid-template-columns: 1fr; }
  .name-monogram { min-height: 430px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .huaxia-title-block { position: static; }
}

@media (max-width: 760px) {
  .name-layout { min-height: 0; }
  .name-copy { padding: 4.5rem 1.5rem; }
  .pang-timeline li { grid-template-columns: 1fr; gap: .75rem; }
  .contribution-grid { grid-template-columns: 1fr; }
  .contribution-grid article { min-height: 330px; }
  .book-list article { grid-template-columns: 1fr; gap: 1rem; }
}

/* Page : professeurs internationaux */
.teachers-page-hero::after { content: '国际教师'; }
.teachers-hero-grid { grid-template-columns: 1.28fr .72fr; }
.teachers-intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.transmission-terms { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.transmission-terms div { min-height: 165px; padding: 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.28); }
.transmission-terms span { display: block; color: var(--gold); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 2.2rem; line-height: 1; }
.transmission-terms strong { display: block; margin-top: 1.6rem; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.transmission-terms small { display: block; margin-top: .25rem; color: var(--muted); font-size: .72rem; }

.teachers-directory { padding: 0 0 120px; background: var(--paper); }
.teachers-directory-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.teachers-index { position: sticky; top: 120px; padding: 3rem 0; }
.teachers-index h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; line-height: .92; letter-spacing: -.04em; }
.teachers-index-cn { display: block; margin: 3rem 0 1.5rem; color: rgba(185,154,95,.42); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: clamp(6rem, 12vw, 10rem); line-height: .75; }
.teachers-index > p:last-child { max-width: 390px; color: #565c57; font-size: .9rem; }
.teacher-list { border-top: 1px solid var(--line); }
.teacher-profile { padding: 3rem 0; border-bottom: 1px solid var(--line); }
.teacher-profile-head { display: grid; grid-template-columns: 70px 1fr; gap: 1.2rem; align-items: start; }
.teacher-number { color: var(--gold); font-family: var(--serif); font-size: 1.55rem; line-height: 1; }
.teacher-profile h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 500; line-height: .9; letter-spacing: -.03em; }
.teacher-profile-head p { margin: .7rem 0 0; color: var(--gold); font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.teacher-profile-body { margin: 2rem 0 0 70px; max-width: 790px; }
.teacher-profile-body > p { margin: 0 0 1rem; color: #474d48; }
.teacher-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.teacher-meta span { padding: .45rem .7rem; border: 1px solid var(--line); color: #5c625d; background: rgba(255,255,255,.34); font-size: .67rem; letter-spacing: .04em; text-transform: uppercase; }

.teacher-title-card { min-height: 470px; padding: 2.5rem; display: flex; flex-direction: column; justify-content: end; color: var(--white); background: radial-gradient(circle at 72% 18%, #7b6c50 0, #344139 38%, #17201c 100%); box-shadow: var(--shadow); }
.teacher-title-card span { margin-bottom: auto; color: rgba(227,201,143,.62); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: clamp(7rem, 14vw, 11rem); line-height: .8; }
.teacher-title-card strong { font-family: var(--serif); font-size: 2.5rem; font-weight: 500; }
.teacher-title-card p { max-width: 320px; margin: .6rem 0 0; color: rgba(255,255,255,.68); font-size: .88rem; }

.teacher-choice-section { padding: 118px 0; color: var(--white); background: #6e624d; }
.choice-heading { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-bottom: 4rem; }
.choice-heading > p { margin: 0 0 .4rem; color: rgba(255,255,255,.68); }
.choice-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.choice-grid article { min-height: 330px; padding: 1.5rem; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.choice-grid span { color: #f0d59d; font-family: var(--serif); font-size: 1.25rem; }
.choice-grid h3 { margin: auto 0 .8rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1; }
.choice-grid p { margin: 0; color: rgba(255,255,255,.64); font-size: .82rem; }

@media (max-width: 1040px) {
  .teachers-hero-grid, .teachers-intro-grid, .teachers-directory-layout, .choice-heading { grid-template-columns: 1fr; }
  .teachers-index { position: static; padding-bottom: 1rem; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid article:last-child { grid-column: 1 / -1; min-height: 250px; }
}

@media (max-width: 760px) {
  .transmission-terms { grid-template-columns: 1fr; }
  .teachers-directory { padding-bottom: 80px; }
  .teacher-profile-head { grid-template-columns: 48px 1fr; }
  .teacher-profile-body { margin-left: 48px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-grid article, .choice-grid article:last-child { grid-column: auto; min-height: 250px; }
}

/* Page : stages et formations */
.events-page-hero::after {
  content: '课程';
  right: clamp(1rem, 7vw, 7rem);
  bottom: -1.25rem;
  letter-spacing: .04em;
}
.events-hero-grid { grid-template-columns: 1.2fr .8fr; }
.agenda-status {
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(8,12,10,.3);
  backdrop-filter: blur(10px);
}
.agenda-status-date { margin: 0 0 1.4rem; color: rgba(255,255,255,.62); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.agenda-status-date strong { color: var(--gold-light); font-weight: 600; }
.agenda-status-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.agenda-status-grid div { min-height: 120px; padding: 1rem; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.agenda-status-grid strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 2.2rem; font-weight: 500; line-height: 1; }
.agenda-status-grid span { display: block; margin-top: .8rem; color: rgba(255,255,255,.68); font-size: .67rem; line-height: 1.3; }
.agenda-status > p:last-child { margin: 1.2rem 0 0; color: rgba(255,255,255,.58); font-size: .78rem; }

.event-section { padding: 118px 0; }
.event-section-france { background: var(--paper); }
.event-section-europe { color: var(--white); background: #151d19; }
.event-section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-bottom: 4rem; }
.event-section-heading > p { margin: 0 0 .35rem; color: #555b56; }
.event-section-heading.light-heading > p { color: rgba(255,255,255,.64); }

.event-ledger { border-top: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 205px 1fr 290px; gap: 2.5rem; padding: 2.7rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.event-row-featured { margin: 0 -2rem; padding: 2.7rem 2rem; color: var(--white); background: #6d6048; border-bottom: 0; }
.event-date { display: flex; align-items: center; gap: .8rem; }
.event-date time { display: grid; }
.event-date strong { font-family: var(--serif); font-size: 3.4rem; font-weight: 500; line-height: .8; }
.event-date span { margin-top: .45rem; color: var(--gold); font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.event-row-featured .event-date span { color: #f0d59d; }
.event-date i { color: var(--gold); font-style: normal; }
.event-main h3 { margin: .8rem 0 .35rem; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 500; line-height: .95; letter-spacing: -.03em; }
.event-main > p:last-child { max-width: 690px; margin: 1rem 0 0; color: #505651; font-size: .91rem; }
.event-row-featured .event-main > p:last-child { color: rgba(255,255,255,.72); }
.event-cn { margin: 0; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.event-row-featured .event-cn { color: #f0d59d; }
.event-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.event-tags span { padding: .35rem .55rem; border: 1px solid var(--line); color: #636963; font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }
.event-row-featured .event-tags span { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.24); }
.event-side dl { margin: 0 0 1.6rem; }
.event-side dl div { padding: .65rem 0; border-bottom: 1px solid var(--line); }
.event-row-featured .event-side dl div { border-color: rgba(255,255,255,.18); }
.event-side dt { color: var(--gold); font-size: .61rem; letter-spacing: .13em; text-transform: uppercase; }
.event-row-featured .event-side dt { color: #f0d59d; }
.event-side dd { margin: .2rem 0 0; color: #494f4a; font-size: .82rem; }
.event-row-featured .event-side dd { color: rgba(255,255,255,.76); }

.europe-events-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.europe-event-card { min-height: 480px; padding: 2rem; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.europe-event-top { display: flex; justify-content: space-between; gap: 1rem; color: var(--gold-light); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.europe-event-character { margin: 3rem 0 auto; color: rgba(227,201,143,.24); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 7rem; line-height: .8; }
.europe-event-card h3 { margin: 2.4rem 0 .65rem; font-family: var(--serif); font-size: 2.4rem; font-weight: 500; line-height: .98; }
.europe-event-card p { margin: 0; max-width: 520px; color: rgba(255,255,255,.62); font-size: .88rem; }

.online-event-section { padding: 0; color: var(--white); background: #6e624d; }
.online-event-layout { min-height: 620px; display: grid; grid-template-columns: .75fr 1.25fr; align-items: stretch; }
.online-event-mark { display: flex; flex-direction: column; justify-content: center; padding: 3rem; border-right: 1px solid rgba(255,255,255,.19); background: radial-gradient(circle at center, rgba(227,201,143,.12), transparent 54%); }
.online-event-mark span { color: #f0d59d; font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: clamp(6rem, 13vw, 11rem); line-height: .8; }
.online-event-mark small { margin-top: 2rem; color: rgba(255,255,255,.58); letter-spacing: .13em; text-transform: uppercase; }
.online-event-content { padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.online-event-content h2 { margin: 0 0 1.3rem; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 500; line-height: .9; letter-spacing: -.04em; }
.online-event-content .lead { color: rgba(255,255,255,.78); }
.online-event-meta { display: grid; grid-template-columns: repeat(3, 1fr); margin: 2.2rem 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.online-event-meta span { padding: 1rem; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.72); font-size: .8rem; }
.online-event-meta strong { display: block; margin-bottom: .4rem; color: #f0d59d; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }

.preparation-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.preparation-grid article { min-height: 330px; padding: 1.6rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.26); }
.preparation-grid span { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.preparation-grid h3 { margin: auto 0 .7rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.preparation-grid p { margin: 0; color: #535954; font-size: .84rem; }
.event-vocabulary { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.event-vocabulary div { min-height: 170px; padding: 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-vocabulary span { display: block; color: rgba(185,154,95,.62); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 2.5rem; line-height: 1; }
.event-vocabulary strong { display: block; margin-top: 1.5rem; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.event-vocabulary small { display: block; margin-top: .3rem; color: var(--muted); font-size: .72rem; }

.submission-section { padding: 118px 0; color: var(--white); background: #101513; position: relative; overflow: hidden; }
.submission-section::after { content: '发布'; position: absolute; right: -1rem; bottom: -2rem; color: rgba(255,255,255,.04); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 15rem; line-height: .8; }
.submission-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.submission-layout .lead { max-width: 510px; color: rgba(255,255,255,.68); }
.submission-panel { padding: 2.2rem; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.035); }
.submission-panel h3 { margin: 0 0 1.1rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.submission-panel ul { margin: 0 0 2rem; padding-left: 1.2rem; color: rgba(255,255,255,.68); }
.submission-panel li + li { margin-top: .45rem; }

@media (max-width: 1040px) {
  .events-hero-grid, .event-section-heading, .submission-layout { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 170px 1fr; }
  .event-side { grid-column: 2; }
  .online-event-layout { grid-template-columns: 1fr; }
  .online-event-mark { min-height: 330px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.19); }
  .preparation-grid, .event-vocabulary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .agenda-status-grid, .europe-events-grid, .preparation-grid, .event-vocabulary, .online-event-meta { grid-template-columns: 1fr; }
  .event-section { padding: 82px 0; }
  .event-row, .event-row-featured { grid-template-columns: 1fr; margin-left: 0; margin-right: 0; padding: 2rem 0; }
  .event-row-featured { padding: 2rem 1.3rem; }
  .event-side { grid-column: auto; }
  .event-date strong { font-size: 3rem; }
  .europe-event-card { min-height: 390px; }
  .online-event-content { padding: 4rem 0; }
  .online-event-mark { margin: 0 -1.5rem; padding: 3rem 1.5rem; }
  .preparation-grid article { min-height: 260px; }
}

/* Page : stages et formations — portail vers l’agenda */
.agenda-portal-card {
  position: relative;
  min-height: 360px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
  overflow: hidden;
}
.agenda-portal-cn {
  position: absolute;
  right: 1.2rem;
  top: .8rem;
  color: rgba(227,201,143,.16);
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: clamp(7rem, 13vw, 11rem);
  line-height: 1;
}
.agenda-portal-card h2 { max-width: 100%; margin: 0 0 .6rem; font-family: var(--serif); font-size: clamp(2.5rem, 3.75vw, 3.25rem); font-weight: 500; line-height: .95; letter-spacing: -.035em; overflow-wrap: normal; word-break: normal; }
.agenda-portal-card > p:not(.eyebrow) { max-width: 390px; margin: 0 0 1.6rem; color: rgba(255,255,255,.68); }
.agenda-portal-card .button { align-self: flex-start; }

.learning-formats-section { padding: 118px 0; background: var(--paper); }
.learning-formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.learning-formats-grid article { min-height: 390px; padding: 1.6rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.25); }
.learning-formats-grid > article > span:first-child { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.learning-formats-grid .format-cn { margin: 2.3rem 0 auto; color: rgba(185,154,95,.42); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 3.2rem; line-height: 1; }
.learning-formats-grid h3 { margin: 2rem 0 .7rem; font-family: var(--serif); font-size: 1.85rem; font-weight: 500; line-height: 1; }
.learning-formats-grid article > p:last-child { margin: 0; color: #535954; font-size: .84rem; }

.training-choice-section { padding: 118px 0; background: #e9e3d7; }
.training-choice-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.training-choice-heading { position: sticky; top: 120px; }
.training-check-list { border-top: 1px solid var(--line); }
.training-check-list article { display: grid; grid-template-columns: 72px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.training-check-list strong { color: var(--gold); font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.training-check-list h3 { margin: 0 0 .45rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.training-check-list p { margin: 0; color: #505651; font-size: .9rem; }

.training-vocabulary-section { padding: 118px 0; color: var(--white); background: #151d19; }
.training-vocabulary-dark { border-color: rgba(255,255,255,.16); }
.training-vocabulary-dark div { border-color: rgba(255,255,255,.16); }
.training-vocabulary-dark span { color: rgba(227,201,143,.68); }
.training-vocabulary-dark strong { color: var(--white); }
.training-vocabulary-dark small { color: rgba(255,255,255,.58); }

.agenda-link-section { padding: 110px 0; color: var(--white); background: #6e624d; }
.agenda-link-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.agenda-link-layout > div:last-child > p { margin: 0 0 1.7rem; color: rgba(255,255,255,.72); }

/* Page : ressources */
.resources-page-hero::after {
  content: '资料';
  right: clamp(1rem, 7vw, 7rem);
  bottom: -1.25rem;
  letter-spacing: .04em;
}
.resources-hero-grid { grid-template-columns: 1.14fr .86fr; }
.resource-index-card { padding: 2rem; border: 1px solid rgba(255,255,255,.2); background: rgba(8,12,10,.3); backdrop-filter: blur(10px); }
.resource-index-card ol { list-style: none; padding: 0; margin: 1.4rem 0 0; border-top: 1px solid rgba(255,255,255,.17); }
.resource-index-card li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.resource-index-card li span { color: var(--gold-light); font-family: var(--serif); font-size: 1.2rem; }
.resource-index-card li strong { color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }

.resource-paths-section { padding: 118px 0; background: var(--paper); }
.resource-section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-bottom: 4rem; }
.resource-section-heading > p { margin: 0 0 .35rem; color: #555b56; }
.resource-paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.resource-paths-grid article { min-height: 430px; padding: 2rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.25); }
.path-index { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.path-cn { margin: 3rem 0 auto; color: rgba(185,154,95,.38); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 4.7rem; line-height: 1; }
.resource-paths-grid h3 { margin: 2.2rem 0 .7rem; font-family: var(--serif); font-size: 2.15rem; font-weight: 500; line-height: 1; }
.resource-paths-grid article > p:not(.path-cn) { margin: 0; color: #535954; font-size: .88rem; }

.reference-library-section { padding: 118px 0; color: var(--white); background: #101513; position: relative; overflow: hidden; }
.reference-library-section::after { content: '书'; position: absolute; right: -2rem; bottom: -3rem; color: rgba(255,255,255,.025); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 24rem; line-height: .8; }
.reference-library-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .72fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-bottom: 4rem; }
.reference-library-heading > p { margin: 0 0 .35rem; color: rgba(255,255,255,.62); }
.reference-book-list { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.16); }
.reference-book-list article { display: grid; grid-template-columns: 80px 1fr auto; gap: 2rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.book-order { color: var(--gold-light); font-family: var(--serif); font-size: 1.45rem; }
.book-type { margin: 0 0 .45rem; color: var(--gold); font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.reference-book-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.9rem); font-weight: 500; line-height: 1; }
.reference-book-list article div > p:last-child { max-width: 720px; margin: .7rem 0 0; color: rgba(255,255,255,.6); font-size: .84rem; }
.reference-book-list .text-link { white-space: nowrap; }

.translation-section { padding: 118px 0; background: #6e624d; color: var(--white); }
.translation-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.translation-title-block { position: sticky; top: 120px; }
.translation-title-block .lead { color: rgba(255,255,255,.72); }
.translation-levels { border-top: 1px solid rgba(255,255,255,.2); }
.translation-levels article { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.translation-levels article > span { color: #f0d59d; font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 3rem; line-height: 1; }
.translation-levels h3 { margin: 0 0 .4rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.translation-levels p { margin: 0; color: rgba(255,255,255,.66); font-size: .88rem; }

.practice-supports-section { padding: 118px 0; background: #e9e3d7; }
.practice-supports-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.practice-supports-grid article { min-height: 390px; padding: 2rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.24); }
.practice-supports-grid article > span { color: rgba(185,154,95,.45); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 4.7rem; line-height: 1; }
.practice-supports-grid h3 { margin: auto 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.practice-supports-grid article > p { margin: 0; color: #535954; font-size: .86rem; }
.practice-note { display: grid; grid-template-columns: .45fr 1.55fr; gap: 2rem; margin-top: 3rem; padding: 1.6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.practice-note strong { color: var(--gold); font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.practice-note p { margin: 0; color: #4e544f; }

.source-check-section { padding: 118px 0; background: var(--paper); }
.source-check-layout > div:first-child { max-width: 830px; margin-bottom: 4rem; }
.source-check-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.source-check-grid article { min-height: 320px; padding: 1.6rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.source-check-grid span { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.source-check-grid h3 { margin: auto 0 .7rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.source-check-grid p { margin: 0; color: #535954; font-size: .83rem; }

.resource-agenda-section { padding: 100px 0; color: var(--white); background: #151d19; }

@media (max-width: 1040px) {
  .training-choice-layout, .agenda-link-layout, .resources-hero-grid, .resource-section-heading, .reference-library-heading, .translation-layout { grid-template-columns: 1fr; }
  .training-choice-heading, .translation-title-block { position: static; }
  .learning-formats-grid, .source-check-grid { grid-template-columns: repeat(2, 1fr); }
  .reference-book-list article { grid-template-columns: 70px 1fr; }
  .reference-book-list .text-link { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .learning-formats-section, .training-choice-section, .training-vocabulary-section, .resource-paths-section, .reference-library-section, .translation-section, .practice-supports-section, .source-check-section { padding: 82px 0; }
  .learning-formats-grid, .resource-paths-grid, .practice-supports-grid, .source-check-grid { grid-template-columns: 1fr; }
  .learning-formats-grid article, .resource-paths-grid article, .practice-supports-grid article, .source-check-grid article { min-height: 300px; }
  .training-check-list article { grid-template-columns: 48px 1fr; }
  .reference-book-list article { grid-template-columns: 1fr; gap: 1rem; }
  .reference-book-list .text-link { grid-column: auto; }
  .translation-levels article { grid-template-columns: 90px 1fr; gap: 1.2rem; }
  .translation-levels article > span { font-size: 2.3rem; }
  .practice-note { grid-template-columns: 1fr; }
  .agenda-portal-card { min-height: 330px; }
}
.resources-action { margin-top: 2.2rem; }

/* Page : à propos */
.about-page-hero::after {
  content: '本站';
  right: clamp(1rem, 7vw, 7rem);
  bottom: -1.25rem;
  letter-spacing: .04em;
}
.about-hero-grid { grid-template-columns: 1.08fr .92fr; }
.about-manifesto-card {
  min-height: 310px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(8,12,10,.3);
  backdrop-filter: blur(10px);
}
.about-manifesto-card > span {
  color: var(--gold-light);
  font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif);
  font-size: 6.5rem;
  line-height: .8;
}
.about-manifesto-card p {
  max-width: 420px;
  margin: 2rem 0 0;
  color: rgba(255,255,255,.76);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
}

.about-project-section { padding: 120px 0; background: var(--paper); }
.about-project-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.about-project-layout > div:first-child { position: sticky; top: 120px; }
.about-project-copy > p { margin: 0 0 1.35rem; color: #454b46; font-size: 1.02rem; }
.about-purpose-line { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; align-items: center; margin-top: 3rem; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-purpose-line > span { color: rgba(185,154,95,.58); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 4.3rem; line-height: 1; }
.about-purpose-line strong { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.about-purpose-line p { margin: .35rem 0 0; color: #565c57; }

.editor-profile-section { padding: 0; color: var(--white); background: #151d19; }
.editor-profile-layout { min-height: 760px; display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; }
.editor-monogram {
  margin-left: calc((100vw - min(1180px, calc(100vw - 3rem))) / -2);
  padding-left: calc((100vw - min(1180px, calc(100vw - 3rem))) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.17);
  background: #6e624d;
  overflow: hidden;
}
.editor-monogram > span { color: #f0d59d; font-family: var(--serif); font-size: clamp(10rem, 25vw, 21rem); line-height: .72; letter-spacing: -.08em; }
.editor-monogram small { margin-top: 2.3rem; color: rgba(255,255,255,.64); font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; }
.editor-profile-content { padding: clamp(4rem, 8vw, 8rem) 0 clamp(4rem, 8vw, 8rem) clamp(3rem, 8vw, 8rem); align-self: center; }
.editor-role { margin: 1.1rem 0 2.4rem; color: var(--gold-light); font-size: .76rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.editor-text-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.editor-text-columns p { margin: 0; color: rgba(255,255,255,.66); }
.editor-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 3rem 0 0; border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.editor-facts div { padding: 1.25rem; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.editor-facts dt { color: var(--gold-light); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.editor-facts dd { margin: .35rem 0 0; color: rgba(255,255,255,.77); font-family: var(--serif); font-size: 1.05rem; line-height: 1.35; }

.editorial-charter-section { padding: 118px 0; background: #e9e3d7; }
.editorial-charter-heading { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-bottom: 4rem; }
.editorial-charter-heading > p { margin: 0 0 .35rem; color: #555b56; }
.editorial-charter-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.editorial-charter-grid article { min-height: 430px; padding: 1.7rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.22); }
.editorial-charter-grid article > span:first-child { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.charter-cn { margin: 2.4rem 0 auto; color: rgba(185,154,95,.42); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 3.6rem; line-height: 1; }
.editorial-charter-grid h3 { margin: 2rem 0 .7rem; font-family: var(--serif); font-size: 1.85rem; font-weight: 500; line-height: 1; }
.editorial-charter-grid article > p:last-child { margin: 0; color: #535954; font-size: .84rem; }

.site-scope-section { padding: 118px 0; color: var(--white); background: #101513; }
.site-scope-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.site-scope-heading { position: sticky; top: 120px; }
.site-scope-ledger { border-top: 1px solid rgba(255,255,255,.17); }
.site-scope-ledger article { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.site-scope-ledger article > span { color: rgba(227,201,143,.62); font-family: 'Songti SC', 'Noto Serif CJK SC', var(--serif); font-size: 2.2rem; line-height: 1; }
.site-scope-ledger h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.site-scope-ledger ul { margin: 0; padding-left: 1.1rem; color: rgba(255,255,255,.65); }
.site-scope-ledger li + li { margin-top: .45rem; }

.two-sites-section { padding: 118px 0; background: var(--paper); }
.two-sites-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.two-sites-layout > div:first-child .lead { margin: 1.6rem 0 0; }
.two-sites-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.two-sites-grid a { min-height: 390px; padding: 2rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.25); transition: background .2s ease, transform .2s ease; }
.two-sites-grid a:hover { background: rgba(255,255,255,.58); transform: translateY(-3px); }
.two-sites-grid span { color: rgba(185,154,95,.5); font-family: var(--serif); font-size: 4rem; line-height: 1; }
.two-sites-grid h3 { margin: auto 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.two-sites-grid p { margin: 0; color: #535954; font-size: .88rem; }
.two-sites-grid strong { margin-top: 1.4rem; color: var(--gold); font-size: .65rem; letter-spacing: .11em; text-transform: uppercase; }

.about-contact-section { padding: 105px 0; color: var(--white); background: #6e624d; }
.about-contact-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-contact-layout > div:last-child > p { margin: 0 0 1.7rem; color: rgba(255,255,255,.72); }

@media (max-width: 1040px) {
  .about-hero-grid, .about-project-layout, .editorial-charter-heading, .site-scope-layout, .two-sites-layout, .about-contact-layout { grid-template-columns: 1fr; }
  .about-project-layout > div:first-child, .site-scope-heading { position: static; }
  .editor-profile-layout { grid-template-columns: 1fr; }
  .editor-monogram { min-height: 390px; margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .editor-profile-content { padding-left: 0; }
  .editorial-charter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .about-project-section, .editorial-charter-section, .site-scope-section, .two-sites-section { padding: 82px 0; }
  .about-manifesto-card { min-height: 250px; }
  .about-purpose-line { grid-template-columns: 78px 1fr; gap: 1rem; }
  .about-purpose-line > span { font-size: 3rem; }
  .editor-monogram { min-height: 300px; }
  .editor-text-columns, .editor-facts, .editorial-charter-grid, .two-sites-grid { grid-template-columns: 1fr; }
  .editor-profile-content { padding-top: 4rem; padding-bottom: 4rem; }
  .editorial-charter-grid article { min-height: 330px; }
  .site-scope-ledger article { grid-template-columns: 1fr; gap: 1rem; }
  .two-sites-grid a { min-height: 310px; }
}

/* Final content cleanup and contact page */
.article-hero-grid.article-hero-single { grid-template-columns: minmax(0, 920px); }
.contact-page-hero { background: radial-gradient(circle at 78% 24%, rgba(184,154,104,.16), transparent 28%), linear-gradient(135deg, #101513 0%, #202923 100%); }
.contact-email-card { align-self: stretch; display: flex; flex-direction: column; justify-content: flex-end; border-left: 1px solid rgba(255,255,255,.2); padding: 1.5rem 0 1.5rem 2rem; }
.contact-email-card > span { margin-bottom: 1rem; color: var(--gold-light); font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7rem); line-height: .8; }
.contact-email-card a { color: var(--white); font-size: clamp(1rem, 2vw, 1.35rem); overflow-wrap: anywhere; }
.contact-reasons-section { padding: 110px 0; background: var(--paper); }
.contact-reasons-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 6vw, 6rem); align-items: end; margin-bottom: 3.5rem; }
.contact-reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-reasons-grid article { min-height: 320px; padding: 2.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.contact-reasons-grid article > span { display: block; margin-bottom: 3rem; color: var(--gold); font-family: var(--serif); font-size: 3.5rem; line-height: 1; }
.contact-reasons-grid h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.contact-reasons-grid p { margin: 0; color: var(--muted); }
@media (max-width: 860px) {
  .contact-reasons-heading, .contact-reasons-grid { grid-template-columns: 1fr; }
  .contact-email-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding: 2rem 0 0; }
}

/* Responsive mobile — corrections d'affichage sans modifier la version desktop */
@media (max-width: 1040px) {
  .main-nav {
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .article-hero-grid > *,
  .article-grid > *,
  .intro-grid > *,
  .founder-grid > *,
  .faq-grid > *,
  .footer-grid > *,
  .method-focus-grid > *,
  .teachers-directory-layout > *,
  .training-choice-layout > *,
  .agenda-link-layout > *,
  .translation-layout > *,
  .about-project-layout > *,
  .site-scope-layout > *,
  .two-sites-layout > *,
  .about-contact-layout > * {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .container,
  .container * {
    min-width: 0;
  }

  .main-nav {
    max-height: calc(100dvh - 76px);
    padding: 1rem;
  }

  .main-nav ul {
    width: 100%;
  }

  .main-nav a {
    width: 100%;
    padding: .85rem .35rem;
  }

  .section-title,
  .article-hero h1,
  .hero h1,
  .next-page h2,
  .final-cta h2,
  .method-focus-content h2,
  .agenda-portal-card h2,
  .online-event-content h2,
  .two-sites-grid h3,
  .teacher-profile h3,
  .reference-book-list h3,
  .event-main h3 {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .section-title {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 1;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14.5vw, 4.75rem);
    line-height: .9;
  }

  .hero h1 span {
    line-height: 1.05;
  }

  .hero-description,
  .article-hero .lead,
  .lead {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .article-hero {
    min-height: auto;
    padding: 122px 0 56px;
  }

  .article-hero-grid {
    gap: 2.2rem;
  }

  .article-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.25rem);
    line-height: .92;
    letter-spacing: -.04em;
  }

  .article-hero::after {
    right: -.35rem !important;
    bottom: .25rem !important;
    font-size: 5.4rem !important;
    opacity: .08;
  }

  .article-nav-inner {
    min-height: 66px;
    gap: 1.2rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumbs {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button {
    max-width: 100%;
    height: auto;
    min-height: 48px;
    padding-top: .75rem;
    padding-bottom: .75rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .text-link,
  a[href*="zhinengqigong.net"] {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .agenda-portal-card .button,
  .agenda-link-layout .button,
  .about-contact-layout .button,
  .resource-agenda-section .button,
  .contact-page-hero .button {
    width: 100%;
  }

  .method-focus-content h2,
  .online-event-content h2,
  .agenda-portal-card h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: .94;
  }

  .next-page h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.8rem);
    line-height: .96;
  }

  .teacher-profile h3 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: .95;
  }

  .teacher-profile-body {
    margin-left: 0;
  }

  .teacher-profile-head {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: .85rem;
  }

  .timeline li,
  .study-path article,
  .training-check-list article,
  .translation-levels article,
  .term-row {
    min-width: 0;
  }

  .two-sites-grid h3 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .two-sites-grid a,
  .agenda-portal-card,
  .resource-index-card,
  .hero-aside,
  .about-manifesto-card,
  .contact-email-card {
    width: 100%;
  }

  .faq-item button {
    gap: 1rem;
    font-size: 1.2rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .footer-list a,
  .footer-bottom,
  .footer-brand p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.5rem, 1180px);
  }

  .header-inner {
    gap: .75rem;
  }

  .brand {
    gap: .6rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: .78rem;
    letter-spacing: .045em;
  }

  .brand-text span {
    font-size: .48rem;
    letter-spacing: .2em;
  }

  .hero-inner {
    padding-top: 118px;
  }

  .hero-principles,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle + .principle {
    padding-left: 0;
    border-left: 0;
  }

  .footer-brand,
  .footer-grid > :last-child {
    grid-column: auto;
  }

  .article-hero {
    padding-top: 112px;
  }

  .article-hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.65rem);
  }

  .article-kicker,
  .eyebrow {
    letter-spacing: .13em;
  }

  .method-focus-content h2,
  .online-event-content h2,
  .agenda-portal-card h2,
  .next-page h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.2rem);
  }

  .about-purpose-line,
  .site-scope-ledger article,
  .training-check-list article,
  .translation-levels article,
  .term-row,
  .study-path article {
    grid-template-columns: 1fr;
  }

  .term-meaning {
    grid-column: auto;
  }

  .contact-reasons-grid article,
  .editorial-charter-grid article,
  .learning-formats-grid article,
  .resource-paths-grid article,
  .practice-supports-grid article,
  .source-check-grid article,
  .two-sites-grid a {
    min-height: auto;
  }
}


/* Blog Zhineng Qigong */
.blog-page-hero { --hero-image: url('../img/hero-ressources.webp'); --hero-position: 58% center; --hero-mobile-position: 68% center; }
.blog-huaxia-page-hero { --hero-image: url('../img/hero-contact.webp'); --hero-position: 64% center; --hero-mobile-position: 76% center; }
.blog-history-page-hero { --hero-image: url('../img/hero-a-propos.webp'); --hero-position: 64% center; --hero-mobile-position: 76% center; }
.blog-compare-page-hero { --hero-image: url('../img/hero-methodes.webp'); --hero-position: 62% center; --hero-mobile-position: 72% center; }
.blog-article-hero { min-height: 800px; }
.blog-article-hero h1 { font-size: clamp(3.5rem, 7vw, 7.2rem); }
.article-byline { margin: 1.35rem 0 0; color: rgba(255,255,255,.62); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.blog-index-section { padding: 118px 0; background: var(--paper); }
.blog-index-heading { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(3rem,8vw,8rem); align-items: end; margin-bottom: 3.2rem; }
.blog-index-heading > p { margin: 0 0 .4rem; color: #545a55; }
.blog-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.blog-card { min-height: 390px; padding: 2.1rem; display: flex; flex-direction: column; border: 1px solid var(--line); background: rgba(255,255,255,.46); }
.blog-card-featured { grid-row: span 2; min-height: 796px; color: var(--white); background: linear-gradient(155deg,#18221d,#59604f); }
.blog-card-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--gold); font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.blog-card-featured .blog-card-meta { color: var(--gold-light); }
.blog-card h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: clamp(2.2rem,4vw,4rem); font-weight: 500; line-height: .95; }
.blog-card p { margin: 0; color: #535954; }
.blog-card-featured p { color: rgba(255,255,255,.68); }
.blog-timeline { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.blog-timeline li { display: grid; grid-template-columns: 125px 1fr; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.blog-timeline time { color: var(--gold); font-family: var(--serif); font-size: 1.65rem; }
.blog-timeline h3 { margin: 0 0 .35rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.blog-timeline p { margin: 0; color: #525852; }
.blog-feature-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.blog-feature-grid article { min-height: 330px; padding: 2rem; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.blog-feature-grid article > span { color: var(--gold-light); font-family: var(--serif); font-size: 1.35rem; }
.blog-feature-grid h3 { margin: auto 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.blog-feature-grid p { margin: 0; color: rgba(255,255,255,.65); }

/* Corrections de contraste dans les sections claires des articles de blog */
.article-section.alt .contribution-heading .lead { color: #4f5550; }
.article-section.alt .blog-feature-grid { border-top-color: rgba(16,21,19,.12); border-left-color: rgba(16,21,19,.12); }
.article-section.alt .blog-feature-grid article { border-right-color: rgba(16,21,19,.12); border-bottom-color: rgba(16,21,19,.12); background: rgba(255,255,255,.12); }
.article-section.alt .blog-feature-grid article > span { color: var(--gold); }
.article-section.alt .blog-feature-grid h3 { color: var(--ink); }
.article-section.alt .blog-feature-grid p { color: #535954; }
.blog-quote-panel, .choice-panel { min-height: 470px; padding: 2.2rem; display: flex; flex-direction: column; justify-content: end; color: var(--white); background: linear-gradient(145deg,#26342c,#101613); box-shadow: var(--shadow); }
.blog-quote-panel > span, .choice-panel > span { margin-bottom: auto; color: rgba(227,201,143,.65); font-family: 'Songti SC','Noto Serif CJK SC',var(--serif); font-size: clamp(5rem,10vw,9rem); line-height: .8; }
.blog-quote-panel h3, .choice-panel h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.blog-quote-panel p, .choice-panel li { color: rgba(255,255,255,.7); }
.source-caution { margin-top: 1.5rem !important; padding: 1.2rem 1.4rem; border-left: 2px solid var(--gold); background: rgba(255,255,255,.4); font-size: .86rem; }
.history-milestones { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 4rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.history-milestones article { min-height: 310px; padding: 1.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.history-milestones span { color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.history-milestones h3 { margin: 4.5rem 0 .6rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.history-milestones p { color: #535954; }
.history-dark-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.history-dark-grid article { min-height: 360px; padding: 1.8rem; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.history-dark-grid span { color: rgba(227,201,143,.5); font-family: 'Songti SC','Noto Serif CJK SC',var(--serif); font-size: 3rem; }
.history-dark-grid h3 { margin: auto 0 .6rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.history-dark-grid p { margin: 0; color: rgba(255,255,255,.64); }
.dark-action { position: relative; z-index: 1; margin: 2rem 0 0; }
.definition-comparison-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 4rem; }
.definition-comparison-grid article { min-height: 430px; padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.compare-hanzi { color: rgba(185,154,95,.7); font-family: 'Songti SC','Noto Serif CJK SC',var(--serif); font-size: 4.6rem; line-height: 1; }
.definition-comparison-grid h3 { margin: 3rem 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.definition-comparison-grid p { color: #525852; }
.comparison-table-wrap { margin-top: 3rem; overflow-x: auto; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.comparison-table { width: 100%; min-width: 860px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 1.2rem 1.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table thead th { background: var(--ink); color: var(--white); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.comparison-table tbody th { width: 150px; color: var(--gold); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.dark-note { position: relative; z-index: 1; margin-top: 2rem; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.dark-note p { color: rgba(255,255,255,.68); }
.choice-panel ul { margin: 1rem 0 0; padding-left: 1.2rem; }
.resource-blog-links { display: grid; margin-bottom: 2rem; border-top: 1px solid var(--line); }
.resource-blog-links a { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.resource-blog-links small { color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.resource-blog-links strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.resource-card h3 a { display: block; }
.resource-card h3 a:hover { color: #765c2e; }

@media (max-width: 1040px) {
  .blog-card-featured { min-height: 620px; }
  .history-dark-grid { grid-template-columns: repeat(2,1fr); }
  .definition-comparison-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .blog-article-hero { min-height: 720px; }
  .blog-article-hero h1 { font-size: clamp(3rem,14vw,4.9rem); overflow-wrap: anywhere; }
  .blog-index-section { padding: 82px 0; }
  .blog-index-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-card-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-row: auto; min-height: 480px; }
  .blog-card { min-height: 360px; }
  .blog-timeline li { grid-template-columns: 1fr; gap: .5rem; }
  .blog-feature-grid, .history-milestones, .history-dark-grid { grid-template-columns: 1fr; }
  .blog-feature-grid article, .history-dark-grid article { min-height: 280px; }
  .resource-blog-links a { grid-template-columns: 1fr; gap: .25rem; }
}


/* Ajustement typographique — titres plus mesurés */
h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.section-title {
  font-size: clamp(2.25rem, 3.7vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.hero h1 {
  font-size: clamp(3.65rem, 6.4vw, 6.35rem);
  line-height: .9;
  letter-spacing: -.045em;
}

.article-hero h1,
.blog-article-hero h1 {
  font-size: clamp(3.15rem, 5.35vw, 5.85rem);
  line-height: .91;
  letter-spacing: -.04em;
}

.final-cta h2,
.next-page h2,
.teachers-index h2 {
  font-size: clamp(2.35rem, 3.9vw, 4.1rem);
  line-height: .98;
}

.method-focus-content h2,
.online-event-content h2 {
  font-size: clamp(2.75rem, 4.8vw, 4.9rem);
  line-height: .95;
}

.blog-card h3 {
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.02;
}

.teacher-profile h3 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: .98;
}

.triptych-card h3,
.teacher-title-card strong,
.europe-event-card h3 {
  font-size: 2.15rem;
  line-height: 1.02;
}

.event-main h3 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1;
}

.agenda-portal-card h2 {
  font-size: clamp(2.15rem, 3.1vw, 2.85rem);
  line-height: 1;
}

.reference-book-list h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  line-height: 1.05;
}

.two-sites-grid h3,
.method-card h3,
.practice-card h3,
.resource-card h3 {
  font-size: 1.75rem;
  line-height: 1.08;
}

/* Les adresses et noms de domaine peuvent se couper, mais pas les mots ordinaires. */
#write-title,
#agenda-title,
.contact-email-card a,
a[href*="zhinengqigong.net"] {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 760px) {
  .section-title {
    font-size: clamp(1.9rem, 8.4vw, 2.7rem);
    line-height: 1.06;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11.5vw, 3.8rem);
    line-height: .94;
  }

  .article-hero h1,
  .blog-article-hero h1 {
    font-size: clamp(2.2rem, 9.7vw, 3.2rem);
    line-height: .98;
    letter-spacing: -.025em;
    overflow-wrap: normal;
  }

  .article-hero h1 span {
    margin-top: .55rem;
    font-size: .42em;
    line-height: 1.18;
  }

  .final-cta h2,
  .next-page h2,
  .teachers-index h2,
  .method-focus-content h2,
  .online-event-content h2,
  .agenda-portal-card h2 {
    font-size: clamp(2rem, 8.8vw, 2.85rem);
    line-height: 1.02;
  }

  .blog-card h3,
  .teacher-profile h3,
  .event-main h3 {
    font-size: clamp(1.75rem, 7.8vw, 2.35rem);
    line-height: 1.04;
  }

  .triptych-card h3,
  .teacher-title-card strong,
  .europe-event-card h3,
  .two-sites-grid h3,
  .method-card h3,
  .practice-card h3,
  .resource-card h3,
  .reference-book-list h3 {
    font-size: 1.65rem;
    line-height: 1.08;
  }

  #write-title,
  #agenda-title {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .article-hero h1,
  .blog-article-hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }
}
