@font-face {
  font-family: 'Humane';
  src: url('../fonts/Humane-VF.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --bg: #FAFAF8;
  --dark: #0D0D0D;
  --red: #DD0415;
  --red-dark: #A80010;
  --gray-light: #EFEFEB;
  --text: #1A1A1A;
  --muted: #888888;
  --hotline: #7C3AED;
  --couette: #DB2777;
  --anu: #C2410C;
  --culottees: #B45309;
  --sexetalk: #1D4ED8;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Speech bubble / tagline */
.nav-bubble-link {
  text-decoration: none;
  flex-shrink: 0;
}
.nav-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  color: var(--dark);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-bubble::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230D0D0D'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.nav-bubble::after {
  content: '';
  position: absolute;
  left: 14px; bottom: -5px;
  border: 5px solid transparent;
  border-top-color: white;
  border-bottom: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 2.5rem;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 0.9rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.4);
}
.nav-links a:hover { color: white; }
.nav-links a.active   { color: white; border-bottom-color: var(--red); }
.nav-links a:active,
.nav-links a:focus {
  color: var(--red);
}
.nav-links a:hover {
  color: var(--red);
  transition: color 0.2s ease;
}

/* Burger */
.nav-burger {
  display: block;
  background: none; border: none;
  color: white; font-size: 1.5rem;
  cursor: pointer; padding: 0.5rem;
  flex-shrink: 0;
}

/* Mobile menu */
.mobile-menu {
  flex-direction: column;
  position: fixed; top: 56px; left: 0; right: 0;
  background: var(--dark); z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: var(--red); text-decoration: none;
  padding: 1rem 2rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: white; background: rgba(255,255,255,0.04); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* Photo bg placeholder — remplacer par une vraie image */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.55) 100%),
    linear-gradient(135deg, #1a0a0a 0%, #2d0a10 30%, #1a0505 60%, #0d0005 100%);
  background-size: cover; background-position: center;
  /* Décommentez la ligne suivante et remplacez-la par votre photo :
     background-image: url('../images/hero.jpg'); */
}
/* Grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
  padding-bottom: 2rem;
}
.hero-logo {
  font-family: 'Humane', sans-serif;
  font-size: clamp(7rem, 22vw, 18rem);
  line-height: 0.88;
  color: white;
  letter-spacing: -2px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  display: block;
}
.hero-logo .dot  { color: var(--red); }
.hero-logo .te   { font-size: 0.75em; opacity: 0.92; }

/* ============================
   NOS PRÉLIS
   ============================ */
.nos-prelis {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: visible;
}
.prelis-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.prelis-left {
  padding: 3.5rem 3rem 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
}
.prelis-heading {
  line-height: 0.9;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.3rem;
}
.prelis-nos {
  font-family: 'Humane', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.prelis-word {
  font-family: 'Humane', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-style: normal;
  color: white;
  font-weight: 400;
}
.prelis-body {
  font-size: 1.25rem;
  line-height: 1.75;
  max-width: 400px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
}
.prelis-body strong { color: white; }

/* Fraise en haut */
.prelis-strawberry {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  pointer-events: none;
}

/* Bouton verre */
.btn-pill--glass {
  background: rgba(255,255,255,0.5) !important;
  color: var(--dark) !important;
  border: none;
  backdrop-filter: blur(4px);
}
.btn-pill--glass:hover {
  background: rgba(255,255,255,0.7) !important;
}

/* Insolence — entourage crayon */
.insolence {
  position: relative;
  color: white;
  white-space: nowrap;
}
.insolence::after {
  content: '';
  position: absolute;
  left: -6px; right: -6px;
  top: -4px; bottom: -4px;
  border: 2.5px solid white;
  border-radius: 50% 45% 55% 40% / 60% 50% 50% 45%;
  transform: rotate(-2deg);
  pointer-events: none;
  opacity: 0.85;
}

.btn-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  background: var(--dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid transparent;
}
.btn-pill:hover { background: #222; transform: translateY(-2px); }
.btn-pill.light {
  background: white;
  color: var(--dark);
}
.btn-pill.light:hover { background: #f0f0f0; }

/* Collage de cartes CUL.te */
.prelis-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.culte-cards {
  position: relative;
  width: 450px;
  height: 450px;
}
.culte-card {
  position: absolute;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.culte-card-logo {
  font-family: 'Humane', sans-serif;
  font-size: 1.8rem;
  color: var(--dark);
  letter-spacing: 2px;
}
.culte-card-logo .dot { color: var(--red); }
.culte-card-photo {
  width: 100%; height: 60%;
  object-fit: cover;
}
.culte-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Disposition des cartes */
.culte-card:nth-child(1) {
  width: 160px; height: 200px;
  top: 10px; left: 10px;
  transform: rotate(-10deg);
}
.culte-card:nth-child(2) {
  width: 120px; height: 120px;
  top: 0px; left: 200px;
  transform: rotate(8deg);
  background: transparent;
  box-shadow: none;
}
.culte-card:nth-child(3) {
  width: 170px; height: 210px;
  top: 30px; left: 280px;
  transform: rotate(5deg);
  z-index: 2;
}
.culte-card:nth-child(4) {
  width: 110px; height: 110px;
  top: 220px; left: 40px;
  transform: rotate(12deg);
  background: transparent;
  box-shadow: none;
}
.culte-card:nth-child(5) {
  width: 150px; height: 190px;
  top: 200px; left: 180px;
  transform: rotate(-7deg);
  z-index: 3;
}
.culte-card:nth-child(6) {
  width: 130px; height: 130px;
  top: 250px; left: 350px;
  transform: rotate(-15deg);
  background: transparent;
  box-shadow: none;
}
.culte-card:nth-child(2) img,
.culte-card:nth-child(4) img,
.culte-card:nth-child(6) img {
  object-fit: contain;
}
.card-thumb-placeholder {
  width: 100%; flex: 1;
  /* Remplacer par une vraie photo : background-image: url('../images/card-X.jpg') */
}

/* ============================
   NOS PRÉLIS — IMAGES CARTES
   ============================ */
.culte-card img:not(.culte-sticker) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================
   NOS DERNIÈRES CHALEURS (dans le hero)
   ============================ */
.hero-chaleurs {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
}
.hero-chaleurs-title {
  font-family: 'Humane', sans-serif;
  font-size: 3rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.hero-chaleurs-title span {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-chaleurs-title span::after {
  content: 'CHALEURS';
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--red);
  opacity: 0;
  filter: blur(3px);
  animation: smoke-rise 2.5s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(221, 4, 21, 0.6);
  pointer-events: none;
}

@keyframes smoke-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
    filter: blur(3px);
  }
  20% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.35;
    transform: translateY(-20px) scaleX(1.15);
    filter: blur(8px);
  }
  100% {
    opacity: 0;
    transform: translateY(-45px) scaleX(1.4);
    filter: blur(18px);
  }
}
.hero-chaleurs-grid {
  display: flex;
  gap: 1rem;
}
.chaleur-card {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: white;
  height: 280px;
  transition: transform 0.3s ease;
}
.chaleur-card:hover {
  transform: translateY(-4px);
}
.chaleur-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.chaleur-card:hover .chaleur-card-img {
  transform: scale(1.05);
}
.chaleur-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(221,4,21,0.15) 50%, rgba(219,39,77,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.chaleur-card-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 1.4rem;
  font-family: 'Humane', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 0.5rem;
  border: 2px solid white;
  border-radius: 6px;
  text-transform: uppercase;
  background: transparent !important;
}
.chaleur-card-title {
  font-family: 'Humane', sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: white;
  margin: 0;
}
.chaleur-card-excerpt {
  display: none;
}

@media (max-width: 768px) {
  .hero-chaleurs-grid {
    flex-direction: column;
    gap: 0.6rem;
  }
  .chaleur-card {
    height: 120px;
  }
  .hero-chaleurs {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ============================
   RUBRIQUES CAROUSEL
   ============================ */
.rubriques-carousel {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}
.rubriques-carousel-title {
  font-family: 'Humane', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 2.5rem 0 1rem;
  margin: 0;
}
.rubriques-carousel-title span {
  font-weight: 200;
  font-style: italic;
  color: var(--red);
}
.rubriques-swiper {
  width: 100%;
  height: 500px;
}
.rubriques-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.rubriques-swiper .swiper-slide {
  flex-shrink: 0;
}
.rubrique-panel {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  border-right: 3px solid rgba(255,255,255,0.1);
}
.rubrique-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) contrast(1.1);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.rubrique-panel:hover .rubrique-panel-bg {
  transform: scale(1.08);
  filter: brightness(0.8) contrast(1.1);
}
.rubrique-panel-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  object-fit: contain;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.rubrique-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}
.rubrique-panel-title {
  position: absolute;
  bottom: 20px;
  left: 15px;
  font-family: 'Humane', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-align: left;
  line-height: 0.85;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 2px;
  transform: rotate(-8deg);
  transform-origin: bottom left;
}
.rubriques-swiper-pagination {
  text-align: center;
  padding: 12px 0;
}
.rubriques-swiper-pagination .swiper-pagination-bullet {
  background: white;
  opacity: 0.4;
}
.rubriques-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--red);
}
@media (max-width: 768px) {
  .rubriques-swiper { height: 400px; }
  .rubrique-panel { width: 220px; }
  .rubrique-panel-title { font-size: 2.5rem; bottom: 20px; }
}
.rubrique-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.35s ease;
  text-decoration: none;
}
.rubrique-card:hover { flex: 1.4; }
.rubrique-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: opacity 0.3s;
}
.rubrique-card:hover::after { opacity: 0.5; }
.rubrique-name {
  position: absolute;
  bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  rotate: 180deg;
  font-family: 'Humane', sans-serif;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 3px;
  z-index: 1;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================
   BANDE HOT / XoXo
   ============================ */
.hot-band {
  background: var(--dark);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.hot-text {
  font-family: 'Humane', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--red);
  font-style: italic;
  line-height: 1;
  display: block;
  letter-spacing: -2px;
  transform: skewX(-4deg);
}
.xoxo-text {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
  font-weight: 700;
  display: block;
  letter-spacing: 1px;
}

/* ============================
   FEATURED ARTICLE — SOUS LA COUETTE
   ============================ */
.featured-slc {
  background: #C08090;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.featured-slc::before {
  content: 'SOUS LA COUETTE';
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: 'Humane', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--red);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1060px;
  margin: 0 auto;
  align-items: center;
}
.featured-photo-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #3d1a24 0%, #6b3040 50%, #4a2030 100%);
  /* Remplacer par : background-image: url('../images/slc-jean-marie.jpg') */
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.featured-content { color: white; }
.featured-rubrique-tag {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  opacity: 0.65; margin-bottom: 1rem; display: block;
}
.featured-title {
  font-family: 'Humane', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.featured-excerpt {
  font-size: 0.88rem;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 1.75rem;
}
.featured-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

/* ============================
   HOTLINE — CALL US
   ============================ */
.hotline-callus {
  background: var(--red);
  padding: 4rem 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 100%;
}
.hotline-callus::before {
  content: 'Spicy';
  position: absolute;
  top: 1rem; right: 3rem;
  font-family: 'Caveat', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  transform: rotate(-8deg);
  pointer-events: none;
}
.callus-icon {
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  opacity: 0.85;
}
.callus-label-wrap {}
.callus-label {
  font-size: 3rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.65; margin-bottom: 0.25rem; display: block;
  font-family: 'Humane', sans-serif;
}
.callus-title {
  font-family: 'Humane', sans-serif;
  font-size: 120pt;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 1px;
}
.callus-title-light {
  font-weight: 200;
}
.callus-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.callus-number {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 30pt;
  letter-spacing: 15px;
  color: white;
}
.callus-desc {
  font-size: 12pt;
  line-height: 1.7;
  max-width: 420px;
  opacity: 0.8;
}

/* ============================
   CARROUSEL PHOTOS
   ============================ */
.photos-carousel {
  overflow: hidden;
  background: var(--dark);
}
.photos-swiper {
  width: 100%;
  height: 120px;
}
.photos-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.photos-swiper .swiper-slide {
  width: 200px !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photos-swiper .swiper-slide img {
  height: 80%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============================
   FOOTER — BLANC / NEWSLETTER
   ============================ */
footer {
  background: white;
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-light);
}
.footer-sexy {
  position: absolute;
  right: 2rem; bottom: 1.5rem;
  font-family: 'Caveat', cursive;
  font-size: 3rem; font-weight: 700;
  color: var(--red);
  transform: rotate(-12deg);
  opacity: 0.35;
  pointer-events: none;
}
.footer-logo-link { text-decoration: none; }
.footer-logo {
  font-family: 'Humane', sans-serif;
  font-size: 2.5rem;
  color: var(--dark);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-logo .acc { color: var(--red); }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.footer-newsletter {
  display: flex;
  max-width: 360px;
  margin: 0 auto 2rem;
  border: 1.5px solid #ddd;
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.footer-newsletter:focus-within { border-color: var(--red); }
.footer-newsletter input {
  flex: 1;
  padding: 0.7rem 1.25rem;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  background: transparent;
  color: var(--text);
}
.footer-newsletter input::placeholder { color: #bbb; }
.footer-newsletter button {
  background: var(--red);
  color: white; border: none;
  padding: 0.7rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--red-dark); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.78rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer-nav {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0; margin-bottom: 1.5rem;
}
.footer-nav a {
  color: var(--muted); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.5px;
  padding: 0.2rem 0.75rem;
  border-right: 1px solid #ddd;
  transition: color 0.2s;
}
.footer-nav a:last-child { border-right: none; }
.footer-nav a:hover { color: var(--red); }
.footer-copy { font-size: 0.68rem; color: #bbb; }

/* ============================
   ARTICLE CARDS (pages rubriques)
   ============================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.page-hero {
  padding: 7rem 2rem 3.5rem;
  color: white; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.1);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 0.75rem; display: block;
}
.page-hero-title {
  font-family: 'Humane', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92; letter-spacing: 1px;
}
.page-hero-pitch {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; opacity: 0.45; margin-top: 0.75rem; display: block;
}
.page-hero-desc {
  max-width: 560px; margin-top: 1.5rem;
  font-size: 0.92rem; opacity: 0.62; line-height: 1.88; font-style: italic;
}

.articles-section { padding: 4rem 0; }
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.articles-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: white; border-radius: 10px; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.card.featured { grid-column: span 2; flex-direction: row; }
.card.featured .card-thumb { width: 44%; flex-shrink: 0; height: auto; }
.card-thumb {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Humane', sans-serif;
  font-size: 5rem; color: rgba(255,255,255,0.18);
  overflow: hidden; user-select: none;
}
.card-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.3));
}
.card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.card-title {
  font-family: 'Humane', sans-serif;
  font-size: 1.08rem; font-weight: 700;
  line-height: 1.42; margin-bottom: 0.65rem; flex: 1;
}
.card.featured .card-title { font-size: 1.5rem; }
.card-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.85rem; }
.card-meta {
  font-size: 0.68rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.4rem; margin-top: auto;
}
.card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.card-cta {
  display: inline-block; margin-top: 1rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; color: white;
  padding: 0.5rem 1rem; border-radius: 4px;
  transition: opacity 0.2s; align-self: flex-start;
}
.card-cta:hover { opacity: 0.85; }

/* Hotline form (page hotline) */
.hotline-cta {
  background: var(--dark); color: white;
  padding: 5rem 2rem; text-align: center;
}
.hotline-cta h2 {
  font-family: 'Humane', sans-serif;
  font-size: 3rem; letter-spacing: 1px; margin-bottom: 0.5rem;
}
.hotline-cta p { color: rgba(255,255,255,0.45); font-style: italic; margin-bottom: 2.5rem; font-size: 0.92rem; }
.hotline-form {
  max-width: 580px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem; text-align: left;
}
.hotline-form label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45); display: block; margin-bottom: 0.3rem;
}
.hotline-form textarea,
.hotline-form select,
.hotline-form input[type="text"] {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; color: white;
  padding: 0.85rem 1rem; font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; outline: none; transition: border-color 0.2s; appearance: none;
}
.hotline-form textarea:focus,
.hotline-form select:focus,
.hotline-form input[type="text"]:focus { border-color: var(--hotline); }
.hotline-form textarea { min-height: 165px; resize: vertical; }
.hotline-form textarea::placeholder,
.hotline-form input::placeholder { color: rgba(255,255,255,0.22); }
.hotline-form select option { background: #1a1a1a; }
.form-note { font-size: 0.7rem; color: rgba(255,255,255,0.28); line-height: 1.5; }
.form-submit {
  background: var(--hotline); color: white; border: none;
  border-radius: 8px; padding: 0.9rem 1.5rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s; width: 100%;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* Answer cards */
.answers-section { padding: 4rem 0; }
.answer-card {
  background: white; border-radius: 10px;
  padding: 2rem; margin-bottom: 1.5rem;
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
  border-left: 4px solid var(--hotline);
}
.answer-q {
  font-family: 'Humane', sans-serif;
  font-size: 1.12rem; font-style: italic; font-weight: 700;
  margin-bottom: 0.85rem; line-height: 1.45;
}
.answer-q::before { content: '« '; opacity: 0.4; }
.answer-q::after  { content: ' »'; opacity: 0.4; }
.answer-text { font-size: 0.87rem; color: var(--muted); line-height: 1.72; margin-bottom: 1rem; }
.answer-by { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--hotline); }

/* Pull quote */
.pull-quote { padding: 4rem 2rem; background: #EFEFEB; text-align: center; }
.pull-quote blockquote {
  font-family: 'Humane', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-style: italic; line-height: 1.65;
  max-width: 760px; margin: 0 auto; color: var(--text);
}
.pull-quote cite {
  display: block; margin-top: 1rem;
  font-size: 0.72rem; font-style: normal; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .nav-links { position: static; transform: none; }
}
@media (max-width: 900px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .card.featured { grid-column: span 2; }
  .nos-prelis { grid-template-columns: 1fr; }
  .prelis-right { display: none; }
  .hotline-callus { grid-template-columns: 1fr; gap: 1.5rem; }
  .callus-icon { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-bubble-link { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  /* Logo CUL.te visible sur mobile à la place de la bulle */
  .nav::before {
    content: 'CUL.te';
    font-family: 'Humane', sans-serif;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 3px;
    flex-shrink: 0;
  }
  .hero-logo { font-size: clamp(5rem, 25vw, 10rem); }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-photo-wrap { aspect-ratio: 16/9; }
  .featured-slc::before { display: none; }
  .rubriques-swiper { height: 350px; }
  .rubrique-name { font-size: 1.1rem; }
  .articles-grid, .articles-grid.cols-2 { grid-template-columns: 1fr; }
  .card.featured { grid-column: span 1; flex-direction: column; }
  .card.featured .card-thumb { width: 100%; height: 220px; }
  .page-hero { padding: 5rem 1.5rem 2.5rem; }
  .container { padding: 0 1.5rem; }
  .hot-band { padding: 0.75rem 1.5rem; }
  .hotline-callus { padding: 3rem 1.5rem; }
}

/* ============================
   PAGE TRANSITION
   ============================ */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.page-loaded {
  opacity: 1;
}

/* ============================
   HERO GLITCH
   ============================ */
.hero-logo {
  position: relative;
}
/* Pseudo-éléments pour l'aberration chromatique */
.hero-logo::before,
.hero-logo::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0; width: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.hero-logo::before {
  color: #ff0040;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translateX(-4px);
}
.hero-logo::after {
  color: #00cfff;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translateX(4px);
}
.hero-logo.glitch-active::before,
.hero-logo.glitch-active::after {
  opacity: 0.6;
  animation: glitch-flicker 0.08s steps(1) infinite;
}
@keyframes glitch-flicker {
  0%   { opacity: 0.6; transform: translateX(-4px); }
  25%  { opacity: 0.2; transform: translateX(3px); }
  50%  { opacity: 0.7; transform: translateX(-2px); }
  75%  { opacity: 0.1; transform: translateX(4px); }
  100% { opacity: 0.5; transform: translateX(-3px); }
}

/* ============================
   NAV BURGER ANIMÉ
   ============================ */
.nav-burger {
  transition: transform 0.3s ease;
  line-height: 1;
}
.nav-burger.is-open {
  transform: rotate(135deg);
}
/* Menu mobile smooth slide */
.mobile-menu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open {
  max-height: 320px;
}

/* ============================
   SWIPER — CAROUSEL HOMEPAGE
   ============================ */
.carousel-section {
  background: var(--dark);
  padding: 3.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.carousel-section::before {
  content: 'À LA UNE';
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: 'Humane', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--red);
  opacity: 0.7;
}
.carousel-section .container {
  position: relative;
}
.carousel-section-title {
  font-family: 'Humane', sans-serif;
  font-size: 2rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

/* Swiper wrapper homepage */
.homepage-swiper {
  overflow: hidden;
  padding-bottom: 3rem !important;
}
.homepage-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.homepage-swiper .card {
  width: 100%;
  flex: 1;
  background: #1a1a1a;
  color: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
}
.homepage-swiper .card:hover {
  border-color: rgba(255,255,255,0.15);
}
.homepage-swiper .card-title {
  color: white;
}
.homepage-swiper .card-excerpt {
  color: rgba(255,255,255,0.5);
}
.homepage-swiper .card-meta {
  color: rgba(255,255,255,0.35);
}

/* Navigation Swiper homepage */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.carousel-nav-buttons {
  display: flex;
  gap: 0.5rem;
}
.swiper-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.swiper-btn:hover { background: var(--red); border-color: var(--red); }
.swiper-btn.swiper-button-disabled { opacity: 0.3; cursor: default; }

/* Pagination */
.homepage-swiper-pagination,
.rubrique-swiper-pagination {
  position: static !important;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.homepage-swiper-pagination .swiper-pagination-bullet,
.rubrique-swiper-pagination .swiper-pagination-bullet {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.3);
  opacity: 1;
  transition: background 0.2s, width 0.2s;
  border-radius: 3px;
}
.homepage-swiper-pagination .swiper-pagination-bullet-active,
.rubrique-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 18px;
}

/* ============================
   SWIPER — PAGES RUBRIQUES
   ============================ */
.articles-section .rubrique-swiper-wrap {
  position: relative;
}
.rubrique-swiper {
  overflow: hidden;
  padding-bottom: 3rem !important;
}
.rubrique-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.rubrique-swiper .card {
  width: 100%;
  flex: 1;
}
.rubrique-swiper-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

/* Carte featured standalone (extraite du carousel) */
.card-featured-standalone {
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
  margin-bottom: 2rem;
}
.card-featured-standalone:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.card-featured-standalone .card-thumb {
  width: 38%;
  flex-shrink: 0;
  height: auto;
  min-height: 200px;
}
.card-featured-standalone .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-featured-standalone .card-title {
  font-family: 'Humane', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: 0.65rem;
  flex: 1;
}
@media (max-width: 600px) {
  .card-featured-standalone {
    flex-direction: column;
  }
  .card-featured-standalone .card-thumb {
    width: 100%;
    height: 200px;
  }
}

/* ============================
   HERO — IMAGE RÉELLE
   ============================ */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.4) 100%
  );
}
.hero-logo-img {
  width: 550px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 4rem;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
  position: relative;
  z-index: 2;
  animation: logo-slam 0.8s cubic-bezier(0.22, 1.2, 0.36, 1) 0.3s both;
}

@keyframes logo-slam {
  0% {
    transform: scale(4) rotate(-5deg);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0)) blur(8px);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5)) blur(0);
  }
  70% {
    transform: scale(0.9) rotate(1deg);
  }
  85% {
    transform: scale(1.05) rotate(-0.5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
  }
}


/* Fruit rain between hero and nos-prelis */
.fruit-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.fruit-rain .fruit {
  position: absolute;
  top: -60px;
  font-size: 2rem;
  animation: fruit-fall linear infinite;
  opacity: 0.5;
  user-select: none;
}
.fruit-rain .fruit:nth-child(1)  { left: 5%;  font-size: 1.5rem; animation-duration: 4s; animation-delay: 0s; }
.fruit-rain .fruit:nth-child(2)  { left: 12%; font-size: 2.2rem; animation-duration: 5s; animation-delay: 1.2s; }
.fruit-rain .fruit:nth-child(3)  { left: 20%; font-size: 1.8rem; animation-duration: 3.5s; animation-delay: 0.5s; }
.fruit-rain .fruit:nth-child(4)  { left: 28%; font-size: 2.5rem; animation-duration: 4.5s; animation-delay: 2s; }
.fruit-rain .fruit:nth-child(5)  { left: 35%; font-size: 1.4rem; animation-duration: 5.5s; animation-delay: 0.8s; }
.fruit-rain .fruit:nth-child(6)  { left: 43%; font-size: 2rem;   animation-duration: 4s; animation-delay: 1.5s; }
.fruit-rain .fruit:nth-child(7)  { left: 52%; font-size: 1.6rem; animation-duration: 3.8s; animation-delay: 0.3s; }
.fruit-rain .fruit:nth-child(8)  { left: 60%; font-size: 2.3rem; animation-duration: 5.2s; animation-delay: 2.5s; }
.fruit-rain .fruit:nth-child(9)  { left: 68%; font-size: 1.9rem; animation-duration: 4.2s; animation-delay: 1s; }
.fruit-rain .fruit:nth-child(10) { left: 75%; font-size: 2.1rem; animation-duration: 3.6s; animation-delay: 1.8s; }
.fruit-rain .fruit:nth-child(11) { left: 82%; font-size: 1.7rem; animation-duration: 4.8s; animation-delay: 0.6s; }
.fruit-rain .fruit:nth-child(12) { left: 90%; font-size: 2.4rem; animation-duration: 5s; animation-delay: 2.2s; }

@keyframes fruit-fall {
  0% {
    transform: translateY(-60px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(100vh) rotate(60deg);
    opacity: 0;
  }
}

/* Styles pour .culte-sticker supprimés (intégré dans le CSS des cartes transparentes) */

/* (rubrique-col styles removed — now using rubriques-carousel) */

/* ============================
   HOT BAND — IMAGE
   ============================ */
.hot-band {
  padding: 0;
  height: 120px;
  overflow: hidden;
}
.hot-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================
   ARTICLE VEDETTE
   ============================ */
.article-vedette {
  position: relative;
  overflow: hidden;
  padding: 5rem 3rem;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.vedette-banane {
  position: absolute;
  right: -50px;
  bottom: -300px;
  width: 1300px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(-8px 4px 20px rgba(0,0,0,0.3));
  transform: rotate(-15deg);
}
.article-vedette-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.article-vedette-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-vedette-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.article-vedette-text { color: white; }
.article-vedette-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  background: var(--couette);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}
.article-vedette-title {
  font-family: 'Humane', sans-serif;
  font-size: 55pt;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.vedette-title-light {
  font-weight: 200;
}
.article-vedette-desc {
  font-size: 15pt;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.btn-pill--white {
  background: white;
  color: var(--dark);
  border: 2px solid transparent;
}
.btn-pill--white:hover { background: #f0f0f0; transform: translateY(-2px); }
.article-vedette-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.article-vedette-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 768px) {
  .article-vedette { padding: 3rem 1.5rem; }
  .article-vedette-inner { grid-template-columns: 1fr; gap: 2rem; }
  .article-vedette-photo { order: -1; }
}

/* ============================
   HOTLINE — FOND IMAGE
   ============================ */
.hotline-callus {
  position: relative;
}
.hotline-callus-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hotline-callus-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hotline-callus-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: flex-start;
  padding: 4rem 3rem;
  color: white;
}
.callus-left {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.callus-phone {
  height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  margin-top: -10rem;
}
.callus-text-block {}
@media (max-width: 768px) {
  .hotline-callus-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 1.5rem; }
  .callus-phone { height: 80px; }
}

/* ============================
   FOOTER — FOND IMAGE
   ============================ */
.footer {
  position: relative;
  overflow: hidden;
  border-top: none;
  background: transparent;
}
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.footer-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 2.5rem;
  text-align: center;
}
.footer-logo-img {
  height: 280px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.footer .footer-tagline {
  color: rgba(255,255,255,0.85);
}
.footer .footer-newsletter {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.footer .footer-newsletter input {
  color: white;
}
.footer .footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer .footer-newsletter:focus-within { border-color: white; }
.footer .footer-nav a { color: rgba(255,255,255,0.6); border-right-color: rgba(255,255,255,0.2); }
.footer .footer-nav a:hover { color: white; }
.footer .footer-copy { color: rgba(255,255,255,0.5); }

/* ============================
   MODAL — POSE TA QUESTION
   ============================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-content {
  background: var(--dark);
  color: white;
  border-radius: 16px;
  padding: 3rem;
  max-width: 700px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--red); }
.modal-title {
  font-family: 'Humane', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.modal-title-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
.modal-bold {
  font-weight: 900;
  color: white;
}
.modal-light {
  font-weight: 400;
  color: white;
}
.modal-thin {
  font-weight: 200;
  color: var(--red);
}
.modal-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.modal-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}
.modal-input,
.modal-textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  outline: none;
  transition: border-color 0.2s;
}
.modal-input:focus,
.modal-textarea:focus {
  border-color: var(--red);
}
.modal-input::placeholder,
.modal-textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.modal-textarea {
  resize: vertical;
  min-height: 120px;
}
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-privacy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  flex: 1;
}
.modal-submit {
  font-family: 'Humane', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.8rem 1.5rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.modal-submit:hover {
  background: var(--red-dark);
}
