@media (min-width: 1051px) {
  .site-header {
    padding-left: max(6vw, calc((100vw - 1440px)/2));
  }
}

.cta-wrap {
  padding: 120px max(24px,6vw) 105px;
  background: #fff;
}

.cta-editorial {
  width: min(1280px,100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(60px,9vw,140px);
}

.cta-kicker {
  margin: 0 0 22px;
  color: #7138a1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.cta-copy h2 {
  margin: 0;
  color: #17141f;
  font: 500 clamp(48px,5vw,76px)/.98 Georgia,"Times New Roman",serif;
  letter-spacing: -.055em;
}

.cta-copy h2 em {
  position: relative;
  color: #6d35d5;
  font-style: italic;
  white-space: nowrap;
}

.cta-copy h2 em::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -4%;
  bottom: -9px;
  height: 15px;
  border-bottom: 2px solid #8a54dd;
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: .7;
}

.cta-copy > p:not(.cta-kicker) {
  max-width: 470px;
  margin: 30px 0 0;
  color: #6f6979;
  font-size: 17px;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 14px 16px 14px 24px;
  border-radius: 999px;
  background: #21172d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s,background .2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #6d35d5;
}

.cta-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-size: 16px;
}

.cta-collage {
  position: relative;
  min-height: 520px;
}

.cta-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #eee;
  box-shadow: 0 24px 50px rgba(28,15,43,.15);
}

.cta-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-photo figcaption {
  position: absolute;
  left: 13px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.91);
  color: #2b2033;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.photo-love {
  left: 0;
  top: 64px;
  width: 34%;
  height: 365px;
  transform: rotate(-2deg);
}

.photo-friends {
  left: 35%;
  top: 0;
  z-index: 2;
  width: 35%;
  height: 430px;
}

.photo-travel {
  right: 0;
  top: 78px;
  width: 31%;
  height: 350px;
  transform: rotate(2deg);
}

.cta-aurora {
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 37px;
  height: 90px;
  border-top: 3px solid #8b55df;
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: .45;
}

.site-footer {
  display: block;
  min-height: 0;
  padding: 64px max(6vw,calc((100vw - 1120px)/2)) 30px;
  background: #2b124b;
  color: #c9bdd5;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr .8fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 48px;
}

.site-footer .brand-footer {
  width: 154px;
  height: 45px;
  margin-bottom: 17px;
}

.footer-about p {
  max-width: 250px;
  margin: 0;
  text-align: center;
  line-height: 1.7;
}

.site-footer .footer-about {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column h3 {
  margin: 9px 0 9px;
  color: #fff;
  font: 800 13px "Manrope",sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-column a {
  transition: color .2s;
}

.footer-column a:hover {
  color: #d1b8ff;
}

.footer-social > div {
  display: flex;
  gap: 10px;
}

.footer-social > div a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: #e8ddf4;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
}

@media (max-width: 800px) {
  .cta-wrap {
    padding: 65px 15px 55px;
  }

  .cta-editorial {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .cta-copy {
    text-align: center;
  }

  .cta-copy > p:not(.cta-kicker) {
    margin-inline: auto;
  }

  .cta-collage {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .cta-wrap {
    padding-top: 80px;
  }

  .cta-copy h2 {
    font-size: 45px;
  }

  .cta-collage {
    min-height: 330px;
  }

  .photo-love {
    top: 45px;
    height: 240px;
  }

  .photo-friends {
    height: 285px;
  }

  .photo-travel {
    top: 55px;
    height: 230px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding-inline: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Direction éditoriale Aurora — titres serif hors navigation et pied de page */
main .hero-message {
  transition: opacity .22s ease, transform .22s ease;
}

main .hero-message.changing {
  opacity: 0;
  transform: translateY(7px);
}

main .hero h1 {
  font: 500 clamp(52px,5.4vw,82px)/.98 Georgia,"Times New Roman",serif;
  letter-spacing: -.055em;
}

main .hero h1 em {
  color: #b99aff;
  font-style: italic;
}

main .section-heading h2,
main .difference h2,
main .faq h2 {
  font: 500 clamp(42px,4.3vw,66px)/1 Georgia,"Times New Roman",serif;
  letter-spacing: -.05em;
}

main .section-heading h2 em,
main .faq h2 em {
  color: var(--purple);
  font-style: italic;
}

main .difference h2 em {
  color: #c2a2ff;
  font-style: italic;
}

main .room h3,
main .steps h3 {
  font-family: Georgia,"Times New Roman",serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}

main .room h3 { font-size: 27px; }
main .steps h3 { font-size: 25px; }

main .faq {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 120px max(6vw,calc((100vw - 1400px)/2));
  display: grid;
  grid-template-columns: minmax(330px,.78fr) minmax(560px,1.22fr);
  align-items: start;
  gap: clamp(60px,8vw,135px);
}

main .faq-content {
  width: 100%;
}

main .faq-visual {
  height: 590px;
  margin: 4px 0 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 28px 65px rgba(30,18,43,.13);
  transform: rotate(-1.3deg);
}

main .faq-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

main .faq details p {
  max-width: 100%;
}

@media (max-width: 700px) {
  main .hero h1 { font-size: 48px; }
  main .section-heading h2,
  main .difference h2,
  main .faq h2 { font-size: 42px; }
  main .faq {
    padding: 75px 20px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  main .faq-visual {
    height: 430px;
    transform: none;
  }
}

@media (min-width: 701px) and (max-width: 1050px) {
  main .faq {
    padding: 90px 7vw;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
  }

  main .faq-visual { height: 540px; }
}
