/* ============== TOKENS ============== */
:root {
  /* default palette: Sable & ocre brûlé (terracotta) */
  --c-bg: #f4ebdd;
  --c-bg-2: #ece0cc;
  --c-bg-deep: #2a1a14;
  --c-ink: #2a1a14;
  --c-ink-soft: #5a3f33;
  --c-muted: #7a5a4a;
  --c-line: #d9c7ad;
  --c-line-strong: #b89878;
  --c-accent: #b85c38;        /* terre cuite */
  --c-accent-2: #c8893a;      /* ocre brûlé */
  --c-accent-deep: #6e2a2a;   /* bordeaux profond */
  --c-cream: #faf3e6;

  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 999px;

  --maxw: 1200px;
  --maxw-narrow: 720px;
  --maxw-mid: 960px;
}

/* palette: bordeaux nuit */
[data-palette="nuit"] {
  --c-bg: #1a0e0a;
  --c-bg-2: #241410;
  --c-bg-deep: #0e0604;
  --c-ink: #f4ebdd;
  --c-ink-soft: #d9c4a8;
  --c-muted: #a08770;
  --c-line: #3a221a;
  --c-line-strong: #5a3a2a;
  --c-accent: #c8893a;
  --c-accent-2: #b85c38;
  --c-accent-deep: #f4ebdd;
  --c-cream: #1f1109;
}

/* palette: ocre doré lumineux */
[data-palette="dore"] {
  --c-bg: #faf2dd;
  --c-bg-2: #f4e6c2;
  --c-bg-deep: #3a2818;
  --c-ink: #2e1f10;
  --c-ink-soft: #5a3f1a;
  --c-muted: #8a6a3a;
  --c-line: #e0c890;
  --c-line-strong: #c0a560;
  --c-accent: #b8842a;
  --c-accent-2: #d4a445;
  --c-accent-deep: #6e3a18;
  --c-cream: #fdf7e8;
}

/* ============== RESET ============== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; }

/* ============== GRAIN OVERLAY ============== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.25  0 0 0 0 0.15  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
[data-palette="nuit"] body::before { mix-blend-mode: screen; opacity: 0.18; }

/* ============== TYPOGRAPHY ============== */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  font-weight: 500;
}
.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--c-ink-soft);
  text-wrap: balance;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 0.98; margin: 0; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.05; margin: 0 0 1.5rem; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0 0 0.75rem; }
p { margin: 0 0 1.1em; text-wrap: pretty; }

::selection { background: var(--c-accent); color: var(--c-cream); }

/* ============== LAYOUT ============== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.container-mid { max-width: var(--maxw-mid); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) {
  section { padding: 80px 0; }
  body { font-size: 16px; }
}

.divider-line {
  width: 1px;
  height: 64px;
  background: var(--c-line-strong);
  margin: 0 auto;
}
.divider-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}
.divider-dot::before, .divider-dot::after {
  content: "";
  height: 1px;
  width: 64px;
  background: var(--c-line-strong);
}
.divider-dot span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--c-accent);
  color: var(--c-cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--c-accent-deep); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(110,42,42,0.4); }
.btn-arrow { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-pill);
  font-size: 14px;
  background: color-mix(in oklab, var(--c-bg) 88%, transparent);
  color: var(--c-accent-deep);
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--c-cream); border-color: var(--c-accent-deep); color: var(--c-accent-deep); }

/* ============== GALLERY ============== */
.gallery-section {
  background: var(--c-bg);
  padding: 120px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-tall, .gallery-wide { grid-row: auto; grid-column: auto; }
}

/* ============== RECOGNITION (Te reconnais-tu ?) ============== */
.recognition {
  background: var(--c-bg-2);
}
.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.recognition-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  aspect-ratio: 4/5;
  max-height: 720px;
  box-shadow: 0 30px 70px -30px rgba(42,26,20,0.4);
}
.recognition-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recognition-body { max-width: 560px; }
.recognition-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.recognition-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--c-ink-soft);
  font-size: 17px;
  line-height: 1.6;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in oklab, var(--c-line) 70%, transparent);
}
.recognition-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.recognition-list li strong {
  color: var(--c-ink);
  font-weight: 600;
}
.recognition-dot {
  font-size: 14px;
  color: var(--c-accent-deep);
  line-height: 1.6;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 980px) {
  .recognition-grid { grid-template-columns: 1fr; gap: 48px; }
  .recognition-photo { aspect-ratio: 16/10; max-height: 480px; }
  .recognition-body { max-width: none; }
}

/* ============== IMAGINE 6 MOIS ============== */
.imagine-section {
  background: var(--c-bg);
  position: relative;
}
.imagine-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.imagine-body { max-width: 600px; }
.imagine-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-ink-soft);
  margin: 0 0 1.2em;
}
.imagine-text p strong { color: var(--c-ink); font-weight: 500; }
.imagine-text p em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-accent-deep);
  font-size: 1.1em;
}
.imagine-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-ink);
  box-shadow: 0 30px 70px -30px rgba(42,26,20,0.4);
}
.imagine-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .imagine-grid { grid-template-columns: 1fr; gap: 48px; }
  .imagine-photo { aspect-ratio: 16/10; max-height: 480px; order: -1; }
  .imagine-body { max-width: none; }
}

/* ============== PHOTO BREAK (full-bleed photo with overlaid text) ============== */.photo-break {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--c-ink);
  padding: 25px 0;
}
.photo-break-tall { height: min(95vh, 1100px); min-height: 600px; }
.photo-break-fire { height: min(95vh, 1100px); min-height: 600px; }
.photo-break-med { height: min(95vh, 1100px); min-height: 600px; }
.photo-break-short { height: min(95vh, 1100px); min-height: 600px; }
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-break-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.28) 100%);
  color: var(--c-cream);
}
.photo-break-text-left { align-items: flex-start; text-align: left; }
.photo-break-text-center { align-items: center; text-align: center; }
.photo-break-text-right { align-items: flex-end; text-align: right; }
.photo-break-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.1;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.photo-break-text cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 24px;
  opacity: 0.85;
}
@media (max-width: 720px) {
  .photo-break-tall, .photo-break-fire, .photo-break-med, .photo-break-short { height: 380px; }
  .photo-break-text { padding: 24px; }
}

/* ============== PHOTO RIBBON ============== */
.photo-ribbon {
  background: var(--c-ink);
  padding: 0;
  margin: 0;
}
.photo-ribbon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.photo-ribbon figure {
  margin: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
@media (max-width: 720px) { .photo-ribbon-grid { grid-template-columns: 1fr; } }

/* ============== WAY PHOTO SLOT ============== */
.way { text-align: center; }
.way-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.way-photo::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed var(--c-line-soft);
  pointer-events: none;
}
.way-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.way-photo-symbol {
  font-size: 36px;
  color: var(--c-accent);
  opacity: 0.55;
}

/* ============== PARCHMENT FIGURES ============== */
.parchment-figure {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}
.parchment-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: drop-shadow(0 18px 38px rgba(60, 36, 18, 0.22));
}
.parchment-figure figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  margin-top: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.parchment-figure-dark figcaption {
  color: rgba(244, 235, 221, 0.78);
}
.parchment-cover {
  max-width: 1000px;
}

/* ============== FORMATION PRESENTATION ============== */
.formation-presentation {
  background: var(--c-bg);
  padding: 140px 0 120px;
  position: relative;
}
.formation-presentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line-strong), transparent);
}

/* ============== CINQ OBSTACLES ============== */
.obstacles-section {
  background: var(--c-bg-2);
  padding: 140px 0;
  position: relative;
}

/* New zigzag list layout */
.obstacles-list {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.obstacles-list::before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-line) 12%, var(--c-line) 88%, transparent);
  transform: translateX(-0.5px);
}
.obstacle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 48px 0;
  position: relative;
}
.obstacle-row + .obstacle-row { border-top: 1px dashed transparent; }
.obstacle-row-alt .obstacle-big-num { order: 2; text-align: left; }
.obstacle-row-alt .obstacle-body    { order: 1; text-align: right; padding-right: 24px; }
.obstacle-row:not(.obstacle-row-alt) .obstacle-big-num { text-align: right; padding-right: 24px; }
.obstacle-row:not(.obstacle-row-alt) .obstacle-body    { padding-left: 24px; }

.obstacle-big-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 0.85;
  color: var(--c-accent-deep);
  letter-spacing: -0.04em;
  opacity: 0.92;
}

.obstacle-body { max-width: 460px; }
.obstacle-row-alt .obstacle-body { margin-left: auto; }
.obstacle-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-accent-deep);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.obstacle-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--c-ink);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.obstacle-row p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--c-ink-soft);
  margin: 0;
}

@media (max-width: 820px) {
  .obstacles-list::before { display: none; }
  .obstacle-row,
  .obstacle-row.obstacle-row-alt {
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 36px 0;
    align-items: flex-start;
  }
  .obstacle-row .obstacle-big-num,
  .obstacle-row-alt .obstacle-big-num {
    order: 1;
    text-align: left;
    padding: 0;
    font-size: 64px;
    line-height: 1;
    min-width: 90px;
  }
  .obstacle-row .obstacle-body,
  .obstacle-row-alt .obstacle-body {
    order: 2;
    text-align: left;
    padding: 0;
    margin-left: 0;
  }
}
@media (max-width: 720px) {
  .obstacles-section { padding: 96px 0; }
}

/* ============== L'ART DES RITUELS ============== */
.rituals-section {
  background: var(--c-bg);
  padding: 140px 0;
  position: relative;
}
.rituals-section .container-narrow p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-ink);
  margin: 0 0 1.4em;
}
.rituals-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  text-align: center;
  color: var(--c-accent-deep);
  margin: 64px 0 56px !important;
  line-height: 1.3;
}
.rituals-final {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  text-align: center;
  color: var(--c-ink);
  line-height: 1.5;
  margin: 72px auto 0 !important;
  max-width: 640px;
}
.rituals-final em {
  color: var(--c-accent-deep);
  font-style: italic;
}
@media (max-width: 720px) {
  .rituals-section { padding: 96px 0; }
  .rituals-pullquote { font-size: 1.5rem; }
  .rituals-final { font-size: 1.3rem; }
}

/* ============== PLACEHOLDER (image stand-ins) ============== */
.ph {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 16px;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0 18px,
    rgba(184,92,56,0.06) 18px 19px);
}
.ph span { position: relative; z-index: 1; }

/* ============== SCROLL REVEAL ============== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease-out, transform 1s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--c-bg) 80%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--c-line); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .dot { width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-formation {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-accent-deep);
  padding-left: 10px;
  border-left: 1px solid var(--c-line);
  margin-left: 4px;
}
@media (max-width: 720px) { .nav-formation { display: none; } }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 10px 18px;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-pill);
  color: var(--c-accent);
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--c-accent); color: var(--c-cream); }
@media (max-width: 600px) { .nav { padding: 14px 20px; } .nav-logo { font-size: 14px; } }

/* ============== NAV COUNTDOWN BANNER ============== */
.nav-countdown {
  position: relative;
  background: var(--c-bg-deep);
  color: var(--c-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 56px 32px;
  margin-top: 84px; /* sit below the fixed nav */
  border-bottom: 1px solid rgba(244,235,221,0.08);
  font-family: var(--font-mono);
}
.nav-countdown-label {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,235,221,0.7);
  text-align: center;
}
.nav-countdown-units {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-countdown-cell {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-variant-numeric: tabular-nums;
  min-width: 80px;
}
.nav-countdown-cell strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 7vw, 96px);
  color: var(--c-cream);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.nav-countdown-cell span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,235,221,0.55);
}
@media (max-width: 600px) {
  .nav-countdown { margin-top: 66px; padding: 40px 16px; gap: 20px; }
  .nav-countdown-label { font-size: 11px; }
}

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 140px 0 96px;
  position: relative;
  overflow: visible;
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-bg) 0%, rgba(244,235,221,0.7) 18%, rgba(244,235,221,0) 50%);
  z-index: 2;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,49,40,0.0) 50%, rgba(58,49,40,0.55) 100%);
  z-index: 2;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-photo-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--c-cream);
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.4);
  padding: 0 24px;
  transform: rotate(-1.5deg);
}
.hero .container { position: relative; z-index: 4; width: 100%; }
.hero .reveal { max-width: 600px; }
@media (max-width: 980px) {
  .hero-photo { width: 100%; opacity: 0.32; }
  .hero-photo::before { background: linear-gradient(180deg, var(--c-bg) 0%, rgba(244,235,221,0.6) 50%, var(--c-bg) 100%); }
  .hero-photo-title { font-size: 36px; }
}
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 {
  text-wrap: balance;
  font-size: clamp(40px, 5.4vw, 76px);
  margin-top: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-accent);
}
.hero-sub {
  max-width: 560px;
  font-size: 1.15rem;
  margin-top: 32px;
  color: var(--c-ink-soft);
}
.hero-meta {
  display: flex;
  gap: 0;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink);
  flex-wrap: wrap;
  background: color-mix(in oklab, var(--c-bg) 92%, transparent);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 16px 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(58,49,40,0.06);
  max-width: 580px;
}
.hero-meta > div {
  flex: 1 1 0;
  min-width: 0;
  padding: 4px 14px;
  border-right: 1px solid var(--c-line);
  text-align: center;
  line-height: 1.35;
  text-wrap: balance;
}
.hero-meta > div:last-child { border-right: none; }
.hero-meta b {
  display: block;
  color: var(--c-accent-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  margin-bottom: 6px;
}
@media (max-width: 720px) {
  .hero-meta > div { border-right: none; border-bottom: 1px solid var(--c-line); padding: 12px 0; }
  .hero-meta > div:last-child { border-bottom: none; }
}
.hero-construction {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(184,92,56,0.08);
  border-left: 2px solid var(--c-accent);
  max-width: 560px;
  font-size: 0.96rem;
  color: var(--c-ink);
  line-height: 1.55;
}
.hero-construction-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent-deep);
  margin-bottom: 8px;
}
.hero-reopen {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--c-ink-soft);
  max-width: 560px;
  letter-spacing: 0;
}
.hero-reopen em {
  font-style: italic;
  color: var(--c-accent-deep);
}
.hero-reopen b {
  font-weight: 500;
  color: var(--c-accent-deep);
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 1px;
}

.hero-art {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  pointer-events: none;
  opacity: 0.85;
}
@media (max-width: 1100px) { .hero-art { width: 380px; height: 380px; right: -120px; opacity: 0.5; } }
@media (max-width: 720px) { .hero-art { display: none; } }

/* ============== ANCIENT STORY (preamble: history of the drum) ============== */
.ancient-story {
  background: var(--c-bg);
  position: relative;
  padding: 140px 0 100px;
  color: var(--c-ink);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.ancient-story-ornament {
  display: flex;
  justify-content: center;
  color: var(--c-accent-deep);
  margin-bottom: 32px;
}
.ancient-story-ornament svg { display: block; }
.ancient-story p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--c-ink-soft);
  margin: 0 0 1.5em;
  text-wrap: pretty;
}
.ancient-story p strong { color: var(--c-ink); font-weight: 500; }
.ancient-story p em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-accent-deep);
  font-size: 1.05em;
}
.ancient-story-maybe {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-accent-deep);
  font-size: 1.15em;
  font-weight: 500;
}
.ancient-story-trio p {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--c-line);
  margin-bottom: 2em;
}
.ancient-story-pullquote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  text-align: center;
  color: var(--c-ink);
  margin: 64px auto 64px !important;
  max-width: 720px;
  text-wrap: balance;
  position: relative;
}
.ancient-story-pullquote em {
  color: var(--c-accent-deep);
  font-size: 1em !important;
}
.ancient-story-pullquote::before,
.ancient-story-pullquote::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-accent-deep);
  margin: 0 auto;
  opacity: 0.5;
}
.ancient-story-pullquote::before { margin-bottom: 28px; }
.ancient-story-pullquote::after  { margin-top: 28px; }
.ancient-story-pullquote-xl {
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px) !important;
  line-height: 1.05;
  color: var(--c-accent-deep);
  margin: 96px auto 96px !important;
  letter-spacing: -0.01em;
}
.ancient-story-pullquote-xl::before,
.ancient-story-pullquote-xl::after {
  width: 60px;
  opacity: 0.65;
}
.ancient-story-pullquote-xl::before { margin-bottom: 40px; }
.ancient-story-pullquote-xl::after  { margin-top: 40px; }
@media (max-width: 720px) {
  .ancient-story-pullquote-xl { margin: 64px auto !important; }
}
.ancient-story-pullquote-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  text-align: center;
  color: var(--c-ink-soft);
  margin: -64px auto 80px !important;
  max-width: 640px;
  text-wrap: balance;
}
@media (max-width: 720px) {
  .ancient-story-pullquote-sub { margin: -40px auto 56px !important; }
}
.ancient-story-rencontre-photo {
  margin: 24px auto 64px;
  max-width: 920px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  box-shadow: 0 40px 80px -40px rgba(42,26,20,0.45);
}
.ancient-story-rencontre-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.ancient-story-anais-photo {
  margin: 32px auto 56px;
  max-width: 720px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  box-shadow: 0 40px 80px -40px rgba(42,26,20,0.45);
}
.ancient-story-anais-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.ancient-story-anais-photo figcaption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 16px 24px 20px;
  background: var(--c-bg-2);
}
@media (max-width: 720px) {
  .ancient-story-rencontre-photo { margin: 12px -24px 48px; border-radius: 0; }
  .ancient-story-rencontre-photo img { aspect-ratio: 4/3; }
}
.ancient-story-historical {
  background: var(--c-bg-2);
  padding: 56px 56px 40px;
  border-radius: var(--r-md);
  margin: 56px 0 32px;
  position: relative;
}
.ancient-story-historical::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-accent-deep), transparent);
  opacity: 0.6;
}
.ancient-story-historical p { font-size: 1.02rem; }
.ancient-story-historical-photo {
  margin: 0 -16px 40px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  box-shadow: 0 30px 70px -30px rgba(42,26,20,0.5);
}
.ancient-story-historical-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.ancient-story-historical-photo figcaption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 16px 24px 4px;
  background: var(--c-bg-2);
}
@media (max-width: 720px) {
  .ancient-story-historical-photo { margin: 0 -24px 32px; }
  .ancient-story-historical-photo img { aspect-ratio: 4/3; }
}
.ancient-story-transition {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.ancient-story-divider {
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--c-accent-deep), transparent);
}
@media (max-width: 720px) {
  .ancient-story { padding: 80px 0 60px; }
  .ancient-story-trio p { padding-left: 18px; }
  .ancient-story-historical { padding: 32px 24px; margin: 40px 0 24px; }
  .ancient-story-pullquote { margin: 48px auto !important; }
}

/* ============== BENEFITS OF DRUMMING ============== */
.benefits-drum {
  background: var(--c-bg-2);
  position: relative;
}
.benefits-drum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-drum-card {
  background: var(--c-bg);
  padding: 40px 36px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.benefits-drum-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(42,26,20,0.25);
}
.benefits-drum-symbol {
  font-size: 38px;
  color: var(--c-accent);
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-display);
  line-height: 1;
}
.benefits-drum-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--c-ink);
  margin: 0 0 14px;
  line-height: 1.25;
}
.benefits-drum-card p {
  color: var(--c-ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}
.benefits-drum-footnote {
  border-top: 1px solid var(--c-line);
  padding-top: 56px !important;
}
@media (max-width: 980px) {
  .benefits-drum-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .benefits-drum-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefits-drum-card { padding: 32px 24px; }
}

/* ============== HOW IT WORKS ============== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--c-bg);
  padding: 36px 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.how-card:hover {
  border-color: var(--c-accent-deep);
  transform: translateY(-2px);
}
.how-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.how-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--c-ink);
  line-height: 1.25;
}
.how-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
  margin: 0;
}
@media (max-width: 880px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-card { padding: 28px 24px; }
}

/* ============== STORY (narration émotionnelle) ============== */
.story {
  background: var(--c-bg-2);
  position: relative;
  overflow: hidden;
}
.story-bg-text {
  position: absolute;
  max-width: 100%;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  color: var(--c-line);
  opacity: 0.4;
  top: -40px;
  right: -40px;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}
.story p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--c-ink-soft);
  text-wrap: pretty;
}
.story p strong { color: var(--c-ink); font-weight: 500; }
.story-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--c-accent-deep);
  text-align: center;
  margin: 64px auto;
  padding: 0 32px;
  max-width: 720px;
  position: relative;
}
.story-pullquote::before, .story-pullquote::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-accent);
  margin: 24px auto;
}

/* ============== TESTIMONY GRID ============== */
.testimonies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 980px) { .testimonies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonies-grid { grid-template-columns: 1fr; } }
.testimony-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px;
  font-style: italic;
  color: var(--c-ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  position: relative;
}
.testimony-card::before {
  content: "”";
  position: absolute;
  top: -8px; left: 12px;
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--c-accent);
  opacity: 0.4;
  line-height: 1;
}

/* ============== 4 MANIÈRES ============== */
.four-ways-figure {
  width: 100%;
  margin: 64px 0 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  height: 720px;
  box-shadow: 0 30px 70px -30px rgba(42,26,20,0.4);
}
.four-ways-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) { .four-ways-figure { height: 380px; margin-top: 48px; } }
.ways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}
@media (max-width: 720px) { .ways-grid { grid-template-columns: 1fr; } }
.way {
  background: var(--c-bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.4s;
}
.way:hover { background: var(--c-bg-2); }
.way-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
}
.way-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.way-title em {
  font-style: italic;
  font-size: 0.75em;
  color: var(--c-muted);
  white-space: nowrap;
}
.way-symbol {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.way p { color: var(--c-ink-soft); margin: 0; font-size: 0.98rem; line-height: 1.65; }

/* ============== ANCRAGE ============== */
.anchor-section {
  background: var(--c-bg-deep);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.anchor-section h2 { color: var(--c-cream); }
.anchor-section p { color: rgba(244, 235, 221, 0.78); font-size: 1.1rem; line-height: 1.8; }
.anchor-section .eyebrow { color: var(--c-accent-2); }
.anchor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,137,58,0.18), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(184,92,56,0.12), transparent 50%);
  pointer-events: none;
}

/* ============== ROUE MÉDECINE ============== */
.wheel-section {
  background: var(--c-bg);
  padding: 140px 0;
}
.wheel-wrap {
  display: grid;
  grid-template-columns: minmax(0, 580px) 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .wheel-wrap { grid-template-columns: 1fr; } }
.wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 580px;
}
.wheel svg { width: 100%; height: 100%; overflow: visible; }
.totem-detail {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 40px;
  min-height: 360px;
  position: relative;
}
.totem-detail-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  text-transform: uppercase;
}
.totem-detail h3 {
  font-size: 2.2rem;
  margin: 12px 0 8px;
}
.totem-detail h3 em {
  font-style: italic;
  color: var(--c-muted);
  font-size: 0.7em;
  display: block;
  margin-top: 4px;
}
.totem-detail p { color: var(--c-ink-soft); }
.totem-portrait {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 20px 0 24px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.totem-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.totem-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.totem-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--c-bg-2);
  border-radius: var(--r-pill);
  color: var(--c-ink-soft);
}

/* ============== MODULES LIST (accordéon) ============== */
.modules-list {
  border-top: 1px solid var(--c-line);
}
.module-row {
  border-bottom: 1px solid var(--c-line);
  cursor: pointer;
  padding: 28px 0;
  transition: padding 0.3s;
}
.module-row.open { padding: 36px 0; }
.module-head {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 720px) {
  .module-head { grid-template-columns: 40px 1fr auto; gap: 12px; }
  .module-head .module-totem-name { display: none; }
}
.module-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--c-muted);
}
.module-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.module-title em {
  font-style: italic;
  color: var(--c-accent);
  font-size: 0.85em;
}
.module-totem-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.module-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.module-row.open .module-toggle { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-cream); transform: rotate(45deg); }
.module-toggle svg { width: 14px; height: 14px; }
.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s, margin 0.4s;
  opacity: 0;
  padding-left: 84px;
  padding-right: 84px;
  color: var(--c-ink-soft);
}
.module-row.open .module-body { max-height: 600px; opacity: 1; margin-top: 18px; }
@media (max-width: 720px) { .module-body { padding-left: 52px; padding-right: 0; } }

/* ============== BENEFITS LIST ============== */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.benefit {
  background: var(--c-bg);
  padding: 36px;
}
.benefit-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-accent);
  font-size: 2rem;
  margin-bottom: 8px;
}
.benefit h4 { font-size: 1.2rem; margin: 0 0 12px; }
.benefit p { color: var(--c-ink-soft); font-size: 0.96rem; line-height: 1.65; margin: 0; }

/* ============== POUR QUI / PAS POUR QUI ============== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 760px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
}
.audience-card.yes { background: var(--c-cream); }
.audience-card.no { background: transparent; opacity: 0.85; }
.audience-card h3 {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.audience-card h3 .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.audience-card.yes .icon { background: #4a7d4f; color: var(--c-cream); }
.audience-card.no .icon { background: #b54a3a; color: var(--c-cream); border: none; font-size: 22px; line-height: 1; }
.audience-card ul { list-style: none; padding: 0; margin: 0; }
.audience-card li {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--c-ink-soft);
  position: relative;
  padding-left: 24px;
}
.audience-card li:last-child { border-bottom: none; }
.audience-card.yes li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 12px; height: 1px;
  background: var(--c-accent);
}
.audience-card.no li::before {
  content: "×";
  position: absolute;
  left: 0; top: 12px;
  color: var(--c-muted);
  font-size: 18px;
}

/* ============== FOUNDERS ============== */
.founders {
  background: var(--c-bg-2);
}
.founders-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .founders-wrap { grid-template-columns: 1fr; } }
.founders-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
}
.founders-portrait-img {
  overflow: hidden;
  position: relative;
}
.founders-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dual portrait layout */
.founders-portrait-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.founders-portrait-card {
  margin: 0;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--c-ink);
  box-shadow: 0 30px 70px -30px rgba(42,26,20,0.4);
}
.founders-portrait-card:nth-child(1) { transform: translateY(-24px); }
.founders-portrait-card:nth-child(2) { transform: translateY(24px); }
.founders-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.founders-portrait-card:hover img { transform: scale(1.04); }
.founders-portrait-card figcaption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--c-cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
@media (max-width: 880px) {
  .founders-portrait-card:nth-child(1),
  .founders-portrait-card:nth-child(2) { transform: none; }
}
.founders-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
  padding-top: 0;
  border-top: none;
}
.founders-stats > div {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 32px 20px;
  text-align: center;
  background: var(--c-bg);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.founders-stats > div:hover {
  border-color: var(--c-accent-deep);
  transform: translateY(-2px);
}
.founders-stats .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 10px;
}
.founders-stats .stat-label {
  font-size: 12px;
}
@media (max-width: 480px) {
  .founders-stats { grid-template-columns: 1fr; gap: 14px; margin-top: 48px; }
  .founders-stats > div { padding: 24px 18px; }
}
.founders-stats .stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ============== OFFER / PRICING ============== */
.offer {
  background: var(--c-bg-deep);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.offer h2, .offer h3 { color: var(--c-cream); }
.offer .eyebrow { color: var(--c-accent-2); }
.offer p { color: rgba(244,235,221,0.78); }
.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200,137,58,0.2), transparent 50%);
  pointer-events: none;
}
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}
.countdown-cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,235,221,0.18);
  border-radius: var(--r-md);
  padding: 18px 24px;
  min-width: 92px;
  text-align: center;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-variant-numeric: tabular-nums;
  color: var(--c-accent-2);
  line-height: 1;
  margin-bottom: 6px;
}
.countdown-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,235,221,0.6);
}
.offer-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,235,221,0.18);
  border-radius: var(--r-lg);
  padding: 56px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 600px) { .offer-card { padding: 32px 24px; } }
.offer-price {
  font-family: var(--font-display);
  line-height: 1;
  color: var(--c-cream);
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.offer-price-old {
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(244,235,221,0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--c-accent);
  letter-spacing: -0.01em;
}
.offer-price-new {
  font-size: clamp(4rem, 10vw, 7rem);
  letter-spacing: -0.02em;
  color: var(--c-cream);
}
.offer-price small {
  font-size: 0.4em;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  vertical-align: super;
  color: var(--c-accent-2);
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  text-align: left;
}
.offer-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,235,221,0.1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  color: rgba(244,235,221,0.88);
}
.offer-list li:last-child { border-bottom: none; }
.offer-list .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 4px;
  color: var(--c-accent-2);
}

/* ============== FAQ ============== */
.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.faq-item.open .faq-toggle { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-cream); transform: rotate(45deg); }
.faq-toggle svg { width: 12px; height: 12px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s, opacity 0.3s, margin 0.3s;
  color: var(--c-ink-soft);
}
.faq-item.open .faq-a { max-height: 320px; opacity: 1; margin-top: 16px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--c-bg-deep);
  color: rgba(244,235,221,0.6);
  padding: 64px 0 32px;
  text-align: center;
  font-size: 0.92rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-cream);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-logo img { height: 92px; width: auto; display: block; margin: 0 auto 12px; }

/* ============== STICKY CTA BAR ============== */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 40;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--r-pill);
  padding: 12px 16px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 18px 40px -14px rgba(42,26,20,0.4);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(.6,.2,.2,1);
  font-size: 0.92rem;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--c-accent-2); }
.sticky-cta .btn { padding: 12px 20px; font-size: 13px; }
@media (max-width: 600px) {
  .sticky-cta { padding: 10px 10px 10px 18px; }
  .sticky-cta .meta { display: none; }
}

/* ============== KEYFRAMES ============== */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.pulse-ring {
  animation: pulse-ring 2.4s ease-out infinite;
  transform-origin: center;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin-slow { animation: spin-slow 80s linear infinite; transform-origin: center; }


/* ============== CLIENT TESTIMONIALS (real forum-style) ============== */
.client-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 1080px) { .client-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .client-testimonials { grid-template-columns: 1fr; } }
.client-testimony {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.client-testimony-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
}
.client-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.client-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-ink);
}
.client-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.client-text {
  color: var(--c-ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}
.client-foot {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
}
.client-react em { font-style: normal; color: var(--c-ink-soft); }
.client-source { margin-left: auto; text-transform: uppercase; }

/* ============== SCHOOL PREVIEW ============== */
.school-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
@media (max-width: 820px) { .school-grid { grid-template-columns: 1fr; } }
.school-card { margin: 0; }
.school-frame {
  background: #2a241d;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(50, 30, 18, 0.35), 0 4px 12px rgba(50,30,18,0.12);
  border: 1px solid var(--c-line);
}
.school-chrome {
  background: linear-gradient(180deg, #3a3128, #2a241d);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.school-chrome span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(244,235,221,0.3);
}
.school-chrome span:first-child { background: #e87c5b; }
.school-chrome span:nth-child(2) { background: #e8b95b; }
.school-chrome span:nth-child(3) { background: #8fb85b; }
.school-chrome em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(244,235,221,0.55);
  margin-left: auto;
  letter-spacing: 0.05em;
}
.school-frame img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
}
.school-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 8px 0;
}
.school-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-ink);
}
.school-card figcaption span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.school-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .school-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .school-features { grid-template-columns: 1fr; } }
.school-feat {
  background: var(--c-bg);
  padding: 32px 28px;
}
.school-feat-ill {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--c-accent);
  background: var(--c-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
}
.school-feat-ill svg { width: 32px; height: 32px; }
.school-feat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.school-feat h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--c-ink);
}
.school-feat p {
  color: var(--c-ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

/* ============== COMMUNAUTÉ (3 espaces) ============== */
.community-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 980px) { .community-grid { grid-template-columns: 1fr; } }
.community-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.community-card-wide {
  background: var(--c-cream);
}
.community-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.community-card h3 {
  font-size: 1.7rem;
  margin: 0;
  color: var(--c-ink);
}
.community-card p {
  color: var(--c-ink-soft);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}
.community-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.community-list li {
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
  color: var(--c-ink);
  position: relative;
}
.community-list li:last-child { border-bottom: none; }
.community-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--c-accent);
}
.community-screen {
  margin-top: auto;
  padding-top: 8px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
}
.community-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

/* ============== BONUS MODULE — 24 rythmes ============== */
.bonus-section { background: var(--c-bg); position: relative; }
.bonus-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--c-line-strong);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
  opacity: 0.6;
}
.bonus-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 32px;
  position: relative;
}
.bonus-stamp {
  background: var(--c-accent-deep);
  color: var(--c-cream);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.2em;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
@media (max-width: 880px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bonus-grid { grid-template-columns: 1fr; } }
.bonus-cell {
  background: var(--c-bg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.25s;
}
.bonus-cell:hover { background: var(--c-bg-2); }
.bonus-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 24px;
}
.bonus-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--c-ink);
}
.bonus-foot {
  margin-top: 32px;
  text-align: center;
  position: relative;
}
.bonus-foot p {
  color: var(--c-ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============== RYTHMES — 15 planches grimoire ============== */
.rythmes-stage {
  position: relative;
  outline: none;
  max-width: 1100px;
  margin: 0 auto;
}
.rythmes-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
}
.rythmes-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--c-ink-soft);
}
.rythmes-counter strong {
  font-weight: 500;
  font-size: 28px;
  color: var(--c-accent-deep);
  font-style: normal;
  font-family: var(--font-display);
  line-height: 1;
}
.rythmes-counter-sep {
  color: var(--c-muted);
  font-size: 18px;
  margin: 0 2px;
}

.rythmes-page-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.rythmes-page {
  flex: 1;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.18),
    0 8px 24px rgba(0,0,0,0.10);
  background: var(--c-cream);
  animation: rythme-page-in 0.5s ease-out both;
}
.rythmes-page::after {
  /* gentle vignette so the parchment edges blend with bg */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(74, 50, 30, 0.08);
}
.rythmes-page img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1834 / 1024;
  object-fit: cover;
}
@keyframes rythme-page-in {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.rythmes-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  background: var(--c-cream);
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.rythmes-arrow:hover {
  background: var(--c-accent-deep);
  color: var(--c-cream);
  border-color: var(--c-accent-deep);
  transform: scale(1.05);
}

.rythmes-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 32px;
}
.rythmes-caption-elem {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.rythmes-caption-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--c-accent-deep);
  letter-spacing: -0.01em;
}

.rythmes-thumbs {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 8px;
  padding: 20px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
}
@media (max-width: 980px) { .rythmes-thumbs { grid-template-columns: repeat(8, 1fr); } }
@media (max-width: 600px) { .rythmes-thumbs { grid-template-columns: repeat(5, 1fr); } }
.rythmes-thumb {
  position: relative;
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1834 / 1024;
  transition: all 0.2s;
}
.rythmes-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.95);
  transition: filter 0.2s;
}
.rythmes-thumb:hover img {
  filter: saturate(1) brightness(1);
}
.rythmes-thumb.active {
  border-color: var(--c-accent-deep);
  box-shadow: 0 0 0 2px var(--c-accent-deep), 0 6px 16px rgba(0,0,0,0.12);
}
.rythmes-thumb.active img {
  filter: saturate(1) brightness(1);
}
.rythmes-thumb-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4px 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: linear-gradient(to top, rgba(40,28,18,0.85), transparent);
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rythmes-thumb:hover .rythmes-thumb-label,
.rythmes-thumb.active .rythmes-thumb-label {
  opacity: 1;
}

.rythmes-foot {
  margin-top: 36px;
  text-align: center;
}
.rythmes-foot p {
  color: var(--c-ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.6;
}
.rythmes-foot em {
  color: var(--c-accent-deep);
  font-style: italic;
}

@media (max-width: 720px) {
  .rythmes-arrow { width: 42px; height: 42px; }
  .rythmes-page-wrap { gap: 8px; }
}

/* Photo de groupe — section communauté */
.community-group-photo {
  width: 100%;
  margin: 0 0 56px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  aspect-ratio: 16/9;
  max-height: 560px;
}
.community-group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mosaïque de la tribu — section communauté */
.tribe-mosaic {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 14px;
  margin: 0 0 72px;
}
.tribe-photo {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  position: relative;
}
.tribe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.tribe-photo:hover img { transform: scale(1.04); }
.tribe-photo-feature { grid-column: 1; grid-row: 1 / span 2; }
.tribe-photo-tall    { grid-column: 3; grid-row: 1 / span 2; }
@media (max-width: 980px) {
  .tribe-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .tribe-photo-feature { grid-column: 1 / span 2; grid-row: 1; }
  .tribe-photo-tall    { grid-column: 2; grid-row: 2 / span 2; }
}
@media (max-width: 600px) {
  .tribe-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    grid-template-rows: none;
  }
  .tribe-photo-feature, .tribe-photo-tall { grid-column: 1; grid-row: auto; }
}
@media (max-width: 720px) {
  .community-group-photo { aspect-ratio: 4/3; }
}
