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

:root {
  --bg: #ffffff;
  --bg-alt: #f4f4f2;
  --bg-soft: #e9e9e5;
  --green-deep: #1c1c1c;
  --green-mid: #2a2a2a;
  --ink: #1c1c1c;
  --off: #555555;
  --muted: #a0a0a0;
  --gold: #d4a843;
  --text-light: #ffffff;
  --text-light-dim: rgba(255,255,255,0.6);
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-hi: rgba(0,0,0,0.18);
  --border-dark: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- LOGO ---------- */
.logo-mark { display: flex; align-items: center; }
.logo-img { height: 102px; width: auto; display: block; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  background: var(--green-deep);
  color: var(--text-light);
}
.nav .logo-mark { color: var(--text-light); }
.nav-links { display: flex; gap: 32px; font-size: 13px; letter-spacing: 0.3px; font-weight: 500; color: var(--text-light); }
.nav-links a { opacity: 0.8; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { display: inline-block; border-color: var(--border-dark); color: var(--text-light); }
.nav-cta:hover { border-color: var(--text-light); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { width: 22px; height: 2px; background: var(--text-light); display: block; }

.scroll-progress {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 0%;
  background: var(--text-light);
  transition: width 0.1s linear;
}

.mobile-menu {
  position: fixed; inset: 0; top: 0; z-index: 99;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  font-size: 22px; font-weight: 600;
  transform: translateY(-100%); transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateY(0); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-solid { background: var(--green-deep); color: var(--text-light); box-shadow: 0 0 0 0 rgba(28,28,28,0.25); }
.btn-solid:hover { background: var(--green-mid); transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(28,28,28,0.55); }
.btn-outline { border-color: var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: rgba(43,36,23,0.04); }
.btn-ghost { font-size: 12px; padding: 10px 20px; border: 1px solid var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 220px 40px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 15%, rgba(255,255,255,0.5), transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 60%, var(--bg-soft) 100%);
  z-index: -1;
}
.hero-watermark {
  position: absolute; right: -4%; bottom: -6%;
  font-size: 30vw; font-weight: 900; letter-spacing: -1vw;
  line-height: 0.8; color: rgba(28,28,28,0.035);
  pointer-events: none; user-select: none; z-index: 0;
  text-transform: uppercase;
}
.hero-inner { max-width: 720px; position: relative; z-index: 1; }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--off); margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--off); font-style: italic; text-transform: none; font-weight: 300; }
.hero-sub {
  font-size: 17px; line-height: 1.6; color: var(--off);
  max-width: 460px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 56px; margin-top: 80px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 38px; font-weight: 800; letter-spacing: -1px; }
.hero-stats span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--off); margin-top: 4px; }

/* Scroll cue */
.hero-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border-hi); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px; z-index: 1;
}
.hero-cue span {
  width: 3px; height: 8px; border-radius: 2px; background: var(--ink);
  animation: cueScroll 1.6s ease-in-out infinite;
}
@keyframes cueScroll {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

/* Hero entrance */
.hero-rise { opacity: 0; transform: translateY(28px); animation: heroRise 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.hero-rise:nth-child(1) { animation-delay: 0.05s; }
.hero-title .hero-rise:nth-child(1) { animation-delay: 0.15s; }
.hero-title .hero-rise:nth-child(2) { animation-delay: 0.27s; }
.hero-title .hero-rise:nth-child(3) { animation-delay: 0.39s; }
.hero-sub.hero-rise { animation-delay: 0.5s; }
.hero-actions.hero-rise { animation-delay: 0.62s; }
.hero-stats.hero-rise { animation-delay: 0.74s; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

/* ---------- SECTION GENERIC ---------- */
section { padding: 110px 0; }
.s-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--off); margin-bottom: 18px;
}
.s-head { margin-bottom: 56px; }
.s-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -1px; line-height: 1.1; }
.s-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- STRIP (MARQUEE) ---------- */
.strip { background: var(--green-deep); padding: 30px 0; overflow: hidden; }
.strip-track {
  display: flex; width: max-content;
  animation: marquee 32s linear infinite;
}
.strip:hover .strip-track { animation-play-state: paused; }
.strip-row { display: flex; align-items: center; flex-shrink: 0; }
.strip-row span {
  font-size: clamp(20px, 3vw, 34px); font-weight: 800; letter-spacing: -0.5px;
  text-transform: uppercase; color: var(--text-light); padding: 0 32px; white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- BANNER CINÉMATIQUE ---------- */
.banner {
  position: relative;
  padding: 0;
  min-height: 560px;
  background-image: url('assets/motion-poster-mats.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.35) 0%, transparent 30%, transparent 70%, rgba(20,20,20,0.45) 100%);
}

/* ---------- MANIFESTO ---------- */
.manifesto { background: var(--green-deep); color: var(--text-light); text-align: center; }
.manifesto .wrap { max-width: 760px; }
.manifesto-title {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 500; line-height: 1.35; letter-spacing: -0.3px;
  margin-bottom: 32px;
}
.manifesto-title em { font-style: italic; font-weight: 700; color: var(--white); }
.manifesto-text { color: var(--text-light-dim); font-size: 15px; line-height: 1.8; max-width: 560px; margin: 0 auto; }
.manifesto .s-label { color: var(--text-light-dim); }

/* ---------- UNIVERS GRID ---------- */
.univers { background: var(--bg); }
.univers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.u-card {
  position: relative;
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.35s ease, color 0.35s ease;
  min-height: 200px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.u-card::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--gold); transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.u-card:hover { background: var(--green-deep); color: var(--text-light); }
.u-card:hover::after { width: 100%; }
.u-num { font-size: 12px; color: var(--off); font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; transition: color 0.35s ease; }
.u-card:hover .u-num { color: var(--gold); }
.u-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.u-card:hover h3 { transform: translateX(6px); }
.u-card p { font-size: 13.5px; color: var(--off); line-height: 1.6; transition: color 0.35s ease; }
.u-card:hover p { color: var(--text-light-dim); }

/* ---------- ESPACE ---------- */
.espace { background: var(--bg-alt); }
.espace-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.espace-text h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.espace-text p { color: var(--off); font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.espace-visual { position: relative; border-radius: 6px; overflow: hidden; min-height: 480px; }
.espace-photo { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.espace-badges { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; gap: 10px; z-index: 1; }
.espace-block {
  flex: 1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  padding: 22px 20px;
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.espace-block--dark { background: rgba(28,28,28,0.88); color: var(--text-light); border-color: var(--border-dark); }

/* ---------- ABONNEMENT ---------- */
.abonnement { background: var(--bg); }
.abo-intro { color: var(--off); font-size: 15px; margin-top: 18px; }

.s-head-mini { display: flex; align-items: center; gap: 16px; margin: 64px 0 24px; }
.s-head-mini:first-of-type { margin-top: 0; }
.s-head-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--off); white-space: nowrap; }
.s-head-line { flex: 1; height: 1px; background: var(--border); }
.s-head-num { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--muted); }

/* PACKS SÉANCES */
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 8px; }
.pack { background: var(--bg-alt); padding: 32px 28px; position: relative; border: 1px solid transparent; transition: background 0.2s, border-color 0.2s; color: var(--ink); }
.pack:hover { background: var(--bg-soft); border-color: var(--border-hi); }
.pack--best { background: var(--green-deep); color: var(--text-light); border-color: var(--green-deep); }
.pack--best:hover { background: var(--green-mid); }
.pack-tag { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--off); margin-bottom: 24px; display: block; }
.pack--best .pack-tag { color: var(--text-light-dim); }
.best-flag {
  position: absolute; top: 0; right: 0; background: var(--white); color: var(--ink);
  font-size: 8px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 5px 10px;
}
.pack-price { font-size: 52px; font-weight: 900; line-height: 1; letter-spacing: -2px; margin-bottom: 2px; }
.pack-price sup { font-size: 22px; font-weight: 600; vertical-align: super; margin-right: 2px; }
.pack-per { font-size: 11px; font-weight: 400; color: var(--off); margin-bottom: 20px; }
.pack--best .pack-per { color: var(--text-light-dim); }
.pack-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pack--best .pack-divider { background: var(--border-dark); }
.pack-feat { font-size: 12px; font-weight: 400; color: var(--off); margin-bottom: 7px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.pack--best .pack-feat { color: var(--text-light-dim); }
.pack-feat::before { content: '→'; font-size: 9px; color: var(--muted); flex-shrink: 0; margin-top: 2px; }
.pack--best .pack-feat::before { color: rgba(255,255,255,0.35); }
.validity-badge {
  display: inline-block; margin-top: 14px; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border-hi); padding: 4px 10px; color: var(--off);
}
.pack--best .validity-badge { border-color: var(--border-dark); color: var(--text-light-dim); }

.abo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  margin-bottom: 18px;
}
.abo-card { background: var(--bg-alt); padding: 36px 30px; position: relative; color: var(--ink); }
.abo-card--featured { background: var(--green-deep); color: var(--text-light); }
.abo-tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--off); display: block; margin-bottom: 22px; }
.abo-card--featured .abo-tag { color: var(--text-light-dim); }
.abo-flag {
  position: absolute; top: 0; right: 0; background: var(--ink); color: var(--text-light);
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 12px;
}
.abo-price { font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.abo-price sup { font-size: 20px; vertical-align: super; margin-right: 2px; }
.abo-price span { font-size: 13px; font-weight: 400; color: var(--off); margin-left: 4px; }
.abo-card--featured .abo-price span { color: var(--text-light-dim); }
.abo-note { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--off); margin-bottom: 24px; }
.abo-card--featured .abo-note { color: var(--text-light-dim); }
.abo-card ul li { font-size: 13px; color: var(--off); padding: 6px 0; border-top: 1px solid var(--border); }
.abo-card ul li:first-child { border-top: none; }
.abo-card--featured ul li { color: var(--text-light-dim); border-top-color: var(--border-dark); }

.abo-fine { font-size: 12.5px; color: var(--off); text-align: center; margin-bottom: 60px; }

/* TARIF RÉDUIT */
.reduit-block { background: var(--bg-alt); border: 1px solid var(--border-hi); padding: 36px 36px 32px; margin-bottom: 60px; }
.reduit-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.reduit-title { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.3px; line-height: 1.1; margin-bottom: 6px; color: var(--ink); }
.reduit-sub { font-size: 12px; color: var(--off); font-weight: 400; line-height: 1.6; max-width: 340px; }
.reduit-badge-big { font-size: 42px; font-weight: 900; letter-spacing: -1px; white-space: nowrap; line-height: 1; flex-shrink: 0; color: var(--ink); }
.reduit-badge-big span { display: block; font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--off); margin-top: 4px; text-align: right; }
.reduit-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.reduit-item { background: var(--white); border: 1px solid var(--border); padding: 18px 14px; }
.ri-name { font-size: 8px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; line-height: 1.4; min-height: 22px; }
.ri-price { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.ri-price sup { font-size: 13px; font-weight: 600; vertical-align: super; }
.ri-old { font-size: 10px; color: var(--muted); text-decoration: line-through; }
.reduit-note { margin-top: 22px; font-size: 11px; color: var(--muted); line-height: 1.7; padding-top: 16px; border-top: 1px solid var(--border); }
.reduit-note strong { color: var(--off); font-weight: 500; }

.launch-banner {
  text-align: center;
  border: 1px solid var(--border-dark);
  padding: 48px 24px;
  background: var(--green-deep);
  color: var(--text-light);
}
.launch-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-light-dim); margin-bottom: 10px; }
.launch-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.launch-sub { font-size: 13px; color: var(--text-light-dim); margin-bottom: 28px; }
.launch-banner .btn-solid { background: var(--bg); color: var(--green-deep); }
.launch-banner .btn-solid:hover { background: var(--white); }

/* ---------- STUDIO ---------- */
.studio { background: var(--bg-alt); }
.studio-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.studio-photo { width: 100%; display: block; border-radius: 6px; box-shadow: 0 30px 60px -25px rgba(0,0,0,0.3); }
.studio h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.6px; margin: 14px 0 24px; }
.studio-text { color: var(--off); font-size: 15px; line-height: 1.8; max-width: 460px; }

/* ---------- CONTACT / FOOTER ---------- */
.contact { background: var(--bg); padding-top: 90px; padding-bottom: 0; border-top: 1px solid var(--border); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 60px;
}
.tagline { margin-top: 14px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--off); }
.contact-info p { font-size: 14px; color: var(--off); line-height: 1.8; margin-bottom: 12px; }
.contact-info a:hover { color: var(--ink); }
.contact-cta { display: flex; align-items: flex-start; justify-content: flex-end; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 32px;
  font-size: 11px; color: var(--off);
}

/* ---------- SCROLL REVEAL ---------- */
.fade-up { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .hero-rise, .hero-cue span, .strip-track { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .univers-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-row { justify-content: center; gap: 24px; }
  .espace-grid { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-grid .studio-visual { order: 2; }
  .pack-grid { grid-template-columns: 1fr; }
  .abo-grid { grid-template-columns: 1fr; }
  .reduit-row { grid-template-columns: repeat(2, 1fr); }
  .reduit-top { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cta { justify-content: flex-start; }
  .hero { padding: 190px 24px 48px; }
  .wrap { padding: 0 24px; }
  .banner { background-attachment: scroll; min-height: 360px; }
  .hero-cue { display: none; }
  .hero-watermark { font-size: 44vw; bottom: 2%; }
}

@media (max-width: 540px) {
  .univers-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
}
