/* ============================================================
   DON'T GIVE UP — Site officiel
   Palette : noir #000, blanc #FFF, ocre #E89B3C
   Typo : Anton (titres), Outfit (corps), Cormorant Garamond (citations)
   ============================================================ */

/* --- Variables globales --- */
:root {
  --bg: #000000;
  --text: #FFFFFF;
  --accent: #E89B3C;
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Accessibilité : respect reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   HEADER STICKY
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-url {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 3px;
}

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

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Hamburger mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-link {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-link:hover,
.mobile-link:focus {
  color: var(--accent);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 40px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   SECTIONS — Structure commune
   ============================================================ */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
}

/* Image de fond commune */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlays */
.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Crédit photo */
.photo-credit {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  z-index: 5;
}

/* Trait ocre réutilisable */
.accent-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 24px 0;
}

.accent-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* Texte accent */
.accent {
  color: var(--accent);
}

.accent-number {
  color: var(--accent);
  font-size: 1.4em;
  font-weight: 600;
}

/* ============================================================
   SECTION 1 — HOME
   ============================================================ */
.overlay-home {
  background: linear-gradient(
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.home-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-logo-img {
  width: clamp(140px, 20vw, 220px);
  height: auto;
  display: block;
}

.home-tagline {
  margin-top: clamp(24px, 5vh, 56px);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: var(--text);
}

/* ============================================================
   SECTION 2 — THE MOVIE
   ============================================================ */
.overlay-movie {
  background: linear-gradient(
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.movie-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: clamp(100px, 14vh, 160px) 24px clamp(80px, 12vh, 140px);
}

.movie-intro {
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 48px;
}

.movie-count {
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  margin-bottom: 20px;
}

.movie-journey {
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin-bottom: 48px;
}

.movie-content .accent-line {
  margin: 0 auto 24px;
}

.movie-question {
  font-weight: 600;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.movie-watch {
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  margin-bottom: 12px;
  opacity: 0.9;
}

.movie-title-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.movie-title-big .white {
  color: var(--text);
}

/* ============================================================
   SECTION 3 — THE RESERVE
   ============================================================ */
.overlay-reserve {
  background: linear-gradient(
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.reserve-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: clamp(100px, 14vh, 160px) 24px clamp(80px, 12vh, 140px);
}

.reserve-quote {
  max-width: 700px;
  margin: 0 auto 64px;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

/* Logo SVG The Reserve */
.reserve-logo-svg {
  width: min(650px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto 56px;
}

/* Cartes */
.reserve-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.reserve-card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  padding: 36px 28px;
  text-align: left;
}

.card-number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
}

.card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-weight: 400;
}

.card-line {
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin: 14px 0 16px;
}

.card-desc {
  font-weight: 300;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  opacity: 0.85;
}

/* ============================================================
   SECTION 4 — THE GUARDIANS
   ============================================================ */
.section-guardians {
  background: var(--bg);
  min-height: auto;
  padding: clamp(80px, 12vh, 140px) 24px;
}

.guardians-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.guardians-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  letter-spacing: 0.22em;
  color: var(--text);
}

.guardians-subtitle {
  max-width: 700px;
  margin: 24px auto 0;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Citations */
.quotes-container {
  margin-top: 72px;
}

.quote-block {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.quote-mark {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 20px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  border: none;
  margin: 0;
  padding: 0;
}

.quote-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 24px auto;
}

.quote-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.quote-separator {
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: var(--border-subtle);
  margin: 0 auto;
}

/* Fin de section Guardians */
.guardians-closing {
  margin-top: 72px;
}

.guardians-others {
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin-bottom: 20px;
  opacity: 0.9;
}

.guardians-100 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

/* ============================================================
   SECTION 5 — BECOME ONE
   ============================================================ */
.section-become {
  min-height: auto;
  display: block;
}

.become-hero {
  position: relative;
  width: 100%;
  height: clamp(50vh, 65vh, 75vh);
  overflow: hidden;
}

.become-bg {
  position: absolute;
  inset: 0;
}

.become-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.overlay-become {
  background: linear-gradient(
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.become-title {
  position: absolute;
  top: clamp(40px, 8vh, 80px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.become-content {
  background: var(--bg);
  text-align: center;
  padding: 72px 24px 48px;
}

.become-cta {
  font-weight: 500;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.9;
  margin-bottom: 32px;
}

.become-content .accent-line {
  margin-bottom: 36px;
}

.become-insta-label {
  font-weight: 500;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.become-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  transition: opacity 0.3s ease;
}

.become-insta-link:hover {
  opacity: 0.8;
}

.become-insta-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.insta-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.become-closing {
  margin-top: 72px;
}

.become-together {
  font-weight: 500;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.8;
  margin-bottom: 24px;
}

.become-final {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  text-align: center;
  padding: 48px 24px 36px;
  border-top: 1px solid var(--border-subtle);
}

.footer-email {
  font-size: 14px;
  color: var(--accent);
  opacity: 0.85;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.footer-email:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copy {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE — TABLETTE (< 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .reserve-cards {
    grid-template-columns: 1fr 1fr;
  }

  .reserve-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .logo-img {
    height: 40px;
  }

  .logo-url {
    font-size: 8px;
  }

  /* Navigation mobile */
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Sections */
  .reserve-cards {
    grid-template-columns: 1fr;
  }

  .reserve-card:last-child {
    max-width: 100%;
  }

  .reserve-card {
    padding: 28px 22px;
  }

  .movie-content {
    padding: clamp(90px, 12vh, 130px) 20px 60px;
  }

  .quote-block {
    padding: 36px 16px;
  }

  .become-hero {
    height: 50vh;
  }

  .become-title {
    top: 24px;
  }
}

/* ============================================================
   RESPONSIVE — PETIT MOBILE (< 420px)
   ============================================================ */
@media (max-width: 420px) {
  .movie-title-big {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
  }

  .become-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }
}
