.t-cookie{z-index:999999!important;position:fixed!important;}
/* ================================================
   URBEXSCAPE — CSS COMPLET POUR TILDA
   A coller dans : Site Settings > More > Custom CSS
   ================================================ */


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

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark-grey: #111111;
  --red: #ca0c0c;
  --red-hover: #e01010;
  --white: #ffffff;
  --grey: #999999;
  --light-grey: #cccccc;
  --font-display: 'Captureit', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 56px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

/* === SHARED COMPONENTS === */
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); font-weight: 600; margin-bottom: 14px; text-align: center;
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red) !important; color: var(--white) !important;
  font-size: 16px; font-weight: 700;
  padding: 16px 40px; border-radius: 50px;
  letter-spacing: 0.5px; text-transform: uppercase;
  width: 100%; max-width: 340px;
  transition: all 0.2s; -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: var(--red-hover) !important; transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }

.btn-primary--ghost {
  background: transparent !important; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white) !important;
  font-size: 13px; padding: 12px 24px; margin-top: 10px;
  font-weight: 500; text-transform: none; letter-spacing: 0;
}
.btn-primary--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05) !important; }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}
.header.header--hidden { transform: translateY(-100%); }
.header__logo img { height: 32px; width: auto; }
.header__actions { display: flex; align-items: center; gap: 10px; }

.btn-reserve-header {
  background: var(--red) !important; color: var(--white) !important;
  font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: 50px;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-reserve-header:hover { background: var(--red-hover) !important; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; padding: 10px; cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(0,0,0,0.97);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu__close {
  position: absolute; top: 16px; right: 16px;
  background: var(--white); color: var(--black);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
}
.mobile-menu a { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; color: var(--white); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--red); }

/* === HERO === */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 20px 32px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--black);
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; text-align: center; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1.1; letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero__title span { color: var(--red); }

.hero__sub {
  font-size: 13px; color: var(--light-grey); font-weight: 300;
  letter-spacing: 0.3px; margin-bottom: 20px; line-height: 1.5;
}

.hero__badges {
  display: flex; justify-content: center;
  gap: 10px; margin-bottom: 20px;
}
.badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 500; color: var(--light-grey);
  white-space: nowrap;
}

.hero__video {
  margin-bottom: 24px; border-radius: 10px; overflow: hidden;
  aspect-ratio: 16/9; background: var(--dark-grey);
  position: relative;
}
.hero__video img { width: 100%; height: 100%; object-fit: cover; }
.hero__video .play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
}
.play-icon {
  width: 56px; height: 56px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.play-icon::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}

.hero__proof {
  font-size: 12px; color: var(--grey); margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.hero__proof strong { color: var(--light-grey); font-weight: 600; }

/* === GALLERY === */
.gallery { padding: 0; overflow: hidden; }
.gallery__scroll {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery__scroll::-webkit-scrollbar { display: none; }
.gallery__item { flex: 0 0 75%; scroll-snap-align: center; padding: 6px; }
.gallery__item img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; }

/* === STORY === */
.story { padding: 48px 20px; background: var(--black); }
.story__title {
  font-family: var(--font-display); font-size: 28px; line-height: 1.2;
  margin-bottom: 20px; text-align: center; text-transform: uppercase;
}
.story__text { color: var(--light-grey); font-size: 15px; line-height: 1.8; font-weight: 300; }
.story__text p { margin-bottom: 14px; }
.story__text strong { color: var(--white); font-weight: 500; }

.story__narrator {
  margin-top: 28px; padding: 20px;
  background: rgba(202,12,12,0.08); border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--light-grey); font-size: 14px; line-height: 1.7;
}
.narrator-name { display: block; margin-top: 10px; color: var(--red); font-weight: 600; font-style: normal; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

/* === USP CARDS === */
.usp { padding: 48px 0; background: var(--black); }
.usp__title { font-family: var(--font-display); font-size: 28px; text-align: center; margin-bottom: 28px; padding: 0 20px; text-transform: uppercase; }

.usp-card {
  position: relative; overflow: hidden;
  min-height: 320px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px 20px;
  margin-bottom: 4px;
}
.usp-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.usp-card__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.95) 100%);
}
.usp-card__content { position: relative; z-index: 1; }
.usp-card__title {
  font-family: var(--font-display); font-size: 22px;
  margin-bottom: 8px; text-align: center; line-height: 1.2; text-transform: uppercase;
}
.usp-card__text { font-size: 14px; color: var(--light-grey); line-height: 1.6; text-align: left; }

/* === RATINGS === */
.ratings { padding: 48px 20px; background: var(--dark); }
.ratings__title { font-family: var(--font-display); font-size: 28px; text-align: center; margin-bottom: 6px; text-transform: uppercase; }
.ratings__subtitle { text-align: center; color: var(--grey); font-size: 14px; margin-bottom: 24px; }

.ratings__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rating-card {
  background: var(--dark-grey); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 16px 10px; text-align: center;
}
.rating-card__score { font-family: var(--font-display); font-size: 34px; color: var(--red); line-height: 1; }
.rating-card__stars { color: #f5a623; font-size: 13px; margin: 4px 0; letter-spacing: 2px; }
.rating-card__source { font-size: 11px; color: var(--grey); font-weight: 500; }

/* === REVIEWS === */
.reviews { padding: 48px 20px; background: var(--black); }
.reviews__title { font-family: var(--font-display); font-size: 26px; text-align: center; margin-bottom: 6px; text-transform: uppercase; }
.reviews__subtitle { text-align: center; color: var(--grey); font-size: 13px; margin-bottom: 20px; }

.reviews__scroll {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; gap: 12px; scrollbar-width: none;
}
.reviews__scroll::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 88%; scroll-snap-align: start;
  background: var(--dark-grey); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 20px 16px;
}
.review-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-card__author { font-weight: 600; font-size: 14px; }
.review-card__date { font-size: 11px; color: var(--grey); }
.review-card__stars { color: #f5a623; font-size: 12px; margin-bottom: 10px; letter-spacing: 1px; }
.review-card__text { font-size: 14px; color: var(--light-grey); line-height: 1.6; }

.fomo-quote {
  margin-top: 20px; padding: 16px;
  background: rgba(202,12,12,0.06); border-radius: 10px;
  text-align: center; font-size: 14px; color: var(--light-grey);
  font-style: italic; line-height: 1.6;
}
.fomo-quote .fomo-author { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--grey); font-weight: 500; }

.share-cta { text-align: center; margin-top: 24px; }
.btn-share {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366 !important; color: var(--white) !important;
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600; transition: opacity 0.2s;
}
.btn-share:hover { opacity: 0.9; }

/* === PRICING === */
.price-section { padding: 48px 20px; background: var(--dark); }
.price-section__title { font-family: var(--font-display); font-size: 28px; text-align: center; margin-bottom: 8px; text-transform: uppercase; }
.price-section__hook {
  text-align: center; color: var(--grey); font-size: 14px;
  margin-bottom: 24px; line-height: 1.6;
}
.price-section__hook strong { color: var(--light-grey); }

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.price-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 14px 10px; text-align: center;
  transition: border-color 0.2s;
}
.price-card:last-child { border-color: var(--red); }
.price-card__players { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.price-card__amount { font-family: var(--font-display); font-size: 28px; color: var(--red); }
.price-card__per { font-size: 11px; color: var(--grey); }

.price-micro {
  text-align: center; font-size: 13px; color: var(--grey);
  margin-bottom: 20px; line-height: 1.5;
}
.price-micro strong { color: var(--light-grey); }

.price-compare {
  text-align: center; font-size: 13px; color: var(--grey);
  margin-top: 12px; line-height: 1.6; font-style: italic;
}

/* === BOOKING === */
.booking { padding: 48px 20px 40px; background: var(--black); }
.booking__title { font-family: var(--font-display); font-size: 28px; text-align: center; margin-bottom: 6px; text-transform: uppercase; }
.booking__subtitle { text-align: center; color: var(--grey); font-size: 13px; margin-bottom: 12px; }

.booking__urgency {
  text-align: center; font-size: 13px; color: var(--light-grey);
  background: rgba(202,12,12,0.08); border: 1px solid rgba(202,12,12,0.15);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; line-height: 1.5;
}

.booking__warning {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 10px 14px;
  font-size: 12px; color: var(--grey); margin-bottom: 20px; line-height: 1.5;
}

.booking__iframe-wrapper {
  background: var(--dark-grey); border-radius: 10px; overflow: hidden;
}
.booking__iframe-wrapper iframe { width: 100%; min-height: 520px; border: none; }

/* === REGRET === */
.regret {
  padding: 40px 20px; background: var(--dark);
  text-align: center;
}
.regret__text {
  font-size: 15px; color: var(--light-grey); line-height: 1.7;
  max-width: 340px; margin: 0 auto 20px;
}
.regret__text strong { color: var(--white); font-weight: 600; }

/* === BLACK OUT === */
.blackout {
  padding: 48px 20px; text-align: center;
  position: relative; overflow: hidden;
  background: url('https://static.tildacdn.net/tild6562-6165-4235-b464-373738363466/bg_dark_m_1.webp') center/cover no-repeat;
}
.blackout::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
}
.blackout > * { position: relative; z-index: 1; }
.blackout__badge {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.blackout__title { font-family: var(--font-display); font-size: 38px; letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; }
.blackout__text { color: var(--grey); font-size: 14px; margin-bottom: 6px; }
.blackout__date { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.blackout__fomo { font-size: 12px; color: var(--grey); margin-bottom: 20px; font-style: italic; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
  color: var(--white) !important; font-size: 14px; font-weight: 600;
  padding: 12px 28px; border-radius: 50px; transition: opacity 0.2s;
}
.btn-instagram:hover { opacity: 0.9; }

/* === GIFT === */
.gift { padding: 48px 20px; background: var(--dark); text-align: center; }
.gift__title { font-family: var(--font-display); font-size: 24px; margin-bottom: 10px; line-height: 1.3; text-align: center; text-transform: uppercase; }
.gift__text { color: var(--grey); font-size: 14px; margin-bottom: 20px; max-width: 300px; margin-left: auto; margin-right: auto; }

/* === SPECIAL === */
.special { padding: 40px 20px; background: var(--black); }
.special__title { font-family: var(--font-display); font-size: 22px; text-align: center; margin-bottom: 20px; color: var(--red); text-transform: uppercase; }
.special__items { display: flex; flex-direction: column; gap: 12px; }
.special__item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
}
.special__icon { font-size: 24px; flex-shrink: 0; }
.special__label { font-size: 14px; font-weight: 500; line-height: 1.4; }

/* === FOOTER === */
.footer {
  padding: 40px 20px calc(76px + var(--safe-bottom));
  background: var(--dark-grey); border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__address { text-align: center; margin-bottom: 20px; }
.footer__address-line { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.footer__address-metro { font-size: 12px; color: var(--grey); }

.footer__contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer__contact-item {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; background: rgba(255,255,255,0.04); border-radius: 10px;
  font-size: 14px; font-weight: 500; transition: background 0.2s;
  min-height: 48px;
}
.footer__contact-item:hover { background: rgba(255,255,255,0.08); }

.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 20px; }
.footer__link { font-size: 12px; color: var(--grey); padding: 8px 0; transition: color 0.2s; }
.footer__link:hover { color: var(--white); }

.footer__bottom { text-align: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__logo img { height: 24px; margin: 0 auto 6px; }
.footer__copy { font-size: 11px; color: var(--grey); }

/* === STICKY CTA === */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 10px 16px calc(10px + var(--safe-bottom));
  background: linear-gradient(to top, rgba(0,0,0,0.98) 70%, transparent);
  z-index: 900; display: flex; gap: 8px;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__book {
  flex: 1; background: var(--red) !important; color: var(--white) !important;
  font-size: 15px; font-weight: 700; padding: 14px;
  border-radius: 50px; text-align: center; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sticky-cta__gift {
  background: rgba(255,255,255,0.1) !important; color: var(--white) !important;
  font-size: 13px; font-weight: 600; padding: 14px 16px;
  border-radius: 50px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15);
}

/* === ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
}

/* ================================================
   DESKTOP (768px+)
   ================================================ */
@media (min-width: 768px) {
  :root { --header-h: 70px; }

  /* Header */
  .header { padding: 0 32px; }
  .header__logo img { height: 38px; }
  .hamburger { display: none; }
  .header__nav { display: flex; align-items: center; gap: 28px; }
  .header__nav-link { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--white); transition: color 0.2s; }
  .header__nav-link:hover { color: var(--red); }
  .mobile-menu { display: none; }

  /* Hero */
  .hero { min-height: 100vh; padding: 0 64px 80px; }
  .hero__title { font-size: 64px; letter-spacing: 1px; }
  .hero__video { max-width: 560px; margin: 0 auto 24px; }

  /* Gallery */
  .gallery__item { flex: 0 0 40%; }
  .gallery__item img { height: 320px; }

  /* Story */
  .story { padding: 64px 32px; max-width: 800px; margin: 0 auto; }
  .story__title { font-size: 36px; }

  /* USP */
  .usp { padding: 64px 20px; }
  .usp__grid-desktop { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; max-width: 1100px; margin: 0 auto; }
  .usp-card { min-height: 380px; }

  /* Ratings */
  .ratings { padding: 64px 32px; }
  .ratings__grid { max-width: 600px; margin: 0 auto; grid-template-columns: repeat(4, 1fr); }

  /* Reviews */
  .reviews { padding: 64px 32px; }
  .review-card { flex: 0 0 42%; }

  /* Pricing */
  .price-section { padding: 64px 32px; }
  .price-grid { max-width: 500px; margin: 0 auto 16px; grid-template-columns: repeat(4, 1fr); }

  /* Booking */
  .booking { padding: 64px 32px; }
  .booking__iframe-wrapper { max-width: 700px; margin: 0 auto; }

  /* Special */
  .special__items { flex-direction: row; max-width: 800px; margin: 0 auto; }
  .special__item { flex: 1; }

  /* Footer */
  .footer { padding: 48px 32px; }
  .footer__contact { flex-direction: row; justify-content: center; }
  .footer__links { max-width: 500px; margin: 0 auto 24px; grid-template-columns: repeat(4, 1fr); text-align: center; }

  /* Sticky CTA hidden on desktop */
  .sticky-cta { display: none; }
}

@media (max-width: 767px) {
  .header__nav { display: none; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 80px; letter-spacing: 1px; }
  .hero { padding: 0 80px 100px; }
}
