/* GLOBAL */
html,
body {
  background: #ffffff;
  height: 100%;
}

body {
  color: #111827;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}


/* Distinction obligatoire / optionnel */
  .field-required {
    color: #111827!important;
    font-weight: 600;
  }

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-container--flush-footer {
  padding-bottom: 0;           /* enlève l’espace sous le contenu */
}



/* HEADER / NAVBAR */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand + logo */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo img {
  display: block;
  height: 34px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: #6b7280;
}

/* NAV DESKTOP */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #6b7280;
  white-space: nowrap;
  background: #ffffff;
}

.site-nav a:hover {
  border-color: rgba(15, 23, 42, 0.12);
  color: #111827;
}

.site-nav a.active {
  background: var(--studio-rouge);
  color: #ffffff;
  border-color: var(--studio-rouge);
}

/* BURGER MOBILE */
.nav-toggle {
  display: none;
  width: 40px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { bottom: 9px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  bottom: 15px;
  transform: rotate(-45deg);
}

/* OFFCANVAS MOBILE – VERSION CLAIRE */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 48;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85%);
  background: #ffffff;
  color: #111827;
  box-shadow: -30px 0 80px rgba(15, 23, 42, 0.16);
  transform-origin: right center;
  transform: perspective(1200px) rotateY(-18deg) translateX(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
  z-index: 49;
  border-left: 1px solid rgba(148, 163, 184, 0.3);
}

.mobile-menu-inner {
  padding: 1.2rem 1.1rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* tête offcanvas */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.mobile-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-brand-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-brand-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

.mobile-menu-close {
  border: none;
  background: rgba(249, 250, 251, 1);
  color: #111827;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

/* liens mobile */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-links a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid transparent;
}

.mobile-nav-links a:hover {
  border-color: rgba(148, 163, 184, 0.6);
}

.mobile-nav-links a.active {
  background: var(--studio-rouge);              /* orange clé */
  color: #ffffff;
  border-color: var(--studio-rouge);
}

/* blocs info */
.mobile-info-block {
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(229, 231, 235, 1);
}

.mobile-info-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.mobile-info-text {
  font-size: 0.85rem;
  margin: 0;
  color: #4b5563;
}

/* horaires */
.mobile-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
}

.mobile-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.mobile-hours-day {
  color: #111827;
}

.mobile-hours-time {
  color: #6b7280;
}

/* état ouvert */
body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: perspective(1200px) rotateY(0deg) translateX(0);
  opacity: 1;
}


/* responsive */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}












/* CONTAINER PRINCIPAL */
.page-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  background: #ffffff;

  flex: 1 0 auto;
}

/* CARDS (style type Stripe) */
.card-shell {
  border-radius: 1rem; /* coins légèrement arrondis */
  background: #ffffff;
  border: 1px solid #e5e7eb; /* bord gris clair mais visible */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05); /* ombre grise légère */
  padding: 1.5rem;
}



/* LABELS / TITRES DE SECTION */
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

/* BOUTON PRINCIPAL */
.btn.btn-minimal {
  border-radius: 0.75rem;
  border: 1px solid #111827;
  background-color: #111827;
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Hover : on garde le bouton noir, juste un petit effet */
.btn.btn-minimal:hover,
.btn.btn-minimal:focus {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
  box-shadow: 0 0 0 0.12rem rgba(0, 0, 0, 0.12);
}

/* FORMULAIRES */
.form-control,
.form-select {
  border-radius: 0.6rem;
  border-color: rgba(15, 23, 42, 0.16);
  font-size: 0.9rem;
  background: #ffffff;
}

/* MESSAGES FLASH */
.flash-message {
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: #ffffff;
  color: #166534;
  width: fit-content;
}




/* HOME – STRUCTURE GLOBALE */
.home-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
 



/* =========================================
   HERO RÉSERVATION ISCRA STUDIO
   ========================================= */

.booking-hero {
  position: relative;
  padding: 3.5rem 0 2.8rem;
  background-color: #ffffff;

  /* halo au centre + grille */
  background-image:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.0) 0%,
      rgba(255, 255, 255, 0.55) 55%,
      rgba(255, 255, 255, 1) 100%
    ),
    linear-gradient(#e2e8f0 1px, transparent 1px),
    linear-gradient(90deg, #e2e8f0 1px, transparent 1px);

  background-size:
    auto,
    70px 70px,
    70px 70px;
  background-repeat:
    no-repeat,
    repeat,
    repeat;
  background-position:
    center,
    center,
    center;

  border-bottom: 1px solid #e5e7eb;
  overflow-x: hidden; /* évite tout scroll horizontal lié au hero */
}

.booking-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* ---------- Kicker ---------- */

.booking-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 0.78rem;
  color: #6b7280;
}

.booking-hero-kicker-icon {
  font-size: 0.9rem;
}

/* ---------- Titre ---------- */

.booking-hero-title {
  margin: 0.8rem auto 0.4rem;
  max-width: 800px;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.booking-hero-title-accent {
  color: #ef4444; /* rouge vif */
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
}

/* ---------- Sous-titre ---------- */

.booking-hero-sub {
  max-width: 640px;
  margin: 0 auto 1.6rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* ---------- CTA ---------- */

.booking-hero-cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* bouton : gradient rouge, pas de contour rouge au focus */
.booking-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  box-shadow: 0 14px 32px rgba(239, 68, 68, 0.55);
  transition:
    transform 140ms ease-out,
    box-shadow 140ms ease-out,
    filter 140ms ease-out;
}

.booking-hero-cta i {
  font-size: 1rem;
}

.booking-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(239, 68, 68, 0.75);
  filter: brightness(1.03);
}

.booking-hero-cta:focus,
.booking-hero-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0; /* pas d’anneau de focus rouge du navigateur */
}

/* ---------- Cartes Étapes ---------- */

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.booking-step-card {
  flex: 0 1 260px;
  max-width: 280px;
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45); /* gris neutre */
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  text-align: left;
  backdrop-filter: blur(4px);
  transition:
    transform 140ms ease-out,
    box-shadow 140ms ease-out,
    border-color 140ms ease-out;
}

.booking-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.6); /* rouge au hover */
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.booking-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.09); /* halo rouge, plus de bleu */
  color: #ef4444;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.booking-step-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.booking-step-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.booking-step-text {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 767.98px) {
  .booking-hero {
    padding: 2.6rem 0 2.2rem;
  }

  .booking-hero-inner {
    padding: 0 1.2rem;
  }

  .booking-hero-title {
        font-size: 3rem;
        font-weight: 800;
        line-height: 0.9;
        letter-spacing: -2px;
  }
  .booking-hero-kicker {
    font-size: 0.62rem;
    padding: 0.16rem 0.75rem;
  }

  .booking-step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}






/* LIGNE DIVISEUR + FOOTER LINE */
.divider-line {
  height: 1px;
  background-color: #000000;
  opacity: 0.12;
  margin: 1.25rem 0;
}

.footer-line {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}





 
/* SECTION SERVICES DÉTAILLÉS */
.service-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.service-detail-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

 


.service-detail-image {
  flex: 1;
}

.service-detail-image img,
.service-detail-placeholder {
  width: 100%;
  border-radius: 1rem;
  display: block;
  min-height: 220px;
  background: #f3f4f6;
  object-fit: cover;
}

.service-detail-content {
  flex: 1;
}

.service-detail-price {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

/*---------------- */
:root {
  /* Palette ISCRA – rouge vif */
  --studio-rouge: #ef4444;
  --studio-rouge-soft: #fef2f2;
  --studio-rouge-dark: #b91c1c;
}

/* ==============================
   SECTION RÉSERVATION – WRAPPER
   ============================== */

.studio-reservation {
  padding: 3.5rem 0 3.5rem;
}

.studio-reservation-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: #ffffff;
}

/* Label "RÉSERVATION" (même style section services) */
.studio-section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 0.6rem;
}

/* Titre principal à gauche */
.studio-reservation-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
  color: #020617;
}

/* Texte d’aide (gauche + version droite) */
.studio-help {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
  max-width: 520px;
  line-height: 1.5;
}

.studio-help--right {
  text-align: right;
}

/* =========================
   GRILLE DES SERVICES
   ========================= */

.studio-reservation-body {
  margin-top: 1.8rem;
}

/* grille responsive 3 cartes / ligne quand il y a la place */
.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Bouton/card cliquable */
.service-option {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.2rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  min-height: 160px;
  background-color: #ffffff;
  text-align: left;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background-image: none;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    transform 0.12s ease;
}

.service-option:hover {
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  background: linear-gradient(
    135deg,
    var(--studio-rouge-soft) 0%,
    #ffffff 45%,
    #ffffff 100%
  );
  transform: translateY(-2px);
}

/* focus propre clavier */
.service-option:focus-visible {
  border-color: rgba(239, 68, 68, 0.95);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.55);
}

/* Contenu gauche (titre + durée) */
.service-option-main {
  width: 100%;
}

.service-option-title {
  font-weight: 600;
  font-size: 0.98rem;
  color: #111827;
  margin-bottom: 0.25rem;
}

.service-option-meta {
  font-size: 0.82rem;
  color: #6b7280;
}

/* Bandeau bas prix + CTA, bien séparé du texte */
.service-option-right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.service-option-price {
  font-weight: 600;
  color: var(--studio-rouge-dark);
  font-size: 0.92rem;
}

/* Pill "Choisir" */
.service-option-cta {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--studio-rouge);
  color: var(--studio-rouge);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.service-option:hover .service-option-cta {
  background: var(--studio-rouge-dark);
  color: var(--studio-rouge-soft);
  border-color: var(--studio-rouge-dark);
}

.service-option-cta .material-symbols-rounded {
  font-size: 16px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991.98px) {
  .studio-reservation-inner {
    padding: 0 1.3rem 1.8rem;
  }

  .studio-help--right {
    text-align: left;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .studio-reservation {
    padding-top: 2.5rem;
  }

  .studio-reservation-inner {
    box-shadow: none;
    padding-inline: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}





/* =========================================
   SECTION LOGOS CLIENTS – MARQUEE CLEAN
   ========================================= */

.studio-partners {
  padding: 1.8rem 0 1.3rem;
  position: relative;
  text-align: center;
  background: #ffffff;   /* fond blanc du site */
  overflow: hidden;      /* sécurité anti scroll X */
  z-index: 0;            /* crée un contexte pour le ::before */
}

  

.studio-partners-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.studio-partners-label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.9rem;
}

/* viewport : pas de scroll horizontal visible */
.studio-partners-viewport {
  position: relative;  /* nécessaire pour le ::before/::after */
  overflow: hidden;
  width: 100%;
}

/* track = ce qui se déplace */
.studio-partners-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: studio-partners-scroll 40s linear infinite;
}

/* pause au survol si tu veux cliquer tranquille */
.studio-partners-viewport:hover .studio-partners-track {
  animation-play-state: paused;
}


/* Voiles blancs gauche / droite */
.studio-partners-viewport::before,
.studio-partners-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;                 /* ajuste si besoin : 40–80px */
  pointer-events: none;        /* ne bloque pas les clics sur les logos */
  z-index: 2;
}

/* côté gauche : blanc -> transparent */
.studio-partners-viewport::before {
  left: 0;
  background: linear-gradient(to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* côté droit : transparent -> blanc */
.studio-partners-viewport::after {
  right: 0;
  background: linear-gradient(to left,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}


/* ligne de logos (duplicée en JS pour l'effet infini) */
.studio-partners-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 2.5rem;   /* espace au début et à la fin de CHAQUE rangée */
}


/* chaque logo */
.studio-partner {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* 🔥 RESET COMPLET + FORCAGE DE LA TAILLE DES LOGOS */
.studio-partners img {
  all: unset;                     /* efface toutes les règles img globales */
  display: block;
  max-height: 40px !important;   /* ⬅️ règle la taille ici (32 / 40 / 46…) */
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  cursor: pointer;
}

/* Animation continue */
@keyframes studio-partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 767.98px) {
  .studio-partners-inner {
    padding: 0 1.1rem;
  }
  .studio-partners-row {
    gap: 2rem;
  }
  .studio-partners img {
    max-height: 32px !important;
  }
}






 /* ================================
   SECTION SERVICES – VERSION CLAIRE
   ================================ */

.studio-services {
  padding: 3.5rem 0 3rem;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.studio-services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* texte haut */
.studio-services-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.studio-services-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.studio-services-side {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 420px;
  text-align: right;
}

/* wrapper catégories */
.studio-services-list {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.40rem;             /* espace entre les lignes */
}

/* ligne de catégorie */
.studio-services-row {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #020617;
  padding: 0.95rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.03);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.studio-services-row:hover {
  border-color: rgba(129, 140, 248, 0.7);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.studio-services-index {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.studio-services-name {
  flex: 1 1 auto;
  text-align: left;
  font-weight: 500;
}

.studio-services-arrow {
  flex: 0 0 auto;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

/* état ouvert */
.studio-services-row.is-open {
  border-color: rgba(129, 140, 248, 0.9);
  background:
    linear-gradient(to right,
      rgba(129, 140, 248, 0.09),
      rgba(239, 68, 68, 0.04),
      rgba(255, 255, 255, 1)
    );
}

.studio-services-row.is-open .studio-services-arrow {
  transform: rotate(180deg);
}

/* blocs détails */
.studio-services-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;           /* on animera aussi le padding */
  margin-top: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    padding-top 0.35s ease,
    margin-top 0.35s ease;
}

.studio-services-detail.is-open {
  max-height: 900px;        /* ajuste si tu as beaucoup de services */
  opacity: 1;
  padding-top: 0.2rem;
}

/* texte si pas de services */
.studio-services-empty {
  font-size: 0.9rem;
  color: #6b7280;
  padding-left: 0.6rem;
}

/* grille des services : 3 colonnes max, responsive */
.studio-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

/* carte service */
.studio-service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem 1.4rem 1.2rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
}

.studio-service-card:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

/* haut de carte */
.studio-service-card-body {
  margin-bottom: 0.9rem;          /* espace AVANT le bloc prix */
}

.studio-service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.studio-service-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.studio-service-card-chip {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--studio-rouge-soft);
  color: var(--studio-rouge-dark);
  text-align: center;
    line-height: 0.8rem;
}

.studio-service-card-desc {
  font-size: 0.88rem;
  color: #4b5563;
  margin: 0;
}

/* bas de carte : infos + prix bien séparés */
.studio-service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.86rem;
}

.studio-service-card-meta-left span {
  color: #6b7280;
}

.studio-service-card-meta-right {
  text-align: right;
  font-weight: 600;
}

.studio-service-card-price {
  color: #111827;
}

/* responsive */
@media (max-width: 767.98px) {
  .studio-services-inner {
    padding: 0 1.2rem;
  }

  .studio-services-side {
    text-align: left;
    margin-top: 0.5rem;
  }

  .studio-services-list {
    margin-top: 1.8rem;
  }

  .studio-service-card-meta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .studio-service-card-meta-right {
    text-align: left;
  }
}





/* ============================
   SECTION BENEFITS – LIGHT THEME
   ============================ */

:root {
  /* palette ISCRA (au cas où) */
  --studio-rouge: #ef4444;
  --studio-rouge-soft: #fee2e2;
  --studio-rouge-dark: #b91c1c;
}

/* bloc global – fond blanc */
.studio-benefits {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 0 4.5rem;
}

.studio-benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* header / centre */

.studio-benefits-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.8rem;
}

.studio-benefits-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  background: #f9fafb;
  margin-bottom: 0.9rem;
}

.studio-benefits-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #020617;
}

.studio-benefits-lead {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.7rem;
}

/* bouton clair */

.studio-benefits-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  background: #0f172a;
  color: #f9fafb;
  font-weight: 500;
  border: 1px solid transparent;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.12s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.studio-benefits-cta span {
  font-size: 0.9rem;
}

.studio-benefits-cta:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: var(--studio-rouge);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

/* GRID DE CARTES – clair */

.studio-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.studio-benefit-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.45rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background-color 0.16s ease;
}

.studio-benefit-card:hover {
  transform: translateY(-3px);
  border-color: var(--studio-rouge-soft);
  background: linear-gradient(
    135deg,
    rgba(254, 228, 226, 0.55),
    #ffffff 40%,
    #ffffff 100%
  );
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.10);
}

.studio-benefit-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: #111827;
}

.studio-benefit-text {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 991.98px) {
  .studio-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639.98px) {
  .studio-benefits-inner {
    padding: 0 1.2rem;
  }

  .studio-benefits-grid {
    grid-template-columns: 1fr;
  }
}






/* ===========================
   PAGE SERVICE DÉTAILLÉE
   =========================== */

.service-detail-hero {
  padding: 2.8rem 0 2.2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.service-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-detail-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.8rem;
}

.service-detail-title {
  font-size: clamp(2.2rem, 3vw, 2.7rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.service-detail-sub {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.2rem;
}

.service-detail-tag {
  font-size: 0.85rem;
  color: #9ca3af;
}

.service-detail-pricing {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  background: var(--studio-rouge-soft);
}

.service-detail-price-main {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--studio-rouge-dark);
}

.service-detail-price-sub {
  font-size: 0.86rem;
  color: #374151;
}

.service-detail-duration {
  font-size: 0.78rem;
  color: #6b7280;
}

/* Corps */

.service-detail-body {
  padding: 2.3rem 0 3rem;
}

.service-detail-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
}

.service-detail-highlight {
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    var(--studio-rouge-soft),
    #ffffff
  );
  border: 1px solid #fee2e2;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}

.service-detail-highlight-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--studio-rouge-dark);
}

.service-detail-highlight-text {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Galerie */

.service-detail-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-detail-thumb {
  flex: 0 1 calc(50% - 0.5rem);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.service-detail-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-detail-thumb figcaption {
  font-size: 0.75rem;
  color: #6b7280;
  padding: 0.25rem 0.5rem 0.5rem;
}

/* Responsive */

@media (max-width: 767.98px) {
  .service-detail-inner {
    padding: 0 1.2rem;
  }

  .service-detail-pricing {
    align-items: flex-start;
    margin-top: 0.8rem;
  }

  .service-detail-thumb {
    flex: 1 1 100%;
  }
}







/* --- Carousel bannières --- */

.studio-break-carousel {
  position: relative;
}

.studio-break-track {
  position: relative;
}

/* chaque slide = ta bannière */
.studio-break-slide {
  display: none;
  border-radius: 22px;
  border: 1px solid var(--studio-rouge-soft);
  padding: 1.8rem 2rem;
  color: #0f172a;
}

.studio-break-slide.is-active {
  display: block;
}

/* petits points sous le bloc */
.studio-break-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.studio-break-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(15, 23, 42, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, width 0.15s ease;
}

.studio-break-dot.is-active {
  width: 18px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.25);
}

/* tag, titre, texte (on garde ton style clair) */
.studio-break-label {
  font-size: 0.75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}

.studio-break-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 0.7rem;
}

.studio-break-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #111827;
  max-width: 32rem;
}

/* bouton neutre */
.studio-break-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease;
}

.studio-break-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}

/* image à droite */
.studio-break-illu {
  max-width: 220px;
  margin-left: auto;
}

.studio-break-illu img {
  width: 100%;
  height: auto;
  display: block;
}

/* responsive */
@media (max-width: 767.98px) {
  .studio-break-slide {
    padding: 1.4rem 1.5rem;
  }
  .studio-break-title {
    font-size: 1.9rem;
  }
}





    /* --- Interventions en détail --- */
    .studio-service-detail {
      border-radius: 18px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1rem 1.1rem;
      display: flex;
      gap: 1rem;
    }

    .studio-service-detail-img {
      width: 96px;
      flex-shrink: 0;
      border-radius: 12px;
      overflow: hidden;
      background: #f3f4f6;
    }

    .studio-service-detail-img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .studio-service-detail-body {
      font-size: 0.9rem;
    }

    .studio-service-detail-meta {
      font-size: 0.8rem;
      color: #6b7280;
    }

    .studio-service-detail-text {
      font-size: 0.85rem;
      color: #4b5563;
    }



    

    /* --- Newsletter --- */
/* --- Newsletter : 2 cards alignées --- */
.studio-newsletter-row {
  align-items: stretch;
}

.studio-newsletter-card {
  border-radius: 20px;
  border: 1px solid #ffb96b;
  background: #fffaf5;
  padding: 1.4rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.studio-newsletter-card--light {
  background: #fffaf5;
}

.studio-newsletter-card--info {
  background: #fffdf8;
}

.studio-newsletter-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.studio-newsletter-text {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0;
}

.studio-newsletter-illu {
  max-width: 140px;
  margin-left: auto;
  margin-top: 1rem;
}

.studio-newsletter-illu img {
  width: 100%;
  height: auto;
  display: block;
}

  

   
    /* --- CTA final studio --- */
.studio-cta-final {
  position: relative;
}

.studio-cta-inner {
  margin-top: 1.25rem;
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  background: var(--studio-rouge);
  border: 1px solid #fed7aa;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

/* léger highlight orangé en fond */
.studio-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left,
             rgba(249, 115, 22, 0.08),
             transparent 60%);
  pointer-events: none;
}

/* effet 3D au survol */
.studio-cta-inner:hover {
  transform: perspective(900px) rotateX(-2deg) rotateY(1.5deg) translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
  border-color: #f97316;
}

/* Titre un peu plus fort et lié à la key color */
.studio-cta-title {
  font-weight: 600;
  color: #ffffff;
}

.studio-cta-help {
  font-size: 0.85rem;
  color: #fcd9b6;
  margin-bottom: 0;
}

/* bouton avec léger effet 3D */
.studio-cta-btn {
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
  transform: translateZ(0);
  border: 1px solid var(--studio-rouge-soft)!important;
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out;
}

.studio-cta-btn:hover {
  transform: translateY(-2px) translateZ(10px);
  border: 1px solid var(--studio-rouge-dark)!important;
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.45);
}

/* Responsive : un peu plus d’air sur mobile */
@media (max-width: 768px) {
  .studio-cta-inner {
    padding: 1.3rem 1.2rem;
  }
}





    /* Footer simple */
    .studio-footer {
      border-top: 1px solid #e5e7eb;
      margin-top: 2.5rem;
      padding-top: .85rem;
      font-size: 0.8rem;
      color: #6b7280;
    }

    /* Bouton principal orange */
    .btn-studio-primary {
      background-color: var(--studio-rouge);
      border-color: var(--studio-rouge);
      color: #ffffff;
    }
    .btn-studio-primary:hover,
    .btn-studio-primary:focus {
      background-color: var(--studio-rouge-dark);
      border-color: var(--studio-rouge-dark);
      color: #ffffff;
    }

    /* Hero image */
    .studio-hero-photo-wrapper {
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .studio-hero-photo {
      display: block;
      width: 100%;
      height: auto;
    }

 

.contact-page {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* En-tête */

.contact-header {
  margin-bottom: 2rem;
}

.contact-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-lead {
  max-width: 620px;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Cartes */

.contact-card {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.4rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Carte “appeler le studio” */

.studio-call-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  text-decoration: none;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    background-color 0.12s ease-out,
    border-color 0.12s ease-out;
  color: #111827;
}

.studio-call-card:hover {
  background: #ffedd5;
  border-color: #fdba74;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.studio-call-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f97316;
  color: #ffffff;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.studio-call-text {
  font-size: 0.85rem;
}

.studio-call-title {
  font-weight: 600;
}

.studio-call-number {
  font-size: 0.8rem;
  color: #374151;
}

/* Coordonnées + horaires */

.contact-coords-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-coords-text {
  font-size: 0.85rem;
  color: #111827;
}

.contact-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
}

.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.12rem 0;
}

.contact-hours-list span:last-child {
  color: #6b7280;
}

/* Formulaire */

.contact-form-header {
  margin-bottom: 0.6rem;
}

.contact-form-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-form-header p {
  font-size: 0.85rem;
  color: #4b5563;
}

/* Inputs plus doux */

.contact-card .form-control-sm,
.contact-card textarea.form-control-sm {
  font-size: 0.86rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.45rem 0.65rem;
}

.contact-card .form-control-sm:focus,
.contact-card textarea.form-control-sm:focus {
  border-color: rgba(239, 68, 68, 0.8);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

/* Bouton */

.contact-card .btn-minimal {
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
}

/* Texte aide */

.contact-legal {
  font-size: 0.78rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 767.98px) {
  .contact-inner {
    padding: 0 1.1rem;
  }

  .contact-card {
    padding: 1.2rem 1.1rem;
  }

  .studio-call-card {
    border-radius: 14px;
  }
}




/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  margin-top: 3rem;
  flex-shrink: 0
}

.site-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Bloc logo + infos studio */
.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-direction: column;
}

.footer-logo img {
  display: block;
  height: 40px;        /* ajuste si besoin */
  width: auto;
}

.footer-studio-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-studio-name {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
}

.footer-studio-meta {
  font-size: 0.78rem;
}

/* Bloc "Réalisé par Iscra Studio" */
.footer-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.footer-madeby {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.footer-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  color: #f97316;              /* orange clé */
}

.footer-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-right {
    justify-content: flex-start;
  }
}



/* --- FAQ (version rouge ISCRA) --- */

.studio-faq-intro {
  max-width: 22rem;
}

.studio-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.studio-faq-item {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.studio-faq-item.is-open {
  border-color: var(--studio-rouge-soft);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  transform: translateY(-1px);
}

.studio-faq-trigger {
  width: 100%;
  border: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    var(--studio-rouge-soft) 100%
  );
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
}

.studio-faq-question {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

/* pastille + / - rouge */

.studio-faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--studio-rouge);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.studio-faq-item.is-open .studio-faq-icon {
  transform: rotate(90deg);
  background: var(--studio-rouge-dark);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.4);
}

.studio-faq-icon-line {
  position: absolute;
  background: #ffffff;
  border-radius: 999px;
}

.studio-faq-icon-vert {
  width: 2px;
  height: 10px;
}

.studio-faq-icon-horiz {
  width: 10px;
  height: 2px;
}

/* contenu dépliable */

.studio-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    opacity 0.25s ease;
  opacity: 0;
  background: #ffffff;
}

.studio-faq-item.is-open .studio-faq-panel {
  opacity: 1;
}

.studio-faq-panel-inner {
  padding: 0 1.1rem 0.9rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.studio-faq-panel-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .studio-faq-intro {
    max-width: none;
  }
}




/* ===========================
   SECTION SERVICES – DETAIL
   =========================== */


@media (max-width: 575.98px) {
  .service-option {
    min-height: 0;
  }
  .service-option-right {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}


@media (max-width: 768px) {
  .service-detail-row {
    flex-direction: row;
    align-items: center;
  }

  .service-detail-row.reverse {
    flex-direction: row-reverse;
  }

  .studio-hero-photo-wrapper {
        max-width: 420px;
        margin-left: auto;
      }

      .studio-break-illu img {
          width: 100%!important;
          height: auto;
          display: flex;
          left: 0;
          position: relative;
      }

      .studio-break-illu {
          max-width: 170px;
          margin-left: 0;
      }

      .studio-break-title {
        font-size: 2rem;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 95%;
        color: #111827;
      }
}

@media (min-width: 768px) {
  .parallax-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sur mobile, tout passe en colonne */
@media (max-width: 767.98px) {
  .form-row {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .card-shell {
    padding: 1.8rem 2rem;
  }
}










/* ===========================
   PORTFOLIO – SECTION HOME
   =========================== */

.home-portfolio {
  padding: 4rem 0 3.5rem;
  border-top: 1px solid #e5e7eb;
}

.home-portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* colonne gauche */

.home-portfolio-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.home-portfolio-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.home-portfolio-lead {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 360px;
  margin-bottom: 1.4rem;
}

.home-portfolio-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
  background: #ffffff;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease;
}

.home-portfolio-all-btn:hover {
  background: #f9fafb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* colonne droite – liste */

.home-portfolio-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 26px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
}

.home-portfolio-item {
  border-bottom: 1px solid #e5e7eb;
}

.home-portfolio-item:last-child {
  border-bottom: none;
}

.home-portfolio-link {
  display: block;
  padding: 1rem 1.4rem 1.1rem;
  text-decoration: none;
  color: inherit;
}

/* ligne principale (titre + tags) */

.home-portfolio-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.home-portfolio-project-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.home-portfolio-project-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.home-portfolio-project-meta {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* tags à droite */

.home-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.home-portfolio-tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  background: #f9fafb;
}

/* état hover sur la ligne */

.home-portfolio-item:hover {
  background: #f9fafb;
}

.home-portfolio-item:hover .home-portfolio-link {
  padding-bottom: 1.4rem; /* un peu plus d’espace quand les images apparaissent */
}

/* prévisualisation images */

.home-portfolio-previews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

.home-portfolio-item:hover .home-portfolio-previews {
  max-height: 320px;        /* hauteur suffisante pour les 2 visuels */
  opacity: 1;
  margin-top: 0.9rem;
}

.home-portfolio-preview {
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}

.home-portfolio-preview img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  object-position: top;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

/* léger zoom au hover pour donner du “punch” visuel */
.home-portfolio-item:hover .home-portfolio-preview img {
  transform: scale(1.05);
}

/* état vide */

.home-portfolio-empty {
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* responsive */

@media (max-width: 767.98px) {
  .home-portfolio-inner {
    padding-inline: 1.2rem;
  }

  .home-portfolio-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-portfolio-tags {
    justify-content: flex-start;
  }
}









/* ===========================
   NEWSLETTER
   =========================== */

.studio-newsletter {
  padding: 3.5rem 0 4rem;
  border-top: 1px solid #e5e7eb;
}

.studio-newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Colonne gauche */

.studio-newsletter-left {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.studio-newsletter-title {
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.studio-newsletter-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.4rem;
}

/* Formulaire */

.studio-newsletter-form {
  margin-top: 0.3rem;
}

.studio-newsletter-fields {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.studio-newsletter-input {
  flex: 1 1 220px;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.studio-newsletter-input:focus {
  border-color: var(--studio-rouge);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.studio-newsletter-btn {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 0;
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--studio-rouge);
  color: #ffffff;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.studio-newsletter-btn:hover {
  background: var(--studio-rouge-dark);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.25);
  transform: translateY(-1px);
}

.studio-newsletter-hint {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #9ca3af;
}


@media (max-width: 768px) {
  .studio-newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .studio-newsletter-input {
    flex: 0 0 auto;   /* ne pas forcer une hauteur bizarre */
    width: 100%;      /* full width sur portable */
    min-width: 0;
    height: auto;     /* plus de cercle */
    border-radius: 999px; /* garde le style "pilule" */
    padding: 0.75rem 1rem;
  }
}





/* --- Newsletter : carte droite simplifiée --- */

.studio-newsletter-right-simple {
  border-radius: 20px;
  padding: 1.8rem 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.snr-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.snr-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.snr-icon .bi {
  font-size: 1.2rem;
  color: #1d4ed8;
}

.snr-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: #0f172a;
}

.snr-intro {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* liste simple, beaucoup d’espace */

.snr-list {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #111827;
}

.snr-list li {
  line-height: 1.4;
}

/* petite note en bas */

.snr-note {
  margin: 0;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.snr-note .bi {
  font-size: 0.95rem;
  color: #16a34a;
}

/* responsive */

@media (max-width: 767.98px) {
  .studio-newsletter-right-simple {
    padding: 1.5rem 1.4rem;
  }
}




/* Responsive */

@media (max-width: 767.98px) {
  .studio-newsletter-inner {
    padding-inline: 1.2rem;
  }

  .studio-newsletter-left,
  .studio-newsletter-right {
    padding: 1.4rem 1.4rem;
  }

  .studio-newsletter-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .studio-newsletter-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}










/* ============================
   PORTFOLIO – LISTE
   ============================ */
/* Désactiver le layout flex uniquement sur la page Portfolio */
.body-portfolio .site-wrapper {
  display: block;
  min-height: auto;
}

.portfolio-page {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.portfolio-header {
  margin-bottom: 1.8rem;
}

.portfolio-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.portfolio-lead {
  max-width: 560px;
  font-size: 0.95rem;
  color: #4b5563;
}

/* === Filtres === */

.portfolio-filters {
  margin-bottom: 2rem;
}

/* Champ de recherche */
.portfolio-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
  background-color: #ffffff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.portfolio-input:focus {
  border-color: rgba(239, 68, 68, 0.8);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.3);
}

/* ===== SELECT CUSTOM PORTFOLIO ===== */

.portfolio-select-wrapper {
  position: relative;
  width: 100%;
}

/* Si jamais un vrai <select> existe encore dans le wrapper, on le masque */
.portfolio-select-wrapper select {
  display: none !important;
}

/* Bouton fermé (pill) */
.portfolio-select-display {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.portfolio-select-display:hover {
  border-color: rgba(148, 163, 184, 0.85);
}

.portfolio-select-display:focus-visible {
  outline: none;
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.portfolio-select-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Flèche ronde */
.portfolio-select-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.portfolio-select-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(-45deg) translateY(-1px);
}

/* Menu déroulant */
.portfolio-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  max-height: 260px;
  overflow-y: auto;
  z-index: 30;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* Options */
.portfolio-select-option {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
}

.portfolio-select-option:hover {
  background: #fff1f2;
  color: #b91c1c;
}

.portfolio-select-option.is-active {
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 600;
}

/* État ouvert */
.js-portfolio-select.is-open .portfolio-select-display {
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.js-portfolio-select.is-open .portfolio-select-arrow {
  transform: rotate(180deg);
  border-color: rgba(239, 68, 68, 0.9);
  background: #fff1f2;
}

.js-portfolio-select.is-open .portfolio-select-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* ===== Boutons filtres ===== */

.portfolio-filter-btn,
.portfolio-reset-btn {
  flex: 1 1 auto;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  text-align: center;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.portfolio-filter-btn {
  border-color: var(--studio-rouge);
  color: var(--studio-rouge-dark);
}

.portfolio-filter-btn:hover {
  background: var(--studio-rouge-soft);
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.2);
}

.portfolio-reset-btn:hover {
  background: #f9fafb;
}

/* ===== Grille des projets ===== */

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.portfolio-card {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease,
    background-color 0.16s ease;
  height: 100%;
}

.portfolio-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  padding: 0.85rem 0.9rem 0.95rem;
  gap: 0.75rem;
}

.portfolio-card:hover {
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

/* Miniatures */

.portfolio-card-thumb {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 16 / 9;
}

.portfolio-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenu de la carte */

.portfolio-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
}

/* Ligne du haut : titre + sous-titre à gauche, date à droite */

.portfolio-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.portfolio-card-header-main {
  flex: 1 1 auto;
  min-width: 0;
}

.portfolio-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.08rem;
}

.portfolio-card-sub {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0;
}

/* Badge de date */

.portfolio-card-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.9rem;
  border-radius: 9px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  color: #4b5563;
  white-space: nowrap;
}

/* 2 dates empilées */

.portfolio-card-date--multi {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.08rem;
}

.portfolio-card-date--multi span {
  line-height: 1.1;
}

/* Résumé */

.portfolio-card-desc {
  font-size: 0.86rem;
  color: #4b5563;
  margin: 0.6rem 0 0.4rem;
}

/* Tags catégories */

.portfolio-card-tags {
  margin-top: 0.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* Badges catégories */

.portfolio-tag-badge,
.portfolio-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #ffffff;
  font-size: 0.78rem;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
}

/* Badge "mis en avant" */

.portfolio-badge-highlight {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: var(--studio-rouge-soft);
  color: var(--studio-rouge);
  border: 1px solid var(--studio-rouge);
}

/* Responsive */

@media (max-width: 767.98px) {
  .portfolio-inner {
    padding: 0 1.1rem;
  }

  .portfolio-card-thumb {
    aspect-ratio: 4 / 3;
  }

  .portfolio-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-card-date,
  .portfolio-card-date--multi {
    margin-top: 0.25rem;
  }
}







/* ============================
   PORTFOLIO – DÉTAIL PROJET
   ============================ */
.project-page {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.project-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.project-header {
  margin-bottom: 2rem;
}

.project-title {
  font-size: clamp(2.2rem, 3vw, 2.7rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.project-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.6rem;
}


.project-meta-row span::before {
  content: "•";
  margin-right: 0.35rem;
}

.project-meta-row span:first-child::before {
  content: "";
  margin-right: 0;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

/* ---------- Hero ---------- */

.project-hero {
  width: 100%;        /* largeur max raisonnable */
  height: fit-content;
  border-radius: 24px;
  overflow: hidden;
}

.project-hero-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.project-hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Layout texte + sidebar ---------- */

.project-layout {
  margin-top: 0.5rem;
}

.project-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #111827;
}

.project-body p {
  margin-bottom: 1rem;
}

.project-body h2,
.project-body h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}


.project-body ul,
.project-body ol {
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}

/* Texte supplémentaire */

.project-extra {
  margin-top: 2rem;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ---------- Galerie style Instagram 3:4 ---------- */

.project-gallery {
  margin-top: 2.4rem;
}

.project-gallery--primary {
  margin-top: 3rem;
}

.project-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.85rem;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.project-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.project-gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;        /* ratio IG */
  overflow: hidden;
}

.project-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-gallery-item figcaption {
  font-size: 0.8rem;
  color: #6b7280;
  padding: 0.45rem 0.6rem 0.6rem;
}

/* Wrapper autour des images CKEditor */
.project-body-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

/* L’image elle-même */
.project-body-img-wrap img.project-body-img-clickable {
  display: block;
  width: 100%;
  height: 500px;           /* adapte la hauteur si tu veux */
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  cursor: zoom-in;
}

/* Overlay loupe – visible PAR DÉFAUT */
.project-body-img-overlay {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--studio-rouge);
  color: #f9fafb;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.18s ease;
  pointer-events: none;   /* ne bloque pas le clic */
}

/* Au hover on CACHE l’overlay */
.project-body-img-wrap:hover .project-body-img-overlay {
  opacity: 0;
}
 
 

/* ---------- Sidebar ---------- */

.project-sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 5rem;
  margin-top: 1.5rem;
}

.project-sidebar-block {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 0.85rem 0.9rem;
  font-size: 0.9rem;
  color: #374151;
}

.project-sidebar-block + .project-sidebar-block {
  margin-top: 0.9rem;
}

.project-subtitle-sm {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.project-tools {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.project-tools li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
}

.project-tools li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--studio-rouge-dark);
}

/* Note mise en avant */

.project-highlight-note {
  background: #fefce8;
  border-color: #facc15;
}

/* ---------- Footer ---------- */

.project-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.project-date {
  font-size: 0.9rem;
  color: #6b7280;
}

.project-cta {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--studio-rouge), var(--studio-rouge-dark));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Lightbox ---------- */

.project-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.project-lightbox.is-open {
  display: flex;
}

.project-lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.project-lightbox-image-wrap {
  max-height: 80vh;
}

.project-lightbox-image-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.project-lightbox-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.project-lightbox-close,
.project-lightbox-nav {
  position: absolute;
  border: none;
  background: none;
  color: #f9fafb;
  font-size: 2rem;
  cursor: pointer;
}

.project-lightbox-close {
  top: 1.8rem;
  right: 2rem;
}

.project-lightbox-prev {
  left: 1.5rem;
}

.project-lightbox-next {
  right: 1.5rem;
}

/* Images insérées dans le texte CKEditor */

.project-body img,
.project-extra img {
  width: 100%!important;
  height: 500px!important;
  object-fit: cover!important;
  object-position: top!important;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  cursor: pointer;

}



.project-body img::after,.project-extra img::after{
  content: "🔍";          /* ou ⤢, ↗, etc. */
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;   /* ne bloque pas le clic sur l’image */
}



.project-body img:hover::after,
.project-extra img:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.project-body-img-clickable:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.project-body-img-clickable {
  cursor: zoom-in;
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
  .project-inner {
    padding-inline: 1.1rem;
  }
  .project-hero {
    margin-top: 1.2rem;
  }
}

@media (max-width: 640px) {
  .project-title {
    font-size: 1.7rem;
  }
  .project-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* responsive */

@media (max-width: 991.98px) {
  .project-inner {
    padding: 0 1.1rem;
  }
  .project-layout {
    margin-top: 1.2rem;
  }
}









/* ===== FOOTER – STYLE CLAIR EN 3 COLONNES ===== */

.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: 3rem;
}

/* bloc principal */
.site-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.2rem 1rem 1.5rem;
  display: flex;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 0;
  min-width: 0;
}

/* colonne gauche : brand */
.footer-col-left {
  max-width: 360px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.footer-logo-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--studio-rouge-soft);
  border: 1px solid var(--studio-rouge);
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.35);
  flex-shrink: 0;
}

.footer-logo-square img {
  max-width: 70%;
  height: auto;
}

.footer-brand-text {
  line-height: 1.3;
}

.footer-brand-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-brand-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}

/* bouton "Contact" */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
  transition: background 0.18s ease, box-shadow 0.18s ease,
              transform 0.12s ease, border-color 0.18s ease;
}

.footer-cta-icon {
  font-size: 0.9rem;
}

.footer-cta:hover {
  background: #f9fafb;
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* titres des colonnes */
.footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

/* liens rapides */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-link-item {
  font-size: 0.88rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-link-item:hover {
  color: #111827;
}

/* réseaux sociaux */
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-social-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.12s ease;
}

.footer-social-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-social-item:hover {
  color: #111827;
  transform: translateX(1px);
}

/* bandeau bas */
.site-footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #f9fafb;
}

.site-footer-bottom-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.7rem 1rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer-copy {
  color: #9ca3af;
}

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
}

.footer-bottom-link {
  text-decoration: none;
  color: #6b7280;
  transition: color 0.18s ease;
}

.footer-bottom-link:hover {
  color: #111827;
}

/* responsive */
@media (max-width: 900px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
  }

  .footer-col-left {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}












/* ============================
   SERVICES – LISTE
   ============================ */

.services-page {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-header {
  margin-bottom: 1.8rem;
}

.services-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.services-lead {
  max-width: 620px;
  font-size: 0.95rem;
  color: #4b5563;
}

.services-filters {
  margin-bottom: 2rem;
}

.services-section-head {
  margin: 1rem 0 0.5rem;
}

.services-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.services-subtext {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0.1rem 0 0.6rem;
}

/* Grille : 4 colonnes sur desktop */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

/* Carte service */

.service-card {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease,
    background-color 0.16s ease;
}

/* Ligne sous le titre : sous-titre + catégorie */
.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  margin: 0.1rem 0 0.45rem;
}

.service-card-inner {
  padding: 0.95rem 1rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-card:hover {
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

/* Header */

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.service-card-header-main {
  flex: 1 1 auto;
  min-width: 0;
}

.service-card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 0.08rem;
  color: #111827;
}


.service-card-sub {
  font-size: 0.8rem;
  color: #6b7280;
}

.service-card-category-pill {
  font-size: 0.6rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--studio-rouge);
  background: var(--studio-rouge-soft);
  color: var(--studio-rouge-dark);
  font-weight: 500;
  white-space: nowrap;
}

/* Badges */

.service-card-badges {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  align-items: flex-end;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid transparent;
  white-space: nowrap;
}

.service-badge-online {
  border-color: rgba(34, 197, 94, 0.4);
  background: #ecfdf3;
  color: #166534;
}

.service-badge-featured {
  border-color: rgba(234, 179, 8, 0.5);
  background: #fefce8;
  color: #854d0e;
}


/* Icône ronde au-dessus du titre */
.service-card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b91c1c;
}

/* Description */

.service-card-desc {
  font-size: 0.86rem;
  color: #4b5563;
  margin: 0.1rem 0 0.5rem;
}

/* Pricing : prix unique + abo bien séparés */

.service-card-pricing {
  display: flex;
  gap: 0.7rem;
  align-items: stretch;
  margin-bottom: 0.5rem;
}

.service-price-block {
  flex: 1 1 0;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #f9fafb;
  padding: 0.45rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  transition: 0.15s ease;
}

.service-card:hover .service-price-block {
  background: var(--studio-rouge-soft);
  border: 1px solid var(--studio-rouge);
  transition: 0.15s ease;
  color: var(--studio-rouge-dark);

}

.service-card:hover .service-price-label,
.service-card:hover .service-price-note {
  color: var(--studio-rouge-dark);
}

.service-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.service-price-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

.service-price-note {
  font-size: 0.74rem;
  color: #6b7280;
}

/* Footer */

.service-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

.service-card-link {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
  border-radius: 14px;
  border: 1px solid #9ca3af;
  color: #9ca3af;
  background: #ffffff;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.service-card-link:hover {
  border: 1px solid var(--studio-rouge);
  color: var(--studio-rouge-dark);
  background: var(--studio-rouge-soft);
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.18);
}

.service-card-note {
  font-size: 0.74rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .services-inner {
    padding: 0 1.1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}












/* ========= GALLERY PAGE ========= */

.page-container--full {
  max-width: 100%;
  padding-inline: 0;
}

.studio-gallery {
  padding: 4rem clamp(1.25rem, 4vw, 3.5rem) 5rem;
  background: #ffffff;
}

/* Header centré */
.studio-gallery-header-shell {
  max-width: 780px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.studio-gallery-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--studio-rouge);
  margin-bottom: 0.6rem;
}

.studio-gallery-title {
  font-size: clamp(2.1rem, 2.8vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
}

.studio-gallery-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #4b5563;
}

/* Filtres */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: #374151;
  transition: background 0.15s ease, border-color 0.15s ease,
              color 0.15s ease, transform 0.12s ease;
}

.gallery-filter-btn:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.gallery-filter-btn.is-active {
  background: #111827;
  border-color: #111827;
  color: #f9fafb;
}

/* Grid */
.gallery-session {
  margin-bottom: 2.75rem;
}

.gallery-session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

/* Photo cards */
.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.gallery-photo-inner {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Overlay gradient */
.gallery-photo-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.0) 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-photo-inner:hover img {
  transform: scale(1.04);
}

.gallery-photo-inner:hover::before {
  opacity: 1;
}

/* Badge (nom de la session / projet) */
.gallery-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery-badge--project {
  background: rgba(248, 113, 113, 0.95);
}

.gallery-photo-caption {
  display: none; /* pas de texte sous les images */
}

/* Empty state */
.studio-gallery-empty {
  text-align: center;
  margin-top: 4rem;
  color: #6b7280;
}

/* -------- LIGHTBOX / PLAYER -------- */

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 999;
}

.gallery-lightbox.is-open {
  display: flex;
}

/* 👇 largeur max du player (limite aussi les verticales) */
.gallery-lightbox-inner {
  max-width: min(900px, 70vw);
  max-height: 80vh;
  width: 100%;
}

/* container centré pour l'image */
.gallery-lightbox-image-wrap {
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

/* 👇 règle importante pour ne pas remplir tout l'écran */
.gallery-lightbox-image-wrap img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  background: #020617;
}

.gallery-lightbox-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #e5e7eb;
}


/* Controls */
.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: none;
  padding: 0;
  background: none;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: opacity 0.15s ease, transform 0.12s ease;
}

.gallery-lightbox-close {
  top: 1.5rem;
  right: 1.8rem;
  font-size: 2rem;
}

.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 1.4rem;
}

.gallery-lightbox-next {
  right: 1.4rem;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  opacity: 0.85;
  transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox-close:hover {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 768px) {
  .studio-gallery {
    padding-inline: 1.25rem;
  }

  .gallery-photo img {
    max-height: 260px;
  }

  .gallery-lightbox-nav {
    font-size: 1.5rem;
  }
}



/* ============================






/* ---------- PAGE CONNEXION ---------- */

.page-container--narrow {
  max-width: 480px;
  margin: 3.5rem auto 4rem;
}

.auth-shell {
  display: flex;
  justify-content: center;
}

.auth-card {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  padding: 2.25rem 2.4rem 2.4rem;
}

.auth-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.auth-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--studio-rouge);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.auth-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.auth-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

.auth-alert {
  background: #fef2f2;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  color: #b91c1c;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #111827;
}

/* Inputs Django */
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.auth-form input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  background: #ffffff;
}

.auth-toggle-password {
  border: none;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
}

.auth-toggle-password:hover {
  color: #111827;
}

.auth-actions-top {
  display: flex;
  justify-content: flex-end;
}

.auth-link {
  font-size: 0.85rem;
  color: var(--studio-rouge);
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-submit {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--studio-rouge), var(--studio-rouge-dark));
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(248, 113, 113, 0.25);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.auth-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 20px 50px rgba(248, 113, 113, 0.35);
}

.auth-footer {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.auth-footer-text {
  font-size: 0.9rem;
  color: #6b7280;
}

.auth-footer-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.auth-footer-link:hover {
  text-decoration: underline;
}


/* ---------- Mot de passe avec icône œil ---------- */

.auth-password-wrapper {
  position: relative;
}

.auth-password-wrapper .auth-input,
.auth-password-wrapper input[type="password"],
.auth-password-wrapper input[type="text"] {
  padding-right: 3rem; /* espace pour l’icône */
}

.auth-password-toggle {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-password-icon {
  font-size: 20px;
  line-height: 1;
  color: #9ca3af;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.auth-password-toggle:hover .auth-password-icon {
  color: #4b5563;
}




@media (max-width: 640px) {
  .page-container--narrow {
    max-width: 100%;
    margin: 1.8rem auto 2.2rem;
    padding-inline: 1rem;
  }

  .auth-card {
    padding: 1.8rem 1.5rem 1.9rem;
    border-radius: 18px;
  }

  .auth-title {
    font-size: 1.35rem;
  }
}





/* ============================
   PAGE 404
   ============================ */

.error-page {
  min-height: calc(100vh - 180px); /* laisse la place pour le header/footer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem;
}

.error-page-inner {
  max-width: 520px;
  text-align: left;
}

.error-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.error-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.9rem;
}

.error-text {
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* bouton “ghost” dans le style studio */
.btn-studio-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background-color 0.15s ease, box-shadow 0.15s ease,
              border-color 0.15s ease, transform 0.08s ease;
}

.btn-studio-ghost:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .error-page {
    padding-top: 2.8rem;
  }
  .error-page-inner {
    text-align: left;
  }
}








/* ============================
   PAGE RDV PROJET — LAYOUT
   ============================ */

.booking-page {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.booking-header {
  margin-bottom: 2rem;
}

.booking-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #6b7280;
  margin-bottom: .2rem;
}

.booking-title {
  font-size: 1.6rem;
  margin-bottom: .35rem;
}

.booking-subtitle {
  max-width: 520px;
  font-size: .95rem;
  color: #6b7280;
}

.checkout-wrapper {
  display: flex;
  gap: 1.75rem;
  align-items: stretch;
}

.checkout-left,
.checkout-right {
  flex: 1 1 0;
}

@media (max-width: 992px) {
  .checkout-wrapper {
    flex-direction: column;
  }
}

/* ============================
   CARTE RÉCAP (GAUCHE)
   ============================ */

.checkout-left-card {
  border-radius: 24px;
  padding: 22px 20px;
  /* gradient rouge / orange / bleu nuit */
  background:
    radial-gradient(circle at 0% 0%,
      var(--studio-rouge) 0%,
      var(--studio-rouge-dark) 100%);

  color: #fee2e2;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.recap-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.recap-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: rgba(248, 250, 252, 0.14);
  color: #fecaca;
}

.recap-studio {
  font-size: .88rem;
  font-weight: 600;
  color: #fef2f2;
}

.recap-main-title {
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: .6rem;
  margin-bottom: .3rem;
}

.recap-text {
  font-size: .88rem;
  line-height: 1.55;
  color: #fee2e2;
}

/* bloc blanc semi-transp. dans la carte */
.recap-box {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(248, 250, 252, 0.28);
  padding: .9rem 1rem;
  font-size: .86rem;
  color: #f9fafb;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .25rem;
}

.recap-row span:first-child {
  color: #e5e7eb;
}

.recap-row span:last-child {
  text-align: right;
}

.recap-footer {
  font-size: .83rem;
  color: #fee2e2;
}

/* ============================
   CARTE FORMULAIRE (DROITE)
   ============================ */

.checkout-card {
  border-radius: 24px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #9ca3af;
  margin-bottom: .35rem;
}

.checkout-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.checkout-subtext {
  font-size: .9rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
}

/* ---------- Récap mobile ---------- */

.summary-box {
  border-radius: 18px;
  background: #f9fafb;
  padding: .9rem 1.1rem;
  font-size: .86rem;
  margin-bottom: 1.2rem;
  border: 1px solid #e5e7eb;
}

.summary-title {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #6b7280;
  margin-bottom: .35rem;
}

.summary-list {
  margin: 0;
  padding-left: 1.1rem;
}

.summary-list li {
  margin-bottom: .15rem;
}

/* ---------- Formulaire ---------- */

.checkout-form .form-label {
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.field-required {
  color: #111827;
  font-weight: 600;
}

.field-optional {
  color: #9ca3af;
  font-weight: 500;
}

.required-mark {
  color: var(--studio-rouge);
  margin-left: 2px;
}

.checkout-submit {
  margin-top: 1.3rem;
}

/* ---------- Responsive petits écrans ---------- */

@media (max-width: 576px) {
  .booking-page {
    padding-top: 1.8rem;
    padding-bottom: 2.4rem;
  }
  .booking-title {
    font-size: 1.35rem;
  }
}
