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

:root {
  --red: #E8253A;
  --red-dark: #c01e2e;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --grey: #888888;
  --light-grey: #cccccc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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


/* ─── SEARCH BTN ─── */
.search-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: transform .25s ease, background .2s;
  flex-shrink: 0;
}
.search-btn:hover {
  transform: scale(1.18);
  background: rgba(0,0,0,.08);
}
.search-btn svg { width: 20px; height: 20px; }

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}
.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.search-box {
  width: min(600px, 90vw);
  position: relative;
  transform: translateY(20px);
  transition: transform .35s ease;
}
.search-overlay.active .search-box {
  transform: translateY(0);
}
.search-box input {
  width: 100%;
  background: #1a1a1a;
  border: 2px solid var(--red);
  border-radius: 50px;
  padding: 18px 60px 18px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  outline: none;
  letter-spacing: .5px;
}
.search-box input::placeholder { color: #555; }
.search-box .search-submit {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.search-box .search-submit svg { width: 22px; height: 22px; fill: var(--red); }
.search-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: #666; font-size: 28px; cursor: pointer;
  transition: color .2s;
  line-height: 1;
}
.search-close:hover { color: var(--white); }
.search-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: #444;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 60px;
}

/* ─── NAVBAR ─── */
nav {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--red);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-title {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1;
}
.logo-title span { color: var(--red); }
.logo-sub {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--light-grey);
  letter-spacing: 0px;
  margin-top: 2px;
}
.logo-sub em { color: var(--red); font-style: normal; font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cinema { font-weight: 700 !important; }
.nav-links .contact-link { color: var(--red); }

.nav-cinema {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  line-height: 1;
  position: relative;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  transition: color .2s;
  padding: 38px 0;
  margin: -38px 0;
}
.nav-cinema:hover { color: var(--red); }
.nav-cinema svg { width: 12px; height: 12px; fill: var(--white); display: block; position: relative; top: 1px; transition: transform .25s; }
.nav-cinema:hover svg { transform: rotate(180deg); fill: var(--red); }

/* ─── DROPDOWN ─── */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: linear-gradient(180deg, #161616, #0d0d0d);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--red);
  border-radius: 14px;
  min-width: 270px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 200;
  box-shadow: 0 20px 45px rgba(0,0,0,.55);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: transparent;
  pointer-events: auto;
}
.nav-cinema:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light-grey) !important;
  transition: color .2s, background .2s, transform .2s;
  white-space: nowrap;
}
.dropdown a + a { margin-top: 2px; }
.dropdown a:hover {
  color: var(--white) !important;
  background: rgba(232,37,58,0.1);
  transform: translateX(3px);
}
.dropdown a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  flex-shrink: 0;
  margin-right: 0;
  transition: background .2s, transform .2s;
}
.dropdown a:hover span { background: var(--red-dark); transform: scale(1.08); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-icons svg { width: 20px; height: 20px; fill: var(--white); cursor: pointer; transition: fill .2s; }
.nav-icons svg:hover { fill: var(--red); }

/* burger menu (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* mobile nav hidden by default */
.mobile-nav { display: none; }

/* ─── SECTION HEADER ─── */
.section-header {
  background: var(--red);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-header h2::after {
  content: '•';
  color: var(--white);
  font-size: 22px;
  line-height: 0;
  position: relative;
  top: 2px;
}
.section-header .search-icon { fill: var(--white); width: 18px; height: 18px; cursor: pointer; }

/* ─── CAROUSEL WRAPPER ─── */
.carousel-outer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 20px 0;
}
.carousel-outer::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, transparent, #0a0a0a);
  pointer-events: none;
  z-index: 5;
}


.carousel-track {
  display: flex;
  gap: 14px;
  padding: 0 20px;
  transition: transform .4s ease;
}

/* ─── REVIEW CARDS ─── */
.review-card {
  flex: 0 0 220px;
  cursor: pointer;
}

.review-card .card-wrap {
  position: relative;
  width: 220px;
  height: 310px;
  border-radius: 22px;
  overflow: hidden;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.review-card:hover img { transform: scale(1.05); }

/* Info sits BELOW the card */
.card-info {
  margin-top: 8px;
  padding: 0 2px;
}
.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--red);
  line-height: 1.2;
}
.card-title span { color: #aaa; font-size: 11px; }
.card-sub {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1.35;
}

/* carousel nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--red);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.carousel-btn:hover { background: var(--red-dark); transform: translateY(-50%) scale(1.1); }
.carousel-btn svg { fill: none; width: 16px; height: 16px; stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 14px 0 6px;
}
.dot {
  width: 28px; height: 8px;
  border-radius: 99px;
  background: #ddd;
  cursor: pointer;
  transition: background .25s, width .3s ease;
}
.dot.active {
  background: var(--red);
  width: 42px;
}
.dot:hover:not(.active) { background: #bbb; }

/* ─── "COMMENT C'EST FAIT" SECTION ─── */
.ccf-section { background: var(--black); }

.ccf-carousel-outer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 20px 0;
}
.ccf-carousel-outer::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 180px;
  background: linear-gradient(to right, rgba(10,10,10,0) 0%, rgba(10,10,10,1) 100%);
  pointer-events: none;
  z-index: 2;
}

.ccf-track {
  display: flex;
  gap: 16px;
  padding: 0 20px;
  transition: transform .4s ease;
}

.ccf-card {
  flex: 0 0 calc(50% - 24px);
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  min-width: 260px;
}

.ccf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.ccf-card:hover img { transform: scale(1.05); }

.ccf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%),
              linear-gradient(160deg, rgba(232,37,58,0.22) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.ccf-movie-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,.8);
}
.ccf-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14px, 2.5vw, 22px);
  letter-spacing: 2px;
  color: #ddd;
  margin-top: 4px;
}

.ccf-card-label {
  text-align: center;
  margin-top: 10px;
}
.ccf-card-label .film { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--red); letter-spacing: 1px; }
.ccf-card-label .cat { font-size: 10px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }

/* ─── TOP & RETROSPECTIVES ─── */
.top-section { background: var(--black); }

.top-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px;
}

.top-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}
.top-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.top-card:hover img { transform: scale(1.06); }
.top-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 50%),
              linear-gradient(160deg, rgba(232,37,58,0.20) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s;
}
.top-card:hover .top-card-overlay { opacity: 1; }
.top-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  transition: opacity .35s ease;
}
.top-card:hover .top-card-info {
  opacity: 0;
}
.top-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.top-card-sub {
  font-size: 9px;
  color: var(--light-grey);
  letter-spacing: .5px;
  margin-top: 3px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}

/* hover overlay avec titre centré */
.top-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: background .35s ease;
}
.top-card:hover .top-card-hover {
  background: rgba(0,0,0,.6);
}
.top-card-hover-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 2px;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.9);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.top-card:hover .top-card-hover-title {
  opacity: 1;
  transform: translateY(0);
}

/* top carousel on mobile */
.top-carousel-outer {
  position: relative;
  overflow: hidden;
}
.top-track {
  display: flex;
  transition: transform .4s;
}
.top-track .top-card {
  flex: 0 0 50%;
}

/* ─── À PROPOS ─── */
.about-section {
  background: var(--black);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  direction: rtl;
}
.about-left, .about-right {
  direction: ltr;
}
.about-left {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.75);
}
.about-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(10,10,10,1) 100%);
  pointer-events: none;
}
.about-right {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: var(--dark);
}
.about-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
}
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--white);
}
.about-title em {
  color: var(--red);
  font-style: normal;
}
.about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #bbb;
  max-width: 480px;
}
.about-text strong {
  color: var(--white);
  font-weight: 600;
}
.about-signature {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .logo img { height: 60px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-left { min-height: 260px; }
  .about-right { padding: 40px 24px; }
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--black);
}

.contact-inner {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

/* Image plein fond */
.contact-left {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

/* Dégradé noir de droite vers transparent */
.contact-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,0.85) 40%,
    rgba(10,10,10,0.2) 70%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

/* Formulaire flottant à droite */
.contact-right {
  position: relative;
  z-index: 1;
  width: 460px;
  padding: 48px 48px 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  background: transparent;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.form-group input {
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder { color: #555; }
.form-group input:focus { border-color: var(--red); }

.form-group textarea {
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
  min-height: 100px;
  width: 100%;
  box-sizing: border-box;
}
.form-group textarea::placeholder { color: #555; font-family: 'Montserrat', sans-serif; }
.form-group textarea:focus { border-color: var(--red); }

.btn-send {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  align-self: flex-start;
  margin-top: 4px;
}
.btn-send:hover { background: var(--red-dark); transform: scale(1.03); }

.contact-pro {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #333;
}
.contact-pro p {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #777;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-pro a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color .2s;
}
.contact-pro a:hover { color: var(--white); }
.social-block p { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; }
.social-icons { display: flex; gap: 14px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s, opacity .2s;
}
.social-icon:hover { transform: scale(1.15); opacity: .85; }
.social-icon.x { background: #000; border: 1.5px solid #555; }
.social-icon.spotify { background: #1DB954; }
.social-icon.facebook { background: #1877F2; }
.social-icon svg { width: 18px; height: 18px; fill: white; }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  text-align: center;
  padding: 20px;
  font-size: 11px;
  color: #444;
  letter-spacing: 1px;
  border-top: 1px solid #1a1a1a;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-right { margin-right: 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .logo-title { font-size: 24px; }
  .logo-sub { font-size: 9px; }
  .nav-icons .search-desktop { display: block; }

  /* mobile nav drawer - plein écran, liste numérotée */
  .mobile-nav {
    display: flex;
    position: fixed;
    top: 100px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,.97);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }
  .mobile-nav.open {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-nav a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    padding: 20px 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity .4s ease, transform .4s ease, color .2s;
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a::before {
    content: '▸';
    flex-shrink: 0;
    font-size: 22px;
    color: var(--red);
    transition: color .2s;
  }
  .mobile-nav.open a {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-nav.open a:nth-child(1) { transition-delay: .05s; }
  .mobile-nav.open a:nth-child(2) { transition-delay: .1s; }
  .mobile-nav.open a:nth-child(3) { transition-delay: .15s; }
  .mobile-nav.open a:nth-child(4) { transition-delay: .2s; }
  .mobile-nav.open a:nth-child(5) { transition-delay: .25s; }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--red); }
  .mobile-nav a:hover::before { color: var(--white); }

  /* reviews: vertical list on mobile */
  /* ── MOBILE REVIEWS : bannières plein largeur ── */
  .reviews-mobile .carousel-track {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .reviews-mobile { position: relative; background: #0a0a0a; }
  .reviews-mobile-inner {
    position: relative;
    overflow: hidden;
    max-height: 1080px;
    transition: max-height .5s ease;
  }
  .reviews-mobile-inner.expanded {
    max-height: 99999px;
  }
  .reviews-mobile-inner::-webkit-scrollbar { display: none; }
  .reviews-mobile-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(10,10,10,.98));
    pointer-events: none;
    z-index: 2;
    transition: opacity .4s;
  }
  .reviews-mobile-toggle {
    position: absolute;
    bottom: 16px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
    transition: opacity .4s;
  }
  .btn-voir-plus {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(220,25,40,.4);
    transition: transform .2s, box-shadow .2s;
  }
  .btn-voir-plus:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(220,25,40,.5); }
  .btn-voir-plus svg { width: 26px; height: 26px; fill: #fff; transition: transform .3s; }
  .btn-voir-plus.open svg { transform: rotate(180deg); }

  /* Bannière */
  .reviews-mobile .review-card {
    display: block !important;
    width: 100% !important;
    padding: 12px 16px 0 !important;
    border-bottom: none !important;
    background: #0a0a0a !important;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
  }
  .reviews-mobile .review-card .card-wrap {
    width: 100% !important;
    height: 190px !important;
    min-width: unset !important;
    border-radius: 16px !important;
    overflow: hidden;
    position: relative;
  }
  .reviews-mobile .review-card .card-wrap img {
    width: 100% !important;
    height: 190px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block;
  }
  .reviews-mobile .review-card .card-wrap::after {
    border-radius: 16px !important;
    background: linear-gradient(
      to top,
      rgba(200,20,35,0.75) 0%,
      rgba(180,15,30,0.35) 35%,
      transparent 60%
    ) !important;
  }
  .reviews-mobile .review-card .card-info {
    position: static !important;
    padding: 8px 4px 14px !important;
    border-bottom: none !important;
    background: #0a0a0a;
  }
  .reviews-mobile .review-card .card-title {
    font-size: 13px !important;
    color: var(--red) !important;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
  }
  .reviews-mobile .review-card .card-title span {
    color: #999 !important;
    font-size: 11px !important;
  }
  .reviews-mobile .review-card .card-sub {
    font-size: 9.5px !important;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 3px;
  }


  /* ccf mobile: small cards grid */
  .ccf-card { flex: 0 0 calc(50% - 8px); min-width: 140px; aspect-ratio: 4/5; }
  .ccf-movie-title { font-size: 16px; }
  .ccf-tagline { font-size: 11px; }

  /* top: 2 col grid */
  .top-grid { display: none; }
  .top-mobile { display: block; }
  .top-track .top-card { flex: 0 0 50%; }

  /* contact stacked */
  .contact-inner { grid-template-columns: 1fr; }
  .contact-left { min-height: 220px; }

  .section-header h2 { font-size: 15px; }
}

@media (min-width: 769px) {
  .top-mobile { display: none; }
  .reviews-mobile { display: none; }
  .reviews-desktop { display: block; }
}
@media (max-width: 768px) {
  .reviews-desktop { display: none; }
  .reviews-mobile { display: block; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeIn .5s ease forwards; }

/* placeholder images via gradient */
.img-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
