/* ============================================
   JUDEVENT'S — Design System
   Wedding planner & décoratrice — Yvelines
   ============================================ */

:root {
  /* Palette signature */
  --violet-deep: #2B1E3F;
  --violet-dark: #1A1428;
  --violet-mid: #4A3A6A;
  --gold: #D4AF37;
  --gold-muted: #B8962E;
  --ivory: #F8F5F0;

  /* Textes */
  --text-main: #1C1C1C;
  --text-mute: #6F6F6F;
  --text-on-dark: #FFFFFF;
  --text-on-dark-mute: #CFCFCF;

  /* Utilitaires */
  --white-soft: #FFFFFF;
  --border-soft: rgba(43, 30, 63, 0.12);
  --shadow-sm: 0 2px 12px rgba(26, 20, 40, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 20, 40, 0.12);
  --shadow-lg: 0 24px 60px rgba(26, 20, 40, 0.18);

  /* Typographie */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-script: "Allura", cursive;

  /* Espacements */
  --container: 1200px;
  --container-narrow: 960px;
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 6rem;

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================
   Reset & bases
   ============================================ */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

/* ============================================
   Utilitaires
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--gap-xl) 0;
}

.section--dark {
  background: var(--violet-deep);
  color: var(--text-on-dark);
}

.section--ivory {
  background: var(--ivory);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--gap-md);
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--gold-muted);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section--dark .section-kicker {
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-mute);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section-subtitle {
  color: var(--text-on-dark-mute);
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  border: none;
}

/* ============================================
   Boutons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  border: 1px solid var(--violet-deep);
}

.btn--primary:hover {
  background: var(--violet-mid);
  border-color: var(--violet-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--luxe {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--luxe:hover {
  background: var(--gold);
  color: var(--violet-dark);
  transform: translateY(-2px);
}

.btn--on-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-on-dark);
}

.btn--on-dark:hover {
  background: var(--gold);
  color: var(--violet-dark);
  border-color: var(--gold);
}

.btn--large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: transform 0.45s var(--ease), background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}

.header.scrolled {
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.header.hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  transition: color 0.35s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand__mark {
  color: var(--gold);
}

.header.scrolled .brand {
  color: var(--violet-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav__list > li {
  flex-shrink: 0;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.header.scrolled .nav__link {
  color: var(--text-main);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__cta {
  display: none;
  flex-shrink: 0;
  padding: 0.7rem 1.25rem;
  font-size: 0.8rem;
}

@media (min-width: 1280px) {
  .nav__cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
}

.nav__phone {
  display: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 110;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: all 0.35s var(--ease);
}

.header.scrolled .burger span {
  background: var(--violet-deep);
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .burger { display: none; }
  .nav__cta { display: inline-flex; }
}

@media (min-width: 1280px) {
  .nav__phone { display: inline-flex; }
  .header__inner { gap: 1.75rem; }
  .nav { gap: 1.75rem; }
  .nav__list { gap: 1.75rem; }
  .nav__link { font-size: 0.875rem; }
}

@media (max-width: 1023px) {
  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--violet-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav__list.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
    color: var(--text-on-dark);
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--violet-dark);
  color: var(--text-on-dark);
  padding: 8rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/event-04.jpg");
  background-size: cover;
  background-position: center 35%;
  opacity: 1;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,20,40,0.5) 0%, rgba(26,20,40,0.15) 45%, rgba(26,20,40,0) 85%),
    linear-gradient(180deg, rgba(26,20,40,0) 65%, rgba(26,20,40,0.35) 100%);
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

.hero__kicker {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 620px;
  margin: 0 0 2.5rem;
  color: var(--text-on-dark-mute);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================
   Bandeau TFX / Confiance
   ============================================ */

.trust-bar {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before,
.trust-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--violet-dark), transparent);
  z-index: 0;
  opacity: 0.4;
}

.trust-bar::after {
  right: 0;
  left: auto;
  transform: scaleX(-1);
}

.trust-bar__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar__inner {
    grid-template-columns: auto 1px auto;
    justify-content: center;
    gap: 3rem;
    text-align: left;
  }
  .trust-bar__divider {
    width: 1px;
    height: 90px;
    background: rgba(212, 175, 55, 0.35);
  }
}

.trust-bar__tv {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .trust-bar__tv { align-items: flex-start; }
}

.trust-bar__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-bar__show {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.trust-bar__achievement {
  font-size: 0.9rem;
  color: var(--text-on-dark-mute);
  max-width: 320px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  justify-self: center;
}

/* TV logos (TF1 / TFX) — real SVG logos */
.tv-logos {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0.35rem 0 0.6rem;
  background: rgba(255,255,255,0.95);
  padding: 0.6rem 1rem;
  border-radius: 4px;
}

.tv-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.tv-logo-img--tf1 { height: 34px; }
.tv-logo-img--tfx { height: 26px; }

.trust-stat__value {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-on-dark-mute);
  line-height: 1.4;
}

/* ============================================
   Prestations — 4 cards aperçu
   ============================================ */

.prestations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .prestations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prestation-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--violet-dark);
  color: var(--text-on-dark);
  transition: transform 0.5s var(--ease);
}

.prestation-card:hover {
  transform: translateY(-6px);
}

.prestation-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

.prestation-card:hover .prestation-card__img {
  transform: scale(1.08);
}

.prestation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,40,0) 30%, rgba(26,20,40,0.85) 100%);
  z-index: 1;
}

.prestation-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.75rem 1.5rem;
}

.prestation-card__star {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--violet-dark);
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}

.prestation-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.prestation-card__arrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.35s var(--ease);
}

.prestation-card:hover .prestation-card__arrow {
  gap: 1rem;
}

/* ============================================
   Teaser coutumier — feature split
   ============================================ */

.feature-split {
  background: var(--ivory);
  padding: var(--gap-xl) 0;
}

.feature-split__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .feature-split__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
  }
  .feature-split--reverse .feature-split__visual {
    order: 2;
  }
}

.feature-split__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.feature-split__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/coutumier-01.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(1.12) saturate(1.05);
  transition: transform 1s var(--ease);
}

.feature-split__visual:hover::before {
  transform: scale(1.05);
}

.feature-split__visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.feature-split__body {
  max-width: 520px;
}

.feature-split__kicker {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-muted);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.feature-split__title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.feature-split__text {
  color: var(--text-mute);
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-split__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.feature-split__list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-soft);
}

.feature-split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

/* ============================================
   Formules — cards tarifs
   ============================================ */

.formules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .formules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .formules-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.formule-card {
  background: var(--white-soft);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.formule-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.formule-card--featured {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  border-color: var(--violet-deep);
}

.formule-card--featured::before {
  content: "Populaire";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--violet-dark);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}

.formule-card__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.formule-card__tagline {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
  min-height: 2.4em;
}

.formule-card--featured .formule-card__tagline {
  color: var(--text-on-dark-mute);
}

.formule-card__price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--violet-deep);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.formule-card--featured .formule-card__price {
  color: var(--gold);
}

.formule-card__price-unit {
  font-size: 0.8rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.formule-card--featured .formule-card__price-unit {
  color: var(--text-on-dark-mute);
}

.formule-card__link {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: auto;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.formule-card--featured .formule-card__link {
  color: var(--gold);
}

/* ============================================
   Réalisations mosaïque
   ============================================ */

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .mosaic {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.mosaic__item {
  overflow: hidden;
  position: relative;
  background: var(--violet-dark);
}

.mosaic__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.mosaic__item:hover::before {
  transform: scale(1.08);
}

.mosaic__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,20,40,0) 50%, rgba(43,30,63,0.45) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mosaic__item:hover::after {
  opacity: 1;
}

.mosaic__item--tall {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .mosaic__item--wide {
    grid-column: span 2;
  }
}

/* Mosaïque — vraies réalisations Jude + AI + conservation Kobala pour coutumier */
.mosaic__item--1::before { background-image: url("https://cdn.prod.website-files.com/6377d3284ffcbe2219f569e2/639b06410c5a45076eb859b1_PHOTO%202-min.jpg"); } /* coutumier */
.mosaic__item--2::before { background-image: url("assets/images/ai-04.jpg"); }
.mosaic__item--3::before { background-image: url("assets/images/event-04.jpg"); }
.mosaic__item--4::before { background-image: url("assets/images/event-02.jpg"); }
.mosaic__item--5::before { background-image: url("https://cdn.prod.website-files.com/6377d3284ffcbe2219f569e2/6377d55371a9ff5a788e1749_pexels-avonne-stalling-3916352-min.jpg"); } /* coutumier */
.mosaic__item--6::before { background-image: url("assets/images/ai-06.jpg"); }
.mosaic__item--7::before { background-image: url("assets/images/ai-09.jpg"); }
.mosaic__item--8::before { background-image: url("https://cdn.prod.website-files.com/6377d3284ffcbe2219f569e2/639b178fa7fd4122e19a68e0_PHOTO%207-min.jpg"); } /* coutumier */

/* ============================================
   Témoignages
   ============================================ */

.testimonials {
  background: var(--ivory);
  position: relative;
}

.testimonials__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials__track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--white-soft);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-soft);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--violet-deep);
}

.testimonial__event {
  font-size: 0.8rem;
  color: var(--text-mute);
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* ============================================
   CTA final
   ============================================ */

.cta-band {
  background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet-deep) 100%);
  color: var(--text-on-dark);
  padding: var(--gap-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.08), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(212,175,55,0.08), transparent 40%);
}

.cta-band__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-band__kicker {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.cta-band__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--violet-dark);
  color: var(--text-on-dark-mute);
  padding: 4rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer__brand .brand__mark {
  color: var(--gold);
}

.footer__tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.footer__about {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer__title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__list a {
  font-size: 0.9rem;
  color: var(--text-on-dark-mute);
  transition: color 0.3s var(--ease);
}

.footer__list a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  transition: all 0.35s var(--ease);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--violet-dark);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-on-dark-mute);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
  }
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ============================================
   WhatsApp floating button
   ============================================ */

.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all 0.3s var(--ease);
  animation: pulseFab 2s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  animation: none;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

@keyframes pulseFab {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   Reveal animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Page hero (pages intérieures)
   ============================================ */

.page-hero {
  position: relative;
  background: var(--violet-dark);
  color: var(--text-on-dark);
  padding: 10rem 0 6rem;
  text-align: center;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,40,0.35) 0%, rgba(26,20,40,0.65) 100%);
  z-index: 1;
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero__kicker {
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.page-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  color: var(--text-on-dark);
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-on-dark-mute);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero .gold-divider {
  background: var(--gold);
}

/* ============================================
   Formulaire (Devis)
   ============================================ */

.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .form-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
}

.form-card {
  background: var(--white-soft);
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .form-card {
    padding: 3rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-row--2col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-deep);
  font-weight: 600;
}

.form-label .required {
  color: var(--gold);
  margin-left: 0.1rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%232B1E3F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.5rem;
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.5rem;
}

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  user-select: none;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--violet-deep);
}

.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 1.5rem 0;
}

.form-consent input {
  margin-top: 0.2rem;
  accent-color: var(--violet-deep);
}

.form-consent a {
  color: var(--violet-deep);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

/* ============================================
   Contact info aside
   ============================================ */

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-block {
  background: var(--white-soft);
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
}

.contact-block--dark {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  border-left-color: var(--gold);
}

.contact-block__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-block--dark .contact-block__label {
  color: var(--gold);
}

.contact-block__value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--violet-deep);
  margin: 0;
}

.contact-block--dark .contact-block__value {
  color: var(--text-on-dark);
}

.contact-block__value a {
  transition: color 0.3s var(--ease);
}

.contact-block__value a:hover {
  color: var(--gold-muted);
}

.contact-block__note {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.contact-block--dark .contact-block__note {
  color: var(--text-on-dark-mute);
}

.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
  transition: transform 0.3s var(--ease);
}

.whatsapp-inline:hover {
  transform: translateY(-2px);
  color: #fff;
}

.whatsapp-inline svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   FAQ accordion
   ============================================ */

.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-soft);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-soft);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--violet-deep);
  text-align: left;
  transition: color 0.3s var(--ease);
}

.faq__question:hover {
  color: var(--gold-muted);
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform 0.4s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding: 0 0.5rem 1.5rem;
  color: var(--text-mute);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ============================================
   Niveaux de prestation (3 cards)
   ============================================ */

.levels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: level;
}

@media (min-width: 900px) {
  .levels {
    grid-template-columns: repeat(3, 1fr);
  }
}

.level-card {
  background: var(--white-soft);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all 0.35s var(--ease);
}

.level-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.level-card::before {
  counter-increment: level;
  content: counter(level, decimal-leading-zero);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
}

.level-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--violet-deep);
}

.level-card__desc {
  color: var(--text-mute);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.levels-callout {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--gold);
  position: relative;
}

.levels-callout::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}

.levels-callout p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.6;
  padding-left: 2rem;
}

/* ============================================
   Event sections (mariages, anniversaires, etc.)
   ============================================ */

.event-section {
  padding: var(--gap-lg) 0;
}

.event-section:not(:last-of-type) {
  border-bottom: 1px solid var(--border-soft);
}

.event-section--dark {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  margin: 0;
  border-bottom: none;
}

.event-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .event-section__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
  }
  .event-section--reverse .event-section__visual {
    order: 2;
  }
}

.event-section__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.event-section__visual img,
.event-section__visual > div {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}

.event-section:hover .event-section__visual > div {
  transform: scale(1.04);
}

.event-section__body {
  max-width: 560px;
}

.event-section__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.65rem;
}

.event-section--dark .event-section__kicker {
  color: var(--gold);
}

.event-section__title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.event-section__text {
  color: var(--text-mute);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.event-section--dark .event-section__text {
  color: var(--text-on-dark-mute);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0;
  list-style: none;
}

.event-tags li {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  border-radius: 2px;
  background: var(--ivory);
}

.event-section--dark .event-tags li {
  background: transparent;
  border-color: rgba(212,175,55,0.3);
  color: var(--text-on-dark);
}

.event-section__star {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--violet-dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ============================================
   Formule detail cards (page Formules)
   ============================================ */

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 720px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .tarifs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tarif-card {
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  position: relative;
}

.tarif-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tarif-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.tarif-card--featured::before {
  content: "Populaire";
  position: absolute;
  top: 1rem;
  right: -2.5rem;
  background: var(--gold);
  color: var(--violet-dark);
  padding: 0.3rem 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(35deg);
  z-index: 3;
}

.tarif-card__visual {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--violet-dark);
}

.tarif-card__body {
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tarif-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--violet-deep);
  margin-bottom: 0.5rem;
}

.tarif-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}

.tarif-card__price-value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--violet-deep);
  line-height: 1;
}

.tarif-card__price-unit {
  font-size: 0.85rem;
  color: var(--text-mute);
}

.tarif-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.tarif-card__list li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
}

.tarif-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--gold);
  font-weight: 600;
}

/* Option list (à la carte) */
.options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .options-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
}

.option-item__label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-main);
}

.option-item__price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--violet-deep);
  white-space: nowrap;
}

/* Inclus block */
.inclus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .inclus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .inclus-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.inclus-card {
  padding: 1.75rem 1.5rem;
  background: var(--ivory);
  text-align: center;
  border: 1px solid var(--border-soft);
}

.inclus-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.inclus-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--violet-deep);
}

.inclus-card__desc {
  font-size: 0.85rem;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   Gallery filters + grid (page Réalisations)
   ============================================ */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-chip {
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-chip:hover {
  border-color: var(--gold);
  color: var(--violet-deep);
}

.filter-chip.active {
  background: var(--violet-deep);
  border-color: var(--violet-deep);
  color: var(--text-on-dark);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  grid-auto-rows: 200px;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    grid-auto-rows: 240px;
  }
}

@media (min-width: 1100px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--violet-dark);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.gallery__item.hidden {
  display: none;
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover::before {
  transform: scale(1.06);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,20,40,0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  color: var(--text-on-dark);
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery__caption-type {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
  display: block;
}

.gallery__caption-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin: 0;
}

.gallery__item--tall { grid-row: span 2; }
@media (min-width: 768px) {
  .gallery__item--wide { grid-column: span 2; }
}

/* TV feature on Réalisations */
.tv-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--violet-deep);
  color: var(--text-on-dark);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .tv-feature {
    grid-template-columns: 1fr 1.1fr;
    padding: 4rem;
  }
}

.tv-feature::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 30%, rgba(212,175,55,0.1), transparent 60%);
}

.tv-feature__visual {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212,175,55,0.3);
}

.tv-feature__body { position: relative; z-index: 1; }

.tv-feature__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.tv-feature__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.tv-feature__text {
  color: var(--text-on-dark-mute);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tv-feature__note-big {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.tv-feature__note-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}

.tv-feature__note-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
}

/* ============================================
   À propos — portrait & content blocks
   ============================================ */

.portrait-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .portrait-split {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
}

.portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 2;
  transform: translate(20px, 20px);
}

.portrait-body p {
  color: var(--text-mute);
  line-height: 1.9;
  font-size: 1.02rem;
}

.portrait-body p + p {
  margin-top: 1rem;
}

.portrait-body strong {
  color: var(--violet-deep);
}

/* Decorative vs wedding planner comparison */
.role-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 720px) {
  .role-compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

.role-card {
  background: var(--white-soft);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--gold);
}

.role-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--violet-deep);
  margin-bottom: 1rem;
}

.role-card__text {
  color: var(--text-mute);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.role-card--both {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  border-top-color: var(--gold);
  grid-column: 1 / -1;
  text-align: center;
}

.role-card--both .role-card__title {
  color: var(--text-on-dark);
}

.role-card--both .role-card__text {
  color: var(--text-on-dark-mute);
}

/* Recognitions list */
.recognitions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.recognition {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--white-soft);
  border-left: 3px solid var(--gold);
}

.recognition__year {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--gold);
  font-weight: 500;
  min-width: 60px;
}

.recognition__text {
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
  font-size: 0.98rem;
}

.recognition__text strong {
  color: var(--violet-deep);
  font-weight: 600;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  padding: 2rem 1.75rem;
  text-align: center;
  background: var(--ivory);
}

.value-card__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-muted);
  margin-bottom: 0.5rem;
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--violet-deep);
  margin-bottom: 0.5rem;
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Legal pages
   ============================================ */

.legal {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-main);
  line-height: 1.8;
}

.legal h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--violet-deep);
}

.legal h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--violet-deep);
}

.legal p,
.legal li {
  color: var(--text-main);
}

.legal ul,
.legal ol {
  padding-left: 1.5rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal strong { color: var(--violet-deep); }

/* ============================================
   Zone d'intervention
   ============================================ */

.zone-map {
  background: var(--violet-deep);
  color: var(--text-on-dark);
  padding: 3rem;
  text-align: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.zone-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.08), transparent 40%);
}

.zone-map__inner {
  position: relative;
}

.zone-map__pin {
  display: inline-block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.zone-map__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.zone-map__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-on-dark-mute);
}

.zone-map__list li::after {
  content: "·";
  margin-left: 1rem;
  color: var(--gold);
}

.zone-map__list li:last-child::after {
  content: "";
}

/* ============================================
   Offre spéciale — Le Chant de votre Amour
   ============================================ */

.offer {
  background: var(--ivory);
  padding: var(--gap-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: "♫";
  position: absolute;
  top: -3rem;
  left: -2rem;
  font-family: var(--font-serif);
  font-size: 16rem;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}

.offer::after {
  content: "♡";
  position: absolute;
  bottom: -4rem;
  right: -1rem;
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
  line-height: 1;
}

.offer__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.offer__badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--violet-deep);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.offer__symbol {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer__kicker {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold-muted);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.offer__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.offer__text {
  color: var(--text-mute);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 640px;
  margin: 1.5rem auto 2rem;
}

.offer__text em {
  font-style: italic;
  color: var(--violet-deep);
  font-weight: 500;
}

.offer__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--violet-deep);
  margin-bottom: 1rem;
}

.offer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto 2.25rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 720px) {
  .offer__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.offer__item {
  background: var(--white-soft);
  padding: 1.15rem 0.8rem;
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--gold);
  text-align: center;
}

.offer__item-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.offer__item-text {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.45;
  display: block;
}

.offer__partner {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 2rem;
  letter-spacing: 0.05em;
}

.offer__partner strong {
  color: var(--violet-deep);
  font-weight: 600;
}

/* ============================================
   Accessibilité
   ============================================ */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
