.intro-quote-band {
  background: #281406;
  padding: 90px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* (SUPPRIMÉ) Lignes dorées haut & bas */
/*
.intro-quote-band .band-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 4;
  background: linear-gradient(
    90deg,
    #e6d69e00 0%,
    #e6d69e80 18%,
    #e6d69e 50%,
    #e6d69e80 82%,
    #e6d69e00 100%
  );
}
.intro-quote-band .band-line.top { top: 0; }
.intro-quote-band .band-line.bottom { bottom: 0; }
*/

/* Halo léger adouci (gardé) */
.intro-quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 260px at 50% -10%, #e6d69e1a 0%, transparent 70%),
    radial-gradient(700px 250px at 50% 110%, #e6d69e12 0%, transparent 80%);
  filter: blur(14px);
  z-index: 0;
}

.intro-quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, #e6d69e15 0%, transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

/* Conteneur */
.quotation-container {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Structure */
.quotation-text {
  margin: 0;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

/* TITRE 1 */
.quotation-text .qt-serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(34px, 8vw, 110px);
  color: #f7e6d4;
  display: block;
  margin-bottom: 14px;
  line-height: 1.05;
  text-shadow:
    0 4px 16px #00000080,
    0 12px 28px #00000099;
}

/* TITRE 2 */
.quotation-text .qt-sans {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 4vw, 60px);
  letter-spacing: 1px;
  display: block;
  line-height: 1.1;
  color: #e6d69e;
  text-shadow:
    0 3px 12px #00000066,
    0 2px 6px #00000080;
}

/* MOBILE */
@media (max-width: 480px) {
  .quotation-text .qt-serif {
    font-size: clamp(30px, 10vw, 60px);
    margin-bottom: 10px;
  }

  .quotation-text .qt-sans {
    font-size: clamp(16px, 5vw, 32px);
    letter-spacing: 0.6px;
  }
}

/* TABLETTES */
@media (min-width: 600px) and (max-width: 900px) {
  .quotation-text .qt-serif {
    font-size: clamp(40px, 7vw, 85px);
  }

  .quotation-text .qt-sans {
    font-size: clamp(22px, 3vw, 42px);
  }
}
