/* ============================================
   INCLUSIA — Design System
   Éditorial · Institutionnel · Futuriste
   ============================================ */

:root {
  /* Palette — inspired by INCLUSIA brand */
  --ink: #0A1628;              /* deep navy, primary text on light */
  --ink-2: #0F2540;            /* secondary navy */
  --night: #061222;            /* darkest background */
  --paper: #F5F1EA;            /* warm cream */
  --paper-2: #ECE5D9;          /* cream depth */
  --bone: #FBF8F2;             /* lightest */

  --turquoise: #3DD9C4;        /* signature accent */
  --turquoise-deep: #1F7A8C;
  --turquoise-glow: #5FF0DB;

  --blue: #1B5FB8;
  --blue-deep: #0E3A75;

  --gold: #C9A35C;
  --gold-bright: #E8C674;

  --line: rgba(10, 22, 40, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Motion */
  --ease: cubic-bezier(0.65, 0.05, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--turquoise); color: var(--night); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  padding: 0.85rem 2.5rem;
  background: rgba(245, 241, 234, 0.95);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.logo-text strong { font-weight: 600; color: var(--ink); }
.logo-text em { font-style: normal; color: var(--turquoise-deep); font-weight: 400; }

.nav__links {
  display: flex;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--turquoise-deep);
  transition: width 0.35s var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--turquoise-deep); }

.nav__cta {
  padding: 0.6rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--turquoise-deep);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .nav { padding: 1rem 1.25rem; }
  .nav__links { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--turquoise-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 122, 140, 0.3);
}
.btn--primary span { transition: transform 0.3s var(--ease); }
.btn--primary:hover span { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--night);
  font-weight: 600;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 163, 92, 0.4);
}

.btn--lg {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2.5rem 4rem;
  background: linear-gradient(135deg, var(--night) 0%, var(--ink-2) 50%, var(--turquoise-deep) 100%);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__photo {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.55;
  mix-blend-mode: luminosity;
  mask-image: linear-gradient(90deg, transparent, black 40%);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 40%);
  pointer-events: none;
  z-index: 1;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 217, 196, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 217, 196, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero > * { position: relative; z-index: 2; }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__dot {
  width: 4px; height: 4px;
  background: var(--turquoise);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero__title-1 {
  background: linear-gradient(180deg, #fff 0%, #B8E8DF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title-2 {
  font-size: 0.42em;
  line-height: 1;
  font-weight: 400;
  color: var(--turquoise);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.3em;
}
.year-2 { display: block; }
.year-6 { display: block; }

.hero__lede {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 620px;
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}
.hero__lede em {
  font-style: italic;
  color: var(--turquoise-glow);
}

.hero__theme {
  border-left: 2px solid var(--turquoise);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
  max-width: 780px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.75s forwards;
}
.hero__theme-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turquoise);
  display: block;
  margin-bottom: 0.5rem;
}
.hero__theme-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--paper);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}
.hero__actions .btn--primary {
  background: var(--turquoise);
  color: var(--night);
}
.hero__actions .btn--primary:hover {
  background: var(--turquoise-glow);
  box-shadow: 0 10px 40px rgba(61, 217, 196, 0.4);
}
.hero__actions .btn--ghost {
  color: var(--paper);
  border-color: rgba(245, 241, 234, 0.3);
}
.hero__actions .btn--ghost:hover {
  background: var(--paper);
  color: var(--night);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  display: block;
  color: var(--turquoise);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(245, 241, 234, 0.7);
  max-width: 200px;
}

@media (max-width: 760px) {
  .hero { padding: 7rem 1.25rem 3rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero__meta { flex-wrap: wrap; }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 30px; height: 100%;
  background: var(--turquoise-glow);
  animation: scroll-line 2.5s ease-in-out infinite;
}
@keyframes scroll-line {
  to { left: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTIONS — shared
   ============================================ */
.section-head {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  display: block;
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--turquoise); }
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
}
.section-title em {
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  padding: 8rem 0;
  background: var(--paper);
}

.pillars__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2.5rem 2rem;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--turquoise-deep), var(--turquoise));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--turquoise-deep);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 1rem 0 1rem;
  color: var(--ink);
}
.pillar p {
  font-size: 0.95rem;
  color: rgba(10, 22, 40, 0.7);
  line-height: 1.6;
}

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

/* ============================================
   THEMES
   ============================================ */
.themes {
  background: var(--night);
  color: var(--paper);
  padding: 8rem 0;
  position: relative;
}

.themes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(61, 217, 196, 0.1), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(27, 95, 184, 0.15), transparent 50%);
  pointer-events: none;
}

.themes__sticky {
  position: sticky;
  top: 5rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
  z-index: 2;
}
.themes__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.themes__title em {
  font-style: italic;
  color: var(--turquoise);
  font-weight: 400;
}

.themes__list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.theme {
  display: grid;
  grid-template-columns: 100px 1fr 1.5fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  transition: all 0.4s var(--ease);
  align-items: start;
}
.theme:hover {
  background: linear-gradient(90deg, rgba(61, 217, 196, 0.04), transparent);
}
.theme:last-child { border-bottom: 1px solid rgba(245, 241, 234, 0.12); }

.theme__index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--turquoise);
  letter-spacing: 0.1em;
}
.theme__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
}
.theme p {
  color: rgba(245, 241, 234, 0.75);
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.theme__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.theme__tags li {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(61, 217, 196, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--turquoise);
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .theme { grid-template-columns: 1fr; gap: 1rem; }
  .themes__sticky { position: static; }
}

/* ============================================
   FORMAT
   ============================================ */
.format {
  padding: 8rem 0;
  background: var(--paper-2);
}

.format__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.format__left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  margin-top: 1.25rem;
}
.format__left h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}
.lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(10, 22, 40, 0.65);
  margin-top: 2rem;
  max-width: 480px;
}

.format__list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.format__list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.format__list li:hover {
  padding-left: 1rem;
  color: var(--turquoise-deep);
}
.format__list li span {
  color: var(--turquoise-deep);
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .format__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   LEGACY 2025
   ============================================ */
.legacy {
  position: relative;
  padding: 8rem 2.5rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  overflow: hidden;
}

.legacy__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(201, 163, 92, 0.15), transparent 50%);
  pointer-events: none;
}

.legacy__content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}

.legacy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0 2rem;
  max-width: 900px;
}
.legacy h2 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.legacy > .legacy__content > p {
  font-size: 1.05rem;
  max-width: 720px;
  color: rgba(245, 241, 234, 0.8);
  margin-bottom: 3rem;
}

.legacy__numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 163, 92, 0.2);
  border-bottom: 1px solid rgba(201, 163, 92, 0.2);
}
.legacy__numbers > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legacy__numbers strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
}
.legacy__numbers span {
  font-size: 0.82rem;
  color: rgba(245, 241, 234, 0.6);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .legacy__numbers { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   PARTNERS
   ============================================ */
.partners {
  padding: 6rem 0;
  background: var(--paper);
  overflow: hidden;
}

.partners__marquee {
  margin-top: 2rem;
  position: relative;
}
.partners__marquee::before,
.partners__marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners__marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}
.partners__marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper), transparent);
}

.partners__track {
  display: flex;
  gap: 3rem;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.partners__track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(10, 22, 40, 0.5);
  padding: 0.5rem 1.5rem;
  border-left: 2px solid var(--turquoise-deep);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 10rem 2.5rem;
  background: var(--bone);
  text-align: center;
  position: relative;
}

.cta-final blockquote {
  max-width: 880px;
  margin: 0 auto 3rem;
}
.cta-final blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
}

.cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--night);
  color: var(--paper);
  padding: 5rem 2.5rem 2rem;
}

.footer__main {
  max-width: 1280px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 1rem 0;
}
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(245, 241, 234, 0.6);
  line-height: 1.55;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(61, 217, 196, 0.2);
}
.footer__col p,
.footer__col li {
  font-size: 0.88rem;
  color: rgba(245, 241, 234, 0.75);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--turquoise); }
.footer__col ul { list-style: none; }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245, 241, 234, 0.4);
}

@media (max-width: 900px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ============================================
   PAGE 2026 — Programme/Présentation
   ============================================ */
.page-hero {
  padding: 10rem 2.5rem 6rem;
  background: linear-gradient(180deg, var(--night) 0%, var(--ink-2) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero__crumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 2rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--turquoise);
}
.page-hero__sub {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 241, 234, 0.8);
  max-width: 700px;
}

.page-hero__details {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
}
.page-hero__details > div h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.75rem;
}
.page-hero__details > div p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
}

/* ============================================
   PROSE — long text
   ============================================ */
.prose {
  padding: 8rem 0;
  background: var(--paper);
}
.prose__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.prose__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 4rem 0 1.5rem;
  letter-spacing: -0.01em;
}
.prose__inner h2:first-child { margin-top: 0; }
.prose__inner h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
}

.prose__inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--ink-2);
}

.prose__inner p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(10, 22, 40, 0.85);
  margin-bottom: 1.25rem;
}

.prose__dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 5.5em;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  padding: 0.05em 0.12em 0 0;
  color: var(--turquoise-deep);
}

.prose__inner ul {
  margin: 1.5rem 0 2rem 1.25rem;
}
.prose__inner ul li {
  margin-bottom: 0.75rem;
  line-height: 1.65;
  color: rgba(10, 22, 40, 0.85);
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.prose__inner ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--turquoise-deep);
}

.pullquote {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--turquoise-deep);
  border-bottom: 1px solid var(--turquoise-deep);
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
}

/* ============================================
   OBJECTIVES grid
   ============================================ */
.objectives {
  padding: 8rem 0;
  background: var(--paper-2);
}
.objectives__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.objectives__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.objective {
  padding: 2.5rem;
  background: var(--bone);
  border-left: 3px solid var(--turquoise-deep);
  position: relative;
}
.objective h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ink);
}
.objective p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(10, 22, 40, 0.75);
}
.objective__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--turquoise-deep);
  opacity: 0.7;
}

@media (max-width: 760px) {
  .objectives__grid { grid-template-columns: 1fr; }
  .page-hero__details { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   SPONSORING PAGE
   ============================================ */
.sponsor-intro {
  padding: 8rem 2.5rem 4rem;
  background: var(--paper);
  text-align: center;
}
.sponsor-intro__inner {
  max-width: 880px;
  margin: 0 auto;
}
.sponsor-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 1rem 0 2rem;
}
.sponsor-intro h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
}
.sponsor-intro__lede {
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  color: rgba(10, 22, 40, 0.7);
}

.benefits {
  padding: 6rem 2.5rem;
  background: var(--paper-2);
}
.benefits__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.benefits__title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
}
.benefits__title h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
}
.benefits__list {
  list-style: none;
}
.benefits__list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.5rem;
  align-items: start;
  font-size: 1.05rem;
  line-height: 1.5;
}
.benefits__list li::before {
  content: '✦';
  color: var(--turquoise-deep);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
.benefits__list li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .benefits__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Sponsor packages */
.packages {
  padding: 8rem 2.5rem;
  background: var(--night);
  color: var(--paper);
}
.packages__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.packages__head {
  text-align: center;
  margin-bottom: 4rem;
}
.packages__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0;
}
.packages__head h2 em {
  font-style: italic;
  color: var(--turquoise);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.package {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: 8px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.package:hover {
  transform: translateY(-6px);
  border-color: var(--turquoise);
}

.package--gold {
  border: 1px solid rgba(232, 198, 116, 0.4);
  background: linear-gradient(180deg, rgba(232, 198, 116, 0.08), rgba(255,255,255,0.01));
}
.package--gold::before {
  content: 'RECOMMANDÉ';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-bright);
  color: var(--night);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-weight: 600;
}

.package--silver { border-color: rgba(220, 220, 220, 0.25); }
.package--bronze { border-color: rgba(201, 163, 92, 0.3); }

.package__tier {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.package--gold .package__tier { color: var(--gold-bright); }
.package--silver .package__tier { color: #C0C0C0; }
.package--bronze .package__tier { color: #CD7F32; }

.package__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.package__price-alt {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(245, 241, 234, 0.5);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}

.package__features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}
.package__features li {
  padding: 0.6rem 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(245, 241, 234, 0.85);
  display: flex;
  gap: 0.75rem;
  align-items: start;
}
.package__features li::before {
  content: '+';
  color: var(--turquoise);
  font-weight: 600;
  margin-top: 0.05rem;
}

.package__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.package--gold .package__cta {
  background: var(--gold-bright);
  color: var(--night);
}
.package--silver .package__cta,
.package--bronze .package__cta {
  background: transparent;
  border: 1px solid var(--paper);
  color: var(--paper);
}
.package--silver .package__cta:hover,
.package--bronze .package__cta:hover {
  background: var(--paper);
  color: var(--night);
}
.package--gold .package__cta:hover {
  background: var(--paper);
}

.package--donation {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.package--donation .package__price { font-size: 2rem; margin-bottom: 0; }
.package--donation .package__price-alt { margin: 0; padding: 0; border: none; }

@media (max-width: 900px) {
  .packages__grid { grid-template-columns: 1fr; }
  .package--donation { flex-direction: column; text-align: center; }
}

/* Impact section */
.impact {
  padding: 8rem 2.5rem;
  background: var(--paper);
}
.impact__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.impact__head { text-align: center; margin-bottom: 5rem; }
.impact__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0;
}
.impact__head h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
}
.impact__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(10, 22, 40, 0.6);
  margin-top: 1rem;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.impact-card {
  padding: 2.5rem 1.75rem;
  background: var(--bone);
  border-radius: 4px;
  border-top: 3px solid;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.impact-card:hover { transform: translateY(-4px); }
.impact-card--gold { border-top-color: var(--gold-bright); }
.impact-card--silver { border-top-color: #B8B8B8; }
.impact-card--bronze { border-top-color: #CD7F32; }
.impact-card--donation { border-top-color: var(--turquoise); }

.impact-card h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 0.75rem;
}
.impact-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.impact-card p {
  font-size: 0.9rem;
  color: rgba(10, 22, 40, 0.7);
  line-height: 1.5;
}

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

/* Budget section */
.budget {
  padding: 8rem 2.5rem;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.budget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(61, 217, 196, 0.12), transparent 60%);
}
.budget__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.budget__amount {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--turquoise);
  letter-spacing: -0.03em;
}
.budget__label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
  margin-top: 1rem;
}
.budget__right h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.budget__list { list-style: none; }
.budget__list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  font-size: 0.98rem;
  color: rgba(245, 241, 234, 0.85);
  display: flex;
  gap: 0.75rem;
}
.budget__list li::before {
  content: '→';
  color: var(--turquoise);
}

@media (max-width: 900px) {
  .budget__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
}

/* ============================================
   EDITION 2025 PAGE
   ============================================ */
.retro-hero {
  padding: 10rem 2.5rem 6rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.retro-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/retro-hero.jpg');
  background-size: cover;
  background-position: right center;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  mask-image: linear-gradient(90deg, transparent 0%, black 60%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 60%);
}
.retro-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(201, 163, 92, 0.15), transparent 50%);
}
.retro-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.retro-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin: 1.5rem 0;
}
.retro-hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.retro-hero__date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.retro-hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(245, 241, 234, 0.8);
  max-width: 700px;
  margin-bottom: 3rem;
}

.retro-numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 163, 92, 0.2);
}
.retro-numbers > div strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold-bright);
  display: block;
  line-height: 1;
}
.retro-numbers > div span {
  font-size: 0.82rem;
  color: rgba(245, 241, 234, 0.6);
}

@media (max-width: 760px) {
  .retro-numbers { grid-template-columns: 1fr 1fr; }
}

/* Patron section */
.patron {
  padding: 8rem 2.5rem;
  background: var(--paper);
}
.patron__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.patron__visual {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  background-image: url('images/patronne-kandia.jpg');
  background-size: cover;
  background-position: center top;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 2rem;
}
.patron__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.7));
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  line-height: 1;
}
.patron__visual-tag {
  position: relative;
  z-index: 2;
  background: var(--gold-bright);
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

.patron__content .eyebrow--gold { color: var(--gold); }
.patron__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.patron__content p {
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: rgba(10, 22, 40, 0.8);
}
.patron__role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--turquoise-deep);
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .patron__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Speakers grid */
.speakers {
  padding: 8rem 2.5rem;
  background: var(--paper-2);
}
.speakers__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.speakers__head {
  text-align: center;
  margin-bottom: 4rem;
}
.speakers__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0;
}
.speakers__head h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.speaker {
  background: var(--bone);
  padding: 1.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  border-top: 2px solid transparent;
}
.speaker:hover {
  transform: translateY(-3px);
  border-top-color: var(--turquoise-deep);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
}
.speaker__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.speaker__role {
  font-size: 0.85rem;
  color: rgba(10, 22, 40, 0.65);
  line-height: 1.4;
}
.speaker__badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--turquoise-deep);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

@media (max-width: 1000px) { .speakers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .speakers__grid { grid-template-columns: 1fr; } }

/* Program section */
.program {
  padding: 8rem 2.5rem;
  background: var(--paper);
}
.program__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.program__head { margin-bottom: 4rem; }
.program__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0;
}
.program__head h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
}

.program-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.program-block:last-child { border-bottom: 1px solid var(--line); }
.program-block__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}
.program-block__title em {
  font-style: italic;
  color: var(--turquoise-deep);
  display: block;
  font-size: 0.75em;
  margin-top: 0.5rem;
  font-weight: 400;
}

.program-list {
  list-style: none;
}
.program-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.program-list li time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--turquoise-deep);
  font-weight: 500;
}
.program-list li strong { font-weight: 600; }

@media (max-width: 760px) {
  .program-block { grid-template-columns: 1fr; gap: 1rem; }
  .program-list li { grid-template-columns: 60px 1fr; gap: 1rem; }
}

/* Awards */
.awards {
  padding: 8rem 2.5rem;
  background: var(--night);
  color: var(--paper);
}
.awards__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.awards__head {
  text-align: center;
  margin-bottom: 4rem;
}
.awards__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0;
}
.awards__head h2 em {
  font-style: italic;
  color: var(--gold-bright);
}

.awards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.award {
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, rgba(201, 163, 92, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(201, 163, 92, 0.15);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}
.award:hover {
  border-color: var(--gold-bright);
  transform: translateY(-3px);
}
.award__category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  display: block;
}
.award__winner {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.award__about {
  font-size: 0.88rem;
  color: rgba(245, 241, 234, 0.7);
  line-height: 1.5;
}

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

/* Testimonials */
.testimonials {
  padding: 8rem 2.5rem;
  background: var(--paper);
}
.testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials__head { text-align: center; margin-bottom: 4rem; }
.testimonials__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}
.testimonials__head h2 em {
  font-style: italic;
  color: var(--turquoise-deep);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  padding: 2.5rem 2rem;
  background: var(--bone);
  border-radius: 4px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(31, 122, 140, 0.15);
  line-height: 1;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.testimonial__author {
  font-size: 0.85rem;
  color: var(--turquoise-deep);
  font-weight: 500;
}

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

/* Flagship project */
.flagship {
  padding: 8rem 2.5rem;
  background: linear-gradient(135deg, var(--turquoise-deep) 0%, var(--blue-deep) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.flagship__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.flagship__visual {
  aspect-ratio: 4/3;
  background: var(--bone);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flagship__visual svg { width: 70%; max-width: 280px; }

.flagship__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}
.flagship__content h2 em {
  font-style: italic;
  color: var(--turquoise-glow);
}
.flagship__content p {
  font-size: 1rem;
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.flagship__list {
  list-style: none;
  margin-top: 1.5rem;
}
.flagship__list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  gap: 0.75rem;
}
.flagship__list li::before {
  content: '◆';
  color: var(--turquoise-glow);
  font-size: 0.7rem;
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .flagship__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   SPONSORING — TABS (Europe / International)
   ============================================ */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab {
  position: relative;
  padding: 1.1rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.15);
  border-radius: 100px;
  color: rgba(245, 241, 234, 0.7);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 220px;
}

.tab:hover {
  border-color: var(--turquoise);
  color: var(--paper);
  transform: translateY(-2px);
}

.tab--active {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--night);
  box-shadow: 0 10px 30px rgba(61, 217, 196, 0.25);
}

.tab--active:hover {
  background: var(--turquoise-glow);
  transform: translateY(-2px);
}

.tab__label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.tab__sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Tab panels */
.tab-panel {
  display: none;
  animation: panelFade 0.5s var(--ease-out);
}

.tab-panel--active {
  display: block;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.packages__note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(245, 241, 234, 0.4);
}

/* ============================================
   PACKAGE — DIAMOND (offre signature International)
   ============================================ */
.package--diamond {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  padding: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  border: 1.5px solid rgba(184, 197, 214, 0.4);
  background:
    linear-gradient(135deg, rgba(184, 197, 214, 0.08) 0%, rgba(255, 255, 255, 0.02) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: 8px;
  position: relative;
  overflow: visible;
  transition: all 0.4s var(--ease);
}

.package--diamond::before {
  content: 'OFFRE SIGNATURE';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E8E8F0, #B8C5D6);
  color: var(--night);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-weight: 600;
}

.package--diamond::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184, 197, 214, 0.15), transparent 70%);
  pointer-events: none;
}

.package--diamond:hover {
  transform: translateY(-4px);
  border-color: #E8E8F0;
}

.package--diamond .package__tier {
  color: #E8E8F0;
}

.package--diamond .package__price {
  font-size: 2.6rem;
  line-height: 1.1;
}

.package__currency {
  font-size: 0.55em;
  font-weight: 400;
  color: rgba(245, 241, 234, 0.6);
  margin-left: 0.25rem;
}

.package__diamond-left {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.package__diamond-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
  color: rgba(245, 241, 234, 0.75);
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.package__diamond-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.package__section h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.85rem;
  font-weight: 500;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(61, 217, 196, 0.18);
}

.package--diamond .package__section h5 {
  color: #C8D2E0;
  border-bottom-color: rgba(200, 210, 224, 0.2);
}

.package__cta--diamond {
  background: linear-gradient(135deg, #E8E8F0, #B8C5D6) !important;
  color: var(--night) !important;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}

.package__cta--diamond:hover {
  background: linear-gradient(135deg, #FFFFFF, #D8E0EC) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184, 197, 214, 0.3);
}

/* International grid : Or + Bronze + Dons */
.packages__grid--intl {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.packages__grid--intl .package--donation-intl {
  grid-column: 1 / -1;
}

/* Hide "RECOMMANDÉ" badge in international grid since Diamond is the signature */
.packages__grid--intl .package--gold::before {
  content: none;
}

.package__features--compact li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .package--diamond {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.75rem;
  }
  .packages__grid--intl { grid-template-columns: 1fr; }
  .tab { min-width: 0; flex: 1; padding: 0.85rem 1rem; }
}

/* ============================================
   GALLERY — photo grid for retrospective
   ============================================ */
.gallery {
  padding: 8rem 2.5rem;
  background: var(--ink);
  color: var(--paper);
}

.gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery__head {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0;
}
.gallery__head h2 em {
  font-style: italic;
  color: var(--gold-bright);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery__item {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.5));
  transition: opacity 0.3s var(--ease);
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery__item-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}

.gallery--g1 { background-image: url('images/gallery-1.jpg'); }
.gallery--g2 { background-image: url('images/gallery-2.jpg'); }
.gallery--g3 { background-image: url('images/gallery-3.jpg'); }
.gallery--g4 { background-image: url('images/gallery-4.jpg'); }

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

/* ============================================
   FONDATRICE — photo treatment
   ============================================ */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-photo {
  aspect-ratio: 3/4;
  background-image: url('images/fondatrice-mariame.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .founder-block { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo { max-width: 360px; aspect-ratio: 3/4; }
}

/* ============================================
   HERO PHOTOS for page heroes
   ============================================ */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero__photo {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  mask-image: linear-gradient(90deg, transparent, black 50%);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 50%);
  pointer-events: none;
  z-index: 1;
}
.page-hero__photo--2026 {
  background-image: url('images/pres-2026-hero.jpg');
}

/* ============================================
   PAGE PROJETS (Bus + CDI)
   ============================================ */
.project {
  padding: 8rem 2.5rem;
  background: var(--paper);
}

.project--cdi {
  background: var(--paper-2);
}

.project__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.project__intro {
  max-width: 880px;
  margin: 0 auto 5rem;
  text-align: center;
}

.project__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}

.project__title em {
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}

.project__lede {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(10, 22, 40, 0.7);
  line-height: 1.5;
}

.project__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.project__grid--reverse .project__visual {
  order: 2;
}

.project__visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--turquoise-deep) 0%, var(--blue-deep) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.project__visual--cdi {
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--turquoise-deep) 100%);
}

.project__visual svg {
  width: 85%;
  max-width: 420px;
}

.project__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
  color: var(--ink);
}

.project__content h3:first-child { margin-top: 0; }

.project__subtitle {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
  font-weight: 500;
  color: var(--ink);
}

.project__content p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(10, 22, 40, 0.8);
  margin-bottom: 1.5rem;
}

.project__list {
  list-style: none;
  margin: 1rem 0;
}

.project__list li {
  padding: 0.8rem 0 0.8rem 1.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(10, 22, 40, 0.85);
}

.project__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.85rem;
  color: var(--turquoise-deep);
  font-size: 0.7rem;
}

.project__list li:last-child { border-bottom: none; }

/* Impact metrics */
.project__impact {
  background: var(--bone);
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 5rem;
  border-left: 3px solid var(--turquoise-deep);
}

.project__impact h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--ink);
}

.project__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  color: var(--turquoise-deep);
}

.metric__label {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(10, 22, 40, 0.7);
}

.metric__label strong {
  color: var(--ink);
  font-weight: 600;
}

/* Pourquoi block */
.project__why {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.project__why h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
  color: var(--ink);
}

.project__why h3 em {
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}

.project__why p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(10, 22, 40, 0.7);
}

/* Project divider */
.project-divider {
  padding: 4rem 2.5rem;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.project-divider__line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise-deep), transparent);
}

.project-divider__label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--turquoise-deep);
}

/* Responsive */
@media (max-width: 900px) {
  .project__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .project__grid--reverse .project__visual {
    order: 0;
  }
  .project__metrics {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .project__impact {
    padding: 2rem 1.5rem;
  }
}
