/* ================================================================
   BUSINESS IVOIRE USA 2026 — Site institutionnel
   Pattern : FIFA Hospitality Experiences
   ================================================================ */

:root {
  --ink: #0a0a0a;
  --ink-soft: #14172a;
  --white: #ffffff;
  --bg: #faf7f0;
  --bg-alt: #ffffff;
  --bg-dark: #0a0a0a;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.16);
  --line-dark: rgba(255, 255, 255, 0.1);
  --muted: #6b6f7e;
  --muted-light: rgba(255, 255, 255, 0.6);
  --gold: #ab873f;
  --gold-light: #c9a968;
  --gold-bright: #e0b96a;
  --forest: #1a4644;
  --ci-orange: #ff8200;
  --us-blue: #3c3b6e;

  --font:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;

  --container: 1400px;
  --container-narrow: 1080px;
  --gutter: 28px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shadow-xs: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-sm: 0 4px 16px rgba(10, 10, 10, 0.06);
  --shadow-md: 0 12px 36px rgba(10, 10, 10, 0.1);
  --shadow-lg: 0 28px 70px rgba(10, 10, 10, 0.18);
  --shadow-xl: 0 40px 100px rgba(10, 10, 10, 0.28);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
input,
select,
textarea {
  font: inherit;
}
ul {
  list-style: none;
}

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar__sep {
  color: rgba(255, 255, 255, 0.28);
  margin: 0 0.35em;
  font-weight: 400;
}
.topbar__countdown {
  display: inline-flex;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.topbar__countdown [data-countdown-days],
.topbar__countdown [data-countdown-days-en] {
  display: inline-block;
  min-width: 1.4ch;
  font-variant-numeric: tabular-nums;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0 0.25em;
}
.topbar__lang {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.topbar__lang button {
  color: rgba(255, 255, 255, 0.42);
  padding: 0;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.topbar__lang button.is-active,
.topbar__lang button:hover {
  color: #fff;
}
.topbar__lang-sep {
  color: rgba(255, 255, 255, 0.18);
  font-weight: 300;
}

@media (max-width: 768px) {
  .topbar__inner {
    padding: 8px var(--gutter);
    font-size: 11px;
  }
  .topbar__left .lang-fr,
  .topbar__left .lang-en {
    font-size: 10px;
  }
  .topbar__left span:not(.topbar__dot) {
    display: none;
  }
  .topbar__countdown {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
  .topbar__countdown .lang-fr,
  .topbar__countdown .lang-en {
    /* Trim wording for narrow screens */
    font-size: inherit;
  }
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
  margin-bottom: -160px;
}

.header.is-light {
  background: transparent;
}
.header.is-scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}

.header.is-light .nav__link {
  color: #fff;
}
.header.is-light .nav__link:hover {
  color: var(--gold-light);
}
.header.is-light .nav__toggle span {
  background: #fff;
}
.header.is-light .header__logo img {
  filter: none;
}
.header.is-scrolled.is-light .nav__link {
  color: var(--ink);
}
.header.is-scrolled.is-light .nav__toggle span {
  background: var(--ink);
}
.header.is-scrolled.is-light .header__logo img {
  filter: none;
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__logo {
  display: inline-block;
  position: relative;
  height: 88px;
  line-height: 0;
}
.header__logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: opacity 0.35s var(--ease);
}
.header__logo-img--dark {
  position: relative;
  opacity: 1;
}
.header__logo-img--light {
  position: absolute;
  inset: 0;
  height: 100%;
  width: auto;
  opacity: 0;
  pointer-events: none;
}
.header.is-light .header__logo-img--dark {
  opacity: 0;
}
.header.is-light .header__logo-img--light {
  opacity: 1;
}
@media (max-width: 768px) {
  .header__logo {
    height: 64px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav__link:hover {
  color: #fff;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover::after {
  transform: scaleX(1);
}

.header.is-scrolled .nav__link {
  color: var(--ink);
}
.header.is-scrolled .nav__link:hover {
  color: var(--gold);
}
.header.is-scrolled .nav__link::after {
  background: var(--gold);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 220, 160, 0.95);
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 220, 160, 0.42);
  border-radius: 0;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.header__cta:hover {
  background: rgba(255, 220, 160, 0.95);
  color: var(--ink);
  border-color: rgba(255, 220, 160, 0.95);
}
.header.is-scrolled .header__cta {
  color: var(--gold);
  border-color: rgba(171, 135, 63, 0.5);
}
.header.is-scrolled .header__cta:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-md);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

@media (max-width: 1024px) {
  .nav,
  .header__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .header.is-open {
    background: var(--bg);
  }
  .header.is-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 28px var(--gutter) 32px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .header.is-open .header__cta {
    display: inline-flex;
    margin: 12px var(--gutter) 0;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: var(--gutter);
    right: var(--gutter);
    margin-top: 220px;
  }
}

/* ================================================================
   HERO — Full screen earth-bg + caption center-left
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background layer */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  animation: hero-ken-burns 32s ease-in-out infinite;
  transform-origin: 60% 50%;
}

@keyframes hero-ken-burns {
  0%,
  100% {
    transform: scale(1.06) translate(0, 0);
  }
  50% {
    transform: scale(1.13) translate(-1.4%, -0.8%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-img {
    animation: none;
  }
}

.hero__bg-mobile {
  display: none;
}
.hero__bg-mobile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* override global lang-en display:none for bg images */
  display: block !important;
}
/* hide the non-active lang img inside mobile bg */
html[lang="en"] .hero__bg-mobile img.lang-fr {
  display: none !important;
}
html:not([lang="en"]) .hero__bg-mobile img.lang-en {
  display: none !important;
}

@media (max-width: 768px) {
  /* Mobile uses the pure earth-bg too — no double branding overlay */
  .hero__bg-img {
    object-position: 65% center;
  }
  .hero__bg-mobile {
    display: none !important;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 38%,
      rgba(0, 0, 0, 0.12) 65%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0) 22%,
      rgba(0, 0, 0, 0) 58%,
      rgba(10, 10, 10, 0.72) 100%
    );
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.15) 30%,
      rgba(0, 0, 0, 0.15) 55%,
      rgba(10, 10, 10, 0.85) 100%
    );
  }
}

/* Inner layout */
.hero__inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 140px var(--gutter) 80px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}

/* Caption */
.hero__caption {
  max-width: 680px;
  color: #fff;
  flex-shrink: 0;
}

.hero__caption .eyebrow {
  color: var(--gold-light);
  margin-bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
}
.hero__caption .eyebrow::before {
  background: var(--gold-light);
}

.hero__caption h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero__caption h1 em {
  font-style: normal;
  background: linear-gradient(
    135deg,
    var(--gold-bright) 0%,
    var(--gold-light) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 40px;
}

/* Hero CTAs — ALL CAPS, 56px height */
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn--hero-primary {
  background: #fff;
  color: var(--ink);
  padding: 18px 32px;
  height: 56px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn--hero-primary::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.btn--hero-primary:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--hero-primary:hover::after {
  transform: translateX(4px);
}

/* Ghost CTA on hero */
.hero__ctas .btn--ghost {
  height: 56px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

/* Save the date floating card */
.hero__savedate {
  flex-shrink: 0;
  max-width: 420px;
  width: 30vw;
  min-width: 260px;
  border: 1px solid rgba(201, 169, 104, 0.35);
  border-radius: var(--r-md);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: savedate-in 0.9s 0.5s var(--ease-out) forwards;
  align-self: flex-end;
}
.hero__savedate img {
  width: 100%;
  height: auto;
  display: none;
}
html:not([lang="en"]) .hero__savedate img.lang-fr {
  display: block;
}
html[lang="en"] .hero__savedate img.lang-en {
  display: block;
}
@keyframes savedate-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero__savedate {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 92dvh;
  }
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 100px var(--gutter) 48px;
    gap: 0;
  }
  .hero__caption h1 {
    font-size: clamp(38px, 10vw, 58px);
  }
}

/* ================================================================
   KPI STATS BANNER — Africa CEO Forum pattern
   ================================================================ */
.stats-banner {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stats-banner__item {
  padding: 60px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s var(--ease);
  cursor: default;
}
.stats-banner__item:last-child {
  border-right: 0;
}
.stats-banner__item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stats-banner__num {
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
  display: block;
}
.stats-banner__num sup {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--gold-light);
  vertical-align: super;
  letter-spacing: 0;
}

.stats-banner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .stats-banner__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-banner__item:nth-child(3) {
    border-right: 0;
  }
  .stats-banner__item:nth-child(4),
  .stats-banner__item:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}
@media (max-width: 600px) {
  .stats-banner__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-banner__item {
    padding: 40px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 0;
  }
  .stats-banner__item:nth-child(2n) {
    border-right: 0;
  }
  .stats-banner__item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stats-banner__item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stats-banner__item:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .stats-banner__num {
    font-size: clamp(44px, 12vw, 60px);
  }
}

/* ================================================================
   HOTEL SEARCHBAR — FIFA hospitality style (section hébergement)
   ================================================================ */
.hotel-searchbar {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--line);
}

.hotel-searchbar__fields {
  display: flex;
  flex: 1;
  align-items: stretch;
  min-width: 0;
}

.hotel-searchbar__field {
  flex: 1;
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s var(--ease);
  min-width: 0;
}
.hotel-searchbar__field:hover {
  background: rgba(171, 135, 63, 0.04);
}

.hotel-searchbar__sep {
  width: 1px;
  background: var(--line);
  margin: 10px 0;
  flex-shrink: 0;
}

.hotel-searchbar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hotel-searchbar__field input,
.hotel-searchbar__field select {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  appearance: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}
.hotel-searchbar__field select {
  padding-right: 16px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 10px) center,
    calc(100% - 4px) center;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.hotel-searchbar__cta {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 32px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  transition:
    background 0.25s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  margin-left: 8px;
}
.hotel-searchbar__cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 960px) {
  .hotel-searchbar {
    flex-direction: column;
    border-radius: var(--r-lg);
  }
  .hotel-searchbar__fields {
    flex-direction: column;
  }
  .hotel-searchbar__sep {
    width: auto;
    height: 1px;
    margin: 0 10px;
  }
  .hotel-searchbar__field {
    padding: 14px 18px;
  }
  .hotel-searchbar__cta {
    margin-left: 0;
    margin-top: 8px;
    padding: 18px 24px;
    border-radius: 10px;
    justify-content: center;
  }
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
  padding: 140px 0;
  position: relative;
}
.section--alt {
  background: var(--bg-alt);
}
.section--ink {
  background: var(--bg-dark);
  color: #fff;
}
.section--first {
  padding-top: 140px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section--ink .eyebrow {
  color: var(--gold-light);
}
.section--ink .eyebrow::before {
  background: var(--gold-light);
}

.section__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 980px;
}

.section__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 720px;
}
.section--ink .section__lede {
  color: rgba(255, 255, 255, 0.7);
}

.section__head {
  margin-bottom: 80px;
}
.section__head--center {
  text-align: center;
}
.section__head--center .eyebrow {
  justify-content: center;
}
.section__head--center .section__title,
.section__head--center .section__lede {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section {
    padding: 90px 0;
  }
  .section--first {
    padding-top: 100px;
  }
  .section__head {
    margin-bottom: 48px;
  }
}

/* ================================================================
   MISSION
   ================================================================ */
.mission__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1000px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.mission__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.mission__copy p + p {
  margin-top: 18px;
}

.mission__pull {
  background: var(--ink);
  color: #fff;
  padding: 56px 48px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.mission__pull::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 100% 0%,
    rgba(171, 135, 63, 0.22) 0%,
    rgba(171, 135, 63, 0) 55%
  );
  pointer-events: none;
}
.mission__pull-quote {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}
.mission__pull-quote::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold-light);
  margin-bottom: 28px;
}
.mission__pull-meta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}
.mission__pull-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}
@media (max-width: 768px) {
  .mission__pull {
    padding: 36px 28px;
  }
}

.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.kpi {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.kpi:nth-child(2n) {
  border-right: 0;
}
.kpi:nth-child(n + 3) {
  border-bottom: 0;
}
.kpi:hover {
  background: rgba(171, 135, 63, 0.04);
}

.kpi__num {
  font-size: clamp(56px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--ink);
  display: inline-block;
}
.kpi__num em {
  font-style: normal;
  color: var(--gold);
  margin-left: 4px;
  font-size: 0.55em;
  vertical-align: top;
  position: relative;
  top: 0.18em;
}
.kpi__label {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================================
   FORUM SPOTLIGHT — Big editorial section
   ================================================================ */
.forum-spotlight {
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  margin-top: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
@media (max-width: 1000px) {
  .forum-spotlight {
    grid-template-columns: 1fr;
  }
}

.forum-spotlight__media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.forum-spotlight__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.forum-spotlight:hover .forum-spotlight__media img {
  transform: scale(1.04);
}

.forum-spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0) 60%
  );
}

.forum-spotlight__date {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-sm);
}

.forum-spotlight__body {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .forum-spotlight__body {
    padding: 36px;
  }
}

.forum-spotlight__body h3 {
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .forum-spotlight__body h3 {
    font-size: 22px;
  }
}
.forum-spotlight__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
}

.forum-spotlight__panels {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.forum-spotlight__panels li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.forum-spotlight__panels li::before {
  content: "—";
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

/* ================================================================
   PROGRAMME — Grid cards photos
   ================================================================ */
.programme__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .programme__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .programme__grid {
    grid-template-columns: 1fr;
  }
}

.prog-card {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 420px;
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.prog-card__head {
  background: var(--bg);
  padding: 32px 28px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
  overflow: hidden;
}
.prog-card__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gold);
}
.prog-card__day {
  font-size: clamp(64px, 6vw, 92px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.prog-card__month {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 8px;
}

.prog-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prog-card__city {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.prog-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--ink);
}
.prog-card__place {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}
.prog-card__tag {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.prog-card__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Featured (centerpiece — 12 juin Forum) */
.prog-card--featured {
  background: linear-gradient(170deg, var(--ink) 0%, #14182a 100%);
  color: #fff;
  border-color: var(--ink);
}
.prog-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}
.prog-card--featured .prog-card__head {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.prog-card--featured .prog-card__day {
  color: #fff;
}
.prog-card--featured .prog-card__month {
  color: var(--gold-light);
}
.prog-card--featured .prog-card__city {
  color: var(--gold-light);
}
.prog-card--featured .prog-card__title {
  color: #fff;
}
.prog-card--featured .prog-card__place {
  color: rgba(255, 255, 255, 0.7);
}
.prog-card--featured .prog-card__tag {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.16);
}
.prog-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ================================================================
   FAN ZONES — community block (FIFA 2026, open to public)
   ================================================================ */
.fanzones {
  margin-top: 72px;
}
.fanzones__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.fanzones__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.fanzones__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.fanzones__lede {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
.fanzones__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .fanzones__grid {
    grid-template-columns: 1fr;
  }
}

.fanzone-card {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 340px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}
.fanzone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
}
.fanzone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}
.fanzone-card__date {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.fanzone-card__day {
  font-size: clamp(48px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.fanzone-card__month {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}
.fanzone-card__hero {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin: 4px 0 8px;
  color: #fff;
  text-transform: uppercase;
}
.fanzone-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.fanzone-card__city {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.fanzone-card__venue {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  margin-top: 4px;
}
.fanzone-card__addr {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}
.fanzone-card__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.fanzone-card__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}

.fanzones__note {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--muted);
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fanzones__note-key {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-right: 6px;
  padding: 2px 7px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
}

/* Map legend — Fan Zone variant */
.map-legend__item--fanzone .map-legend__pin--fz {
  background: var(--bg);
  color: var(--ink);
  border: 1.5px dashed var(--gold);
}
.map-legend__item--fanzone .map-legend__day {
  color: var(--gold);
}

/* Leaflet pin — Fan Zone variant */
.biusa-pin--fz {
  filter: hue-rotate(20deg) saturate(1.15);
}
.biusa-pin--fz .biusa-pin__num {
  background: #fff;
  color: var(--ink);
  border: 2px dashed var(--gold);
}

/* ================================================================
   FORMATS — 3 cols on ink bg
   ================================================================ */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .formats {
    grid-template-columns: 1fr;
  }
}

.format {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 44px 36px 38px;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.format:hover {
  background: rgba(171, 135, 63, 0.06);
  border-color: rgba(201, 169, 104, 0.4);
  transform: translateY(-4px);
}
.format__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 22px;
}
.format__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: #fff;
}
.format__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   PARTENARIATS
   ================================================================ */
.packs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .packs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .packs {
    grid-template-columns: 1fr;
  }
}

.pack {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  min-height: 380px;
}
.pack:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.pack__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.pack__name {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 12px;
  color: var(--ink);
}
.pack__rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0 20px;
}
.pack__line {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.pack__cta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.pack__cta::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.pack:hover .pack__cta {
  color: var(--gold);
}
.pack:hover .pack__cta::after {
  transform: translateX(6px);
}

.pack--platine {
  background: linear-gradient(180deg, var(--ink) 0%, #1a1d2e 100%);
  color: #fff;
  border-color: var(--ink);
}
.pack--platine:hover {
  border-color: var(--gold);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}
.pack--platine .pack__name {
  color: #fff;
}
.pack--platine .pack__tier {
  color: var(--gold-light);
}
.pack--platine .pack__line {
  color: rgba(255, 255, 255, 0.7);
}
.pack--platine .pack__cta {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.16);
}
.pack--platine:hover .pack__cta {
  color: var(--gold-light);
}

.pack__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 5px 10px;
  border-radius: 999px;
}

.partner-cta {
  margin-top: 64px;
  padding: 40px 44px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .partner-cta {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}
.partner-cta__copy h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.partner-cta__copy p {
  color: var(--muted);
  font-size: 15px;
  max-width: 540px;
}

/* ================================================================
   SPONSORS BOARD — Confirmed engagements (dark)
   ================================================================ */
.sponsors-board {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.sponsors-board__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.sponsors-board__row:hover {
  border-color: rgba(201, 169, 104, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.sponsors-board__row--platine {
  background: linear-gradient(
    135deg,
    rgba(171, 135, 63, 0.08),
    rgba(201, 169, 104, 0.04)
  );
  border-color: rgba(201, 169, 104, 0.35);
}
.sponsors-board__row--platine:hover {
  border-color: rgba(201, 169, 104, 0.6);
}
@media (max-width: 800px) {
  .sponsors-board__row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
}
.sponsors-board__tier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 32px;
}
@media (max-width: 800px) {
  .sponsors-board__tier {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 14px;
  }
}
.sponsors-board__tier-num {
  font-family: var(--font-serif, "Georgia", serif);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}
.sponsors-board__tier-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.sponsors-board__tier-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 6px;
}
.sponsors-board__tier-status--confirmed {
  background: rgba(46, 160, 67, 0.15);
  color: #4ade80;
  border: 1px solid rgba(46, 160, 67, 0.4);
}
.sponsors-board__tier-status--open {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.sponsors-board__tier-status--exclusive {
  background: rgba(201, 169, 104, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201, 169, 104, 0.4);
}
.sponsors-board__partners {
  display: flex;
  align-items: center;
}
.sponsor-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: center;
  width: 100%;
}
@media (max-width: 560px) {
  .sponsor-card {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }
}
.sponsor-card__seal {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 8px;
}
.sponsor-card__seal img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sponsor-card__placeholder {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-family: var(--font-serif, "Georgia", serif);
  font-size: 32px;
  color: rgba(255, 255, 255, 0.35);
}
.sponsor-card--platine .sponsor-card__placeholder {
  border-color: rgba(201, 169, 104, 0.4);
  color: var(--gold-light);
  background: rgba(201, 169, 104, 0.06);
}
@media (max-width: 560px) {
  .sponsor-card__seal,
  .sponsor-card__placeholder {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
}
.sponsor-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sponsor-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.sponsor-card--platine .sponsor-card__label {
  color: var(--gold-light);
}
.sponsor-card__name {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0;
}
.sponsor-card__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 4px 0 8px;
}
.sponsor-card__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.sponsor-card__check::before {
  content: "✓";
  font-size: 14px;
}
.sponsor-card__cta {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
  margin-top: 4px;
}
.sponsor-card__cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.sponsor-card__cta--platine {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ================================================================
   SPEAKERS / Voix Annoncées
   ================================================================ */
.speakers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .speakers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .speakers {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.speaker {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}
.speaker:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 48px -28px rgba(10, 10, 10, 0.15),
    0 0 0 1px rgba(171, 135, 63, 0.15);
  border-color: rgba(171, 135, 63, 0.25);
}
.speaker__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.speaker__flag {
  display: inline-flex;
  width: 36px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.speaker__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaker__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5efe2, #faf7f0);
  border: 1.5px solid var(--gold-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.speaker__avatar::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.6;
}
.speaker__monogram {
  font-family: var(--font-serif, "Georgia", serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.speaker__avatar img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}
.speaker__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.speaker__topic {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
}
.speaker__topic::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--gold);
  margin-right: 8px;
}
.speaker__name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.speaker__role {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 4px 0 0;
}
.speaker__org {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.speaker__status {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.04);
  color: var(--muted);
  border: 1px solid var(--line);
}
.speaker__status--confirmed {
  background: rgba(46, 160, 67, 0.08);
  color: #2ea043;
  border-color: rgba(46, 160, 67, 0.3);
}
.speakers__disclaimer {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* ================================================================
   TRIBUNE — Official position
   ================================================================ */
.tribune {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #14151a 100%);
  color: #fff;
  padding: 140px 0;
  overflow: hidden;
}
.tribune::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(171, 135, 63, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(201, 169, 104, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.tribune__inner {
  position: relative;
  max-width: 920px;
  text-align: center;
}
.tribune__mark {
  display: block;
  font-family: var(--font-serif, "Georgia", serif);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 0;
  opacity: 0.5;
  text-align: center;
}
.tribune__eyebrow {
  justify-content: center;
  color: var(--gold-light) !important;
  margin-bottom: 28px;
}
.tribune__eyebrow::before {
  background: var(--gold-light) !important;
}
.tribune__quote {
  margin: 0 auto 56px;
  max-width: 880px;
}
.tribune__quote p {
  font-family: var(--font-serif, "Georgia", "Times New Roman", serif);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  font-style: italic;
}
.tribune__signature {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.tribune__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.tribune__org {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: left;
}
.tribune__sub {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  text-align: left;
}
@media (max-width: 700px) {
  .tribune {
    padding: 100px 0;
  }
  .tribune__quote p {
    font-size: 19px;
    line-height: 1.55;
  }
  .tribune__signature {
    flex-direction: column;
    gap: 14px;
  }
  .tribune__line {
    width: 40px;
  }
  .tribune__org,
  .tribune__sub {
    text-align: center;
  }
}

/* ================================================================
   SECTEURS PRIORITAIRES
   ================================================================ */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) {
  .sectors {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sectors {
    grid-template-columns: 1fr;
  }
}
.sector {
  position: relative;
  padding: 44px 36px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    background 0.35s ease,
    transform 0.4s ease;
  overflow: hidden;
}
.sector::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 60%,
    rgba(171, 135, 63, 0.04) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.sector:hover {
  background: var(--bg-alt);
}
.sector:hover::before {
  opacity: 1;
}
@media (max-width: 600px) {
  .sector {
    padding: 36px 24px 32px;
  }
}
.sector__icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  transition: transform 0.5s var(--ease);
}
.sector__icon svg {
  width: 100%;
  height: 100%;
}
.sector:hover .sector__icon {
  transform: rotate(-6deg) scale(1.05);
}
.sector__num {
  font-family: var(--font-serif, "Georgia", serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 500;
}
.sector__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}
.sector__lede {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}
.sector__meta {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.sector__meta::before {
  content: "→";
  margin-right: 8px;
  color: var(--gold-light);
  font-weight: 700;
}

/* ================================================================
   PHILADELPHIA MAP
   ================================================================ */
.map-wrap {
  margin-top: 24px;
}
.map-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
}
.phillyMap {
  width: 100%;
  height: 560px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #14151a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: hue-rotate(-2deg);
}
@media (max-width: 600px) {
  .phillyMap {
    height: 380px;
  }
}
.map-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-legend__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md, 8px);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s ease;
}
.map-legend__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 104, 0.4);
  transform: translateX(4px);
}
.map-legend__pin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  font-family: var(--font-serif, "Georgia", serif);
}
.map-legend__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.map-legend__day {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.map-legend__name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.map-legend__addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* Leaflet — custom pins */
.biusa-pin {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}
.biusa-pin__num {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ab873f, #c9a968);
  color: #0a0a0a;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.95);
  z-index: 2;
}
.biusa-pin__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(201, 169, 104, 0.45);
  animation: biusa-pin-pulse 2.4s ease-out infinite;
}
@keyframes biusa-pin-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.biusa-popup {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Inter", sans-serif;
  padding: 4px 6px;
}
.biusa-popup__day {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.biusa-popup strong {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.biusa-popup__sub {
  font-size: 12px;
  color: var(--muted);
}
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}
.leaflet-popup-content {
  margin: 12px 14px;
}
.leaflet-popup-tip {
  box-shadow: none;
}
.leaflet-control-attribution {
  font-size: 9px !important;
  background: rgba(255, 255, 255, 0.85) !important;
}

/* ================================================================
   FAQ — Accordion (institutional)
   ================================================================ */
.faq {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.25s ease;
}
.faq__item:hover {
  background: rgba(255, 255, 255, 0.4);
}
.faq__item[open] {
  background: #fff;
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 8px;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.25s ease;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q:hover {
  color: var(--gold);
}
.faq__chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  transition:
    transform 0.3s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.faq__item[open] .faq__chevron {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.faq__a {
  padding: 0 8px 32px;
}
.faq__a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 740px;
}
@media (max-width: 700px) {
  .faq__q {
    padding: 22px 4px;
    font-size: 16px;
  }
  .faq__chevron {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
  .faq__a {
    padding: 0 4px 24px;
  }
  .faq__a p {
    font-size: 14px;
  }
}

/* ================================================================
   WHY PARTNER — Features
   ================================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 36px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.feature__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 22px;
}
.feature__icon {
  width: 56px;
  height: 56px;
  background: rgba(171, 135, 63, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}
.feature__icon svg {
  width: 26px;
  height: 26px;
}
.feature__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.feature__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================================
   BUTTONS — ALL CAPS, 52-56px height
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  min-height: 52px;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--lg {
  padding: 20px 38px;
  font-size: 13px;
  min-height: 56px;
}
.btn::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.btn:hover::after {
  transform: translateX(4px);
}

/* ================================================================
   HOTELS — Module hospitality recommandé
   ================================================================ */
.lodging-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .lodging-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.lodging-intro__note {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}
.lodging-intro__note strong {
  color: var(--ink);
  font-weight: 600;
}

.hotels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .hotels {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hotels {
    grid-template-columns: 1fr;
  }
}

.hotel {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
  overflow: hidden;
}
.hotel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.hotel__media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hotel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.hotel:hover .hotel__media img {
  transform: scale(1.06);
}
.hotel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hotel__stars {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.hotel__loc {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hotel__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.hotel__addr {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.hotel__meta {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.hotel__cta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.hotel__cta::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.hotel:hover .hotel__cta {
  color: var(--gold);
}
.hotel:hover .hotel__cta::after {
  transform: translateX(6px);
}

/* ================================================================
   AUTHORITIES STRIP — Real official emblems CI × PA
   ================================================================ */
.authorities-strip {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.authorities-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(171, 135, 63, 0.08) 0%,
      rgba(171, 135, 63, 0) 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(60, 59, 110, 0.1) 0%,
      rgba(60, 59, 110, 0) 50%
    );
  pointer-events: none;
}
.authorities-strip > .container {
  position: relative;
  z-index: 1;
}
.authorities-strip__title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 56px;
}
.authorities-strip__title::before,
.authorities-strip__title::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  vertical-align: middle;
  margin: 0 16px;
}

.emblems {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: 80px;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .emblems {
    flex-direction: column;
    gap: 36px;
    margin-bottom: 56px;
  }
}

.emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 360px;
}
.emblem__img {
  width: clamp(110px, 14vw, 168px);
  height: clamp(110px, 14vw, 168px);
  object-fit: contain;
  filter: drop-shadow(0 14px 40px rgba(171, 135, 63, 0.18));
  margin-bottom: 24px;
  transition: transform 0.6s var(--ease);
}
.emblem:hover .emblem__img {
  transform: scale(1.04) rotate(0.5deg);
}
.emblem__label {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.emblem__sublabel {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  text-transform: uppercase;
}
.emblem__amp {
  font-family: "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--gold-light);
  font-style: italic;
  margin-top: -64px;
  flex-shrink: 0;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .emblem__amp {
    margin-top: 0;
    font-size: 36px;
  }
}

/* Authorities list — 7 entities */
.authorities-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .authorities-list {
    grid-template-columns: 1fr;
  }
}

.authority {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease);
}
.authority:hover {
  background: rgba(171, 135, 63, 0.04);
}
.authority__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  flex-shrink: 0;
  min-width: 28px;
}
.authority__name {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

/* ================================================================
   INSCRIPTION — section majeure
   ================================================================ */
.register {
  background: linear-gradient(170deg, #05060a 0%, #111526 60%, #0a0f1e 100%);
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}
.register::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/earth-bg.png");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.1;
  pointer-events: none;
  filter: contrast(1.2) saturate(0.8) brightness(0.7);
}
/* Subtle gold radial accent top-right */
.register::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(171, 135, 63, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.register__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1000px) {
  .register__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.register__copy h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.register__copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.register__bullets {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.register__bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}
.register__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 1px;
  background: var(--gold-light);
}

.form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
@media (max-width: 600px) {
  .form {
    padding: 28px;
  }
}

/* Trust badge */
.form__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-md);
}
.form__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.form__trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.form__trust-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

@media (max-width: 480px) {
  .form__trust {
    flex-direction: column;
    gap: 8px;
  }
  .form__trust-sep {
    display: none;
  }
}

.form__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 6px;
}
.form__sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.form__field {
  display: flex;
  flex-direction: column;
}
.form__field--full {
  grid-column: 1/-1;
}
.form__field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 9px;
}
.form__field input,
.form__field select,
.form__field textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 15px 18px;
  font-size: 15px;
  color: #fff;
  border-radius: var(--r-md);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
  font-family: inherit;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: 0;
  border-color: var(--gold-light);
  background: rgba(0, 0, 0, 0.45);
}
.form__field textarea {
  resize: vertical;
  min-height: 110px;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) center,
    calc(100% - 12px) center;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form__field select option {
  background: var(--ink);
  color: #fff;
}

.form__submit {
  width: 100%;
  padding: 19px 24px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
  margin-top: 12px;
  text-transform: uppercase;
}
.form__submit:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}
.form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.form__status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  border: 1px solid transparent;
}
.form__status[data-kind="loading"] {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}
.form__status[data-kind="success"] {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.4);
  color: #a5d6a7;
}
.form__status[data-kind="error"] {
  background: rgba(198, 40, 40, 0.12);
  border-color: rgba(198, 40, 40, 0.4);
  color: #ef9a9a;
}

.form__legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact__card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 44px;
}
.contact__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact__name {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.contact__title {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.contact__items {
  border-top: 1px solid var(--line);
}
.contact__items li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}
.contact__items li > span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__items a {
  color: var(--ink);
  font-weight: 500;
}
.contact__items a:hover {
  color: var(--gold);
}

.authorities__sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.authorities__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.authorities__list {
  border-top: 1px solid var(--line);
}
.authorities__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.45;
}
.authorities__list li::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: var(--gold);
  border-radius: 50%;
}

/* ================================================================
   BIG CTA SECTION before footer
   ================================================================ */
.cta-big {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #1a1d2e 100%);
  position: relative;
  overflow: hidden;
}
.cta-big::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 0%,
    rgba(171, 135, 63, 0.18) 0%,
    rgba(171, 135, 63, 0) 50%
  );
}
.cta-big__inner {
  position: relative;
  text-align: center;
  color: #fff;
}
.cta-big h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.cta-big h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-big p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.76);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.cta-big__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-big .btn--gold:hover {
  background: #fff;
  color: var(--ink);
}
.cta-big__presskit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.cta-big__presskit::before {
  content: "↓";
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}
.cta-big__presskit:hover {
  color: #fff;
  border-color: rgba(201, 169, 104, 0.55);
  background: rgba(201, 169, 104, 0.08);
}
@media (max-width: 600px) {
  .cta-big__presskit {
    font-size: 11px;
    padding: 12px 18px;
    text-align: center;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #050609;
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
.footer__brand-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer__col li {
  margin-bottom: 11px;
  font-size: 14px;
}
.footer__col a:hover {
  color: #fff;
}

.footer__col--contacts {
  grid-column: span 1;
}
@media (max-width: 900px) {
  .footer__col--contacts {
    grid-column: 1 / -1;
  }
}
.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.footer__contacts li {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__contacts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.footer__contact-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer__contact-mail {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 2px;
  width: fit-content;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.footer__contact-mail:hover {
  color: var(--gold-light, #d4b97a);
  border-bottom-color: var(--gold-light, #d4b97a);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.footer__bottom strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ================================================================
   PROGRAMME MODAL
   ================================================================ */
.prog-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.prog-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.prog-modal {
  background: var(--bg);
  border-radius: var(--r-xl);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-out);
  overscroll-behavior: contain;
}
.prog-modal-overlay.is-open .prog-modal {
  transform: scale(1);
}

/* Modal header */
.prog-modal__header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.prog-modal__header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prog-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.prog-modal__badge::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.prog-modal__city {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.prog-modal__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 6px;
}
.prog-modal__close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
  line-height: 1;
}
.prog-modal__close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Modal body */
.prog-modal__body {
  padding: 36px 40px 40px;
}

/* Timeline */
.prog-modal__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.timeline-item:last-child {
  border-bottom: 0;
}
.timeline-item__time {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.timeline-item__content {
}
.timeline-item__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 5px;
}
.timeline-item__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Partners block */
.prog-modal__partners {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
}
.prog-modal__partners-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prog-modal__partners-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold-light);
}
.prog-modal__partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prog-modal__partner-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
}

/* Modal CTA */
.prog-modal__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  border: 0;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.prog-modal__cta-btn::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.prog-modal__cta-btn:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.prog-modal__cta-btn:hover::after {
  transform: translateX(4px);
}

/* Mobile modal fullscreen */
@media (max-width: 600px) {
  .prog-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .prog-modal {
    max-height: 94dvh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    max-width: 100%;
    transform: translateY(40px) scale(1);
  }
  .prog-modal-overlay.is-open .prog-modal {
    transform: translateY(0) scale(1);
  }
  .prog-modal__header {
    padding: 28px 24px 22px;
  }
  .prog-modal__body {
    padding: 24px 24px 32px;
  }
  .timeline-item {
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }
}

/* prog-card clickable */
.prog-card[role="button"] {
  cursor: pointer;
}
.prog-card[role="button"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ================================================================
   SVG SEALS — authorities strip
   ================================================================ */
.auth-tile__seal {
  display: block;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

/* ================================================================
   LANG TOGGLE
   ================================================================ */
.lang-en {
  display: none;
}
html[lang="en"] .lang-fr {
  display: none;
}
html[lang="en"] .lang-en {
  display: initial;
}

/* ================================================================
   REVEAL on scroll
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 90ms;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 180ms;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 270ms;
}
.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 360ms;
}
.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 450ms;
}
.reveal-stagger.is-visible > *:nth-child(7) {
  transition-delay: 540ms;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero parallax helper */
.hero__bg.parallax img {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   DÉLÉGATIONS OFFICIELLES
   ================================================================ */
.delegations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .delegations {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.delegation {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 36px 40px 32px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}
.delegation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) {
  .delegation {
    padding: 28px 24px;
  }
}

.delegation__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.delegation__flag {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}
.delegation__country {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.delegation__count {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.delegation__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.delegation__list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.delegation__list li:last-child {
  border-bottom: 0;
}
.delegation__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.delegation__role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* ================================================================
   FLOATING CONTACT STACK — Telegram + WhatsApp
   ================================================================ */
.contact-fab-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.3s var(--ease);
}
.contact-fab:hover {
  transform: scale(1.06);
}
.contact-fab__icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}
.contact-fab--wa {
  background: #25d366;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
}
.contact-fab--wa:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}
.contact-fab--tg {
  background: #229ed9;
  box-shadow: 0 6px 22px rgba(34, 158, 217, 0.42);
}
.contact-fab--tg:hover {
  box-shadow: 0 10px 30px rgba(34, 158, 217, 0.55);
}
.contact-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25d366;
  opacity: 0.55;
  animation: contact-fab-pulse 2.4s var(--ease-out) infinite;
}
.contact-fab--tg .contact-fab__pulse {
  background: #229ed9;
  animation-duration: 2.6s;
  animation-delay: 1.1s;
}
@keyframes contact-fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
@media (max-width: 600px) {
  .contact-fab-stack {
    bottom: 18px;
    right: 18px;
    gap: 12px;
  }
  .contact-fab {
    width: 52px;
    height: 52px;
  }
  .contact-fab__icon {
    width: 28px;
    height: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-fab__pulse {
    animation: none;
  }
}

/* ============================================================
   INNER PAGE — Bureau de Coordination
   ============================================================ */

.page--inner {
  background: var(--bg, #faf7f0);
}

.header--solid {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.header--solid .header__logo-img--dark {
  display: block;
}
.header--solid .header__logo-img--light {
  display: none;
}
.header--solid .nav__link {
  color: var(--ink, #0a0a0a);
}
.header--solid .nav__link.is-active {
  color: var(--gold, #ab873f);
}
.header--solid .header__cta {
  color: var(--ink, #0a0a0a);
  border-color: rgba(10, 10, 10, 0.5);
}

/* Inner hero */
.inner-hero {
  padding: 140px 0 56px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.inner-hero__crumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 28px;
}
.inner-hero__crumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.inner-hero__crumb a:hover {
  color: var(--gold, #ab873f);
}
.inner-hero__eyebrow {
  margin-bottom: 24px;
}
.inner-hero__title {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink, #0a0a0a);
  max-width: 920px;
  margin: 0 0 28px;
}
.inner-hero__title em {
  font-style: italic;
  color: var(--gold, #ab873f);
}
.inner-hero__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.72);
  max-width: 760px;
  margin: 0;
}

/* Org grid (R&A + CG PA) */
.org-grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}
.org-grid--two {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 760px) {
  .org-grid--two {
    grid-template-columns: 1fr;
  }
}

.org-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  padding: 32px 32px 36px;
  position: relative;
}
.org-card--accent {
  background: var(--ink, #0a0a0a);
  color: #f5efe4;
  border-color: var(--ink, #0a0a0a);
}
.org-card__role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 18px;
}
.org-card--accent .org-card__role {
  color: rgba(245, 239, 228, 0.6);
}
.org-card__name {
  font-family: "Georgia", serif;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: inherit;
}
.org-card__title {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 10, 0.65);
  margin: 0 0 22px;
}
.org-card--accent .org-card__title {
  color: rgba(245, 239, 228, 0.7);
}
.org-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.72);
  margin: 0;
}
.org-card__list,
.org-card__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.org-card__list li {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
  padding: 12px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}
.org-card__list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.org-card__contacts li {
  font-size: 15px;
  margin-bottom: 8px;
  color: inherit;
}
.org-card__contacts a {
  color: var(--gold-light, #c9a968);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.org-card__contacts a:hover {
  color: #fff;
}
.org-card__note {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.55);
}

/* Auth list */
.auth-block {
  margin-top: 48px;
}
.auth-block__title {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #ab873f);
  margin: 0 0 20px;
}
.auth-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.auth-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.auth-list__num {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold, #ab873f);
}
.auth-list__label {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink, #0a0a0a);
}

/* Committees */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(10, 10, 10, 0.1);
  border: 1px solid rgba(10, 10, 10, 0.1);
}
@media (max-width: 920px) {
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .committee-grid {
    grid-template-columns: 1fr;
  }
}
.committee {
  background: var(--bg, #faf7f0);
  padding: 32px 28px 36px;
  position: relative;
}
.committee__num {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold, #ab873f);
  display: block;
  margin-bottom: 14px;
}
.committee__title {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ink, #0a0a0a);
}
.committee__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.7);
  margin: 0;
}

/* Contact grid */
.contact-grid {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
@media (max-width: 640px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.contact-row__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.6);
}
.contact-row__mail {
  font-family: "Georgia", serif;
  font-size: 18px;
  color: var(--ink, #0a0a0a);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.3);
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.contact-row__mail:hover {
  color: var(--gold, #ab873f);
  border-color: var(--gold, #ab873f);
}

.inner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
  justify-content: center;
}
