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

html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
body { background: var(--bg); color: var(--star-white); font-family: var(--serif); min-height: 100vh; overflow-x: hidden; overflow-y: auto; }
* { -webkit-tap-highlight-color: transparent; }

/* ─── CANVAS ÉTOILÉ ─── */
#star-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(5,6,10,0.97) 0%, transparent 100%);
}
.logo {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase; font-weight: 700;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; transition: opacity 0.4s ease, transform 0.4s ease; }
.nav-links a {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--text-muted); text-transform: uppercase; text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ─── HAMBURGER + MENU MOBILE ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 1px; background: var(--gold); display: block; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(5,6,10,0.99); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.3em;
  color: var(--star-white); text-transform: uppercase; text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; font-family: var(--mono); }

/* ─── SECTIONS ─── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 7rem 3rem; }
.section-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 4rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--gold-dim); opacity: 0.3; }

/* ─── BOUTONS ─── */
.btn-primary {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  background: var(--gold); color: var(--bg); border: none; cursor: pointer;
  padding: 1rem 2.2rem; text-transform: uppercase; font-weight: 700; min-height: 44px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.3s, box-shadow 0.4s, transform 0.2s;
}
.btn-primary:hover {
  opacity: 0.92; transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(201,168,76,0.6), 0 0 45px rgba(201,168,76,0.28), 0 0 90px rgba(201,168,76,0.12);
}
.btn-secondary {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-dim); cursor: pointer;
  padding: 1rem 2.2rem; text-transform: uppercase; min-height: 44px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.4s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--star-white); transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(201,168,76,0.4), 0 0 38px rgba(201,168,76,0.18);
}

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  color: var(--text-muted); text-transform: uppercase;
}
footer span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }

/* ─── MEDIA ─── */
img, video { max-width: 100%; height: auto; }
iframe { max-width: 100%; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TURNSTILE ─── */
.turnstile-wrap { margin-bottom: 1.5rem; }
.turnstile-error {
  display: none;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em;
  color: rgba(220,80,80,0.85); text-transform: uppercase;
  margin-top: 0.75rem;
  border-left: 2px solid rgba(220,80,80,0.4);
  padding-left: 0.75rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-inner { padding: 5rem 1.5rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { justify-content: center; }
  * { -webkit-overflow-scrolling: touch; }
  section { overflow: visible !important; }
}
