@charset "UTF-8";
:root {
  --navy: #0a1628;
  --deep: #0d1f3c;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --water: #0d2a4a;
  --mist: #8fa8c8;
  --white: #f0ead8;
  --gray: #b0bcc8;
  --blue: #5a9cc8;
  --bg: #080f1e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

html {
  scroll-behavior: smooth;
}

@media print {
  body {
    background: #080f1e !important;
    color: #f0ead8 !important;
  }
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
}

.section-eyebrow {
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 8px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-title strong {
  font-weight: bold;
}

.gold-bar {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 24px;
  opacity: 0.7;
}

.body-text {
  font-size: 1rem;
  line-height: 1.85;
  color: white;
  font-weight: 300;
}
.body-text p + p {
  margin-top: 14px;
}
.body-text strong {
  color: var(--gold-light);
  font-weight: 500;
}

.section-divider-full {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.12), transparent);
  margin: 0;
}

footer {
  background: var(--navy);
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: white;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 2px;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.25s, border-color 0.25s, background 0.25s;
}
.footer-social a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.footer-social a:hover {
  opacity: 1;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

@keyframes scrollpulse {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-fade-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: hero-fade-down 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-title {
  animation: hero-fade-up 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-subtitle {
  animation: hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
}

.hero-campaign {
  animation: hero-fade-up 0.85s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.hero-scroll {
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s both;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media print {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-campaign,
  .hero-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  background: rgba(8, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
@media (max-width: 1400px) {
  nav {
    padding: 0 20px;
  }
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.nav-brand span {
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 5px;
  color: var(--white);
  margin-left: 12px;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  vertical-align: middle;
}
@media (max-width: 1400px) {
  .nav-brand span {
    max-width: 200px;
  }
}
@media (max-width: 1600px) {
  .nav-brand span {
    display: block;
    margin-left: 0;
  }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 1400px) {
  .nav-links {
    gap: 26px;
  }
}
.nav-links a {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
  top: -3px;
}
.nav-dropdown > a {
  position: relative;
  padding-right: 18px;
}
.nav-dropdown > a::after {
  content: "▾";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.75rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.nav-dropdown:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.nav-dropdown:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(8, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 201;
}
.nav-submenu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white) !important;
  transition: all 0.25s;
}
.nav-submenu a:hover {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.05);
}

.nav-lang {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.7);
  border-radius: 20px;
  overflow: hidden;
  font-family: "Barlow", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-lang.mobile-only {
  display: none;
}
.nav-lang a {
  padding: 5px 11px;
  color: var(--mist) !important;
  transition: all 0.25s !important;
  letter-spacing: 2px !important;
  font-size: 0.55rem !important;
}
.nav-lang a:hover {
  color: var(--gold) !important;
}
.nav-lang a.is-active {
  background: rgba(201, 168, 76, 0.35);
  color: var(--gold) !important;
  font-weight: 500;
}
.nav-lang span {
  width: 1px;
  height: 12px;
  background: rgba(201, 168, 76, 0.8);
  display: block;
}

.nav-cta {
  padding: 8px 20px;
  border: 1px solid #c9a84c;
  color: var(--gold) !important;
  opacity: 1 !important;
  font-size: 0.62rem !important;
  letter-spacing: 3px !important;
  transition: all 0.3s !important;
  font-weight: bold;
}
.nav-cta:hover {
  background: rgba(201, 168, 76, 0.1) !important;
  border-color: var(--gold) !important;
}

.hero {
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 0 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-around;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 15, 30, 0.55) 0%, rgba(8, 15, 30, 0.3) 40%, rgba(8, 15, 30, 0.75) 100%), linear-gradient(135deg, #0a1628 0%, #0d2a4a 40%, #071520 70%, #0a1628 100%);
  background-size: cover;
  background-position: center;
}
.hero-bg-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(90, 156, 200, 0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 20% 70%, rgba(201, 168, 76, 0.07) 0%, transparent 55%), radial-gradient(ellipse 40% 40% at 85% 80%, rgba(13, 42, 74, 0.8) 0%, transparent 50%);
}
.hero-bg-img img {
  opacity: 0.4;
}

.hero-bg-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.09;
}
.hero-bg-map svg {
  height: 100vh;
  width: auto;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.99;
  margin-bottom: 28px;
  top: 30px;
  position: relative;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(6rem, 13vw, 12rem);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: bold;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: white;
  opacity: 0.75;
  margin-bottom: 28px;
}

.hero-campaign {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(8, 15, 30, 0.5);
  backdrop-filter: blur(8px);
  margin-bottom: 52px;
}

.hero-campaign-label {
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.hero-campaign-sep {
  width: 1px;
  height: 16px;
  background: rgba(201, 168, 76, 0.25);
}

.hero-campaign-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-light);
}
.hero-campaign-name em {
  color: white;
}

.hero-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 52px;
  justify-content: center;
}

.route-city {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.route-line {
  height: 1px;
  width: 32px;
  background: rgba(201, 168, 76, 0.2);
}

.route-seg {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--mist);
  opacity: 0.5;
}
.route-seg span {
  font-size: 0.95rem;
}

.hero-stats-row {
  display: flex;
  gap: 1px;
  background: rgba(8, 15, 30, 0.6);
  backdrop-filter: blur(10px);
}

.h-stat {
  padding: 18px 36px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.03);
  text-align: center;
}
.h-stat + .h-stat {
  border-left: none;
}

.h-stat-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.h-stat-val sup {
  font-size: 1rem;
}

.h-stat-lbl {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.45;
  margin-top: 5px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 1;
}

.hero-scroll-text {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.intro-band {
  background: var(--deep);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.ib-item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.5);
}
.ib-item:last-child {
  border-right: none;
}
.ib-item:nth-child(1) {
  transition-delay: 0.1s;
}
.ib-item:nth-child(2) {
  transition-delay: 0.2s;
}
.ib-item:nth-child(3) {
  transition-delay: 0.3s;
}

.ib-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ib-val__unit {
  font-size: 1.5rem;
}

.ib-label {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-top: 8px;
  font-weight: bold;
}

.ib-sub {
  font-size: 1rem;
  font-weight: 100;
  color: white;
  margin-top: 6px;
  line-height: 1.5;
}

#epreuve {
  padding: 120px 80px;
  margin: 0 auto;
  max-width: 1300px;
}

.epreuve-container {
  margin: 0 auto;
}

.epreuve-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.epreuve-intro .reveal-right {
  transition-delay: 0.15s;
}

.epreuve-intro-text {
  margin-bottom: 28px;
}

.epreuve-fact {
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.04);
}
.epreuve-fact__label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: bold;
}
.epreuve-fact__body {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.6;
}

.disciplines {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.discipline {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: var(--deep);
  transition: all 0.4s;
  cursor: default;
  overflow: hidden;
  position: relative;
  width: 33%;
}
.discipline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0.5;
}
.discipline:nth-child(2) {
  transition-delay: 0.1s;
}
.discipline:nth-child(3) {
  transition-delay: 0.2s;
}
.discipline:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(3px);
}
.discipline.swim:hover {
  background: rgba(90, 156, 200, 0.05);
  border-color: rgba(90, 156, 200, 0.2);
}

.disc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 0 0;
  border-right: 1px solid rgba(201, 168, 76, 0.08);
}
.disc-icon img {
  width: 50px;
}

.disc-label {
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}
.disc-label--swim {
  color: var(--blue);
}

.disc-body {
  padding: 24px 28px;
  text-align: center;
}

.disc-distance {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.disc-distance.blue {
  color: var(--blue);
}

.disc-route {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 20px 0 15px;
  text-transform: uppercase;
}

.disc-desc {
  font-size: 1rem;
  color: white;
  margin-top: 6px;
  line-height: 1.6;
}

.disc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.55;
  font-style: italic;
  text-align: right;
  padding-right: 18px;
}

.parcours-section {
  background: var(--deep);
  padding: 0;
  overflow: hidden;
}

.parcours-inner {
  display: grid;
  grid-template-columns: 33% 1fr;
  min-height: 600px;
}

.parcours-map {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-right: 1px solid rgba(201, 168, 76, 0.08);
  position: relative;
  cursor: zoom-in;
}
.parcours-map:hover .pmap-hint {
  opacity: 0.45;
}

.pmap {
  position: absolute;
  width: calc(100% - 80px);
  max-width: 100%;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.08));
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  cursor: zoom-in;
}
.pmap--global {
  opacity: 1;
  transform: scale(1);
}
.pmap--run {
  filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.22));
}
.pmap--swim {
  filter: drop-shadow(0 0 24px rgba(90, 156, 200, 0.28));
}
.pmap--bike {
  filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.22));
}

.parcours-map.is-run .pmap--global, .parcours-map.is-swim .pmap--global, .parcours-map.is-bike .pmap--global {
  opacity: 0;
  transform: scale(1.03);
}
.parcours-map.is-run .pmap--run, .parcours-map.is-swim .pmap--swim, .parcours-map.is-bike .pmap--bike {
  opacity: 1;
  transform: scale(1);
}

.pmap-hint {
  position: absolute;
  bottom: 52px;
  right: 16px;
  font-size: 0.52rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.pmap-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.pmap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.pmap-dot--swim {
  border-color: rgba(90, 156, 200, 0.5);
}
.pmap-dot--swim:hover {
  border-color: var(--blue);
}
.pmap-dot--swim.is-active {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 8px rgba(90, 156, 200, 0.5);
}
.pmap-dot:hover {
  border-color: var(--gold);
  transform: scale(1.3);
}
.pmap-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.45);
  transform: scale(1.15);
}

.pmap-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 15, 30, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pmap-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.pmap-lightbox.is-open .pmap-lb-img {
  transform: scale(1);
}

.pmap-lb-img {
  max-width: min(90vw, 700px);
  max-height: 80vh;
  width: auto;
  height: auto;
  transform: scale(0.93);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.15));
  cursor: default;
}

.pmap-lb-caption {
  margin-top: 20px;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.pmap-lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 1rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.pmap-lb-close:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

.parcours-info {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.route-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}

.route-stop {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
}
.route-stop:last-child {
  border-bottom: none;
}

.rs-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
}

.rs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.rs-dot--blue {
  background: var(--blue);
  box-shadow: 0 0 10px rgba(90, 156, 200, 0.4);
}

.rs-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1));
  margin-top: 8px;
}
.rs-line--blue {
  background: linear-gradient(to bottom, var(--blue), rgba(90, 156, 200, 0.06));
}

.rs-city {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  font-weight: bold;
}
.rs-city--blue {
  color: var(--blue);
}

.rs-desc strong {
  color: var(--gold);
}

#histoire {
  padding: 0;
  background: linear-gradient(160deg, #071525 0%, #0d2a4a 50%, #080f1e 100%);
}

.histoire-inner {
  padding: 120px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.grid-2col > *:nth-child(2).reveal-right,
.grid-2col > *:nth-child(2)[class*=reveal] {
  transition-delay: 0.15s;
}
.grid-2col--end {
  align-items: end;
}
.grid-2col--mb-72 {
  margin-bottom: 72px;
}
.grid-2col--mb-60 {
  margin-bottom: 60px;
}

.pt-8 {
  padding-top: 8px;
}

.histoire-quote {
  margin-bottom: 80px;
  padding: 36px 48px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: center;
}
.histoire-quote__mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.7;
}
.histoire-quote__text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.6;
}
.histoire-quote__author {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.manche-section {
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}
.manche-section .section-eyebrow {
  color: var(--blue);
}
.manche-section .section-title {
  color: var(--white);
}
.manche-section .section-title em {
  color: var(--blue);
}
.manche-section .gold-bar {
  background: var(--blue);
}
.manche-section .reveal-right {
  transition-delay: 0.15s;
}

.manche-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90, 156, 200, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.manche-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.manche-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.manche-quote {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  background: rgba(90, 156, 200, 0.05);
}
.manche-quote__text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.6;
}

.manche-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 100%;
}

.mf {
  padding: 32px 24px;
  border: 1px solid rgba(90, 156, 200, 0.12);
  background: rgba(90, 156, 200, 0.03);
  transition: all 0.35s;
  text-align: center;
}
.mf:hover {
  background: rgba(90, 156, 200, 0.08);
  border-color: rgba(90, 156, 200, 0.25);
}

.mf-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.mf-icon img {
  height: 37px;
  margin: 0 auto;
}

.mf-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.mf-label {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin: 20px 0 15px;
}

.mf-note {
  font-size: 1rem;
  color: white;
  margin-top: 8px;
  line-height: 1.55;
}

#equipe {
  padding: 120px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.team-header .reveal-right {
  transition-delay: 0.15s;
}

.team-header__photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.team-header__photo img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  filter: brightness(0.72) saturate(0.8);
  transition: transform 0.6s ease;
}
.team-header__photo:hover img {
  transform: scale(1.03);
}
.team-header__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
}

.team-header__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(8, 15, 30, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team-header__photo-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.team-header__photo-sub {
  font-family: "Barlow", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(201, 168, 76);
  font-weight: bold;
}

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

.team-card {
  padding: 0;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.team-card:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.22);
}
.team-card:hover .tc-photo img {
  opacity: 0.9;
  transform: scale(1.03);
}

.tc-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d1f3c 0%, #0a1f38 60%, #071525 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.tc-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.4s, transform 0.4s;
}
.tc-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.tc-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1f3c 0%, #071525 100%);
}
.tc-photo-placeholder svg {
  width: 72px;
  opacity: 0.18;
}

.tc-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tc-role {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.tc-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
  line-height: 1.15;
  font-weight: bold;
}

.tc-divider {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.35;
  margin-bottom: 14px;
}

.tc-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--white);
  flex: 1;
}

.team-quote {
  margin-top: 60px;
  padding: 36px 48px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: center;
}
.team-quote__mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.7;
}
.team-quote__text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.65;
}
.team-quote__author {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}

@media (max-width: 1024px) {
  #equipe {
    padding: 80px 48px;
  }
  .team-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  #equipe {
    padding: 60px 20px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-quote {
    grid-template-columns: 40px 1fr;
    padding: 24px 20px;
    gap: 16px;
  }
  .team-quote__mark {
    font-size: 4rem;
  }
}
#associations {
  background: var(--deep);
}
#associations .inner {
  padding: 120px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
#associations .reveal-right {
  transition-delay: 0.15s;
}

.asso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.asso-card {
  padding: 48px 44px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.35s;
}
.asso-card:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.22);
}

.asso-card-featured {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.04);
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ac-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  font-weight: bold;
  margin-bottom: 18px;
}

.ac-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.ac-sub {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}

.ac-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white);
}

.ac-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.ac-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
}

.ac-feature-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  top: 12px;
  position: relative;
  opacity: 1;
}

.asso-personal-link {
  padding: 28px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
}
.asso-personal-link__label {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.asso-personal-link__text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.65;
}

.visibilite-section {
  background: var(--navy);
  padding: 120px 80px;
}

.vis-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.vis-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.vis-header .reveal-right {
  transition-delay: 0.15s;
}

.vis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1300px;
}

.vis-card {
  padding: 40px 32px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.35s;
}
.vis-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.vc-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.vc-icon img {
  width: 28px;
}

.vc-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 14px;
}

.vc-desc {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 18px;
}

.vc-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vc-item {
  font-size: 1rem;
  color: var(--white);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.vc-item strong {
  font-weight: bold;
}
.vc-item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
}

.prep-section {
  background: linear-gradient(160deg, #071525 0%, #0d2a4a 100%);
  padding: 120px 80px;
}

.prep-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.prep-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.prep-header .reveal-right {
  transition-delay: 0.15s;
}

.prep-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-bottom: 40px;
}
.prep-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), rgba(201, 168, 76, 0.2), var(--gold), transparent);
  opacity: 0.25;
}

.pt-item {
  padding: 60px 12px 0;
  text-align: center;
  position: relative;
}

.pt-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.5);
}
.pt-dot--highlight {
  width: 16px;
  height: 16px;
  top: 20px;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.7);
}

.pt-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.pt-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 6px;
}

.pt-desc {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.55;
}

#partenariat {
  padding: 120px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
#partenariat .reveal-right {
  transition-delay: 0.15s;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
}

.pkg {
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s;
}
.pkg:hover {
  border-color: rgba(201, 168, 76, 0.35);
}
.pkg--featured.uk::before {
  content: "ESSENTIAL";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 3px 12px;
  white-space: nowrap;
}
.pkg--featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.pkg--featured::before {
  content: "ESSENTIEL";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 3px 12px;
  white-space: nowrap;
}
.pkg--featured .pkg-cta {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  font-weight: bold;
}
.pkg--soutien .pkg-name {
  color: var(--gold-light);
}
.pkg--featured .pkg-name {
  color: var(--gold-light);
}
.pkg--titre .pkg-name {
  color: var(--gold);
}

.pkg-tier {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
}

.pkg-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pkg-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.pkg-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin-bottom: 22px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pkg-feature {
  display: block;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.45;
}
.pkg-feature::before {
  content: "—";
  color: var(--gold);
  margin-right: 8px;
  font-size: 1rem;
}
.pkg-feature strong {
  color: var(--white);
  font-weight: bold;
}

.pkg-cta {
  display: block;
  margin-top: 28px;
  padding: 12px 20px;
  text-align: center;
  border: 1px solid #c9a84c;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.3s;
  font-weight: bold;
}
.pkg-cta:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

#dons {
  background: var(--deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dons-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.dons-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}

.dons-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.dons-col-left {
  position: sticky;
  top: 100px;
}

.dons-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 0 32px;
}

.dons-text {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 0 16px;
}
.dons-text:last-of-type {
  margin-bottom: 48px;
}
.dons-text strong {
  color: var(--gold);
  font-weight: 500;
}

.don-tiers {
  margin-top: 0px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  font-weight: bold;
}

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

.don-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.don-card:hover {
  border-color: rgba(201, 168, 76, 0.6);
}
.don-card--featured {
  border: 2px solid rgba(201, 168, 76, 0.55);
  background: rgba(201, 168, 76, 0.06);
  position: relative;
}
.don-card--featured:hover {
  border-color: rgba(201, 168, 76, 0.9);
}
.don-card--featured::before {
  content: "Populaire";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.don-card--premium {
  border-color: rgba(201, 168, 76, 0.35);
}
.don-card--premium:hover {
  border-color: rgba(201, 168, 76, 0.8);
}

.don-amount {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: bold;
}

.don-tier {
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.don-desc {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.7;
  font-weight: normal;
}

.doncCadeau-section {
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.doncCadeau-badge {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid #c9a84c;
  padding: 4px 12px;
  opacity: 1;
  display: inline-block;
  margin-bottom: 16px;
}

.doncCadeau-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.doncCadeau-title em {
  font-style: italic;
  color: var(--gold-light);
}

.doncCadeau-desc {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 680px;
}
.doncCadeau-desc strong {
  color: var(--gold);
  font-weight: bold;
}

.doncCadeau-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid #c9a84c;
  background: rgba(201, 168, 76, 0.03);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.doncCadeau-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.doncCadeau-price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.doncCadeau-price span {
  display: block;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
  opacity: 1;
  font-weight: bold;
}

.doncCadeau-name {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  font-weight: bold;
  margin-bottom: 6px;
}

.doncCadeau-text {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.6;
}
.doncCadeau-text em {
  color: var(--white);
  font-style: italic;
  font-size: 0.82rem;
}

.doncCadeau-surprise {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(201, 168, 76, 0.3);
}

.doncCadeau-surprise-icon {
  font-size: 1.4rem;
}

.doncCadeau-surprise-text {
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.55;
}
.doncCadeau-surprise-text strong {
  color: var(--white);
}

.doncCadeau-closes {
  text-align: center;
  flex-shrink: 0;
}

.doncCadeau-closes-label {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
}

.doncCadeau-closes-val {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  opacity: 1;
}

.don-cta {
  display: flex;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
  background: var(--gold);
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
.don-cta:hover {
  background: var(--white);
  color: var(--navy);
}

.doncCadeau-cta {
  display: flex;
  padding: 16px 8px;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
  background: var(--gold);
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
.doncCadeau-cta:hover {
  background: var(--white);
  color: var(--navy);
}

#budget {
  padding: 120px 80px;
  margin: 0 auto;
  position: relative;
  background: var(--navy);
}
#budget .inner {
  max-width: 1300px;
  margin: 0 auto;
}
#budget .section-eyebrow {
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.budget-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.1;
}
.budget-title em {
  font-style: italic;
  color: var(--gold-light);
}

.budget-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 0 32px;
}

.budget-intro {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  color: var(--white);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 0 16px;
}
.budget-intro:last-of-type {
  margin: 0 0 48px;
}
.budget-intro strong {
  color: var(--gold);
  font-weight: 500;
}
.budget-intro a {
  text-decoration: underline;
}

.budget-table {
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  overflow: hidden;
}
.budget-table__header {
  display: grid;
  grid-template-columns: 200px 1fr 140px;
  background: rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 14px 24px;
}
.budget-table__header span {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.budget-table__header span:last-child {
  text-align: right;
}
.budget-table__group {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.budget-table__group:last-of-type {
  border-bottom: none;
}

.budget-row {
  display: grid;
  grid-template-columns: 200px 1fr 140px;
  padding: 10px 24px;
}
.budget-row--summary {
  padding: 16px 24px;
  background: rgba(201, 168, 76, 0.04);
}
.budget-table__group .budget-row :last-child {
  padding-bottom: 16px;
}
.budget-row__category {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: center;
}
.budget-row__detail {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  color: var(--white);
}
.budget-row__detail--sub {
  color: var(--mist);
}
.budget-row__amount {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  color: var(--white);
  text-align: right;
}
.budget-row__amount--sub {
  color: var(--mist);
}

.budget-total {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  padding: 20px 24px;
  background: rgba(201, 168, 76, 0.1);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}
.budget-total__label {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  align-self: center;
}
.budget-total__amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  text-align: right;
  font-weight: 600;
}

@media (max-width: 900px) {
  .budget-table__header,
  .budget-row,
  .budget-total {
    grid-template-columns: 160px 1fr 110px;
  }
}
@media (max-width: 640px) {
  .budget-table__header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }
  .budget-table__header span:nth-child(2) {
    display: none;
  }
  .budget-row {
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
    gap: 8px;
  }
  .budget-row > span:first-child:empty {
    display: none;
  }
  .budget-row--summary {
    padding: 14px 16px;
  }
  .budget-row__detail, .budget-row__detail--sub {
    grid-column: 1;
  }
  .budget-row__amount, .budget-row__amount--sub {
    grid-column: 2;
    white-space: nowrap;
  }
  .budget-row__category {
    grid-column: 1;
    font-size: 12px;
  }
  .budget-total {
    grid-template-columns: 1fr auto;
    padding: 16px 16px;
  }
  .budget-total > span:nth-child(2) {
    display: none;
  }
  .budget-note {
    padding: 16px;
  }
}
.budget-note {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.04);
  border-radius: 0 4px 4px 0;
}
.budget-note p {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--white);
  margin: 0;
  line-height: 1.7;
}
.budget-note strong {
  color: var(--gold);
  font-weight: 500;
}
.budget-note a {
  text-decoration: underline;
}

.cta-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 80px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, var(--bg) 65%);
  position: relative;
  overflow: hidden;
}

.cta-bg-num {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(200px, 30vw, 400px);
  font-style: italic;
  color: var(--gold);
  opacity: 0.025;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 700;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-eyebrow {
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--gold);
  line-height: 0.95;
  margin-bottom: 28px;
}

.cta-divider {
  width: 60px;
  height: 1px;
  background: rgba(201, 168, 76, 0.4);
  margin: 0 auto 32px;
}

.cta-tagline {
  font-size: 1rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-tagline a {
  color: var(--gold);
  text-decoration: underline;
  transition: opacity 0.2s;
  font-weight: 800;
}
.cta-tagline a:hover {
  opacity: 0.7;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cc-label {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cc-val {
  font-size: 1rem;
  color: var(--white);
}

.cta-btn {
  display: inline-block;
  padding: 18px 56px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s;
  font-weight: bold;
}
.cta-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

footer {
  background: var(--navy);
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}
.footer-brand em {
  color: white;
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: white;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top:hover {
  background: rgb(173.6223175966, 141.6137339056, 52.3776824034);
  transform: translateY(-2px);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

img.desktop {
  display: block;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0px;
  position: relative;
  width: 100%;
}

img.mobile {
  display: none;
}

@media (max-width: 1024px) {
  #budget, #dons {
    padding: 60px 20px;
  }
  #associations .inner {
    padding: 0 20px;
  }
  #dons .dons-inner {
    padding: 0 0px;
  }
  .dons-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dons-col-left {
    position: static;
  }
  .nav-brand {
    font-size: 1rem;
  }
  .nav-brand span {
    display: block;
    margin-left: 0px;
  }
  img.desktop {
    display: none;
  }
  img.mobile {
    display: block;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0px;
    position: relative;
    width: 100%;
  }
  nav {
    padding: 0 32px;
  }
  .hero {
    padding: 0 32px;
  }
  .hero-inner {
    padding: 0;
  }
  .hero-stats-row {
    flex-wrap: wrap;
  }
  .h-stat {
    flex: 1 1 calc(50% - 2px);
  }
  .intro-band {
    padding: 40px 32px;
    grid-template-columns: 1fr;
  }
  .ib-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }
  .ib-item:last-child {
    border-bottom: none;
  }
  #epreuve {
    padding: 80px 48px;
  }
  .epreuve-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .disciplines {
    flex-direction: column;
  }
  .discipline {
    width: 100%;
  }
  .parcours-inner {
    grid-template-columns: 1fr;
  }
  .parcours-info {
    order: 1;
    padding: 60px 48px;
  }
  .parcours-map {
    order: 2;
    min-height: 70vh;
    border-right: none;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
  }
  #histoire > div {
    padding: 80px 48px 60px !important;
  }
  .grid-2col {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .manche-section {
    padding: 80px 48px;
  }
  .manche-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .manche-facts-grid {
    grid-template-columns: 1fr 1fr;
  }
  #associations {
    padding: 80px 48px !important;
  }
  .asso-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .asso-card-featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .visibilite-section {
    padding: 80px 48px;
  }
  .vis-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vis-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prep-section {
    padding: 80px 48px;
  }
  .prep-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prep-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  #partenariat {
    padding: 80px 48px !important;
  }
  .packages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  footer {
    padding: 32px 48px;
  }
}
@media (max-width: 1120px) {
  nav {
    padding: 10px 20px;
    height: auto;
    align-items: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 15, 30, 0.96);
  }
  nav .nav-lang.mobile-only {
    display: flex;
  }
  nav .nav-lang {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 150;
    background: rgb(8, 15, 30);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: calc(64px + 40px) 48px 80px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links::before {
    content: "";
    position: absolute;
    top: 64px;
    left: 48px;
    right: 48px;
    height: 1px;
    background: linear-gradient(to right, rgba(201, 168, 76, 0.3), transparent);
  }
  .nav-links::after {
    content: "Arch to Arc · 2027";
    position: absolute;
    bottom: 40px;
    left: 48px;
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.25;
  }
  .nav-links.nav-open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }
  .nav-links a {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: none;
    color: rgba(240, 234, 216, 0.55);
    opacity: 1;
    padding: 5px 0;
    width: 100%;
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    transition: color 0.25s, transform 0.25s, padding-left 0.25s;
    display: flex;
    align-items: baseline;
    gap: 20px;
  }
  .nav-links a::before {
    content: attr(data-num);
    font-family: "Barlow Condensed", sans-serif;
    font-style: normal;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 1;
    flex-shrink: 0;
    width: 28px;
    transition: opacity 0.25s;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a:hover, .nav-links a:focus {
    color: var(--gold-light);
    padding-left: 6px;
  }
  .nav-links a:hover::before, .nav-links a:focus::before {
    opacity: 1;
  }
  .nav-links .nav-cta {
    border: none !important;
    background: none !important;
    padding: 14px 0 !important;
    color: var(--gold) !important;
    font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
    letter-spacing: 1px !important;
    font-family: "Cormorant Garamond", serif !important;
    font-style: italic !important;
  }
  .nav-links .nav-dropdown {
    position: static;
    top: auto;
  }
  .nav-links .nav-dropdown > a {
    position: relative;
    padding-right: 32px !important;
    cursor: pointer;
  }
  .nav-links .nav-dropdown > a::after {
    position: absolute;
    right: 0;
    transform: rotate(0deg) !important;
    transition: transform 0.3s ease;
  }
  .nav-links .nav-dropdown.is-open > a::after {
    transform: rotate(180deg) !important;
  }
  .nav-links .nav-submenu {
    position: static !important;
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    min-width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: auto !important;
  }
  .nav-links .nav-submenu a {
    padding: 8px 0 8px 36px !important;
    font-family: "Cormorant Garamond", serif !important;
    font-style: italic !important;
    font-size: inherit !important;
    letter-spacing: inherit !important;
    color: rgba(240, 234, 216, 0.4) !important;
    border: none !important;
    background: none !important;
    text-transform: none;
  }
  .nav-links .nav-submenu a:hover {
    color: var(--gold-light) !important;
    background: none !important;
  }
  .nav-links .nav-submenu.is-open {
    max-height: 500px;
  }
  .nav-lang {
    margin-left: auto;
    margin-right: 16px;
  }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 300;
  }
  .nav-hamburger span {
    display: block;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }
  .nav-hamburger span:nth-child(1) {
    width: 28px;
  }
  .nav-hamburger span:nth-child(2) {
    width: 16px;
    margin-left: auto;
  }
  .nav-hamburger:hover span:nth-child(2) {
    width: 28px;
  }
  .nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    width: 22px;
    margin-left: 3px;
  }
  .nav-hamburger.is-open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
    width: 22px;
    margin-left: 3px;
  }
}
@media (max-width: 1170px) {
  .nav-links {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .dons-layout {
    gap: 0px;
  }
  .don-grid {
    display: block;
  }
  .don-card {
    margin: 10px 0;
  }
  .doncCadeau-card {
    display: block;
  }
  .doncCadeau-cta {
    margin-top: 20px;
  }
  .hero-eyebrow {
    margin-bottom: 0px;
  }
  .hero-subtitle {
    line-height: 30px;
  }
  .hero {
    padding: 0 20px;
  }
  .hero-inner {
    padding: 0;
  }
  .hero-eyebrow {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }
  .hero-campaign {
    padding: 10px 16px;
  }
  .hero-campaign-name {
    font-size: 1.1rem;
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 1px;
  }
  .h-stat {
    padding: 14px 20px;
  }
  .intro-band {
    padding: 32px 20px;
  }
  #epreuve {
    padding: 0px 0px !important;
  }
  #epreuve .epreuve-container {
    padding: 60px 20px !important;
  }
  .epreuve-intro {
    gap: 28px;
    margin-bottom: 48px;
  }
  .parcours-map {
    min-height: 70vh;
  }
  .parcours-info {
    padding: 40px 20px;
  }
  .pmap-hint {
    display: none;
  }
  #histoire > div {
    padding: 60px 20px 48px !important;
  }
  .grid-2col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .manche-section {
    padding: 60px 20px;
  }
  .manche-top {
    gap: 28px;
    margin-bottom: 40px;
  }
  .manche-facts-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  #associations {
    padding: 60px 20px !important;
  }
  .asso-card {
    padding: 32px 20px;
  }
  .asso-card-featured {
    padding: 32px 20px;
    gap: 28px;
  }
  .visibilite-section {
    padding: 60px 20px;
  }
  .vis-header {
    gap: 28px;
  }
  .vis-grid {
    grid-template-columns: 1fr;
  }
  .vis-card {
    padding: 28px 20px;
  }
  .prep-section {
    padding: 60px 20px;
  }
  .prep-header {
    gap: 28px;
    margin-bottom: 48px;
  }
  .prep-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .prep-timeline::before {
    display: none;
  }
  .pt-item {
    padding: 0 0 28px 28px;
    text-align: left;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    position: relative;
  }
  .pt-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }
  .pt-dot {
    left: -6px;
    top: 0;
    transform: none;
  }
  #partenariat {
    padding: 60px 20px !important;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pkg.featured::before {
    font-size: 0.55rem;
  }
  .cta-section {
    padding: 60px 20px;
    min-height: 60vh;
  }
  footer {
    padding: 32px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (min-width: 1121px) {
  .nav-hamburger {
    display: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.4;
  }
}
.blog-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 0px 80px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(90, 156, 200, 0.05) 0%, transparent 50%);
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(143, 168, 200, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(143, 168, 200, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.blog-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.blog-hero-eyebrow::before, .blog-hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #c9a84c;
  opacity: 0.6;
}
.blog-hero-eyebrow span {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 1;
  font-weight: bold;
}

.blog-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(64px, 9vw, 110px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}
.blog-hero-title em {
  font-style: italic;
  color: #e8c97a;
}

.blog-hero-divider {
  width: 48px;
  height: 1px;
  margin: 0 auto 32px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.7s;
}

.blog-hero-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #f0ead8;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}
.blog-hero-subtitle strong {
  color: var(--white);
  font-weight: 400;
}

.coming-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}
.coming-icon svg {
  width: 100%;
  height: 100%;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.topic-tag {
  padding: 7px 18px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.04);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8fa8c8;
  border-radius: 2px;
  transition: all 0.3s;
}
.topic-tag:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: #e8c97a;
  background: rgba(201, 168, 76, 0.08);
}

.notify-block {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.notify-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8fa8c8;
  opacity: 0.4;
  margin-bottom: 16px;
}

.notify-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}

.notify-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  padding: 14px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}
.notify-input::-moz-placeholder {
  color: #8fa8c8;
  opacity: 0.4;
}
.notify-input::placeholder {
  color: #8fa8c8;
  opacity: 0.4;
}
.notify-input:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.notify-btn {
  padding: 14px 24px;
  background: #c9a84c;
  border: 1px solid #c9a84c;
  color: #060e1c;
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.notify-btn:hover {
  background: #e8c97a;
  border-color: #e8c97a;
}

.posts-section {
  padding: 80px 48px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.posts-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.posts-header::before, .posts-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.6);
}

.posts-header-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 1;
  white-space: nowrap;
  font-weight: bold;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.post-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: default;
}
.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 168, 76, 0.2);
}
.post-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.post-card-blur {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.post-card-blur-icon {
  font-size: 20px;
  opacity: 0.3;
}

.post-card-blur-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 0.4;
}

.post-category {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 1;
  margin-bottom: 14px;
}

.post-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.post-excerpt {
  font-size: 1rem;
  color: #8fa8c8;
  opacity: 0.5;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-meta {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0ead8;
  opacity: 1;
}

.post-card.is-live {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.post-card.is-live::before {
  background: #c9a84c;
  opacity: 0.55;
}
.post-card.is-live:hover {
  border-color: rgba(201, 168, 76, 0.35);
}
.post-card.is-live .post-category {
  opacity: 0.8;
}
.post-card.is-live .post-excerpt {
  opacity: 0.7;
  color: var(--white);
}
.post-card.is-live .post-meta {
  opacity: 0.5;
}
.post-card.is-live:hover .post-card-img img {
  transform: scale(1.04);
}

.post-card-img {
  width: calc(100% + 56px);
  margin: -32px -28px 24px;
  height: 200px;
  overflow: hidden;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 1;
  transition: opacity 0.2s;
}
.post-card.is-live:hover .post-card-link {
  opacity: 1;
}

@media (max-width: 768px) {
  .blog-hero-subtitle br {
    display: none;
  }
  .blog-hero {
    padding: 100px 24px 0px 24px;
  }
  .posts-section {
    padding: 60px 24px 80px;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .notify-form {
    flex-direction: column;
  }
  .notify-input {
    border-right: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: none;
  }
}
.post-hero {
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  padding: calc(64px + 3rem) 2rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}
.post-hero .kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.post-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.post-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.post-hero .subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: #f0ead8;
  margin-bottom: 2rem;
}
.post-hero .meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0ead8;
}
.post-hero .meta span {
  color: var(--gold);
}
.post-hero .meta .sep {
  color: var(--gold);
}

.hero-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  transform: translateY(-2rem);
}

.img-placeholder {
  width: 100%;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f0ead8;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.img-placeholder.half {
  max-width: 50%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .img-placeholder.half {
    max-width: 100%;
  }
}
.img-placeholder svg {
  opacity: 1;
}

.video-placeholder.half {
  max-width: 50%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .video-placeholder.half {
    max-width: 100%;
  }
}
.video-placeholder .img-caption {
  margin-top: 0.8rem;
}
.video-placeholder .img-placeholder-label {
  margin-top: 0.4rem;
}

.img-caption {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: #c9a84c;
  text-align: center;
  margin-top: 0rem;
  margin-bottom: 2rem;
  text-transform: initial;
}

.img-placeholder-label {
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
}

.article-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.article-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240, 234, 216, 0.88);
  margin-bottom: 1.6rem;
}

.dropcap::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 600;
  float: left;
  line-height: 0.82;
  margin: 0.1rem 0.55rem 0 0;
  color: var(--gold);
}

.pull-quote {
  border-left: 2px solid var(--gold);
  margin: 3rem 0;
  padding: 0.5rem 0 0.5rem 2rem;
}
.pull-quote p {
  font-family: "Cormorant Garamond", serif !important;
  font-style: italic !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  line-height: 1.45 !important;
  color: var(--white) !important;
  margin-bottom: 0.6rem !important;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-break {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3.5rem 0;
}
.section-break::before, .section-break::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.18);
}
.section-break span {
  font-size: 1.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.info-box {
  background: #111c32;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
  padding: 1.2rem 1.5rem;
  margin: 2.5rem 0;
}
.info-box .label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  margin-bottom: 0.5rem;
}
.info-box p {
  font-size: 1rem !important;
  color: #f0ead8 !important;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
}

.people-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.5rem 0 2.5rem;
}

.person-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #f0ead8;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 100px;
  padding: 5px 14px;
  background: #111c32;
}
.person-tag strong {
  color: var(--gold-light);
  font-weight: 400;
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 2.5rem 0;
}
.img-grid .img-placeholder {
  margin: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 3px;
  overflow: hidden;
  margin: 3rem 0;
}

.stat-cell {
  background: #0d1628;
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat-cell .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-cell .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0ead8;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 3rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.back-link::before {
  content: "←";
}
.back-link:hover {
  opacity: 1;
}

.next-article {
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  margin-top: 5rem;
  padding-top: 3rem;
  text-align: center;
}
.next-article .label {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.next-article h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.next-article p {
  font-size: 0.9rem;
  color: rgba(240, 234, 216, 0.5);
  margin-bottom: 1.5rem;
}

.btn-gold {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.7rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

.support-cta {
  margin: 4rem 0 3rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(201, 168, 76, 0.01) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.support-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0.5;
}

.support-cta-label {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.support-cta-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem !important;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240, 234, 216, 0.8);
  max-width: 520px;
  margin: 0 auto 1.8rem;
}

.video-wrap {
  position: relative;
  cursor: pointer;
  line-height: 0;
}
.video-wrap video {
  display: block;
  width: 100%;
}
.video-wrap.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 15, 30, 0.1);
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, background 0.2s;
}
.video-play svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s;
}
.video-play:hover {
  background: rgba(8, 15, 30, 0.05);
}
.video-play:hover svg {
  transform: scale(1.08);
}

.video-fs {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080f1e;
  border: 1px solid #c9a84c;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}
.video-fs svg {
  width: 15px;
  height: 15px;
}
.video-fs:hover {
  background: rgba(8, 15, 30, 0.9);
  opacity: 1 !important;
}

.video-wrap:hover .video-fs {
  opacity: 0.75;
}

.post-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 15, 30, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.post-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.post-lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
  display: block;
}

.post-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.post-lightbox-close:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.article-body img,
.hero-img-wrap img {
  cursor: zoom-in;
}

.donate-sticky {
  position: fixed;
  bottom: 20px;
  right: 80px;
  width: 50px;
  height: 50px;
  background: #0d1628;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.donate-sticky svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  transition: transform 0.2s;
}
.donate-sticky:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.donate-sticky:hover svg {
  transform: scale(1.15);
}

.contact-strip {
  margin: 3rem 0 2rem;
  text-align: center;
}
.contact-strip__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.contact-strip__links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(240, 234, 216, 0.72);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 100px;
  padding: 0.5rem 1.3rem;
  background: #111c32;
  transition: border-color 0.2s, color 0.2s;
}
.contact-strip__link svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}
.contact-strip__link:hover {
  border-color: rgba(201, 168, 76, 0.55);
  color: #f0ead8;
}

@media (max-width: 640px) {
  .img-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .post-hero {
    padding: 3.5rem 1.5rem 3rem;
  }
  .article-wrap {
    padding: 0 1.25rem 4rem;
  }
  .pull-quote {
    padding-left: 1.25rem;
  }
  .pull-quote p {
    font-size: 1.25rem !important;
  }
  .hero-img-wrap {
    padding: 0 1.25rem;
  }
  .section-break span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    white-space: normal;
    text-align: center;
  }
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.visible{
  visibility: visible;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.block{
  display: block;
}
.flex{
  display: flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.pt-8{
  padding-top: 2rem;
}
.uppercase{
  text-transform: uppercase;
}
.italic{
  font-style: italic;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/*# sourceMappingURL=style.min.css.map */
