/* =========================
   RESET & ROOT
========================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:        #050505;
  --bg-soft:   #0c0c0c;
  --bg-card:   #111111;
  --border:    rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.18);

  --text:      #f5f5f5;
  --text-soft: #cfcfcf;
  --text-muted:#9e9e9e;

  --gold:      #d4af37;
  --gold-soft: #e7c85d;
  --gold-dark: #a88723;
  --white:     #ffffff;

  --shadow:    0 20px 50px rgba(0, 0, 0, 0.4);
  --radius:    18px;
  --radius-sm: 12px;
  --transition: 0.3s ease;

  --nav-h: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =========================
   LAYOUT UTILITIES
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.section {
  padding-block: clamp(40px, 5vw, 64px);
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.012) 0%, transparent 100%);
}

.section-header {
  max-width: 780px;
  width: 100%;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}

.section-intro {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.7;
}

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  transition: transform var(--transition), opacity var(--transition),
              border-color var(--transition), background var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #111;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.32);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: var(--border-gold);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.04);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* =========================
   CARD BASE
========================= */
.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
}

.card-hover {
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card-hover:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
}

.logo-subtext {
  font-size: 0.68rem;
  color: var(--text-muted);
  max-width: 180px;
  line-height: 1.3;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Header right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Burger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color var(--transition), background var(--transition);
}

.menu-toggle:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.18);
}

.burger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

/* Burger → X animation */
.site-header.is-open .burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.is-open .burger-line:nth-child(2) { opacity: 0; width: 0; }
.site-header.is-open .burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  padding: 32px clamp(16px, 4vw, 32px) 40px;
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-header.is-open ~ .mobile-nav { display: flex; }

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

.mobile-nav-links a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-soft);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a::after {
  content: "→";
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-nav-links a:hover { color: var(--white); }
.mobile-nav-links a:hover::after { opacity: 1; transform: translateX(0); }

.mobile-nav-cta {
  margin-top: 32px;
}

.mobile-nav-cta .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 8vw, 80px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Emma_Home.jpg');
  background-size: cover;
  background-position: center 20%;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94) 0%, rgba(5,5,5,0.80) 55%, rgba(5,5,5,0.50) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0.65) 100%);
}

.hero-glow {
  position: absolute;
  right: -10%;
  top: 50%;
  translate: 0 -50%;
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  width: 100%;
}

/* Hero copy */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.hero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero panel */
.hero-panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.10);
  border-radius: 16px;
  pointer-events: none;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-year {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-panel h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-panel p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-stat {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 16px;
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 4px;
  line-height: 1.2;
}

.hero-stat span {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* =========================
   TRUST BAR
========================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
}

.trust-card strong {
  display: block;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.trust-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-card-img {
  width: calc(100% + clamp(40px, 6vw, 56px));
  margin-left: calc(-1 * clamp(20px, 3vw, 28px));
  margin-right: calc(-1 * clamp(20px, 3vw, 28px));
  margin-top: calc(-1 * clamp(20px, 3vw, 28px));
  margin-bottom: 20px;
  height: 160px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.trust-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.trust-card-img--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.trust-card-img--duo img {
  border-radius: 0;
}

.trust-card-img--duo img:first-child {
  border-radius: var(--radius) 0 0 0;
}

.trust-card-img--duo img:last-child {
  border-radius: 0 var(--radius) 0 0;
}

/* =========================
   WHY PARTICIPATE
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  transition: border-color var(--transition), transform var(--transition);
}

.info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.info-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.info-card p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* =========================
   TESTIMONIALS
========================= */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.quote-close {
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  text-align: right;
}

.quote-text {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
  font-style: italic;
  flex: 1;
}

.quote-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(255,255,255,0.03));
}

.quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.quote-author {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}

.quote-role {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-top: 2px;
}

/* =========================
   PARTNERS
========================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.partner-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.partner-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.partner-logo {
  width: 100%;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-logo img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =========================
   PARTNERS MARQUEE
========================= */
.partners-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-block: 40px;
  padding-block: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Fondu sur les bords */
.partners-marquee-wrap::before,
.partners-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.partners-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.partners-marquee {
  display: flex;
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partners-item {
  flex-shrink: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.partners-item:hover {
  opacity: 1;
}

.partners-item img {
  height: 64px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--transition);
}

.partners-item:hover img {
  filter: grayscale(0%);
}

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

.partner-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.partner-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* =========================
   CTA BOX
========================= */
.cta-box {
  background: linear-gradient(160deg, rgba(212,175,55,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  translate: -50% 0;
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--white);
  position: relative;
}

.cta-box p {
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.footer-brand strong {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
}

.footer-brand span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.92rem;
  transition: color var(--transition);
}

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

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-socials a {
  color: var(--text-soft);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-socials a:hover { color: var(--gold-soft); }

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

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.86rem;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--text-soft); }

/* =========================
   PAGE HERO (inner pages)
========================= */
.page-hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.page-hero .eyebrow { margin-bottom: 16px; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.7;
}

/* =========================
   FAQ
========================= */
.faq-list { display: grid; gap: 12px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active,
.faq-item:has(.faq-answer:not([hidden])) {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--white);
  border: 0;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}

.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer { display: block; }

/* =========================
   CONTACT FORM
========================= */
.contact-form-wrap {
  max-width: 760px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-legal {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.form-optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.82rem;
}

.form-group { display: grid; gap: 8px; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* =========================
   EDITIONS
========================= */
.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.edition-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.edition-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.edition-visual {
  height: 180px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(255,255,255,0.03));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.edition-year {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
}

.edition-body {
  padding: clamp(18px, 3vw, 24px);
}

.edition-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.edition-body p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.text-link {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.text-link:hover { color: var(--gold); }

/* Mentions légales */
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
}

.legal-block {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
}

.legal-block h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.legal-block p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-block p a {
  color: var(--gold-soft);
  transition: color var(--transition);
}

.legal-block p a:hover { color: var(--gold); }

.legal-dl {
  display: grid;
  gap: 12px;
}

.legal-dl dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.legal-dl dd {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.legal-dl dd a {
  color: var(--gold-soft);
  transition: color var(--transition);
}

.legal-dl dd a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}
.presidente-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.presidente-photo {
  width: 260px;
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(255,255,255,0.03));
  overflow: hidden;
  flex-shrink: 0;
}

.presidente-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.presidente-photo.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.presidente-photo.no-photo::after {
  content: "Photo à venir";
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.presidente-quote {
  margin: 16px 0 24px;
  border: none;
  padding: 0;
}

.presidente-quote p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  font-style: italic;
}

.presidente-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.presidente-sig strong {
  color: var(--gold-soft);
  font-size: 1rem;
  font-weight: 700;
}

.presidente-sig span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

@media (max-width: 860px) {
  .presidente-wrap {
    grid-template-columns: 1fr;
  }

  .presidente-photo {
    width: 180px;
    height: 220px;
  }
}
.concours-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.concours-highlights {
  display: grid;
  gap: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}

@media (max-width: 1024px) {
  .concours-split {
    grid-template-columns: 1fr;
  }
}
.reglement-intro-card {
  background: linear-gradient(160deg, rgba(212,175,55,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  max-width: 760px;
}

.reglement-org-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.reglement-intro-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.reglement-intro-card p + p {
  margin-top: 10px;
}

.reglement-contact {
  margin-top: 10px;
}

.reglement-contact a {
  color: var(--gold-soft);
  transition: color var(--transition);
}

.reglement-contact a:hover {
  color: var(--gold);
}

.reglement-group {
  margin-bottom: 40px;
}

.reglement-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reglement-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212,175,55,0.15);
}

.faq-answer p { color: var(--text-soft); font-size: 0.93rem; line-height: 1.7; }
.faq-answer p + p { margin-top: 10px; }
.faq-answer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 10px 0;
}
.faq-answer ul li {
  padding-left: 18px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.65;
}
.faq-answer ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.faq-answer a {
  color: var(--gold-soft);
  transition: color var(--transition);
}
.faq-answer a:hover { color: var(--gold); }

.reglement-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.reglement-content h2:first-child { margin-top: 0; }

.reglement-content p,
.reglement-content li {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.reglement-content ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.reglement-content ul li {
  padding-left: 18px;
  position: relative;
}

.reglement-content ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Inscriptions */
.inscription-steps {
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  counter-increment: steps;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE — tablet
========================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-panel { max-width: 600px; }

  .card-grid,
  .quotes-grid,
  .editions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1150px) {
  .logo-subtext { display: none; }
}

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

  .nav-links,
  .header-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

/* =========================
   RESPONSIVE — mobile
========================= */
@media (max-width: 600px) {
  :root { --nav-h: 68px; }

  .logo-image { width: 42px; height: 42px; }
  .logo-text { font-size: 1.3rem; }

  .hero-title { font-size: clamp(2.2rem, 11vw, 3rem); }

  .hero-bg {
    background-image: none;
    background:
      radial-gradient(ellipse 60% 50% at 20% 20%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
      linear-gradient(180deg, #060606 0%, #050505 100%);
  }

  .hero-bg::after {
    display: none;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .card-grid,
  .quotes-grid,
  .editions-grid,
  .partners-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-grid { grid-template-columns: 1fr; }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal { flex-wrap: wrap; gap: 12px; }

  .mobile-nav-links a { font-size: 1.2rem; }
}

@media (max-width: 380px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
}
.presidente-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.presidente-photo {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.presidente-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  display: block;
}

.presidente-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
 color: var(--text-soft);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1rem 0 1.5rem;
}

.presidente-identity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.presidente-identity strong {
  font-size: 1rem;
}

.presidente-identity span {
  font-size: 0.875rem;
  opacity: 0.6;
}

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

  .presidente-photo img {
    aspect-ratio: 1 / 1;
  }
}
