:root {
  --ivory: #f5efe5;
  --ivory-light: #fbf8f2;
  --deep: #183b3a;
  --deep-2: #102d2c;
  --amber: #c68a3d;
  --amber-dark: #9f6828;
  --terracotta: #b86148;
  --charcoal: #292826;
  --muted: #6c675f;
  --line: rgba(24, 59, 58, 0.16);
  --white: #fff;
  --shadow: 0 22px 60px rgba(24, 43, 42, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory-light);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
cite { font-style: italic; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--deep);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 242, .9);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 32px rgba(34, 40, 38, .05);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { text-decoration: none; display: grid; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.42rem; color: var(--deep); }
.brand-role { margin-top: 5px; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { position: relative; text-decoration: none; font-size: .94rem; font-weight: 650; color: var(--deep); }
.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--amber);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-contact { padding: 10px 16px; border: 1px solid var(--deep); border-radius: 999px; }
.nav-contact:hover, .nav-contact:focus-visible { background: var(--deep); color: var(--white); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 7vw, 96px) 0 clamp(88px, 10vw, 150px);
  background:
    radial-gradient(circle at 12% 22%, rgba(198,138,61,.16), transparent 30%),
    linear-gradient(140deg, var(--ivory-light) 0%, var(--ivory) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(184,97,72,.18);
  border-radius: 50%;
  right: -250px;
  bottom: -220px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; color: var(--deep); font-family: var(--serif); font-weight: 500; line-height: 1.1; }
h1 { max-width: 770px; margin-bottom: 28px; font-size: clamp(3.25rem, 7vw, 6.35rem); letter-spacing: -.045em; }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.6vw, 4.25rem); letter-spacing: -.035em; }
h3 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.4vw, 2.2rem); }
.hero-lead { max-width: 690px; margin: 0; color: #4c4a45; font-size: clamp(1.12rem, 1.7vw, 1.38rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 780;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--deep); color: var(--white); box-shadow: 0 12px 26px rgba(24,59,58,.18); }
.button-primary:hover, .button-primary:focus-visible { background: var(--deep-2); }
.button-secondary { border-color: rgba(24,59,58,.35); color: var(--deep); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--amber); background: rgba(198,138,61,.08); }
.button-light { background: var(--ivory-light); color: var(--deep); white-space: nowrap; }
.hero-note { max-width: 580px; margin: 34px 0 0; padding-left: 20px; border-left: 3px solid var(--amber); color: var(--muted); font-family: var(--serif); font-size: 1.04rem; font-style: italic; }
.hero-figure { margin: 0; }
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--deep);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  pointer-events: none;
}
/* Cadrage de l’image signature de la page d’accueil.
   Les classes sont déclarées explicitement dans index.html :
   .hero-image-frame sur le conteneur et .hero-image sur l’image. */
.hero-image-frame {
  aspect-ratio: 4 / 5;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-figure figcaption { margin-top: 13px; color: var(--muted); font-size: .82rem; text-align: center; }

.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-heading.compact { margin-bottom: 38px; }

.works-section { background: var(--white); }
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.work-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ivory-light);
  box-shadow: 0 14px 40px rgba(43,51,48,.04);
}
.work-card-featured { background: var(--deep); color: rgba(255,255,255,.83); border-color: var(--deep); }
.work-card-featured h3, .work-card-featured .work-hook, .work-card-featured .text-link { color: var(--white); }
.work-card-featured .work-status, .work-card-featured .work-meta { color: #e9bb7a; }
.work-status { margin: 0 0 24px; color: var(--terracotta); font-size: .72rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.work-hook { color: var(--deep); font-family: var(--serif); font-size: 1.12rem; font-weight: 650; line-height: 1.43; }
.work-card p { margin-top: 0; }
.work-meta { margin-top: auto !important; padding-top: 24px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.text-link { margin-top: 14px; color: var(--deep); text-decoration-thickness: 1px; text-underline-offset: 5px; font-weight: 760; }

.pathways-section { background: var(--ivory); }
.pathway-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.pathway-grid article { padding: 38px 42px 16px 0; }
.pathway-grid article + article { padding-left: 42px; border-left: 1px solid var(--line); }
.pathway-number { color: var(--amber-dark); font-family: var(--serif); font-size: 1rem; font-style: italic; }
.pathway-grid h3 { margin-top: 28px; }
.pathway-grid p { margin-bottom: 0; color: var(--muted); }

.manifesto-section { padding: clamp(75px, 9vw, 125px) 0; color: var(--white); background: var(--deep); }
.manifesto-grid { display: grid; grid-template-columns: auto minmax(0, 900px); justify-content: center; gap: 22px; }
.manifesto-mark { margin: -22px 0 0; color: var(--amber); font-family: var(--serif); font-size: clamp(7rem, 14vw, 11rem); line-height: 1; }
.manifesto-section blockquote { margin: 0; }
.manifesto-section blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3.65rem); line-height: 1.25; }
.manifesto-section footer { margin-top: 30px; color: rgba(255,255,255,.64); font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; }

.journal-section { background: var(--white); }
.journal-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px, 7vw, 100px); align-items: start; }
.journal-preview { border-top: 1px solid var(--line); }
.journal-preview article { padding: 34px 0; border-bottom: 1px solid var(--line); }
.journal-preview h3 { margin-bottom: 13px; font-size: 1.65rem; }
.journal-preview p:last-child { margin-bottom: 0; color: var(--muted); }
.journal-label { margin: 0 0 13px; color: var(--terracotta); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }

.collaboration-section { padding-top: 30px; background: var(--white); }
.collaboration-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--terracotta);
  color: rgba(255,255,255,.85);
  box-shadow: 0 24px 70px rgba(184,97,72,.18);
}
.collaboration-card h2 { max-width: 740px; margin-bottom: 18px; color: var(--white); }
.collaboration-card p:last-child { max-width: 760px; margin-bottom: 0; font-size: 1.08rem; }
.collaboration-card .eyebrow { color: #ffe0b4; }

.about-section { background: var(--ivory-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); }
.about-title h2 { font-size: clamp(2.25rem, 4.4vw, 4rem); }
.about-copy { padding-top: 32px; font-size: 1.08rem; }
.about-copy p:first-child::first-letter { float: left; margin: 8px 9px 0 0; color: var(--terracotta); font-family: var(--serif); font-size: 4.8rem; line-height: .72; }

.contact-section { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.contact-grid h2 { margin-bottom: 0; font-size: clamp(2.15rem, 4.2vw, 3.8rem); }
.contact-details { padding-bottom: 8px; }
.contact-email { display: inline-block; margin-bottom: 20px; color: var(--deep); font-family: var(--serif); font-size: clamp(1.35rem, 2.7vw, 2.05rem); text-decoration-color: var(--amber); text-underline-offset: 7px; }
.contact-details p { margin: 0; color: var(--muted); }

.site-footer { padding: 28px 0; color: rgba(255,255,255,.65); background: var(--deep-2); font-size: .83rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-signature { font-family: var(--serif); font-style: italic; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero-grid, .journal-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-figure { width: min(610px, 92%); margin-inline: auto; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: auto; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-grid article { padding: 30px 0; }
  .pathway-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .journal-grid { gap: 25px; }
  .about-copy { padding-top: 0; }
  .contact-grid { gap: 24px; }
}

@media (max-width: 790px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .header-inner { min-height: 72px; }
  .brand-name { font-size: 1.22rem; }
  .brand-role { font-size: .67rem; }
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    place-content: center;
    gap: 5px;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--deep); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--ivory-light);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .site-nav.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 13px 8px; border-bottom: 1px solid rgba(24,59,58,.08); }
  .site-nav a::after { display: none; }
  .nav-contact { margin-top: 10px; border: 0; border-radius: 8px; background: var(--deep); color: var(--white) !important; text-align: center; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .image-frame { border-radius: 120px 120px 20px 20px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 0; }
  .manifesto-mark { height: 75px; margin: -10px 0 0; }
  .collaboration-card { align-items: stretch; flex-direction: column; }
  .footer-inner { align-items: center; flex-direction: column; text-align: center; }
}

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

/* =========================================================
   Pages d’œuvre
   ========================================================= */
.work-page { background: var(--ivory-light); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(36px, 5vw, 62px);
  color: var(--muted);
  font-size: .82rem;
}
.breadcrumb a { text-underline-offset: 4px; }
.breadcrumb span[aria-current="page"] { color: var(--deep); font-weight: 700; }

.work-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 70px) 0 clamp(70px, 9vw, 120px);
  background:
    radial-gradient(circle at 15% 18%, rgba(198,138,61,.15), transparent 28%),
    linear-gradient(140deg, var(--ivory-light) 0%, var(--ivory) 100%);
}
.work-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -220px;
  bottom: -210px;
  border: 1px solid rgba(184,97,72,.18);
  border-radius: 50%;
}
.work-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .68fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.work-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 7.2vw, 6.7rem);
}
.work-hero-lead {
  max-width: 760px;
  margin: 0;
  color: #4c4a45;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}
.work-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.work-hero-figure { margin: 0; }
.work-hero-image-frame {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 170px 170px 28px 28px;
  background: var(--deep);
  box-shadow: var(--shadow);
}
.work-hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.work-hero-figure figcaption { margin-top: 13px; color: var(--muted); font-size: .82rem; text-align: center; }

.work-facts-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.work-facts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.work-facts > div { padding: 28px 22px; }
.work-facts > div + div { border-left: 1px solid var(--line); }
.work-facts span, .work-facts strong { display: block; }
.work-facts span { margin-bottom: 8px; color: var(--terracotta); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.work-facts strong { color: var(--deep); font-family: var(--serif); font-size: 1rem; font-weight: 600; line-height: 1.35; }

.work-story-section { background: var(--white); }
.work-story-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(46px, 8vw, 120px);
  align-items: start;
}
.work-long-copy { max-width: 740px; font-size: 1.11rem; }
.work-long-copy p:first-child::first-letter {
  float: left;
  margin: 10px 10px 0 0;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .67;
}

.themes-section { background: var(--ivory); }
.theme-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.theme-grid article { padding: 38px 50px 38px 0; border-bottom: 1px solid var(--line); }
.theme-grid article:nth-child(even) { padding-left: 50px; border-left: 1px solid var(--line); }
.theme-grid h3 { margin-top: 24px; }
.theme-grid p { max-width: 500px; margin-bottom: 0; color: var(--muted); }

.work-quote-section { padding: clamp(72px, 9vw, 122px) 0; color: var(--white); background: var(--deep); }
.work-quote-grid { display: grid; grid-template-columns: auto minmax(0, 920px); justify-content: center; gap: 22px; }
.work-quote-section .manifesto-mark { color: var(--amber); }
.work-quote-section blockquote { margin: 0; }
.work-quote-section blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.8vw, 3.35rem); line-height: 1.28; }
.work-quote-section footer { margin-top: 28px; color: rgba(255,255,255,.65); font-size: .84rem; letter-spacing: .05em; text-transform: uppercase; }

.genesis-section { background: var(--ivory-light); }
.genesis-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}
.genesis-image { overflow: hidden; border-radius: 28px 150px 28px 28px; box-shadow: var(--shadow); }
.genesis-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 35%; }
.genesis-copy { max-width: 700px; }
.genesis-copy p:not(.eyebrow) { color: #4c4a45; font-size: 1.08rem; }

.performances-section { background: var(--white); }
.performances-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.performance-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.performance-list li {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.performance-list time { color: var(--terracotta); font-size: .78rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.performance-list strong, .performance-list span { display: block; }
.performance-list strong { color: var(--deep); font-family: var(--serif); font-size: 1.42rem; font-weight: 600; }
.performance-list span { margin-top: 4px; color: var(--muted); }

.gallery-section { background: var(--ivory); }
.work-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(220px, 360px));
  gap: 18px;
}
.work-gallery figure { overflow: hidden; margin: 0; border-radius: 24px; background: var(--deep); box-shadow: 0 16px 44px rgba(24,43,42,.10); }
.work-gallery .gallery-wide { grid-row: 1 / 3; }
.work-gallery img { width: 100%; height: 100%; object-fit: cover; }
.work-gallery .gallery-wide img { object-position: 50% 40%; }
.work-gallery figure:nth-child(2) img { object-position: 50% 35%; }
.work-gallery figure:nth-child(3) img { object-position: 50% 38%; }

.troupe-section { padding-top: 34px; background: var(--ivory); }
.troupe-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,.84);
  background: var(--terracotta);
  box-shadow: 0 24px 70px rgba(184,97,72,.18);
}
.troupe-card h2 { max-width: 780px; color: var(--white); }
.troupe-card p { max-width: 820px; }
.troupe-card .eyebrow { color: #ffe0b4; }
.troupe-list { display: grid; gap: 8px; margin: 24px 0 0; padding-left: 1.2rem; }
.troupe-list li::marker { color: #ffe0b4; }

.next-work-section { background: var(--ivory-light); }
.next-work-grid { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.next-work-grid > div { max-width: 820px; }
.next-work-grid h2 { margin-bottom: 18px; }
.next-work-grid p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.next-work-link { flex: 0 0 auto; margin-bottom: 10px; }

@media (max-width: 1080px) {
  .work-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .work-facts > div:nth-child(4) { border-left: 0; }
  .work-facts > div:nth-child(n+4) { border-top: 1px solid var(--line); }
}

@media (max-width: 980px) {
  .work-hero-grid, .work-story-grid, .genesis-grid, .performances-grid { grid-template-columns: 1fr; }
  .work-hero-figure { width: min(610px, 92%); margin-inline: auto; }
  .work-story-grid, .performances-grid { gap: 26px; }
  .genesis-image { width: min(620px, 100%); }
  .troupe-card { align-items: stretch; flex-direction: column; }
  .next-work-grid { align-items: flex-start; flex-direction: column; gap: 22px; }
}

@media (max-width: 790px) {
  .work-hero { padding-top: 30px; }
  .work-hero-copy h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .work-hero-actions { display: grid; }
  .work-hero-image-frame { border-radius: 115px 115px 22px 22px; }
  .work-facts { grid-template-columns: 1fr 1fr; }
  .work-facts > div { padding: 23px 16px; }
  .work-facts > div:nth-child(n) { border-top: 1px solid var(--line); border-left: 0; }
  .work-facts > div:nth-child(-n+2) { border-top: 0; }
  .work-facts > div:nth-child(even) { border-left: 1px solid var(--line); }
  .theme-grid { grid-template-columns: 1fr; }
  .theme-grid article, .theme-grid article:nth-child(even) { padding: 30px 0; border-left: 0; }
  .work-quote-grid { grid-template-columns: 1fr; gap: 0; }
  .work-quote-grid .manifesto-mark { height: 75px; margin: -10px 0 0; }
  .genesis-image { border-radius: 22px 100px 22px 22px; }
  .performance-list li { grid-template-columns: 1fr; gap: 8px; }
  .work-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-gallery .gallery-wide { grid-row: auto; }
  .work-gallery figure { aspect-ratio: 4 / 3; }
  .work-gallery figure:nth-child(2), .work-gallery figure:nth-child(3) { aspect-ratio: 4 / 5; }
}

@media (max-width: 480px) {
  .work-facts { grid-template-columns: 1fr; }
  .work-facts > div:nth-child(n) { border-left: 0; border-top: 1px solid var(--line); }
  .work-facts > div:first-child { border-top: 0; }
}

/* =========================================================
   La tique étoilée
   ========================================================= */
.tique-page {
  --tique-cream: #f4ead9;
  --tique-red: #a94632;
  --tique-red-dark: #7e2e20;
  --tique-gold: #d39a43;
}
.tique-hero {
  background:
    radial-gradient(circle at 14% 20%, rgba(211,154,67,.18), transparent 29%),
    linear-gradient(140deg, var(--ivory-light) 0%, var(--tique-cream) 100%);
}
.tique-hero::after { border-color: rgba(169,70,50,.20); }
.tique-hero-figure { margin: 0; }
.tique-hero-figure figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}
.tique-menu-card {
  position: relative;
  display: flex;
  min-height: 610px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border-radius: 170px 170px 28px 28px;
  background:
    linear-gradient(rgba(16,45,44,.96), rgba(16,45,44,.96)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.04) 18px 36px);
  color: var(--ivory-light);
  box-shadow: var(--shadow);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tique-menu-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 152px 152px 18px 18px;
  pointer-events: none;
}
.tique-menu-topline {
  position: absolute;
  top: 42px;
  left: 50px;
  right: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.66);
  font-size: .67rem;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.tique-stars { display: flex; gap: 8px; margin-bottom: 20px; color: var(--tique-gold); font-size: 1.45rem; letter-spacing: .08em; }
.tique-stars .star-empty { color: transparent; -webkit-text-stroke: 1px var(--tique-gold); }
.tique-plate {
  position: relative;
  display: grid;
  width: min(250px, 70%);
  aspect-ratio: 1;
  margin-bottom: 26px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  box-shadow: inset 0 0 0 16px rgba(255,255,255,.06);
  place-items: center;
}
.tique-plate::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
}
.tique-table-number {
  position: relative;
  z-index: 2;
  color: var(--tique-gold);
  font-family: var(--serif);
  font-size: clamp(4.8rem, 9vw, 7rem);
  font-style: italic;
  line-height: 1;
}
.tique-fork, .tique-knife { position: absolute; top: 38px; bottom: 38px; width: 2px; background: rgba(255,255,255,.72); }
.tique-fork { left: -24px; box-shadow: -5px 0 rgba(255,255,255,.5), 5px 0 rgba(255,255,255,.5); }
.tique-knife { right: -24px; width: 5px; border-radius: 4px 0 0 4px; }
.tique-menu-title { color: var(--white); font-family: var(--serif); font-size: clamp(2.15rem, 4vw, 3.45rem); line-height: 1.05; }
.tique-menu-subtitle { margin-top: 8px; color: #e8c998; font-size: .76rem; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.tique-ticket {
  position: absolute;
  right: -22px;
  bottom: 54px;
  padding: 12px 34px 12px 22px;
  transform: rotate(-4deg);
  background: var(--tique-red);
  color: var(--white);
  font-family: var(--serif);
  font-size: .92rem;
  font-style: italic;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.comedy-section { background: var(--tique-cream); }
.comedy-grid .pathway-number { color: var(--tique-red); }
.tique-quote-section { background: var(--tique-red-dark); }
.forces-section { background: var(--white); }
.forces-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}
.forces-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.forces-list article { padding: 27px 32px 27px 0; border-bottom: 1px solid var(--line); }
.forces-list article:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
.forces-list strong, .forces-list span { display: block; }
.forces-list strong { margin-bottom: 7px; color: var(--deep); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.forces-list span { color: var(--muted); font-size: .95rem; }
.creation-road-section { background: var(--ivory); }
.creation-list time { color: var(--tique-red); }
.tique-troupe-section { background: var(--ivory); }
.tique-troupe-section .troupe-card { background: var(--tique-red); }

@media (max-width: 980px) {
  .tique-hero-figure { width: min(610px, 92%); margin-inline: auto; }
  .forces-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 790px) {
  .tique-menu-card { min-height: 550px; border-radius: 115px 115px 22px 22px; }
  .tique-menu-topline { top: 34px; left: 34px; right: 34px; }
  .tique-ticket { right: -18px; bottom: 42px; }
  .forces-list { grid-template-columns: 1fr; }
  .forces-list article, .forces-list article:nth-child(even) { padding: 24px 0; border-left: 0; }
}

@media (max-width: 480px) {
  .tique-menu-card { min-height: 500px; padding-inline: 28px; }
  .tique-menu-topline { flex-direction: column; gap: 2px; }
  .tique-plate { width: 68%; }
}

/* =========================================================
   Un faux départ
   ========================================================= */
.faux-page {
  --faux-night: #13212a;
  --faux-night-2: #0d171e;
  --faux-mist: #e7efec;
  --faux-cyan: #8cb5b3;
  --faux-rose: #b36b78;
  --faux-violet: #7568a9;
  --faux-paper: #f0ede7;
}
.faux-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(117,104,169,.13), transparent 29%),
    linear-gradient(140deg, #fbfaf6 0%, #ecefeb 100%);
}
.faux-hero::after { border-color: rgba(117,104,169,.22); }
.faux-hero .eyebrow { color: var(--faux-violet); }
.faux-hero-figure { margin: 0; }
.faux-hero-figure figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}
.faux-hero-card {
  position: relative;
  display: flex;
  min-height: 610px;
  overflow: hidden;
  border-radius: 170px 170px 28px 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(140,181,179,.18), transparent 34%),
    linear-gradient(165deg, #1b3039 0%, var(--faux-night) 52%, var(--faux-night-2) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
}
.faux-hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 152px 152px 18px 18px;
  pointer-events: none;
}
.faux-monitor-line {
  position: absolute;
  z-index: 3;
  top: 42px;
  left: 50px;
  right: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.58);
  font-size: .67rem;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.faux-life-visual {
  position: absolute;
  inset: 42px 14px 38px;
  width: calc(100% - 28px);
  height: calc(100% - 80px);
}
.faux-consciousness {
  position: absolute;
  z-index: 4;
  bottom: 54px;
  left: 50%;
  display: grid;
  width: max-content;
  max-width: calc(100% - 70px);
  padding: 13px 22px 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(13,23,30,.58);
  backdrop-filter: blur(8px);
  text-align: center;
}
.faux-consciousness span {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-style: italic;
  line-height: 1.1;
}
.faux-consciousness small {
  margin-top: 3px;
  color: rgba(255,255,255,.62);
  font-size: .62rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.faux-flash {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 76%;
  transform: translate(-50%, -50%) rotate(16deg);
  background: linear-gradient(transparent, rgba(255,255,255,.4), transparent);
  box-shadow: 0 0 34px rgba(255,255,255,.32);
  opacity: .6;
}
.faux-themes-section { background: var(--faux-paper); }
.faux-theme-grid .pathway-number { color: var(--faux-violet); }
.faux-quote-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(179,107,120,.22), transparent 32%),
    var(--faux-night);
}
.faux-quote-section .manifesto-mark { color: #d6c789; }
.sensations-section { background: var(--white); }
.sensations-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}
.sensations-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.sensations-list article { padding: 27px 32px 27px 0; border-bottom: 1px solid var(--line); }
.sensations-list article:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
.sensations-list strong, .sensations-list span { display: block; }
.sensations-list strong { margin-bottom: 7px; color: var(--deep); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.sensations-list span { color: var(--muted); font-size: .95rem; }
.metamorphoses-section {
  background:
    radial-gradient(circle at 8% 95%, rgba(117,104,169,.12), transparent 26%),
    linear-gradient(145deg, var(--ivory-light), #edf2ef);
}
.metamorphoses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.metamorphoses-grid article {
  min-height: 100%;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(19,33,42,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 46px rgba(19,33,42,.05);
}
.metamorphoses-grid h3 { margin: 26px 0 15px; font-size: clamp(1.45rem, 2.1vw, 1.9rem); }
.metamorphoses-grid p { margin-bottom: 0; color: var(--muted); }
.metamorphosis-icon {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(117,104,169,.25);
  border-radius: 50%;
  color: var(--faux-violet);
  font-family: var(--serif);
  font-size: 1.55rem;
  place-items: center;
}
.text-access-section { background: var(--faux-night); color: rgba(255,255,255,.76); }
.text-access-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 115px);
  align-items: start;
}
.text-access-section h2 { color: var(--white); }
.text-access-section .eyebrow { color: #d6c789; }
.text-access-copy { max-width: 730px; font-size: 1.07rem; }
.text-access-copy p:first-child { margin-top: 0; }
.text-access-copy .text-link { display: inline-block; margin-top: 16px; color: var(--white); text-decoration-color: #d6c789; }
.faux-collaboration-section { padding-top: 34px; background: var(--ivory); }
.faux-collaboration-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.13), transparent 24%),
    linear-gradient(135deg, var(--faux-violet), #534a82);
  box-shadow: 0 24px 70px rgba(83,74,130,.22);
}
.faux-collaboration-card .eyebrow, .faux-collaboration-card .troupe-list li::marker { color: #efe7a9; }

@media (max-width: 980px) {
  .faux-hero-figure { width: min(610px, 92%); margin-inline: auto; }
  .sensations-grid, .text-access-grid { grid-template-columns: 1fr; gap: 26px; }
  .metamorphoses-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 790px) {
  .faux-hero-card { min-height: 550px; border-radius: 115px 115px 22px 22px; }
  .faux-monitor-line { top: 34px; left: 34px; right: 34px; }
  .faux-consciousness { bottom: 38px; }
  .sensations-list { grid-template-columns: 1fr; }
  .sensations-list article, .sensations-list article:nth-child(even) { padding: 24px 0; border-left: 0; }
}

@media (max-width: 560px) {
  .metamorphoses-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .faux-hero-card { min-height: 500px; }
  .faux-monitor-line { flex-direction: column; gap: 2px; }
  .faux-life-visual { inset: 54px 0 32px; width: 100%; height: calc(100% - 86px); }
  .faux-consciousness { max-width: calc(100% - 38px); padding-inline: 18px; }
}

/* =========================================================
   Pages éditoriales — version 0.6
   ========================================================= */
.site-nav a[aria-current="page"] { color: var(--terracotta); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.section-more { margin: 36px 0 0; text-align: right; }
.footer-rich { align-items: center; }
.footer-rich > div p + p { margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,.68); text-underline-offset: 4px; }
.footer-links a:hover, .footer-links a:focus-visible, .footer-links a[aria-current="page"] { color: var(--white); }

.content-page { background: var(--ivory-light); }
.content-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 70px) 0 clamp(78px, 9vw, 128px);
  background:
    radial-gradient(circle at 13% 20%, rgba(198,138,61,.15), transparent 29%),
    linear-gradient(140deg, var(--ivory-light), var(--ivory));
}
.content-hero::after {
  content: "";
  position: absolute;
  right: -230px;
  bottom: -245px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(184,97,72,.18);
  border-radius: 50%;
}
.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .72fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}
.content-hero-copy h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
}
.content-hero-lead {
  max-width: 750px;
  margin: 0;
  color: #4c4a45;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  line-height: 1.48;
}
.long-copy { max-width: 760px; font-size: 1.1rem; }
.long-copy p:first-child { margin-top: 0; }
.page-cta-section { padding-top: 34px; }

/* À propos */
.about-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(198,138,61,.17), transparent 28%),
    linear-gradient(145deg, #fbf8f2, #efe6d7);
}
.profile-figure { margin: 0; }
.profile-image-frame {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 170px 170px 28px 28px;
  background: var(--deep);
  box-shadow: var(--shadow);
}
.profile-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.profile-figure figcaption, .transmission-figure figcaption { margin-top: 13px; color: var(--muted); font-size: .82rem; text-align: center; }
.identity-facts-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.identity-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.identity-facts > div { padding: 29px 24px; }
.identity-facts > div + div { border-left: 1px solid var(--line); }
.identity-facts span, .identity-facts strong { display: block; }
.identity-facts span { margin-bottom: 8px; color: var(--terracotta); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.identity-facts strong { color: var(--deep); font-family: var(--serif); font-size: 1.06rem; font-weight: 600; line-height: 1.35; }
.biography-section { background: var(--white); }
.biography-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(46px, 8vw, 120px); align-items: start; }
.biography-grid .long-copy p:first-child::first-letter {
  float: left;
  margin: 10px 10px 0 0;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .67;
}
.profile-quote-section, .approach-quote-section { padding: clamp(76px, 9vw, 126px) 0; color: var(--white); background: var(--deep); }
.profile-quote-grid { display: grid; grid-template-columns: auto minmax(0, 920px); justify-content: center; gap: 22px; }
.profile-quote-grid blockquote { margin: 0; }
.profile-quote-grid blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3.55rem); line-height: 1.25; }
.profile-quote-grid footer { margin-top: 28px; color: rgba(255,255,255,.65); font-size: .84rem; letter-spacing: .05em; text-transform: uppercase; }
.transmission-section { background: var(--ivory); }
.transmission-grid { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); gap: clamp(50px, 8vw, 115px); align-items: center; }
.transmission-figure { margin: 0; }
.transmission-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 40%; border-radius: 26px 145px 26px 26px; box-shadow: var(--shadow); }
.transmission-copy { max-width: 750px; }
.transmission-copy p:not(.eyebrow) { color: #4c4a45; font-size: 1.08rem; }
.transmission-copy .text-link { display: inline-block; margin-top: 14px; }
.milestones-section { background: var(--white); }
.milestones-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 115px); align-items: start; }
.milestone-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.milestone-list li { display: grid; grid-template-columns: 150px 1fr; gap: 28px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.milestone-list li > span { color: var(--terracotta); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.milestone-list strong { display: block; color: var(--deep); font-family: var(--serif); font-size: 1.42rem; font-weight: 600; }
.milestone-list p { margin: 5px 0 0; color: var(--muted); }

/* Démarche */
.approach-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(184,97,72,.12), transparent 28%),
    linear-gradient(145deg, #fbf8f2, #edf1ec);
}
.process-visual {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}
.process-ring {
  position: absolute;
  display: grid;
  border: 1px solid rgba(24,59,58,.25);
  border-radius: 50%;
  color: var(--deep);
  font-family: var(--serif);
  place-items: start center;
}
.process-ring span { padding: 7px 16px; transform: translateY(-50%); border-radius: 999px; background: var(--ivory-light); font-style: italic; }
.ring-one { inset: 2%; }
.ring-two { inset: 17%; transform: rotate(14deg); }
.ring-two span { transform: translateY(-50%) rotate(-14deg); }
.ring-three { inset: 32%; transform: rotate(-16deg); }
.ring-three span { transform: translateY(-50%) rotate(16deg); }
.process-heart {
  position: absolute;
  inset: 40%;
  display: grid;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-style: italic;
  box-shadow: 0 18px 44px rgba(184,97,72,.24);
  place-items: center;
}
.intention-section { background: var(--white); }
.intention-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(46px, 8vw, 120px); align-items: start; }
.principles-section { background: var(--ivory); }
.principle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.principle-grid article { padding: 38px 50px 38px 0; border-bottom: 1px solid var(--line); }
.principle-grid article:nth-child(even) { padding-left: 50px; border-left: 1px solid var(--line); }
.principle-grid h3 { margin-top: 25px; }
.principle-grid p { max-width: 520px; margin-bottom: 0; color: var(--muted); }
.approach-quote-section { background: var(--terracotta); }
.stage-lab-section { background: var(--white); }
.stage-lab-grid { display: grid; grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 115px); align-items: center; }
.stage-lab-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50% 50% 28px 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(198,138,61,.28), transparent 24%),
    linear-gradient(150deg, var(--deep), var(--deep-2));
  box-shadow: var(--shadow);
}
.stage-center { position: absolute; inset: 37%; display: grid; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--white); font-family: var(--serif); font-size: 1.25rem; font-style: italic; place-items: center; }
.stage-word { position: absolute; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.45rem); font-style: italic; }
.stage-word-one { top: 17%; left: 21%; }
.stage-word-two { top: 25%; right: 16%; }
.stage-word-three { bottom: 21%; left: 17%; }
.stage-word-four { bottom: 16%; right: 20%; }
.stage-word-five { top: 49%; left: 7%; }
.stage-lab-copy p:not(.eyebrow) { color: #4c4a45; font-size: 1.08rem; }
.forms-section { background: var(--ivory); }
.form-path-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.form-path-grid article { padding: clamp(28px, 3vw, 40px); border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.68); }
.form-path-grid article > span { color: var(--terracotta); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.form-path-grid h3 { margin: 23px 0 14px; }
.form-path-grid p { margin-bottom: 0; color: var(--muted); }

/* Collaborer */
.collaborate-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(198,138,61,.16), transparent 28%),
    linear-gradient(145deg, #fbf8f2, #efe7dc);
}
.collaboration-visual { position: relative; width: min(480px, 100%); aspect-ratio: 4 / 5; margin-inline: auto; }
.collab-sheet { position: absolute; display: grid; width: 66%; height: 70%; padding: 26px; border: 1px solid rgba(24,59,58,.16); border-radius: 18px; background: var(--white); color: var(--deep); font-family: var(--serif); font-size: 1.25rem; font-style: italic; box-shadow: 0 18px 50px rgba(24,43,42,.11); place-items: end start; }
.collab-sheet-one { top: 2%; left: 8%; transform: rotate(-8deg); }
.collab-sheet-two { top: 10%; right: 4%; transform: rotate(7deg); background: #f4ead9; }
.collab-sheet-three { bottom: 4%; left: 17%; transform: rotate(-1deg); background: #edf2ef; }
.collab-thread { position: absolute; z-index: 4; left: 13%; right: 7%; top: 47%; height: 3px; transform: rotate(-7deg); background: var(--terracotta); box-shadow: 0 0 0 1px rgba(184,97,72,.08); }
.collab-seal { position: absolute; z-index: 5; right: 2%; bottom: 16%; display: grid; width: 116px; aspect-ratio: 1; transform: rotate(9deg); border-radius: 50%; background: var(--terracotta); color: var(--white); font-family: var(--serif); font-size: 1.05rem; font-style: italic; box-shadow: 0 16px 38px rgba(184,97,72,.23); place-items: center; }
.partners-section { background: var(--white); }
.partner-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.partner-grid article { position: relative; padding: clamp(30px, 4vw, 48px); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--ivory-light); }
.partner-icon { display: grid; width: 48px; height: 48px; border: 1px solid rgba(184,97,72,.28); border-radius: 50%; color: var(--terracotta); font-family: var(--serif); font-style: italic; place-items: center; }
.partner-grid h3 { margin-top: 25px; }
.partner-grid p { margin-bottom: 0; color: var(--muted); }
.open-projects-section { background: var(--ivory); }
.open-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.open-project-card { display: flex; min-height: 100%; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: 24px; background: var(--white); flex-direction: column; }
.open-project-card.featured { border-color: var(--deep); background: var(--deep); color: rgba(255,255,255,.8); }
.open-project-card.featured h3, .open-project-card.featured .text-link { color: var(--white); }
.open-project-card.featured .work-status { color: #e9bb7a; }
.open-project-card p:not(.work-status) { color: inherit; }
.open-project-card .text-link { margin-top: auto; padding-top: 18px; }
.method-section { background: var(--white); }
.method-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(50px, 8vw, 115px); align-items: start; }
.method-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-list li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.method-list li > span { display: grid; width: 42px; height: 42px; border: 1px solid rgba(184,97,72,.3); border-radius: 50%; color: var(--terracotta); font-family: var(--serif); font-style: italic; place-items: center; }
.method-list h3 { margin-bottom: 8px; font-size: 1.45rem; }
.method-list p { margin: 0; color: var(--muted); }
.rights-section { padding: clamp(72px, 8vw, 112px) 0; background: var(--deep); color: rgba(255,255,255,.76); }
.rights-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 8vw, 110px); }
.rights-card h2 { color: var(--white); }
.rights-card .eyebrow { color: #e9bb7a; }
.rights-copy { font-size: 1.07rem; }
.rights-copy p:first-child { margin-top: 0; }

/* Contact */
.contact-hero { background: linear-gradient(145deg, #fbf8f2, #ece8dc); }
.contact-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, .7fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.contact-address-card { padding: clamp(32px, 4vw, 48px); border-radius: 26px 120px 26px 26px; background: var(--deep); color: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.contact-card-label { margin: 0 0 18px; color: #e9bb7a; font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-address-card > a { display: block; color: var(--white); font-family: var(--serif); font-size: clamp(1.45rem, 2.7vw, 2.25rem); line-height: 1.25; text-decoration-color: var(--amber); text-underline-offset: 7px; overflow-wrap: anywhere; }
.contact-address-card p:last-child { margin: 25px 0 0; }
.contact-reasons-section { background: var(--white); }
.reason-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.reason-card { display: flex; min-height: 100%; padding: clamp(28px, 3.4vw, 42px); border: 1px solid var(--line); border-radius: 22px; background: var(--ivory-light); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; flex-direction: column; }
.reason-card:hover, .reason-card:focus-visible { transform: translateY(-4px); border-color: rgba(184,97,72,.42); box-shadow: 0 18px 44px rgba(24,43,42,.08); }
.reason-card > span { color: var(--terracotta); font-family: var(--serif); font-style: italic; }
.reason-card h3 { margin: 24px 0 14px; }
.reason-card p { color: var(--muted); }
.reason-card strong { margin-top: auto; padding-top: 18px; color: var(--deep); font-size: .9rem; }
.message-guide-section { background: var(--ivory); }
.message-guide-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(50px, 8vw, 115px); align-items: start; }
.message-points { border-top: 1px solid var(--line); }
.message-points article { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.message-points span { color: var(--terracotta); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.message-points p { margin: 0; color: var(--muted); }
.contact-note-section { padding: clamp(72px, 8vw, 112px) 0; background: var(--white); }
.contact-note-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 105px); padding: clamp(38px, 6vw, 70px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ivory-light); }
.contact-note-card p:last-child { margin: 0; color: var(--muted); font-size: 1.07rem; }
.privacy-reassurance-section { background: var(--deep); color: rgba(255,255,255,.75); }
.privacy-reassurance-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 105px); }
.privacy-reassurance-grid h2 { color: var(--white); }
.privacy-reassurance-grid .eyebrow { color: #e9bb7a; }
.privacy-reassurance-grid p { margin-top: 0; }
.privacy-reassurance-grid .text-link { color: var(--white); text-decoration-color: var(--amber); }

/* Pages légales */
.legal-hero { padding: clamp(38px, 5vw, 70px) 0 clamp(65px, 8vw, 100px); background: linear-gradient(145deg, var(--ivory-light), var(--ivory)); }
.legal-hero h1 { margin-bottom: 22px; font-size: clamp(3rem, 7vw, 5.8rem); }
.legal-content-section { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: clamp(45px, 8vw, 110px); align-items: start; justify-content: center; }
.legal-toc { position: sticky; top: 118px; display: grid; border-top: 1px solid var(--line); }
.legal-toc a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .88rem; text-decoration: none; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--terracotta); }
.legal-copy section { padding-bottom: 38px; scroll-margin-top: 115px; }
.legal-copy section + section { padding-top: 38px; border-top: 1px solid var(--line); }
.legal-copy h2 { margin-bottom: 18px; font-size: clamp(1.75rem, 3vw, 2.45rem); }
.legal-copy p { color: #4c4a45; }
.legal-copy a { text-underline-offset: 4px; }
.legal-update { margin-top: 32px; color: var(--muted) !important; font-size: .84rem; font-style: italic; }

@media (max-width: 1080px) {
  .identity-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .identity-facts > div:nth-child(3) { border-left: 0; }
  .identity-facts > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .form-path-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .content-hero-grid, .contact-hero-grid, .biography-grid, .transmission-grid, .milestones-grid, .intention-grid, .stage-lab-grid, .method-grid, .rights-card, .message-guide-grid, .contact-note-card, .privacy-reassurance-grid { grid-template-columns: 1fr; }
  .profile-figure, .process-visual, .collaboration-visual { width: min(600px, 92%); margin-inline: auto; }
  .transmission-figure, .stage-lab-card { width: min(620px, 100%); }
  .biography-grid, .milestones-grid, .intention-grid, .method-grid, .message-guide-grid { gap: 26px; }
  .partner-grid, .open-project-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
}

@media (max-width: 790px) {
  .content-hero-copy h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .profile-image-frame { border-radius: 115px 115px 22px 22px; }
  .profile-quote-grid { grid-template-columns: 1fr; gap: 0; }
  .profile-quote-grid .manifesto-mark { height: 75px; margin: -10px 0 0; }
  .transmission-figure img { border-radius: 22px 95px 22px 22px; }
  .milestone-list li, .message-points article { grid-template-columns: 1fr; gap: 8px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article, .principle-grid article:nth-child(even) { padding: 30px 0; border-left: 0; }
  .process-visual { width: min(440px, 92%); }
  .form-path-grid, .reason-grid { grid-template-columns: 1fr; }
  .footer-rich { gap: 18px; }
  .footer-links { justify-content: center; }
  .contact-note-card { padding: 34px 26px; }
  .legal-toc { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .identity-facts { grid-template-columns: 1fr; }
  .identity-facts > div:nth-child(n) { border-left: 0; border-top: 1px solid var(--line); }
  .identity-facts > div:first-child { border-top: 0; }
  .process-heart { inset: 38%; }
  .collab-seal { width: 92px; font-size: .9rem; }
}
