/* ─── Boscoville 25 ans — Design tokens ─── */
:root {
  --navy:     #25285B;
  --navy-dk:  #1a1d42;
  --coral:    #F1584C;
  --coral-lt: #ff7a6f;
  --peach:    #FDDED3;
  --lavender: #E1DFE5;
  --gold:     #FFD166;
  --gray:     #585858;
  --gray-lt:  #8a8a8a;
  --white:    #ffffff;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: auto; /* GSAP handles scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray);
  background: var(--navy-dk);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, h4, .section-title, .nav-links a, .btn {
  font-family: 'Montserrat', sans-serif;
}

img { max-width: 100%; height: auto; display: block; }

.nav-logo img,
.footer-logo,
.preloader-logo img {
  width: auto;
  max-width: none;
  object-fit: contain;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section-pad { padding: clamp(80px, 12vw, 160px) 0; }

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.section-tag.light { color: var(--peach); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.section-title em {
  font-style: normal;
  color: var(--coral);
}

/* ─── Custom cursor ─── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--coral);
}

.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(241, 88, 76, .5);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--coral);
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo img {
  height: 72px;
  filter: brightness(0) invert(1);
  margin: 0 auto 40px;
}

.preloader-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.preloader-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
}

.preloader-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .15em;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 3px;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px clamp(24px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}

.nav.scrolled {
  background: rgba(37, 40, 91, .92);
  backdrop-filter: blur(16px);
  padding: 14px clamp(24px, 5vw, 60px);
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
}

.nav-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  opacity: 1 !important;
}

.nav-cta:hover { background: var(--coral-lt) !important; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .25s;
  transform-origin: center;
}

.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(26, 29, 66, 0.55);
  opacity: 0;
  cursor: pointer;
  transition: opacity .35s var(--ease-out);
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  padding: 88px 28px 32px;
  background: rgba(26, 29, 66, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color .2s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible {
  color: var(--white);
}

.mobile-menu-cta {
  margin-top: 20px;
  text-align: center;
  background: var(--coral) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 16px 24px !important;
  border-bottom: none !important;
}

.mobile-menu-cta:hover {
  background: var(--coral-lt) !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(241, 88, 76, .35);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(241, 88, 76, .5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
}

.btn-lg { padding: 18px 40px; font-size: .9rem; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px clamp(24px, 5vw, 60px) 80px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  z-index: 1;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}

.orb-1 {
  width: 600px; height: 600px;
  top: -15%; right: -10%;
  background: radial-gradient(circle, rgba(241,88,76,.25) 0%, transparent 70%);
}

.orb-2 {
  width: 500px; height: 500px;
  bottom: -20%; left: -12%;
  background: radial-gradient(circle, rgba(255,209,102,.12) 0%, transparent 70%);
}

.orb-3 {
  width: 350px; height: 350px;
  top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(225,223,229,.08) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  visibility: hidden;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}

.hero-number-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  padding: 0 0.12em;
  overflow: visible;
}

.hero-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-block;
  padding-right: 0.06em;
  background: linear-gradient(135deg, var(--white) 0%, var(--coral) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.hero-number-shadow {
  position: absolute;
  inset: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  padding-right: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  transform: translate(4px, 8px);
  z-index: 0;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title .accent { color: var(--coral); }

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}

.scroll-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: translateY(-100%);
}

.hero-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title.light { color: var(--white); }
.section-title.light em { color: var(--coral); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-desc {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* ─── Vision ─── */
.vision {
  background: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.vision-lead {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray);
}

.objectives-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.objective-item {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: var(--peach);
  border-radius: 20px;
  align-items: flex-start;
}

.obj-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
}

.objective-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.objective-item p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
}

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

/* ─── Axes ─── */
.axes {
  background: var(--navy);
}

.axes .amp {
  color: var(--coral);
  font-weight: 400;
}

.axes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.axis-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 40px 36px;
  transform-style: preserve-3d;
}

.axis-leadership { border-top: 3px solid var(--gold); }
.axis-expertise { border-top: 3px solid var(--coral); }

.axis-icon {
  font-size: 1.2rem;
  color: var(--coral);
  margin-bottom: 16px;
}

.axis-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.axis-intro {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.axis-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.axis-card li {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  padding: 8px 0 8px 20px;
  position: relative;
  line-height: 1.5;
}

.axis-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  transform: translateY(-50%);
}

.axis-volets { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}

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

/* ─── Volets ─── */
.volets { background: var(--peach); }

.volets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.volet-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  border-left: 4px solid var(--card-color, var(--coral));
  box-shadow: 0 8px 32px rgba(37,40,91,.06);
  transform-style: preserve-3d;
}

.volet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.volet-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(37,40,91,.08);
  line-height: 1;
}

.volet-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }

.badge {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
}

.badge-exp { background: rgba(241,88,76,.12); color: var(--coral); }
.badge-lead { background: rgba(255,209,102,.25); color: #b8860b; }
.badge-trans { background: rgba(123,104,238,.15); color: #7B68EE; }

.volet-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.volet-card h3 .optional {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-lt);
}

.volet-card > p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.volet-schedule {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(37,40,91,.08);
}

.volet-schedule div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  font-size: .82rem;
}

.volet-schedule dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.volet-schedule dd { color: var(--gray); margin: 0; }

.volet-impact {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--coral);
}

@media (max-width: 768px) {
  .volets-grid { grid-template-columns: 1fr; }
  .volet-schedule div { grid-template-columns: 1fr; gap: 4px; }
}

/* ─── Phasage horizontal ─── */
.phasage-section {
  background: var(--navy-dk);
  overflow: hidden;
}

.phasage-pin {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 48px;
}

.phasage-header { margin-bottom: 40px; }
.phasage-header .section-tag { color: var(--gold); }
.phasage-sub {
  margin-top: 12px;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
}

.phasage-track-wrap {
  overflow: hidden;
  padding-left: clamp(24px, 5vw, 60px);
}

.phasage-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-right: clamp(24px, 5vw, 60px);
}

.phase-card {
  flex: 0 0 clamp(300px, 30vw, 360px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 36px 30px;
}

.phase-highlight {
  background: linear-gradient(135deg, rgba(241,88,76,.12), rgba(255,209,102,.08));
  border-color: rgba(241,88,76,.3);
}

.phase-period {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.phase-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.phase-card > p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  line-height: 1.6;
}

.phase-card ul {
  list-style: none;
}

.phase-card li {
  font-size: .84rem;
  color: rgba(255,255,255,.7);
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.5;
}

.phase-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: .75rem;
}

.phasage-progress {
  margin-top: 36px;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}

.phasage-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}

/* ─── Pillars ─── */
.pillars { background: var(--white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--lavender);
}

.pillar-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(37,40,91,.1);
  display: block;
  margin-bottom: 12px;
}

.pillar-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.6;
}

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

/* ─── Audiences ─── */
.audiences {
  background: var(--navy);
}

.audience-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.aud-tab {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: transparent;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .3s;
}

.aud-tab.active,
.aud-tab:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.aud-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: none;
}

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

.aud-panel blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.35;
}

.aud-panel ul {
  list-style: none;
  text-align: left;
}

.aud-panel li {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  line-height: 1.6;
}

.aud-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ─── Principles ─── */
.principles {
  background: linear-gradient(180deg, var(--navy-dk) 0%, var(--navy) 100%);
  text-align: center;
}

.principles .manifesto-text { margin-bottom: 32px; }

.principles-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.principles-row span {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
}

/* ─── Manifesto (shared) ─── */
.manifesto {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dk) 100%);
  position: relative;
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 6vw, 56px);
}

.manifesto-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-text .rt-line {
  display: block;
  overflow: hidden;
}

.manifesto-text .rt-accent {
  color: var(--coral);
}

.manifesto-note {
  margin-top: 28px;
  text-align: center;
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.teaser { background: var(--peach); }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.teaser-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px;
  border-top: 4px solid var(--card-color, var(--coral));
  box-shadow: 0 8px 32px rgba(37, 40, 91, 0.06);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(37, 40, 91, 0.1);
}

.teaser-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--card-color, var(--coral));
  margin-bottom: 20px;
}

.teaser-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.teaser-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
}

.teaser-when {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 12px;
}

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

/* ─── Why ─── */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.why-lead {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  padding: 24px 26px;
  border-radius: 20px;
  background: var(--navy);
  border-left: 4px solid var(--coral);
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.why-item p {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

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

/* ─── Community map (lite) ─── */
.community {
  background: linear-gradient(180deg, var(--lavender) 0%, var(--white) 100%);
}

.community-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.community-lead {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.community-stat {
  padding: 22px 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(37, 40, 91, 0.08);
  text-align: center;
  box-shadow: 0 8px 24px rgba(37, 40, 91, 0.06);
}

.community-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.community-stat span {
  display: block;
  margin-top: 10px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-lt);
  line-height: 1.35;
}

.community-map-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(37, 40, 91, 0.1);
  box-shadow: 0 20px 50px rgba(37, 40, 91, 0.12);
  background: var(--white);
}

.community-map-recenter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1000;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(37, 40, 91, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 40, 91, 0.12);
  transition: background .2s, border-color .2s;
}

.community-map-recenter:hover {
  background: var(--peach);
  border-color: var(--coral);
}

.community-map-recenter:focus-visible {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(241, 88, 76, 0.14);
}

.community-map {
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  background: #eef0f8;
}

.community-caption {
  margin-top: 14px;
  text-align: center;
  font-size: .78rem;
  color: var(--gray-lt);
}

.cm-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  margin: 0;
  color: var(--gray);
  font-size: .9rem;
}

.cm-marker {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(37, 40, 91, 0.28);
  background: var(--navy);
}

.cm-marker--region { background: var(--coral); }

.cm-marker span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 5px;
  border-radius: 50%;
  background: #fff;
}

.cm-cluster-wrap { background: transparent; }

.cm-cluster {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 40, 91, 0.92);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 6px 18px rgba(37, 40, 91, 0.35);
  border: 2px solid #fff;
}

.cm-popup-wrap .leaflet-popup-content-wrapper {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(37, 40, 91, 0.18);
}

.cm-popup strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.cm-popup span {
  display: block;
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.4;
}

.leaflet-container { font-family: 'Poppins', sans-serif; }

@media (max-width: 640px) {
  .community-stats { grid-template-columns: 1fr; }
}

/* ─── Journey ─── */
.journey {
  background: var(--navy);
}

.section-desc.light { color: rgba(255, 255, 255, 0.55); }

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  padding-top: 18px;
  isolation: isolate;
}

.journey-track::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.journey-step {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 28px 22px;
  background: color-mix(in srgb, var(--white) 6%, var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  box-shadow: 0 0 0 4px var(--navy);
  z-index: 2;
}

.journey-step-highlight {
  background: color-mix(in srgb, var(--coral) 16%, var(--navy));
  border-color: rgba(241, 88, 76, 0.25);
}

.journey-step-highlight::before {
  width: 12px;
  height: 12px;
  top: -20px;
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--navy), 0 0 12px rgba(241, 88, 76, 0.45);
}

.journey-when {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.journey-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.journey-step p {
  font-size: .84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .journey-track { grid-template-columns: 1fr 1fr; }
  .journey-track::before { display: none; }
}

@media (max-width: 540px) {
  .journey-track { grid-template-columns: 1fr; }
}

/* ─── Together ─── */
.together {
  background: linear-gradient(180deg, var(--lavender) 0%, var(--peach) 100%);
}

.together-inner { max-width: 900px; margin: 0 auto; }

.together-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.45;
  margin-bottom: 48px;
  font-style: italic;
}

.together-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.together-cols h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.together-cols p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .together-cols { grid-template-columns: 1fr; gap: 28px; }
}

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

/* legacy sections removed — see volets, phasage, pillars */

/* ─── Marquee ─── */
.marquee-section {
  background: var(--navy);
  padding: 28px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
}

.marquee-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: rgba(255,255,255,.15);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  color: var(--coral);
  opacity: .4;
  font-size: .8rem;
}

/* quote section removed */

/* ─── Celebration ─── */
.celebration {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}

.celebration-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(241,88,76,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255,209,102,.1) 0%, transparent 60%);
}

.confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.celebration-content {
  position: relative;
  z-index: 2;
}

.celebration-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}

.ct-line { display: block; overflow: hidden; }
.ct-big { color: var(--coral); font-size: 1.15em; }

.celebration-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 48px;
}

.celebration-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.form-row input {
  flex: 1;
  padding: 16px 22px;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .3s, background .3s;
}

.form-row input::placeholder { color: rgba(255,255,255,.35); }

.form-row input:focus {
  border-color: var(--coral);
  background: rgba(255,255,255,.1);
}

.form-success {
  margin-top: 24px;
  color: var(--gold);
  font-weight: 500;
}

.form-error {
  margin-top: 16px;
  color: #ffb4ae;
  font-size: .9rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.celebration-form button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 540px) {
  .form-row { flex-direction: column; }
}

/* ─── Footer ─── */
.footer {
  background: var(--navy-dk);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-inner p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .82rem;
  transition: color .25s;
}

.footer-links a:hover { color: var(--coral); }

/* ─── GSAP helpers ─── */
.split-char {
  display: inline-block;
  will-change: transform, opacity;
}

.char-space { width: .3em; }

.reveal-text .rt-line > span {
  display: inline-block;
}

/* removed broken rule that hid manifesto wrappers and caused empty white gap */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
